/* fontawsome icon */
@import url("https://use.fontawesome.com/releases/v5.0.7/css/all.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+Expanded:wght@100;200;300;400;500;600;700&display=swap');

body {
    background-color: #fff;
    font-family: 'Quicksand', sans-serif;
    font-size: 17px;
}

.dropdown-item.active,
.dropdown-item:active {
    background: transparent;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Encode Sans Expanded', sans-serif;
}

* {
    margin: 0;
    padding: 0;
}

*:focus {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

p {
    font-size: 17px;
    color: #555;
    margin-bottom: 0;
}

img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    height: auto;
    max-width: 100%;
}

ul,
ol {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

a {
    -webkit-transition: color 300ms ease 0s,
    background-color 300ms ease 0s;
    transition: color 300ms ease 0s,
    background-color 300ms ease 0s;
    text-decoration: none !important;
}

a:hover,
a:focus {
    -webkit-transition: color 300ms ease 0s,
        background-color 300ms ease 0s;
    transition: color 300ms ease 0s,
        background-color 300ms ease 0s;
    text-decoration: none;
    color: #58b683;
}

a:focus {
    outline: medium none;
    outline-offset: 0;
}

button:focus,
.form-control:focus {
    outline: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}


/* ===== Header css ==== */
header{
    padding:25px 0;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.shakeAni{
    animation: shake 1s ease infinite;
    transform-origin: 50% 50%;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.top-quote ul li {
    display: flex;
    flex-direction: column;
}

.top-quote ul li.phone-tp a {
    color: #fff;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.563rem;
}

.top-quote ul li.phone-tp a {
    font-size: 1.5rem;
}

.top-quote ul li.phone-tp a.email-tp {
    font-size: .9rem;
    font-weight: 400;
}

header .grn-btn {
    -webkit-border-radius: 5px;
    color: #fff;
    border-radius: 5px;
    background: #86c443;
    font-size: 1.25rem;
    font-weight: 700;
    padding: .438rem 1.25rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    text-transform: capitalize;
    border: 2px solid #86c443;
    cursor: pointer;
}

header .grn-btn:hover {
    background: rgba(0,0,0,0);
    border: 2px solid #86c443;
    color: #86c443;
}

.hero-section {
    background: #21222b url(../images/top-banner-bbg.jpg) no-repeat;
    padding-top: 12rem;
    padding-bottom: 0;
    position: relative;
}

.inner-banner {
    padding: 9rem 0 4rem;
}

.hero-section h1{
    font-size: 3.4rem;
    color: #fff;
    /*text-transform: capitalize;*/
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: -3px;
}

.hero-section h1 span{
    color: #e8c99c;
}

.hero-section p{
    font-size: 18px;
    color: #fff;
    margin-top: 20px;
}

/* -----  Register ----- */
.register-form-wrapper{
    padding: 40px;
    background: rgba(255,255,255,1);
    border-radius: 5px 5px;
}

.register-form-wrapper h3{
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 500;
    text-align: center;
}


input.register-input, select.register-input{
    width: 100%!important;
    height: 52px!important;
    padding: 12px 45px;
    margin-bottom: 15px!important;
    color: #555!important;
    border: 1px solid #f1f1f1!important;
    background-color: #f9f9f9!important;
    font-size: 16px!important;
    border-radius: 5px 5px 5px 5px!important;
}

textarea.register-input.white-input{
    width: 100%!important;
    height: 65px;
    padding: 12px 45px;
    margin-bottom: 15px!important;
    color: #555!important;
    border: 1px solid #f1f1f1!important;
    background-color: #f9f9f9!important;
    font-size: 16px!important;
    border-radius: 5px 5px 5px 5px!important;
}

input.name-input{
    background: url('../images/input-user.png') no-repeat 12px 15px;
}

input.name-email{
    background: url('../images/input-envelope.png') no-repeat 12px 15px;
}

select.register-input{
    background: url('../images/input-select.png') no-repeat 12px 15px;
}

/*input.name-phone{
    background: url('../images/phone.png') no-repeat 12px 15px;
}*/

textarea.name-message{
    background: url('../images/input-envelope.png') no-repeat 12px 15px;
}

input.register-submit{
    background-image: linear-gradient(to right,#bc8f37,#f6c985);
    border: none;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
    max-width: 535px;
    padding: 16px 0;
    text-transform: uppercase;
    -webkit-border-radius: 3px 3px;
    -moz-border-radius: 3px 3px;
    border-radius: 3px 3px;
    transition: all .50s ease-in-out;
    -moz-transition: all .50s ease-in-out;
    -webkit-transition: all .50s ease-in-out;
    margin-top: 15px
}

input.register-submit:hover{
    background-image: linear-gradient(to right,#bc8f37,#f6c985);
    transition: all .50s ease-in-out;
    -moz-transition: all .50s ease-in-out;
    -webkit-transition: all .50s ease-in-out;
}

#register-form input.register-input:focus, #register-form select.register-input:focus {
  border-color:#656565!important;
  color: #454545!important;
  outline: none;
}

#register-form input.register-input:focus, #register-form select.register-input:focus {
  border-color:#656565!important;
  color: #454545!important;
  outline: none;
}

p.register_success_box{
    display:inline-block;
    color:#86c443;
    border: 1px solid #86c443;
    padding: 25px 25px;
    font-size:19px;
    text-shadow: none;
    font-style:italic;
    border-radius: 8px 8px;
    margin:15px 0;
}

p.register-form-terms{
    margin: 10px 0 5px 0;
    font-size: 14px;
    color: #7c8595;
    text-shadow: none;
}

input.white-input::-webkit-input-placeholder,
select.white-input::-webkit-input-placeholder { /* WebKit browsers */
    color:#656565;
}
input.white-input:-moz-placeholder,
select.white-input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:#656565;
}
input.white-input::-moz-placeholder,
select.white-input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:#656565;
}
input.white-input:-ms-input-placeholder,
select.white-input:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:#656565;
}

/* Pertners */
.partners-section {
    padding: 40px 0 20px 0;
    background-color: #fff;
}

.partners img.partners {
    opacity: 0.4;
    margin: 10px 15px;
    max-height: 55px;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.partners img.partners:hover {
    opacity: 0.8;
}

.partners-title{
    font-size: 18px;
    line-height: 78px;
    display: inline-block;
    margin-right: 15px;
}

.intro-box-seo{
    padding: 80px 0;
}

.intro-box-seo h2{
    font-size: 2.8rem;
    color: #222;
    text-align: center;
    font-weight: bold;
}

.intro-box-seo h3{
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0 10px;
}

.intro-box-seo.searchEngine span {
    color: #efefef;
    font-size: 6.188rem;
    font-family: 'Encode Sans Expanded', sans-serif;
    font-weight: 700;
    line-height: 5rem;
    display: block;
}


.SearchEngine {
    margin-top: -70px;
    position: relative;
}

.SearchEngine h3{
    padding-bottom: 25px;
    font-size: 30px;
}

.seo-secvies{
    background: url(../images/service-bg.jpg) no-repeat;
    background-position: top center;
    padding-bottom: 2rem;
}

.seo-secvies .seo-secvies-bg {
    background: #3d3e44;
    -webkit-box-shadow: 3px 3px 12px -1px rgb(0 0 0 / 40%);
    box-shadow: 3px 3px 12px -1px rgb(0 0 0 / 40%);
    padding: 3rem;
}

.seo-secvies-bg p{
    font-size: 21px;
    line-height: 32px;
    text-align: justify;
}

.service-box{
    margin-bottom: 30px;
    position: relative;
    transition:all 0.4s ease-in-out;
    min-height: 145px;
}

.service-box:after {
    content: '';
    position: absolute;
    right: -15px;
    width: 1px;
    height: 100px;
    background: #999;
    top: 40px;
    bottom: 0;
}

.service-box:hover {
    background: #181d3e26;
}

.service-box h3{
    text-transform: uppercase;
    color: #fff;
}

.card{
    position: relative;
    margin: 20px 0;
    border:none;
    background-color: #fff !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.card-header {
    max-width: 100%;
    position: relative;
    padding: 15px 25px;
    margin-bottom: 0;
    background-color: transparent;
    border-bottom: none;
    border-left: 6px solid #86c443;
}

.card-header h5 .btn-link p {
    margin-top: 15px;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    color: #071e55;
    text-align: left!important;
    background-color: transparent;
}

.card-header h5 .btn-link p span {
    font-size: 17px;
    color: #86c443;
}

.card-header h5 .btn-link:hover, .card-header h5 .btn-link:focus {
    text-decoration: none;
}

.card-body {
    padding: 20px 25px 5px 25px;
    border-top: none;
    border-left: 6px solid #86c443;
    font-size: 20px;
    color: #7c8595;
    font-style: italic;
}

img.testim-img{
    float: left;
    margin-right: 15px;
    max-width: 65px;
    border-radius: 50%;
}

p.testim-name{
    display: inline-block;
}

.testim-rating {
    margin-bottom: 30px;
}

.testim-rating i{
    color: #fdcc28;
}

.testim-platform.first{
    display: block;
    border-right: 1px solid #cecece;
}

.testim-platform p{
    margin-bottom: 5px;
    font-weight: bold;
    color: #071e55;
}

.clients ul{
    display: flex;
    flex-wrap: wrap;
}

.clients ul li {
    max-width: 10%;
    flex: 0 0 10%;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    padding: 5px;
}

.clients ul li img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.portfolio ul a {
    float: left;
    width: 25%;
    height: 250px;
    overflow: hidden;
}

.portfolio ul a img {
   transition: all 0.2s ease-in-out;
}

.portfolio ul a img:hover {
    opacity: .7;
}



.footer .contact-form .contact-input {
    width: 100%!important;
    height: 52px!important;
    padding: 0 20px;
    color: #555!important;
    border: 1px solid #e0e0e0!important;
    background-color: #ffffff!important;
    font-size: 16px!important;
    border-radius: 5px 5px 5px 5px!important;
}

.footer .contact-form input.contact-submit {
    background: #86c443;
    border: none;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    max-width: 300px;
    border: 2px solid #86c443;
    padding: 15px 0;
    text-transform: uppercase;
    -webkit-border-radius: 3px 3px;
    -moz-border-radius: 3px 3px;
    border-radius: 3px 3px;
    transition: all .50s ease-in-out;
    -moz-transition: all .50s ease-in-out;
    -webkit-transition: all .50s ease-in-out;
}

.footer .contact-form input.contact-submit:hover {
    background: transparent;
    border: 2px solid #86c443;
    color: #86c443;
}

.footer .footer-main {
    background-color: #212121;
    position: relative;
    color: #7d7d7d;
    z-index: 2;
    padding:30px 0;
}


ul.social-network.with-text {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

ul.social-network.with-text li a{
    font-size: 24px;
    margin: 0 12px;
    color:  #e8c99c;
}

ul.social-network.with-text li:hover a {
    color:  #fff;
}
footer p{
   color:  #e8c99c;
}
.website-must-have-list{
    padding-left: 20px;
    margin-top: 15px;
}

.website-must-have-list li {
    font-size: 16px;
    color: #555;
    line-height: 24px;
    margin: 5px 0;
    list-style: circle;
}

.website-must-have-list li::marker {
    font-size: 22px;
}

.intro-box-seo.bg-light .border:hover{
    border-color: #86c443 !important;
}

.GooglePartner{
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 999;
}

.section-scroll:hover {
    color: #fff;
}

.termCondtion p{
    color: #999999;
    font-size: 10px;
}

.footer .footer-main p{
    font-size: 15px;
}

.callToaction{
    position: fixed;
    bottom: 5px;
    right: 15px;
    z-index: 9999;
}

a.callToaction {
    background: #86c443;
    padding: 5px;
    border-radius: 50%;
    border: 4px solid #a5ff4454;
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 19px;
}
.iti__country-list {
width: 100%;
    min-width: 325px;
    overflow-x: hidden; 
}

section.customer-logos.slider {
    padding-top: 35px;
    padding-bottom: 80px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slide.slick-slide {
    padding: 15px;
}
.slide.slick-slide img {
        border-radius: 12px;
    text-align: center;
    padding: 15px;
    margin: 20px 0;
    box-shadow: 0 0 18px rgb(0 0 0 / 8%);
        background: #fff;
}
ul.slick-dots li {
    display: inline-block;
    margin: 5px;
}
ul.slick-dots li button {
    border: 0px;
    background: #c5c5c5;
    width: 12px;
    height: 12px;
    border-radius: 55%;
    font-size: 0px;
}
.intro-box-seo h2 span {
    font-weight: 400;
}
.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    background: #000;
}
div#footslide2.intro-box-seo {
    padding-bottom: 0;
}
ul.slick-dots li.slick-active button {
    background: #dca642;
}









