| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- @import 'bootstrap/bootstrap';
- @import 'bootstrap/variables';
- @import 'bootstrap/mixins';
- $font-primary: 'Poppins',Arial, sans-serif;
- $primary: #1089ff;
- body{
- font-family: $font-primary;
- font-size: 16px;
- line-height: 1.8;
- font-weight: normal;
- background: #fafafa;
- color: lighten($black,50%);
- }
- a {
- transition: .3s all ease;
- color: $primary;
- &:hover, &:focus {
- text-decoration: none !important;
- outline: none !important;
- box-shadow: none;
- }
- }
- h1, h2, h3, h4, h5,
- .h1, .h2, .h3, .h4, .h5 {
- line-height: 1.5;
- font-weight: 400;
- font-family: $font-primary;
- color: $black;
- }
- .bg-primary{
- background: $primary !important;
- }
- .ftco-section{
- padding: 7em 0;
- }
- .ftco-no-pt{
- padding-top: 0;
- }
- .ftco-no-pb{
- padding-bottom: 0;
- }
- //HEADING SECTION
- .heading-section{
- font-size: 28px;
- color: $black;
- }
- //COVER BG
- .img{
- background-size: cover;
- background-repeat: no-repeat;
- background-position: center center;
- }
- .form-control {
- height: 52px;
- background: $white;
- color: $black;
- font-size: 14px;
- border-radius: 2px;
- box-shadow: none !important;
- border: 1px solid rgba(0,0,0,.1);
- &::-webkit-input-placeholder { /* Chrome/Opera/Safari */
- color: rgba(0,0,0,.7) !important;
- }
- &::-moz-placeholder { /* Firefox 19+ */
- color: rgba(0,0,0,.7) !important;
- }
- &:-ms-input-placeholder { /* IE 0+ */
- color: rgba(0,0,0,.7) !important;
- }
- &:-moz-placeholder { /* Firefox 18- */
- color: rgba(0,0,0,.7) !important;
- }
- &:focus, &:active {
- border-color: rgba(0,0,0,.1);
- }
- }
- textarea.form-control {
- height: inherit!important;
- }
- .wrapper{
- width: 100%;
- -webkit-box-shadow: 0px 21px 41px -13px rgba(0,0,0,0.18);
- -moz-box-shadow: 0px 21px 41px -13px rgba(0,0,0,0.18);
- box-shadow: 0px 21px 41px -13px rgba(0,0,0,0.18);
- }
- .contact-wrap{
- background: $white;
- }
- .info-wrap{
- h3{
- color: $white;
- }
- .dbox{
- width: 100%;
- color: rgba(255,255,255,.8);
- margin-bottom: 25px;
- &:last-child(){
- margin-bottom: 0;
- }
- p{
- margin-bottom: 0;
- span{
- font-weight: 600;
- color: $white;
- }
- a{
- color: $white;
- }
- }
- .icon{
- width: 50px;
- height: 50px;
- border-radius: 50%;
- background: rgba(255,255,255,.1);
- span{
- font-size: 20px;
- color: $white;
- }
- }
- .text{
- width: calc(100% - 50px);
- }
- }
- @include media-breakpoint-up(lg){
- margin-top: -20px;
- margin-bottom: -20px;
- border-radius: 5px;
- }
- }
- .btn {
- padding: 12px 16px;
- cursor: pointer;
- border-width: 1px;
- border-radius: 5px;
- font-size: 14px;
- font-weight: 400;
- -webkit-box-shadow: 0px 10px 20px -6px rgba(0,0,0,0.12);
- -moz-box-shadow: 0px 10px 20px -6px rgba(0,0,0,0.12);
- box-shadow: 0px 10px 20px -6px rgba(0,0,0,0.12);
- position: relative;
- margin-bottom: 20px;
- @include transition(.3s);
- &:hover, &:active, &:focus {
- outline: none !important;
- -webkit-box-shadow: 0px 10px 20px -6px rgba(0,0,0,0.22) !important;
- -moz-box-shadow: 0px 10px 20px -6px rgba(0,0,0,0.22) !important;
- box-shadow: 0px 10px 20px -6px rgba(0,0,0,0.22) !important;
- }
- &.btn-primary {
- background: $primary !important;
- border-color: $primary !important;
- color: $white;
- &:hover,&:focus{
- border-color: darken($primary,10%) !important;
- background: darken($primary,10%) !important;
- }
- }
- }
- //Forms style
- #contactForm {
- .error {
- color: red;
- font-size: 12px;
- }
- .form-control {
- font-size: 16px;
- }
- }
- #message {
- resize: vertical;
- }
- #form-message-warning, #form-message-success {
- display: none;
- }
- #form-message-warning {
- color: red;
- }
- #form-message-success {
- color: $success;
- font-size: 18px;
- font-weight: bold;
- }
- .submitting {
- float: left;
- width: 100%;
- padding: 10px 0;
- display: none;
- font-size: 16px;
- font-weight: bold;
- }
|