@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Marcellus&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Oswald:wght@200..700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

:root {
    --theme-color: #E8D90E;
    --lato-family: "Lato", serif;
    --outfit-family: "Outfit", sans-serif;
    --oswald-family: "Oswald", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: var(--lato-family);
    background: #fff;
    overflow-x: hidden;
}

p {
    margin-bottom: 0px;
}

html {
    scroll-behavior: smooth;
}

.owl-theme .owl-dots {
    display: none;
}

.owl-theme .owl-nav {
    display: block !important;
}

::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #666;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ccc;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.btn:focus {
    box-shadow: none !important;
    border: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-close:focus {
    box-shadow: none;
}

.btn:hover {
    color: #fff !important;
}

.accordion-button:focus {
    box-shadow: none;
}

a {
    color: #000;
    text-decoration: none;
}

ul,
ol {
    padding-left: 0px;
    list-style-type: none;
}

a:hover {
    color: initial;
}

input:focus,
select:focus,
textarea:focus {
    box-shadow: none !important;
}

.flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

/*.full-width {
width: 100% !important;
}*/
.container {
    max-width: 95%;
}

.web-view {
    display: block;
}

.mobile-view {
    display: none;
}

.vertical-space-2 {
    height: 10px;
}

.vertical-space-5 {
    display: inline-block;
    width: 100%;
    height: 5px;
}

.vertical-space-8 {
    display: inline-block;
    width: 100%;
    height: 8px;
}

.vertical-space-10 {
    display: inline-block;
    width: 100%;
    height: 10px;
}

.vertical-space-12 {
    display: inline-block;
    width: 100%;
    height: 12px;
}

.vertical-space-15 {
    display: inline-block;
    width: 100%;
    height: 15px;
}

.vertical-space-20 {
    display: inline-block;
    width: 100%;
    height: 20px;
}

.vertical-space-30 {
    display: inline-block;
    width: 100%;
    height: 30px;
}

.vertical-space-40 {
    display: inline-block;
    width: 100%;
    height: 40px;
}

.vertical-space-50 {
    display: inline-block;
    width: 100%;
    height: 50px;
}

.vertical-space-60 {
    display: inline-block;
    width: 100%;
    height: 60px;
}

.vertical-space-65 {
    display: inline-block;
    width: 100%;
    height: 65px;
}

.vertical-space-70 {
    display: inline-block;
    width: 100%;
    height: 70px;
}

.vertical-space-80 {
    display: inline-block;
    width: 100%;
    height: 80px;
}

.vertical-space-90 {
    display: inline-block;
    width: 100%;
    height: 90px;
}

.vertical-space-100 {
    display: inline-block;
    width: 100%;
    height: 100px;
}

.vertical-space-120 {
    display: inline-block;
    width: 100%;
    height: 120px;
}

.vertical-space-150 {
    display: inline-block;
    width: 100%;
    height: 150px;
}

.fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999;
    border-radius: 0px !important;
    background: #fff !important;
    transition: 0.5s all;
    animation: swip_down .5s linear 1;
    -webkit-box-shadow: 0 3px 5px rgba(106, 113, 124, 0.3);
    -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}

@keyframes swip_down {
    from {
        transform: translate(0px, -50px);
        opacity: 0
    }

    to {
        transform: translate(0, 0);
        opacity: 1
    }
}

.main-btn {
    position: relative;
    font-size: 16px;
    line-height: 20px;
    border-radius: 0px;
    padding: 14px 60px 14px 30px;
    border: none;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #000;
    background-color: var(--theme-color);
    -webkit-clip-path: polygon(0 0, 100% 0, 89% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 89% 100%, 0 100%);
    transition: all 300ms ease;
    z-index: 1;
}
.main-btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: 25px;
    width: 7px;
    height: 100%;
    -webkit-transform: skewX(-21deg);
    -moz-transform: skewX(-21deg);
    -ms-transform: skewX(-21deg);
    transform: skewX(-21deg);
    background-color: #fff;
    transition: all 300ms ease;
    z-index: 1;
}
.main-btn:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: var(--theme-color);
    transition: all 300ms ease;
    z-index: -1;
}
.main-btn span {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
}
.main-btn:hover , .main-btn:focus{
    background: var(--theme-color) !important;
    color: #000 !important;
}

.top-header {
    background:var(--theme-color);
    font-family: var(--fira-sans-family);
    padding: 10px 0px;
}
.top-header .top-header-left ul {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0px;
}
.top-header .top-header-left ul li{
    margin-right: 25px;
    position: relative;
}
.top-header .top-header-left ul li:not(:last-child):after{
    content: "";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background: #00000090;
}
.top-header .top-header-left .top-header-link{
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #000;
}
.top-header .top-header-right .desc-link{
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
}
.top-header .top-header-right .desc-link li{
    margin-left: 25px;
    position: relative;
}
.top-header .top-header-right .desc-link li:not(:last-child):after{
    content: "";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background: #fff;
}
.top-header .top-header-right .top-header-link{
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #000;
}
.top-header .top-header-left .top-header-link i{
    color: #000;
    font-size: 14px;
    margin-right: 10px;
}
.top-header .social-icon{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0px;
}
.top-header .social-icon li{
    margin-left: 15px;
}
.top-header .social-icon li a i{
    color: #fff;
    font-size: 13px;
    margin-right: 3px;
}
.top-header .follow-link{
    padding: 0px 20px;
    font-size: 14px;
    color: #fff;
}
.main-section{
    background-color: #fff;
    background-image: url(../images/216.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100vh;
    z-index: 0;
}
.main-header .navbar{
    padding:  10px 0px;
    width: 100%;
    position: relative;
    z-index: 1020;
     font-family: var(--fira-sans-family);
    
}
.main-header .navbar .navbar-collapse{
    position: relative;
}
.main-header .navbar-brand img{
    width: 130px;
}
.main-header .navbar .nav-link{
    font-size: 16px;
    color: #000;
    padding: 20px 0px;
    position: relative;
    font-weight: 500;
    position: relative;
}
.main-header .navbar li.dropdown .nav-link:after {
    position: absolute;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    margin-left: 4px;
    margin-top: 7px;
    opacity: .9;
    color: var(--main-color);
}
.main-header .navbar .nav-link:hover , .main-header .navbar .nav-link.active{
    color: var(--theme-color);
}
.main-header .navbar .nav-item{
    padding-left:45px;
}
.main-header .navbar .main-header-contact .icon{
    font-size: 24px;
    color: #8a8a8a;
    text-align: left;
}
.main-header .navbar .main-header-contact ul{
    margin-bottom: 0px;
    display: flex;
    justify-content: end;
}
.main-header .navbar .main-header-contact ul li{
    padding:0px 25px;
    position: relative;
}
.main-header .navbar .main-header-contact ul li:last-child{
    padding-left: 25px;
    padding-right: 0px;
}
.main-header .navbar .main-header-contact ul li:not(:last-child):after{
    content: "";
    position: absolute;
    width: 1px;
    height: 26px;
    background: #d5dce4;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
}
.main-header .navbar .main-header-contact .contact-text{
    font-size: 15px;
    color: var(--theme-color);
    font-weight: 500;
}
.main-header .navbar .main-header-contact .phone-number{
    font-size: 16px;
    color: #000;
    font-weight: 400;
}
.main-header .navbar .main-header-contact .icon{
    margin-right: 10px;
    color: var(--theme-color);
    text-align: center;
    width: 45px;
    height: 45px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
}
.main-header .navbar .main-header-contact .text{
    float: right;
}
.main-header .navbar .nav-item.dropdown .dropdown-toggle::after{
    border: none;
}
.main-header .navbar .nav-item  .dropdown-menu{
     border: none;
     border-top: 3px solid var(--main-color);
    border-radius: 0px;
    background: #fff;
    padding: 0px 10px;
    max-width: 100%;
    box-shadow: 0 3px 25px 0 rgba(0,0,0,.07),0 0 0 rgba(0,0,0,.1) inset;
}
.main-header .navbar .dropdown .dropdown-menu .dropdown-item{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    display: block;
    padding: 12px 20px;
    text-align: left;
    color: #000;
    border-top: 1px solid rgba(0,43,92,.04);
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    background: transparent;
}

.main-header .navbar .dropdown .dropdown-menu .dropdown-item:hover{
    color: var(--main-color)!important;
}
.main-header .navbar .dropdown:hover > ul.dropdown-menu{
    display: block !important;
    animation: swip_left .5s linear 1;
}

.main-header .navbar .dropdown .dropdown-menu li:last-child{
    border-bottom: none;
}
.main-header .navbar  .social ul li {
    list-style-type: none;
    padding-left: 8px;
    color: #666;
}
.main-header .navbar  .social ul {
    display: flex;
    padding-left: 0px;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
    margin-bottom: 0px;
}
.main-header .navbar  .social a {
    color: #444;
    text-align: center;
    font-size: 14px;
    padding: 10px 10px;
    border: 1px solid #444;
    text-align: center;
    border-radius: 0px;
        margin:0px 5px 0px 0px;
}
@keyframes bg-anim {
    0% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
        opacity: 1
    }

    80% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
        opacity: 1
    }

    to {
        opacity: 0
    }
}
.main-header .navbar  .social a {
    cursor: pointer;
}
.main-header .navbar  .social i:hover{
    color: #3F4096;
}
@keyframes swip_left {
    from {
        transform: translate(0px, 50px);
        opacity: 0
    }

    to {
        transform: translate(0,0);
        opacity: 1
    }
}
.header-btn{
    background: var(--main-color);
    padding: 10px 25px;
    color: #fff;
    font-size: 15px;
    border: none;
    margin-bottom: 25px;
}
.header-btn:hover , .header-btn:focus{
    background: var(--main-color);
    color: #fff;
}
.banner{
    position: relative;
    overflow: hidden;
    padding: 50px 0px;
    background: url(../images/banner.webp);
    background-size: cover;
}

.banner-subtitle{
     font-size: 14px;
    font-weight: 400;
    color: var(--theme-color);
    margin-bottom: 15px;
    position: relative;  
    padding-left: 20px; 
    letter-spacing: 2px;
    display: inline-block;
    text-transform: uppercase;
}
.banner-subtitle::after{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform:translateY(-50%) skew(-200deg);
  -moz-transform:translateY(-50%) skew(-200deg);
  transform:translateY(-50%) skew(-200deg);
    width: 8px;
    background: var(--theme-color);
    height: 15px;
}
.banner  .banner-title{
    font-size: 40px;
    font-weight: 700;
    color: #000;
    line-height: 55px;
    text-transform: uppercase;
    margin-bottom: 15px;   
    font-family: var(--oswald-family);
}

.banner  .banner-text{
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 28px;
    margin-bottom: 15px;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.banner .img-box img{
    max-width: 100%;
    mix-blend-mode: multiply;
}





.about-detail{
    padding: 50px 0px;
    position: relative;
}

.about-detail img{
    width: 100%;
}
.about-detail .img-box{
    position: relative;
    text-align: center;
    padding: 20px;
}




.about-detail .about-content{
    position: relative;
}
.about-detail .about-subtitle{
    font-size: 14px;
   font-weight: 400;
   color: var(--theme-color);
   margin-bottom: 15px;
   position: relative;  
   padding-left: 20px; 
   letter-spacing: 2px;
   display: inline-block;
   text-transform: uppercase;
}
.about-detail .about-subtitle::after{
   content: "";
   position: absolute;
   left: 0;
   top: 50%;
   -webkit-transform:translateY(-50%) skew(-200deg);
 -moz-transform:translateY(-50%) skew(-200deg);
 transform:translateY(-50%) skew(-200deg);
   width: 8px;
   background: var(--theme-color);
   height: 15px;
}
.about-detail .about-title{
    font-size: 40px;
    color: #000;
     font-family: var(--oswald-family);
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: capitalize;
}
.about-detail .about-text{
    font-size: 16px;
    color: #666;
    line-height: 28px;
    margin-bottom: 15px;
}
.about-detail .about-list{
    margin-top: 35px;
}
.about-detail .about-list li{
    font-size: 16px;
    color: #666;
    line-height: 28px;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}
.about-detail .about-list li::after{
    content: "\f101";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    color: var(--main-color);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.about-detail .about-divider{
    margin-top: 25px;
}
.about-detail .about-divider .divide-box .icon img{
    width: 60px;
}
.about-detail .about-divider .divide-box .title{
    font-size: 20px;
    color: #1a1a1a;
    font-family: var(--rajdhani-family);
    margin-bottom: 0px;
    font-weight: 800;
    text-transform: capitalize;
}


.our-service{
    padding: 50px 0px;
    background: #f9f9f9;
}
.our-service .service-subtitle{
    font-size: 14px;
   font-weight: 400;
   color: var(--theme-color);
   margin-bottom: 15px;
   position: relative;  
   padding-left: 20px; 
   letter-spacing: 2px;
   display: inline-block;
   text-transform: uppercase;
}
.our-service .service-subtitle::after{
   content: "";
   position: absolute;
   left: 0;
   top: 50%;
   -webkit-transform:translateY(-50%) skew(-200deg);
 -moz-transform:translateY(-50%) skew(-200deg);
 transform:translateY(-50%) skew(-200deg);
   width: 8px;
   background: var(--theme-color);
   height: 15px;
}
.our-service .service-title{
    font-size: 40px;
    color: #000;
     font-family: var(--oswald-family);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: capitalize;
}
.our-service .service-text{
    font-size: 16px;
    color: #666;
    line-height: 28px;
    margin-bottom: 15px;
}

.our-service .service-list .service-box{
    background:#fff url(../images/why-choose__item-two-overly.png);
    background-size: cover;
    background-position: right;
    padding: 25px;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.our-service .service-list .service-box::after{
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    background: var(--theme-color);
    transition: 0.7s all;
}
.our-service .service-list .service-box:hover::after{
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    border-radius: 5px;
}

.our-service .service-list .service-box:hover .icon img{
    filter: brightness(0);
}
.our-service .service-list .service-box .content{
    position: relative;
    z-index: 1;
}
.our-service .service-list .service-box .icon{
    text-align: center;
    margin-bottom: 20px;
}
.our-service .service-list .service-box .icon img{
    width: 70px;
    transition: 0.8s all;
}
.our-service .service-list .service-box .card-title{
    text-align: center;
     margin-bottom: 10px;
}
.our-service .service-list .service-box .card-title a{
    font-size: 20px;
    color: #000;
     font-family: var(--oswald-family);
     display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: capitalize;
    text-align: center;
    transition: 0.8s all;
}
.our-service .service-list .service-box .card-text{
    font-size: 16px;
    color: #666;
    line-height: 28px;
    margin-bottom: 15px;
       text-align: center;
       transition: 0.8s all;
       display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.content-detail{
    padding: 50px 0px 150px;
}
.content-detail .content-subtitle{
    font-size: 14px;
   font-weight: 400;
   color: var(--theme-color);
   margin-bottom: 15px;
   position: relative;  
   padding-left: 20px; 
   letter-spacing: 2px;
   display: inline-block;
   text-transform: uppercase;
}
.content-detail .content-subtitle::after{
   content: "";
   position: absolute;
   left: 0;
   top: 50%;
   -webkit-transform:translateY(-50%) skew(-200deg);
 -moz-transform:translateY(-50%) skew(-200deg);
 transform:translateY(-50%) skew(-200deg);
   width: 8px;
   background: var(--theme-color);
   height: 15px;
}
.content-detail .content-title{
    font-size: 40px;
    color: #000;
     font-family: var(--oswald-family);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: capitalize;
}
.content-detail  .border-bt{
    position: relative;
}
.content-detail  .border-bt:not(:last-child):after{
    content: "";
    position: absolute;
    bottom: -15px;
    transform: translateX(-50%);
    left: 50%;
    width: 90%;
    height: 1px;
    background: #efefef;
    z-index: 1;
}
.content-detail .content-box img{
    width: 100%;
    padding:0px 20px;
}
.content-detail .content-box .box-title {
    font-size: 20px;
    color: #000;
     font-family: var(--oswald-family);
     display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: capitalize;
    transition: 0.8s all;
}
.content-detail .content-box .box-text{
    font-size: 16px;
    color: #666;
    line-height: 28px;
    margin-bottom: 0px;
       transition: 0.8s all;
       display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.content-detail .img-section{
    margin-right: 50px;
    position: relative;
    z-index: 0;
    text-align: center;
    background: url(../images/about-image-bg.svg);
    background-size: contain;
}


.content-detail .img-section .img-box{
    width: 100%;
}
.content-detail .img-section .img-box .img-1{
    width: 70%;
    max-width: 100%;
    border-radius: 200px;
    position: relative;
}
.content-detail .img-section .img-box .img-1::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    outline: 1px solid var(--theme-color);
    outline-offset: 5px;
}
.content-detail .img-section .img-box .img-2{
    position: absolute;
    right: -50px;
    top: 150px;
    width: 250px;
    max-width: 100%;
    border-radius: 200px;
    border: 10px solid #fff;
}
.content-detail .content-text{
    font-size: 16px;
    font-weight: 500;
    color: #676767;
    line-height: 28px;
    margin-bottom: 15px;
}
.content-detail .content-list li{
    font-size: 16px;
    font-weight: 500;
    color: #676767;
    line-height: 28px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}
.content-detail .content-list li::after{
    content: "\f101";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--theme-color);
}
.content-detail .img-section .shape-01{
    position: absolute;
    top: 10%;
    right: -40px;
    z-index: -1;
}
.content-detail .img-section .shape-02{
    position: absolute;
    left: 30%;
    bottom: -40px;
    z-index: -1;
}


.counter-section{
    padding: 80px 0px 30px;
}
.counter-section .counter-box{
    padding: 30px;
    text-align: center;
}
.counter-section  .border-rt{
    position: relative;
}
.counter-section  .border-rt:not(:last-child):after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    width: 26px;
    height: 54px;
    background-image: url(../images/icon-line.png);
    z-index: 1;
}
.counter-section .counter-box .counter-icon{
    width: 100px;
    margin: 0 auto 25px;
    position: relative;
    z-index: 0;
}
.counter-section .counter-box .counter-icon:after{
    content: "";
    position: absolute;
    right: -20px;
    top: -20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--theme-color);
    z-index: -1;
}
.counter-section .counter-box .counter-icon img{
    width: 100px;
}
.counter-section .counter-box .counter-number{
    font-size: 60px;
    font-family: var(--oswald-family);
    margin-bottom: 15px;
}
.counter-section .counter-box .counter-text{
    font-size: 18px;
    font-weight: 500;
    color: #676767;
    line-height: 28px;
    margin-bottom: 0px;
}


.testimonial{
    padding: 50px 0px 100px;
    position: relative;
 }
 .testimonial .testimonial-subtitle{
    font-size: 14px;
   font-weight: 400;
   color: var(--theme-color);
   margin-bottom: 15px;
   position: relative;  
   padding-left: 20px; 
   letter-spacing: 2px;
   display: inline-block;
   text-transform: uppercase;
}
.testimonial .testimonial-subtitle::after{
   content: "";
   position: absolute;
   left: 0;
   top: 50%;
   -webkit-transform:translateY(-50%) skew(-200deg);
 -moz-transform:translateY(-50%) skew(-200deg);
 transform:translateY(-50%) skew(-200deg);
   width: 8px;
   background: var(--theme-color);
   height: 15px;
}
 .testimonial .testimonial-title{
     font-size: 40px;
     color: #000;
      font-family: var(--oswald-family);
     margin-bottom: 15px;
     text-transform: capitalize;
 }
 .testimonial .testimonial-card{
     border: 1px solid #ddd;
     padding: 25px;
     margin: 2px;
     width: 100%;
     height: 100%;
 }
 .testimonial .testimonial-card .icon img{
    position: absolute;
    bottom: 20px;
    right: 30px;
     opacity: 0.5;
     width: 50px;
 }
 .testimonial .testimonial-card .card-text{
     font-size: 16px;
     color: #676767;
     line-height: 28px;
 }
 .testimonial .testimonial-card .card-title{
     color: #000;
     font-size: 16px;
     margin-top: 35px;
     text-transform: uppercase;
 }
 .testimonial .testimonial-card .card-subtitle{
     color: var(--main-color);
     font-size: 13px;
     margin-top: 10px;
     font-weight: 400;
 }
 .testimonial .testimonial-slider .owl-nav{
     display: none;
 }
 .testimonial .testimonial-slider .owl-dots {
     display: block;
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
     margin-top: 20px;
 }
 .testimonial .testimonial-slider .owl-dots .owl-dot span {
     width: 5px;
     height:5px;
     margin: 5px 7px;
     background:#ddd;
     display: block;
     box-shadow: inset 0 0 3px rgb(0 0 0 / 30%);
     transition: opacity 0.2s ease;
     border-radius: 0px;
     padding: 2px;
     position: relative;
 }
 .testimonial .testimonial-slider .owl-dots .owl-dot.active span{
     background: var(--main-color);
 }
 .testimonial .testimonial-slider .owl-dots .owl-dot.active span:after{
     content: "";
     width: 11px;
     height: 11px;
     left: -3px;
     top: -3px;
     position: absolute;
     background: transparent;
     border: 1px solid var(--main-color);
 }
 
 

 
 
 .get-touch{
     background: url(../images/get-quote.jpg);
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center;
     width: 100%;
     padding: 60px 0px;
     height: 100%;    
     position: relative;
 }
 .get-touch::after{
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: #000000b8;
 }
 .get-touch .get-touch-left{
     padding: 30px;
 }
 .get-touch h4{
     font-size: 40px;
     color: #fff;
     font-family: var(--oswald-family);
     position: relative;
     z-index: 1;
     
 }
 .get-touch p{
     font-size: 15px;
     color: #fff;
     position: relative;
     z-index: 1;
     font-weight: 400;
     line-height: 28px;
 }
 .get-touch .get-contact {
  display: flex;
  align-items: center;
  margin-top: 25px;
 }
 .get-touch .get-contact .contact-text{
     font-size: 20px;
     color: var(--theme-color);
     font-family: var(--oswald-family);
 }
 .get-touch .get-contact .phone-number{
     font-size: 15px;
     color: #fff;
     font-weight: 400;
 }
 .get-touch .get-contact .icon{
     margin-right: 20px;
     color: #fff;
     text-align: center;
     font-size: 35px;
     float: left;
     position: relative;
     z-index: 1;
 }
 .get-touch .get-contact .icon i{
     position: relative;
 }
 .get-touch .get-contact .icon::before {
     content: "";
     position: absolute;
     left: -16px;
     top: 5px;
         background: hsla(0, 0%, 100%, .2);;
     width: 45px;
     height: 45px;
     line-height: 48px;
     border-radius: 50%;
     z-index: 0;
 }
 .get-touch .get-contact .text{
     float: right;
 }
 .get-touch .get-touch-form{
     background: #fff;
     padding:50px 30px;
     position: relative;
     z-index: 1;
     margin-bottom: -150px;
     box-shadow: 0px 10px 30px rgba(4, 33, 63, 0.05);
 }
 .get-touch .get-touch-form .subtitle{
     font-size: 14px;
     color: #000;
     letter-spacing: 1.8px;
     font-weight: 700;
     margin-bottom: 20px;
     text-transform:uppercase ;
 }
 .get-touch .get-touch-form .title{
     font-size: 30px;
     color: #000;
     font-weight: 700;
     letter-spacing: -1.8px;
 }
 .get-touch .get-touch-form input , .get-touch .get-touch-form  select , .get-touch .get-touch-form  textarea{
     border: 1px solid #efefef;
     border-radius: 6px;
     font-size: 15px;
     padding: 12px 20px;
     color: #6e7879;
     width: 100%;
 }

 .app-section{
    padding: 50px 0px 50px;
    position: relative;
    overflow: hidden;
}
.app-section .app-box{
    background: url(../images/blog2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    padding:0px 50px;
    z-index: 0;
}
.app-section .app-box::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    z-index: -2;
}
.app-section .app-box::before{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width:40%;
    background: var(--theme-color);
    max-width: 100%;
    clip-path: polygon(21% 0, 100% 0%, 100% 100%, 0% 100%);
    z-index: -1;
}
.app-section .book-img{
    position: absolute;
    left: 0;
    top: 0;
    width: 327px;
}
.app-section .app-img{
    width: 100%;
    margin-left: auto;
}
.app-section .app-title{
    font-size: 50px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    font-family: var(--oswald-family);
}
.app-section .app-text{
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 25px;
    margin-bottom: 25px;
}
.app-section .media-img{
    display: flex;
    margin-top: 15px;
}
.app-section .media-img li{
    margin-right: 15px;
}
.app-section .media-img li img{
    width: 179px;
    height: 60px;
}

.terms-conditions{
    padding: 50px 0px;
}
.terms-conditions h2{
    font-size: 40px;
    color: #000;
     font-family: var(--oswald-family);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: capitalize;
}
.terms-conditions p{
    font-size: 16px;
    color: #666;
    line-height: 28px;
    margin-bottom: 15px;
}
.terms-conditions ul li{
    font-size: 16px;
    font-weight: 500;
    color: #676767;
    line-height: 28px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}
.terms-conditions ul li::after{
    content: "\f101";
    position: absolute;
    left: 0px;
    top: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--theme-color);
}


 .footer{
    background:  #000;
   position: relative;
    padding: 50px 0 0;
    z-index: 0;
}
.footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/footer.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: .05;
    z-index: -1;
}
.footer .footer-title{
    color: #fff;
font-family: var(--outfit-family);
font-size: 40px;
font-weight: 500;
margin-bottom: 25px;
text-transform: capitalize;
}

.footer .footer-text{
font-size: 16px;
line-height: 28px;
color: #a1a1a1;
font-weight: 400;
margin-bottom: 0px;
}
.subcribe-form .form-control{
    padding: 10px;
}
.footer .footer-top{
    padding-bottom: 15px;
    border-bottom: 1px solid #ffffff21;
}
.footer .link-desc{
    padding: 0px 0px 30px;
    border-bottom: 1px solid #ffffff21;
}
.footer .logo img{
    width: 150px;
    /*filter: brightness(0) invert(1);*/
}
.footer .link-desc .footer-text{
    font-size: 15px;
    color: #a1a1a1;
    line-height: 28px;
    margin-bottom: 0px;
}
.footer .footer-address-list{
    margin-top: 15px;
}
.footer .footer-address-list li{
  margin-bottom: 25px;
}
.footer .footer-address-list li a{
    font-size: 15px;
    color: #a1a1a1;
    line-height: 28px;
    margin-bottom: 0px;
}

.footer .footer-address-list li a i{
    margin-right: 10px;
}
.footer-list li{
    margin-bottom: 15px;
}
.footer .link-desc .footer-title{
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 20px;
    position: relative;
    display: inline-block;
    z-index: 0;
}
.footer .link-desc .footer-title::before{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0;
    height: 2px;
    width: 20px;
    background: var(--theme-color); 
    border-radius: 0px;
    z-index: -1;
}
@keyframes movingSiede {
    0% {
        left: 10%;
    }

    50% {
        left: 50%;
    }
    
    100% {
        left: 10%;
    }
}
.footer-list li .footer-link{
    font-size: 15px;
    color: #a1a1a1;
    line-height: 28px;
    margin-bottom: 0px;
}
.footer .footer-contact-list li{
  margin-bottom: 15px;
}
.footer .footer-contact-list li h6{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}
.footer .footer-contact-list li h6 i{
    margin-right: 10px;
}
.footer .footer-contact-list li a{
    font-size: 15px;
    color: #a1a1a1;
    line-height: 28px;
    margin-bottom: 0px;
}
.coypright-text{
    font-size: 15px;
    color: #a1a1a1;
    line-height: 28px;
    margin-bottom: 0px;
}
.coypright-text a{
    color: #fff;
}
.footer .footer-contact-list li a i{
    margin-right: 10px;
}
.footer .footer-bottom{
    padding-top: 15px;
}
.footer .social-icon ul li {
    list-style-type: none;
    padding-left: 8px;
}
.footer .social-icon {
    display: flex;
    padding-left: 0px;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
    margin-bottom: 0px;
}
.footer .social-icon a {
    color: #a1a1a1;
    text-align: center;
    font-size: 15px;
    padding: 10px;
    border: 1px solid #ffffff21;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:0px 8px 0px 0px;
}
.footer .social-icon a {
    cursor: pointer;
}
.footer .social-icon i:hover{
    color: #fff;
    border: 1px solid #fff;
}

.float{
	position:fixed;
	width:55px;
	height:55px;
	bottom:20px;
    line-height: 55px;
	left:20px;
	background-color:#25d366;
	color:#FFF !important;
	border-radius:50px;
	text-align:center;
  font-size:20px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  z-index:100;
}

.float .my-float{
	margin-top:16px;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 14px;
    border: none;
    outline: none;
    background-color: var(--theme-color);
    color: #fff;
    cursor: pointer;
    width: 50px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
}

#myBtn::after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

#myBtn:hover {
    background-color: var(--theme-color);
}

@media (min-width:2000px) {}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .web-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    .mobile-header {
        padding: 10px 0px;
        background: #fff;
    }

    .mobile-header .logo img {
        width: 80px;
    }

    
    .mobile-header .offcanvas {
        width: 360px;
    }

    .mobile-header .offcanvas .logo img {
        width: 160px;
    }

    .toggler {
        color: var(--theme-color);
        font-size: 30px;
        border: none;
        text-align: center;
        padding: 0px;
    }

    .toggler:focus,
    .toggler:hover {
        color: var(--theme-color);
        background: transparent;
    }

    .mobile-header .social ul {
        justify-content: flex-start;
    }

    .mobile-header .offcanvas-body {
        line-height: initial;
    }
    .banner .banner-title , .get-touch h4, .testimonial .testimonial-title, .about-detail .about-title , .our-service .service-title , .app-section .app-title , .content-detail .content-title{
        font-size: 30px;
        line-height: 40px;
    }
    .app-section .media-img li img{
        width: 130px;
        height: auto;
    }
    .app-section .app-box::before{
        display: none;
    }
    .content-detail{
        padding: 50px 0px 250px;
    }
    .testimonial{
        padding: 150px 0px 50px;
    }
    .app-section{
        padding: 0px;
    }
    .app-section .app-box{
        padding: 30px;
    }

}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
    .web-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    .mobile-header {
        padding: 10px 0px;
        background: #fff;
    }

    .mobile-header .logo img {
        width: 80px;
    }

    
    .mobile-header .offcanvas {
        width: 360px;
    }

    .mobile-header .offcanvas .logo img {
        width: 160px;
    }

    .toggler {
        color: var(--theme-color);
        font-size: 30px;
        border: none;
        text-align: center;
        padding: 0px;
    }

    .toggler:focus,
    .toggler:hover {
        color: var(--theme-color);
        background: transparent;
    }

    .mobile-header .social ul {
        justify-content: flex-start;
    }

    .mobile-header .offcanvas-body {
        line-height: initial;
    }
    .banner .banner-title , .get-touch h4, .testimonial .testimonial-title, .about-detail .about-title , .our-service .service-title , .app-section .app-title , .content-detail .content-title{
        font-size: 30px;
        line-height: 40px;
    }
    .app-section .media-img li img{
        width: 130px;
        height: auto;
    }
    .app-section .app-box::before{
        display: none;
    }
    .content-detail{
        padding: 50px 0px 250px;
    }
    .testimonial{
        padding: 150px 0px 50px;
    }
    .app-section{
        padding: 0px;
    }
    .app-section .app-box{
        padding: 30px;
    }

}

@media only screen and (max-width: 575.98px) {
    .web-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    .mobile-header {
        padding: 10px 0px;
        background: #fff;
    }

    .mobile-header .logo img {
        width: 80px;
    }

    
    .mobile-header .offcanvas {
        width: 360px;
    }

    .mobile-header .offcanvas .logo img {
        width: 160px;
    }

    .toggler {
        color: var(--theme-color);
        font-size: 30px;
        border: none;
        text-align: center;
        padding: 0px;
    }

    .toggler:focus,
    .toggler:hover {
        color: var(--theme-color);
        background: transparent;
    }

    .mobile-header .social ul {
        justify-content: flex-start;
    }

    .mobile-header .offcanvas-body {
        line-height: initial;
    }
    .banner .banner-title , .get-touch h4, .testimonial .testimonial-title, .about-detail .about-title , .our-service .service-title , .app-section .app-title , .content-detail .content-title{
        font-size: 30px;
        line-height: 40px;
    }
    .app-section .media-img li img{
        width: 130px;
        height: auto;
    }
    .app-section .app-box::before{
        display: none;
    }
    .content-detail .content-box img{
        padding: 0px;
    }
    .content-detail{
        padding: 50px 0px 250px;
    }
    .testimonial{
        padding: 150px 0px 50px;
    }
    .app-section{
        padding: 0px;
    }
    .app-section .app-box{
        padding: 30px;
    }
}