@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;400;700&display=swap');


:root {
    /* --primary-color: #1680AC; */
    /* --primary-color: #12427C; */
    --primary-color: #068BD6;
    /* --primary-color: #676767;
    --primary-color: #D32225; */
    --secondary-color: rgb(239, 248, 248);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

body{
    background: #e3edf7;
}

header{
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 100px;
    transition: 0.5s ease;
}

header.black{
    background: white;
    /* opacity: 0.8; */
    /* box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5); */
    -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: 0.5s ease;
}



header .brand{
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

header.black .brand{
    color: black;
}

header .navigation{
    position: relative;
}

header .navigation .navigation-items a{
    position: relative;
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;
}

header.black .navigation .navigation-items a{
    color: black;
}

header.black .navigation .navigation-items a.active {
    color: var(--primary-color);
}

header .navigation .navigation-items a:before{
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 5px;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    transition: 0.3s ease;
}

header.black .navigation .navigation-items a:before{
    background: var(--primary-color);
}

header .navigation .navigation-items a:hover:before{
    width: 100%;
}

header .navigation .navigation-items a.active:before {
    width: 100%;
}

header .navigation .navigation-items .request-btn:hover:before {
    width: 0;
}


/* General styling for the logo */
.logo {
    width: 170px;
    height: auto; /* Keeps the aspect ratio */
    max-width: 100%;
  }
  
  /* Medium screens (tablets, smaller desktops) */
  @media (max-width: 768px) {
    .logo {
      width: 150px;
    }
  }
  
  /* Small screens (phones) */
  @media (max-width: 480px) {
    .logo {
      width: 130px;
    }
  }
  



/* dropdown */
.dropdown-menu.show{
    background: rgba(0, 0, 0, .5);
    /* border: 2px solid whitesmoke; */
}
/* header .navigation .navigation-items a ul li a {
    position: relative;
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;
} */

header.black .navigation .navigation-items .dropdown-menu.show{
    background: white;
}

/* header.black .navigation .navigation-items a ul li a {
    color: black;
}

header .navigation .navigation-items a ul li a:before {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 5px;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    transition: 0.3s ease;
} */

/* header.black .navigation .navigation-items a ul li a:before {
    background: black;
}

header .navigation .navigation-items a ul li a:hover:before {
    width: 100%;
} */

/* header .navigation .navigation-items .dropdown ul li a.active:before {
    width: 100%;
} */
/* end dropdown */


section{
    padding: 100px 100px;
}

header .navigation .navigation-items .request-btn{
    background: #fff;
    padding: 8px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    border-radius: 2px;
    transform: all .5s;
}

header .navigation .navigation-items .request-btn:hover {
    color: white;
    background: #000;
}

header.black .navigation .navigation-items .request-btn {
    background: var(--primary-color);
    padding: 8px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    border-radius: 2px;
}

header.black .navigation .navigation-items .request-btn:hover {
    color: white;
    background: #000;
}

header .request-btn-sm{
    background: #fff;
    padding: 8px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    border-radius: 2px;
    display: none;
}

header .request-btn-sm:hover {
    color: white;
    background: #000;
}

header.black .request-btn-sm{
    background: var(--primary-color);
    padding: 8px 20px;
    color: #ffff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    border-radius: 2px;
}

header.black .request-btn-sm:hover {
    color: white;
    background: #000;
}

/* pages with no navbar images */
header.no-nav-image {
    background: white;
    /* opacity: 0.8; */
    /* box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5); */
    -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: 0.5s ease;
}

header.no-nav-image .brand {
    color: black;
}

header.no-nav-image .navigation .navigation-items a {
    color: black;
}

header.no-nav-image .navigation .navigation-items a.active {
    color: var(--primary-color);
}

header.no-nav-image .navigation .navigation-items a:before {
    background: var(--primary-color);
}

header.no-nav-image .navigation .navigation-items .dropdown-menu.show {
    background: white;
}

header.no-nav-image .navigation .navigation-items .request-btn {
    background: var(--primary-color);
    padding: 8px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    border-radius: 2px;
}

header.no-nav-image .request-btn-sm {
    background: var(--primary-color);
    padding: 8px 20px;
    color: #ffff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    border-radius: 2px;
}

/* pages with no navbar images */

.home{
     position: relative;
     width: 100%;
     min-height: 100vh;
     display: flex;
     justify-content: center;
     flex-direction: column;
     background: #2696E9;
}

.home:before{
    z-index: 777;
    content: '';
    position: absolute;
    background: rgba(3, 96, 251, 0.3);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.home .content{
    z-index: 888;
    color: #fff;
    width: 70%;
    margin-top: 50px;
    display: none;
}

.home .content.active{
    display: block;  
}

.home .content h1{
    font-size: 4em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 75px;
    margin-bottom: 40px;
}

.home .content h1 span{
    /* font-size: 1.2em; */
    font-weight: 600;
}

.home .content p{
    margin-bottom: 65px;
}

.home .content a{
    background: #fff;
    padding: 15px 35px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    border-radius: 2px;
}

.home .media-icons{
    z-index: 888;
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;
}

.home .media-icons a{
    color: #fff;
    font-size: 1.6em;
    transition: 0.3s ease;
}

.home .media-icons a:not(:last-child){
    margin-bottom: 20px;
}

.home .media-icons a:hover{
    transform: scale(1.3); 
}

.home video{
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-navigation{
    z-index: 888;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80pz);
    margin-bottom: 12px;
}

.slider-navigation .nav-btn{
    width: 12px; 
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
}

.slider-navigation .nav-btn.active{
    background: #2696E9;
}

.slider-navigation .nav-btn:not(:last-child){
    margin-right: 20px;
}

.slider-navigation .nav-btn:hover{
    transform: scale(1.2);
}

.video-slid{
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
} 

.video-slid.active{
    clip-path: circle(150% at 0 50%);
    transition: 2s ease;
    transition-property: clip-path;
}

@media (max-width: 1040px){
    header{
        padding: 12px 20px;
    }

    section{
        padding: 100px 20px;
    }

    .home .media-icons{
        right: 15px;
    }

    header .navigation{
        display: none;
    }

    header .request-btn-sm{
        display: block;
    }

    header .request-btn-2{
        display: none;
    }

    header .navigation.active{
        position: fixed;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(1, 1, 1, 0.5);
    }

    header .navigation.active .navigation-items .dropdown-menu.show {
        background: white;
        max-width: 100%;
    }

    header .navigation .navigation-items a{
        color: #222;
        font-size: 1.2em;
        margin: 20px;
    }

    header .navigation .navigation-items a:before{
        background: #222;
        height: 5px; 
    }

    header .navigation.active .navigation-items{
        background: #fff;
        width: 600px;
        max-width: 600px;
        margin: 20px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        box-shadow: 0 5px 25px rgb(1 1 1 /20% ) ;
    }

    .menu-btn{
        display: flex;
        flex-direction: column;
        /* justify-content: left; */
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .menu-btn span{
        background: #fff;
        height: 5px;
        margin: 3px 0 3px auto;
        border-radius: 5px;
        transition: 0.3s ease;
        /* width: 100%; */
    }

    .menu-btn.black span {
        background: #000;
        /* width: 100%; */
    }

    .menu-btn.no-nav-image span {
        background: #000;
        /* width: 100%; */
    }

    .menu-btn .span1{
        width: 100%;
        transition: 0.5s ease;
    }

    .menu-btn .span2 {
        width: 75%;
        transition: 0.5s ease;
    }

    .menu-btn .span3 {
        width: 50%;
        transition: 0.5s ease;
    }

    .menu-btn.active{
        z-index: 999;
        content: '';
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: 0.5s ease;

    }

    .menu-btn.active span {
        margin: 0;
        transition: 0.5s ease;
    }

    .menu-btn.active .span1 {
        width: 100%;
        transform: rotate(-45deg);
        transition: 0.5s ease;
    }

    .menu-btn.active .span2 {
        width: 0;
        display: none;transition: 0.5s ease;
    }

    .menu-btn.active .span3 {
        width: 100%;
        transform: rotate(45deg);
        transition: 0.5s ease;
    }
}

@media (max-width: 600px) {
    .home .content h1 {
        font-size: 3em;
        letter-spacing: 2px;
        line-height: 60px;
    }
}

@media (max-width: 450px){
    .home .content h1 {
        font-size: 3em;
        line-height: 60px;
    }
}

@media (max-width: 400px) {
    .home .content h1 {
        font-size: 2.5em;
        letter-spacing: 0px;
        line-height: 50px;
    }
}

@media (max-width: 290px) {
    .home .content h1 {
        font-size: 2em;
        letter-spacing: 2px;
        line-height: 50px;
    }
    header .request-btn-sm {
        background: #fff;
        padding: 5px 15px;
        color: var(--primary-color);
        text-decoration: none;
        font-size: 0.8em;
        font-weight: 400;
        border-radius: 2px;
    }
    header.black .request-btn-sm{
        background: var(--primary-color);
        padding: 5px 15px;
        color: #ffff;
        text-decoration: none;
        font-size: .8em;
        font-weight: 400;
        border-radius: 2px;
    }
    .menu-btn {
        width: 30px;
    }
}

/* sweet alert */
.swal-text{
    text-align: center;
}
.swal-button-container{
    border: none;
    width: 100%;
}
.sweet-success{
    /* background-color: var(--primary-color); */
    background-color: #4BB543;
    border: none;
    width: 100%;
}
.sweet-danger{
    border: none;
    width: 100%;
}


/* footer */
.footer-area {
    position: relative;
    padding: 75px 0;
    overflow: hidden;
    background: url(../media/footer-area.png);
    background-size: cover;
}

.footer-area .footer-left .footer-brand{
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.footer-area .footer-left p {
    color: #fff;
    margin-top: 20px;
}

.footer-area .footer-left .footer-social {
    margin: 0;
    padding: 0;
}

.footer-area .footer-left .footer-social li {
    display: inline-block;
}

.footer-area .footer-left .footer-social li a {
    text-align: center;
    line-height: 35px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-right: 5px;
    color: #fff;
}

.footer-area .footer-left .footer-social li a i {
    font-size: 16px;
    font-size: 1.6em;
}

.footer-area .footer-left .footer-social li:hover {
    margin-top: -10px;
}

.footer-area .footer-content h2 {
    color: #fff;
    font-size: 25px;
}

.footer-area .footer-content ul {
    margin: 0;
    padding: 0;
}

.footer-area .footer-content ul li a {
    font-size: 16px;
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-top: 11px;
    position: relative;
}

.footer-area .footer-content ul li a::before {
    position: absolute;
    content: "";
    width: 0%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    bottom: -5px;
    left: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.footer-area .footer-content ul li a i {
    font-size: 9px;
    margin-right: 2px;
}

.footer-area .footer-content ul li a:hover:before {
    width: 100%;
}



/* hero-video-background */

.hero-video-background {
    position: relative;
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #2696E9;
}

.hero-video-background:before {
    z-index: 777;
    content: '';
    position: absolute;
    background: rgba(3, 96, 251, 0.3);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-video-background video{
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* hero text heading  */

.hero-heading-text{
    color: #fff;
    z-index: 990;
    text-transform: uppercase;
    font-size: 3.5em;
    font-weight: 900;
    letter-spacing: 5px;
}

@media (max-width: 600px) {
    .hero-heading-text{
        font-size: 3em;
        letter-spacing: 2px;
        line-height: 60px;
    }
}

@media (max-width: 450px) {
    .hero-heading-text{
        font-size: 3em;
        line-height: 60px;
    }
}

@media (max-width: 400px) {
    .hero-heading-text{
        font-size: 2.5em;
        letter-spacing: 0px;
        line-height: 50px;
    }
}

@media (max-width: 290px) {
    .hero-heading-text{
        font-size: 2em;
        letter-spacing: 2px;
        line-height: 50px;
    }
}


/* hero-img-background */
.hero-img-background {
    position: relative;
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #2696E9;
    /* background-image: url('../media/img-1.jpg');
    height: 50vh;
    background-repeat: no-repeat;
    background-position: center; */
}

.hero-img-background:before {
    z-index: 777;
    content: '';
    position: absolute;
    background: rgba(3, 96, 251, 0.3);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-img-background img {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blue-background-card{
    background: var(--primary-color);
    color: white;
}

.home-mini-titles {
    white-space: pre-wrap;
    font-weight: 600;
    font-size: 40px;
    color: black;
    /* border-bottom: 2px inset black; */
}

/* home how it works */

.step-no span{
    font-weight: 500;
    font-size: 20px;
}

.step-no h1{
    color: var(--primary-color);
    font-size: 80px;
    font-weight: 800;
}

/* home services */
.our-services-title{
    color: white;
}

.service-title{
    color: black;
    font-size: 20px;
    font-weight: 600;
}

/* home special offers */
.services-container {
    background: var(--primary-color);
    color: white;
}

.services-list{
    /* list-style-type: lower-roman; */
    list-style-type: none;
}

.services-list .tick{
    color: var(--primary-color);
    font-weight: 600;
    font-size: 20px;
}

.special-offers-title{
    font-size: 20px;
    /* font-weight: 600; */
}

.service-price{
    color: var(--primary-color);
}

/* home why section */

.why-us-title{
    color: var(--primary-color);
}

.why-us-card{
    background: transparent;
}

.why-us-card h3{
    color: #000;
    font-size: 22px;
}

.why-us-card p{
    font-size: 17px;
}

 /* home testimonial-container */
.testimonial-container{
    background: var(--primary-color);
    color: white;
}

.testimonial-container .fa-quote-left{
    font-size: 60px;
    font-weight: 800;
}

.testimonial-container h1{
    font-size: 65px;
    font-weight: 400;
    text-align: left;
    line-height: 70px;
    letter-spacing: 0px;
}

.testimonial-container p{
    font-size: 20px;
    color: whitesmoke;
    font-weight: 400;
    line-height: 30px;
}

.testimonial-container a{
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    position: relative;
}

.testimonial-container a::after{
    content: '';
    position: absolute;
    background: #fff;
    width: 50%;
    bottom: -5px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    transition: 0.5s;
}

.testimonial-container a:hover::after {
    width: 100%;
}

.testimonials p{
    color: gray;
    font-size: 18px;
}

.testimonials p .testimonial-quote{
    font-size: 30px;
    font-weight: 400;
}

.testimonials img{
    border-radius: 50%;
    max-width: 100%;
}

.testimonials .test-name{
    font-size: 25px;
    font-weight: bold;
    color: #000;
}

.carousel-indicators{
    position: relative;
    /* display: contents; */
}

.carousel .carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    cursor: pointer;
    background-color: var(--primary-color);
    background-clip: none;
    border: 0;
    border-top: 0;
    border-bottom: 0;
    opacity: 1;
    transition: .6s ease;
}

.carousel .carousel-indicators [data-bs-target].active {
    border-radius: 15px;
    width: 30px;
    height: 15px;
}
@media (max-width: 450px){
    .testimonial-container h1 {
        font-size: 45px;
        line-height: 60px;
    }
}

@media (max-width: 290px) {
    .testimonial-container .fa-quote-left {
        font-size: 40px;
        font-weight: 600;
    }

    .testimonial-container h1 {
        font-size: 30px;
        font-weight: 400;
        line-height: 50px;
    }

    .testimonial-container p {
        font-size: 16px;
        font-weight: 400;
        line-height: 30px;
    }

    .testimonial-container a {
        font-size: 18px;
        font-weight: 400;
    }
    .testimonials p {
        font-size: 14px;
    }

    .testimonials .test-proff{
        font-size: 12px;
    }

    .testimonials p .testimonial-quote {
        font-size: 20px;
        font-weight: 400;
    }
    .testimonials .test-name {
        font-size: 18px;
        font-weight: 600;
    }
}


/* home logos slider area */

.awards-and-recognition-title{
    font-size: 22px;
}

@keyframes slide{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

.logos-container{
    padding: 0;
}

.logos{
    overflow: hidden;
    padding: 60px 0;
    background: #fff;
    white-space: nowrap;
    position: relative;
}

.logos::before,
.logos::after{
    top: 0;
    position: absolute;
    height: 100%;
    width: 25%;
    content: '';
    z-index: 2;
}

.logos::before{
    background: linear-gradient(to left, rgba(255,255,255,0),white);
    left: 0;
}

.logos::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
    right: -1px;
}

.logos:hover .logos-slide{
    animation-play-state: paused;
}

.logos-slide{
    display: inline-block ;
    animation: 30s slide infinite linear;
}

.logos-slide img{
    height: 50px;
    margin: 0 40px;
}

/* home ready to get started section */
.ready-card{
    background: transparent;
}

/* home subscribe section */

.subscribe h3{
    font-size: 25px;
    font-weight: 500;
}

.subscribe input{
    height: 50px;
    font-size: 20px;
    background: transparent;
}

.subscribe .email-sub-btn{
    /* background: #2696E9; */
    background: var(--primary-color);
    color: #fff;
    display: inline-block;
    font-size: 20px;
    font-size: 400;
    border: none;
    transition: 0.5 ease;
}

.subscribe .email-sub-btn:hover{
    color: black;
}

.refer-friend-col{
    background: url(../media/footer-area.png);
    /* background-size: fill; */
    /* background-repeat: no-repeat; */
}

.refer-friend{
    color: #fff;
    font-size: 50px;
    text-decoration: none;
    font-weight: 600;
}

/* equal col heights */
.row.equal-cols {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row.equal-cols:before,
.row.equal-cols:after {
    display: block;
}

.row.equal-cols>[class*='col-'] {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.row.equal-cols>[class*='col-']>* {
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
/* equal col heights */


/* faq page */

.accordion{
    /* margin: 60px auto; */
    width: 100%;
    /* width: 600px; */
}

.accordion li{
    list-style: none;
    width: 100%;
    /* margin: 20px; */
    padding: 10px;
    border-radius: 8px;
    background: #e3edf7;
    box-shadow: 6px 6px 10px -1px rgba(0,0,0,0.15),
                -6px -6px 10px -1px rgba(255,255,255,0.7);
}

.accordion li .faq-label{
    display: flex;
    align-items: center;
    padding: 10px;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    max-width: 90%;
}

.faq-label::before{
    content: '+';
    right: 0;
    position: absolute;
    margin-right: 10px;
    font-size: 24px;
    font-weight: 600;
}

input[type="radio"]{
    display: none;
}

.accordion .content{
    color: #555;
    padding: 0 10px;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
}

input[type="radio"]:checked + .faq-label + .content{
    max-height: 400px;
    padding: 10px 10px 20px;
}

input[type="radio"]:checked+.faq-label::before{
    content: '-';
}

/* faq page */


/* refer a friend page */
.hero-img-background.full-height {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #2696E9;
    /* background-image: url('../media/img-1.jpg');
    height: 50vh;
    background-repeat: no-repeat;
    background-position: center; */
}

.refer-container{
    color: #fff;
    z-index: 990;
}

.referral-heading{
    letter-spacing: 2px;
}
/* refer a friend page */


/* all services */
/* .every-service-title{
    color: var(--primary-color);
} */
/* all services */


/* contact page */
.sub-btn{
    background: var(--primary-color);
    color: white;
}
/* contact page */


/* send mail page */
#div_id_message{
    display: flex;
    flex-direction: column;
}