:root {
    --white: #fff;
    --black: #333;
}
*{
    font-family: var(--primary-font);
}
.not-allowed {
    cursor: not-allowed;
}
.mobile-icon{
    font-size: 20px !important;
    padding-right: 10px !important;
}
.fa-angle-down{
    position: relative;
    right: 20px;
    color: #fff;
}
.d-grid{
    display: grid;
}
.telephone-dev span{
    padding-bottom: 10px;
}
.footer-contact p a{
    color: #333;
}
.navbar a, .navbar a:focus {
    color: var(--primary-color);
    padding: 0;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--secondray-color);
}
.text-left {
    text-align: left;
}
.pl-20 {
    padding-right: 20px
}
.form-box {
    box-shadow: 0px 2px 9px 7px rgb(0 0 0 / 15%);
    padding: 30px;
    background: #fff;
    margin-top: 4em;
    position: relative;
    border-radius: 0 4px;
}
.radio-input {
    appearance: none;
    position: relative;
    top: 3px;
    height: 15px;
    width: 15px;
    transition: all .15s ease-out 0s;
    background: 0 0;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 6px!important;
    outline: 0;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
}
.radio-input:checked {
    background: var(--primary-color)7a;
    color: #000!important;
} 
.radio-input:checked::before {
    height: 10px;
    width: 10px;
    position: absolute;
    content: '✔';
    display: inline-block;
    font-size: 9.66667px;
    text-align: center;
    line-height: 10px;
}
.mt-10{
    margin-top: 10em;
}
.mt-15{
    margin-top: -15em;
}
.bg-main{
  width: 100%;
  height: 100%;
  background-size: cover;
  position: relative;
}
.banner-title {
    color: #fff !important;
    font-size: 69px;
    margin-top: -50px;
}
.banner-content {
    padding-left: 40px;
}
.banner-content::after {
    content: "";
    background: url('../img/whitedotted.png');
    width: 420px;
    height: 355px;
    position: absolute;
    background-size: contain;
    right: 42%;
    bottom: 60px;
    background-repeat: no-repeat;
    transform: rotate(319deg);
}
.hero h1 {
    margin: 0;
    font-size: 55px;
    font-weight: 700;
    color: var(--primary-color);
}
form label{
    color: #000;
    font-weight: 400;
    margin: 5px 0;
}

form .form-control {
    border-radius: 4px;
}

::placeholder {
    font-size: 13px;
}
.btn-get-started{
    margin-top: 10px !important;
    border: none;
}
.btn-play{
    background: radial-gradient(#7e7e7e 50%, #a4a0a0 52%);
    color: #fff;
    width: 80px;
    height: 80px;
    display: inline-block;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    box-shadow: 0 10px 30px 0 rgb(50 50 50 / 16%);
    margin-top: 20px;
}
.btn-play i{
    font-size: 40px;
    position: relative;
    left: 2px;
    top: 2px;
}
a.btn-play::after {
    content: "";
    border: 1px solid #7e7e7e9e;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    position: absolute;
    transform: scale(1);
    animation: pulse-black 2s infinite;
}
a.btn-play:hover {
    color: var(--white);;
    text-decoration: none;
}
@keyframes pulse-black {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(141, 140, 138, 0.7);
      }
      
      70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 177, 66, 0);
      }
      
      100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 177, 66, 0);
      }
  }
.hero h2 {
    color: var(--white);;
    margin: 15px 0 0 0;
    font-weight: 400;
    font-size: 22px;
}
.hero .info {
    position: absolute;
    inset: 0;
    z-index: 2;
}
.hero .carousel {
    width: 100%;
    min-height: 780px;
    padding: 80px 0;
    margin: 0;
    position: relative;
}
@media (min-width: 1024px) {

}
@media (min-width: 1024px) {
    
}
.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
    transition-duration: 0.4s;
}
.hero .carousel-item::before {
    content: "";
    background-color: #000;
    position: absolute;
    inset: 0;
    opacity: .7;
}

a.nav-link i {
    font-size: 15px;
    display: none;
    color: #fff;
    transition: .5s ease-in-out;
}

a.nav-link.scrollto::before {
    content: '';
    position: absolute;
    margin-inline: auto;
    background: #fff;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 3px;
}

.header-scrolled a.nav-link.scrollto::before {
    content: '';
    position: absolute;
    margin-inline: auto;
    background: var(--primary-color);
    width: 0;
    height: 2px;
    left: 0;
    bottom: 3px;
}

a.nav-link.scrollto:hover::before {
    width: 100%;
    transition: .5s ease-in-out;

}

a.nav-link.scrollto:hover {
    color: #fff;
}

.header-scrolled a.nav-link.scrollto:hover {
    color: var(--primary-color);
}

.header-scrolled a.nav-link:hover i {
    display: block;
    margin-bottom: 5px;
    margin-left: -1px;
    margin-right: 10px;
    font-size: 25px;
    color: var(--primary-color);
}

a.nav-link:hover i {
    display: block;
    margin-bottom: 5px;
    margin-left: -1px;
    margin-right: 10px;
    font-size: 25px;
    color: #fff;
}

/* .form-box::before {
    content: '';
    background: url(../img/Vector_20180507_011.png) top center no-repeat;
    background-size: cover;
    position: absolute;
    top: -222px;
    width: 510px;
    height: 223px;
    left: -76px;
} */
.section-header h2 {
    font-size: 30px;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color) !important;
    text-transform: uppercase;
}
.section-header p {
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 16px;
    line-height: 42px;
    font-weight: 500;
    color: var(--secondary-color) !important;
}
.about h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-transform: capitalize;
    padding: 10px 10px 0;
    letter-spacing: 1.1px;
}
.feature-box i {
    color: #000;
}
.about .feature-box {
    padding: 24px 20px;
    box-shadow: 0px 0 30px rgb(1 41 112 / 8%);
    transition: 0.3s;
    height: 100%;
}
.about .feature-box i {
    line-height: 0;
    background: #ecf3ff;
    padding: 4px;
    margin-right: 10px;
    font-size: 24px;
    border-radius: 3px;
    transition: 0.3s;
}
.about .tabs .active {
    background: var(--primary-color);
    border-radius: 4px;
}
.about .active h3 {
    color: #ffff;
}
.about .feature-box .active:hover i {
    background: var(--secondary-color);
    color: #fff;
}
.about .feature-box:hover i {
    background: var(--primary-color);
    color: #fff;
}
.tab-pane p {
    margin: 0;
    line-height: 30px;
}
.about .nav-tabs{
    display: grid;
    --bs-nav-tabs-border-width: none;
    border-bottom: none;
}
.about .nav-link {
    padding: 0;
}

/* Service */
.services .service-box h3 {
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #1a1a1a;
}
.services .service-box p {
    color: #1a1a1a;
    font-size: 12px;
}
.services .service-box img {
    width: 80px;
    margin-bottom: 10px;
}

/* client */
.clients-slider {
    padding: 40px;
}
.clients .section-header{
    padding-bottom: 0;
}

/* projects */
/* .projects .swiper-slide{
    width: 25% !important;
    margin-right: 30px !important;
} */
.projects .readmore span{
    color: #000 !important;
}

.section-header hr {
    width: 7%;
    display: inline-block;
    border-top: 2px solid #7e7e7e;
    margin: 7px;
}

.social {
    position: fixed;
    left: 0;
    top: 100px;
    opacity: 1;
    border-radius: 4px;
    transition: 0.5s;
    background: #f8f9fa;
    z-index: 5;
    /* box-shadow: 3px 3px 6px #b8b9be, -3px -3px 6px #fff; */
}
.social a {
    transition: color 0.3s;
    color: rgba(1, 41, 112, 0.5);
    margin: 15px 12px;
    display: block;
    line-height: 0;
    text-align: center;
}
.social i {
    font-size: 18px;
}

.form-title-style {
    background: var(--primary-color);
    margin-top: 16px;
    width: 106%;
    float: left;
    padding: 10px;
    text-align: center;
    color: #fff;
    position: relative;
    left: -17px;
    text-transform: capitalize;
    font-size: 20px;
}
.form-title-style::before {
    content: "";
    border-top: 0px solid transparent;
    border-bottom: 24px solid transparent;
    border-right: 17px solid #80412d;
    position: absolute;
    left: 0px;
    bottom: -23px;
}

html body .form-box {
    box-shadow: 0px 2px 9px 7px rgb(0 0 0 / 15%);
    padding: 0;
    background: rgba(255,255,255,.3);
    margin-top: 20px;
    position: relative;
    border-radius: 0 4px;
}

form.php-email-form {
    padding: 30px;
}

form .form-control {
    border-radius: 4px;
    background: rgba(255,255,255,.7);
    border: 1px solid transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #000 !important;
    outline: none;
}

.hero .btn-get-started {
    margin-top: 30px;
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: var(--primary-color);
    box-shadow: 0px 5px 30px #757575;
    width: 50%;
}

form label {
    color: #fff;
    font-weight: 400;
    margin: 5px 0;
    font-size: 13px;
}
.fixed-top:not(.header-scrolled) a {
    color: #fff;
}	
.footer .footer-top .footer-links ul a {
    color: #a86049;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    font-size: 13px;
}
.footer .footer-top h4 {
    color: #000;
}
.footer .footer-top .footer-links ul a:hover {
    color: #a17c71;
}
.footer .footer-newsletter h4 {
    color: var(--primary-color);
}
.marquee{
    position: fixed;
    bottom: 10px;
    left: 0px;
    z-index: 1111;
    visibility: hidden;
    opacity: 0;
}
.marquee.active{
    visibility: visible;
    opacity: 1;
}
.marquee button {
    border: none;
    padding: 10px;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    background: #fff;
    /* box-shadow: 3px 3px 6px #b8b9be, -3px -3px 6px #fff; */
}
.marquee marquee {
    background: #fff;
    box-shadow: 0 10px 30px 0 rgb(50 50 50 / 16%);
    border-radius: 4px;
    margin: auto 5px;
    padding: 10px;
    transform: translateX(0);
    transition: 1.5s;
    color: #333;
    font-weight: 400;
    font-size: 15px;
    width: 550px;
}
marquee span b {
    color: var(--primary-color);
}
.bi-caret-down-fill{
    color:green
}
.bi-caret-up-fill{
    color:red
}
.get-started {
    margin-top: 30px !important;
    border-radius: 0 !important;
}
.testimonials .testimonial-item {
    padding: 0px;
    box-shadow: 0 10px 30px 0 rgb(50 50 50 / 16%) !important;
}
.testimonials .testimonial-item iframe {
    border-radius: 4px 4px 0 0;
    max-height: 300px;
}
.testimonials .profile {
    padding: 25px;
}
.testimonials .testimonial-item p{
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 2.5ex;
    height: 10ex;
    color: #696D74;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.profile 
.marquee-icon.bi.bi-plus{
    font-weight: 400;
    font-size: 30px;
    position: relative;
    top: -5px;
    left: 0;
    color: rgba(1, 41, 112, 0.5);
}
.marquee-icon.bi.bi-dash{
    font-weight: 400;
    font-size: 30px;
    position: relative;
    top: -5px;
    left: 0;
    color: rgba(1, 41, 112, 0.5);
}
/* popup */
.hide {
    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
    -moz-transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
    -o-transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
  }
  .popup {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: #FAFDFF;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    width: auto;
    box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
    -moz-transition: all 120ms;
    -webkit-transition: all 120ms;
    -o-transition: all 120ms;
    transition: all 120ms;
    z-index: 999999;
    color: #5E5E5E;
  }
  .popup-body {
    height: 600px;
  }
  
  @media screen and (max-width: 1000px) {
    .popup {
      width: 80%;
    }
  }
  .header-body{
    border-bottom: 1px solid #ccc;
  }
  .popup-header {
    padding: 25px 25px 10px;
    font-weight: 500;
    font-size: 24px;
    color: #4e4e4e;
  }
  .popup-body img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
  }
  .popup-body p {
    font-weight: bold;
    font-size: 14px;
    color: #4e4e4e;
    margin-bottom: 0px;
    text-align: center;
  }
  .box{
    cursor: pointer;
    padding-bottom: 10px;
  }
  .box:hover {
    background: #7e7e7e1f;
    border-radius: 5px;
  }
  .wrap-drop {
    background: rgb(165 91 67);
    cursor: pointer;
    max-width: 150px;
    padding: 10px 25px;
    position: relative;
    width: 175px;
    z-index: 3;
    text-transform: uppercase;
}
.wrap-drop span {
    color: #fff;
    font-family: var(--primary-font);
    font-size: 14px;
}
.wrap-drop .drop {
    background: #ffffff;
    border: 1px solid #ededed;
    box-shadow: 0px 2px 3px rgb(0 0 0 / 10%);
    display: none;
    left: 0;
    list-style: none;
    margin-top: 0;
    opacity: 0;
    padding-left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 2;
}
.wrap-drop::after {
    border-color: #fff transparent;
    border-style: solid;
    border-width: 6px 6px 0;
    content: "";
    height: 0;
    margin-top: -4px;
    position: absolute;
    right: 15px;
    top: 50%;
    width: 0;
}
.wrap-drop.active .drop {
    display: block;
    opacity: 1;
    pointer-events: auto;
}
.wrap-drop .drop li a {
    color: #333;
    display: block;
    padding: 10px 10px 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
}
.testimonial-item {
    box-sizing: content-box;
    padding: 30px;
    margin: 0px !important;
    box-shadow: 0px 0 20px rgb(1 41 112 / 10%);
    background: #fff;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
    border-radius: 4px;
}
.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--primary-color);
}
.h-100{
    height: 100%;
}
.social .twitter:hover{
    color: #1DA1F2;
}
.social .instagram:hover{
    color: #fbad50;
}
.social .linkedin:hover{
    color: #0A66C2
}
.social .whatsapp:hover{
    color: #075E54;
}
.social .youtube:hover{
    color: #FF0000;
}
.social .facebook:hover{
    color:#3b5998;
}

.social-links .twitter:hover{
    color: #1DA1F2 !important;
}
.social-links .instagram:hover{
    color: #fbad50 !important;
}
.social-links .linkedin:hover{
    color: #0A66C2 !important;
}
.social-links .whatsapp:hover{
    color: #075E54 !important;
}
.social-links .youtube:hover{
    color: #FF0000 !important;
}
.social-links .facebook:hover{
    color:#3b5998 !important;
}
.swiper-button-prev, .swiper-button-next {
    background: var(--primary-color);
    border-radius: 50%;
    height: 50px;
    width: 50px
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    font-size: 20px;
    color: #fff;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'next';
    font-size: 20px;
    color: #fff;
}
.iti {
    display: block !important;
}
.read-more {
    border: none;
    padding: 10px 20px;
    margin: 15px 0;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
    display: initial !important;
}
.tab-content {
    z-index: 111;
}
.read-more:hover{
    color: #fff;
}
.member img {
    width: 100%;
    height: 230px;
}
.desk_header_city{
    display: block;
}
.mob_header_city{
    display: none;
}
.testimonials .swiper-slide {
    opacity: 1; 
}
.testimonial-item iframe {
    min-height: 300px;
}
.testimonials .testimonial-item .testimonial-img {
    min-height: 300px;
    max-height: 300px;
}
.swiper-wrapper {
    margin-bottom: 30px !important;
}
.fa-quote-left{
    padding-right: 5px;
    vertical-align: super;
    color: var(--primary-color);
}
@media (max-width: 480px) {
    .fixed-top:not(.header-scrolled) a {
        color: var(--primary-color);
    }
    .navbar-mobile ul{
        overflow: hidden;
        padding: 20px 0px;
        bottom: auto;
    }
    .d-block {
        display: block !important;
    }
    /* .projects .swiper-slide {
        width: 180px !important;
    } */
    .banner-content::after {
        content: '';
        display: none;
    }
    .btn-get-started {
        display: none;
    }
    .hero .carousel {
        min-height: 1024px;
    }
    .hero h1 {
        font-size: 50px;
    }
    .desk_header_city{
        display: none;
    }
    .mob_header_city{
        display: block;
    }
    li{
        list-style: none;
    }
}

.dropbtn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 46px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
  }
  
  #myInput {
    box-sizing: border-box;
    background-image: url('searchicon.png');
    background-position: 14px 12px;
    background-repeat: no-repeat;
    font-size: 16px;
    padding: 14px 20px 12px 45px;
    border: none;
    border-bottom: 1px solid #ddd;
  }
  
  #myInput:focus {outline: 3px solid #ddd;}
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f6f6f6;
    min-width: 230px;
    overflow: auto;
    border: 1px solid #ddd;
    z-index: 1;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  .multidropdown li a{
    color: var(--primary-color) !important;
  }
  
  .show {display: block;}
  a.nav-link.scrollto.active::after {
    content: '';
    border-bottom: 2px solid #7e7e7e;
    position: absolute;
    top: 33px;
    width: 50%;
}
.dropdown-color{
    color: var(--primary-color) !important;
}
.readmore{
    background: var(--primary-color);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
}
.readmore i {
    padding: 0 10px;
}
a.readmore.stretched-link.mt-auto:hover {
    background: #E4C1C1;
}
.close-btn{
    position: absolute;
    right: 15px;
    top: 10px;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #7e7e7e;
    color: #fff;
}
.team.projects {
    background-image: url('../img/BG-elements.png');
    background-size: cover;
}
.about{
    background-image: url('../img/BG-elements.png');
    background-size: cover;
}
.team .member {
    box-shadow: 0 10px 30px 0 rgb(50 50 50 / 16%) !important;
    padding-bottom: 17px;
}
.member-img img{
    width: 100%;
}
.toastify {
    top: 100px !important;
}
.toastify.on.toastify-center.toastify-top::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    width: 30px;
    height: 30px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid var(--primary-color);
}
