

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
    *{
        margin: 0;
        padding: 0;
    }
    html{
        scroll-behavior: smooth;
    }
    body {
        
        font-family: "Urbanist", sans-serif;
        font-size: 16px;
        line-height: 26px;
        font-weight: 400;
        color: #777777;
    }

    a,
    img {
        text-decoration: none;
        outline: none;
        border: none;
        max-width: 100%;
    }
    
    a,
    .btn,button,input {
        transition: all .3s;
        outline: medium none; 
      
    }

    .btn:focus,
.form-control:focus {
    box-shadow: none;
}

 :focus {
    outline: 0 !important;
    text-decoration: none; 
}

a,
a:hover,
a:focus,
a:active {
    
    outline: 0px;

    text-decoration: none; 
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6{  margin-bottom: 0px;  line-height: 1.2;}
h1 { font-size: 75px; line-height: 1.4; text-transform: uppercase; color: white;font-weight: 900;}
h2 { font-size: 48px; line-height: 58px;color: #0d003b;font-weight: 700; }
h3 { font-size: 34px; line-height: 44px;color: #0d003b;font-weight: 700; }
h4 { font-size: 24px; line-height: 25px;color: #0d003b; font-weight: 600;}
h5 { font-size: 19px; line-height: 23px;color: #0d003b; font-weight: 700;}
h6 { font-size: 16px; line-height: 18px;color: #0d003b;font-weight: 700;}
strong{ 
    font-weight: 700;
  }

section {
    overflow: hidden;
    position: relative;
}

.section-title h2 {
    
    margin-bottom: 18px;
}
.section-title{
    margin-bottom:40px ;
}
.section-title span{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #f15523;
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 0 32px;
}
.section-title span::before,.section-title span::after{
    content: '';
    position: absolute;
    background-image: url('../images/title-shape.png');
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center center;
    width: 28px;
    height: 28px;
    top: -3px;
}
.section-title span::before{
    left: 0;
}
.section-title span::after{
    right: 0;
}

.section-title h2:last-child {
    margin-bottom: 0;
}

p:last-child,p {
    margin-bottom: 0;
}

figure {
    margin: 0;
}

img {
    object-fit: cover;
    object-position: center center;
}


.btn {
   
    text-transform: uppercase;
   
    text-align: center;
    display: inline-block;
    text-decoration: none;
    line-height: normal;
    padding: 18.5px 38px;
    border-radius: 50px;
    border: none;
    position: relative;
    z-index: 1;
    transition: all .5s linear;
    overflow: hidden;
    font-weight: 600;
    font-size: 16px;
}
.btn-theme{
    background: linear-gradient(272deg, #F15523 31.24%, #ff9615 99.07%);
    color: white;

}
.btn-theme:hover{
    color: white;
}
.btn-theme::before,.btn-outline::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: #0d003b;
    border-radius: 50px;
    z-index: -1;
    transition: all .5s linear;

}
.btn-outline::before{
    background: linear-gradient(272deg, #F15523 31.24%, #ff9615 99.07%);

}
.btn-outline:hover{
    color: white;
}

.btn-theme:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

.btn-outline{
    background-color: transparent;
    border: 1px solid #F15523;
    color: #F15523;
}
.btn-outline:hover::before{
    width: 100%;
    right: auto;
    left: 0;
}




*::-moz-selection { 
    background: #2d4a8a; 
    color: #fff; 
    text-shadow: none; 
}
::-moz-selection { 
    background: #2d4a8a; 
    color: #fff;
    text-shadow: none; 
}
::selection { 
    background: #2d4a8a; 
    color: #fff; 
    text-shadow: none; 
}
.form-control{

    background-color: white;
    border: 1px solid #dddddd;
    height: 56px;
    color: #838383;
    font-size: 16px;
    padding: 20px 24px;
    width: 100%;
    transition: all 0.3s linear;
    border-radius: 4px;
}
.form-control:focus{
  background-color: transparent;
  box-shadow: none;
}

textarea:focus, 
input[type="text"]:focus, 
input[type="password"]:focus, 
input[type="datetime"]:focus, 
input[type="datetime-local"]:focus, 
input[type="date"]:focus, 
input[type="month"]:focus, 
input[type="time"]:focus, 
input[type="week"]:focus, 
input[type="number"]:focus, 
input[type="email"]:focus, 
input[type="url"]:focus, 
input[type="search"]:focus, 
input[type="tel"]:focus, 
input[type="color"]:focus {
    border: 1px solid #fda02b;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

textarea:-moz-placeholder,
textarea::-moz-placeholder,
input:-moz-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder ,
input::-ms-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholde  {   
  color: #fff;
}

menu, ol, ul {
    margin: 0;
    padding: 0 0 0 25px;
}
    #header{
        z-index: 2;
    }

header .navbar{
    padding: 15px 80px;
    width: 100%;
    float: left;
    background: white;
    transition: all 0.3s linear;
}
.navbar .navbar-collapse 
.navbar .navbar-collapse .navbar-nav>li{
    padding: 14px 18px;
}
.navbar .navbar-nav{
    margin-left: 62px;
}
.navbar .navbar-collapse .navbar-nav>li>a{
    color: #0D003B;
    background-color: inherit;
    
    font-size: 16px;
    text-transform: uppercase;
    
    
    padding: 12px 28px ;
    font-weight: 600;
}
.navbar-brand{
    max-width: 202px;
    padding: 0;
    margin: 0;
    transition: all 0.3s linear;
}
.serch-box input{
    max-width: 273px;
    border-radius: 50px;
    background-color: #F5F5F5;
    border-color: #F5F5F5;
    font-size: 16px;
}
.serch-box img{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    width: 20px;
    height: 20px;
}

.navbar .dropdown .dropdown-menu{
    padding: 0;
    top: 100%;
    padding: 0;
    margin: 0px 0 0 0;
    box-shadow: none;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 0;
    border-top: none;
    background: white;
    border: none;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.dropdown .dropdown-menu li a{
    color: #0D003B;
    margin: 0;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    display: block;
    text-transform: capitalize;
    /* transition: all 0.3s linear; */
}

.navbar .navbar-collapse .navbar-nav>li.active>a,
.navbar .navbar-collapse .navbar-nav>li:hover>a{
    color: #f15523;
    background-color: inherit;
    border-bottom: solid 1px #f15523;
}

.dropdown .dropdown-item.active,.dropdown .dropdown-item:active,
.dropdown .dropdown-item:hover,.dropdown .dropdown-item:focus{
    background-color:#f15523;
    color: white;

}
.top-header{
    background-color: #0d003b;
    padding: 8px 80px;
  }

 .link-content span{
    background: linear-gradient(272deg, #F15523 31.24%, #ff9615 99.07%);
    color: white;
    border-radius: 100px;
    padding: 8px;
    margin-right: 8px;
  }

.sticky{
    position: fixed;
    width: 100%;
    top:0;
}


/* 
header.sticky+*{
    padding-top: 105px;
} */

.footer-content{
    background-image: url('../images/footer-bg.jpg');
    background-position: center ;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}
.footer-content::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #272727;
    opacity: 0;
    z-index: -1;
}

.contact-section strong{
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0px;
}
.contact-section a{
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    color: #a7a7a7;
}
.contact-section .img-box{
    margin-right: 20px;
}
.contact-section .img-box i{
    font-size: 45px;
    color: white;
}
.text-green{
    color: #F15523;
}
.text-grey{
    color: 777777;
}
.contact-section .img-box img{
    width: 45px;
}
.contact-section .call-content,
.contact-section .email-content,
.contact-section .address-content{
    padding: 41px 50px 45px;
    width: 100%;
}
.contact-section .call-content{
    background: #F15523;

}

.contact-section .email-content{
    background: #1f1f1f;

}
.contact-section .address-content{
    background: #323232;
}

.footer-center{
    position: relative;
    padding: 48px 0px 36px;
}

.footer-logo{
    margin-bottom: 28px;
}

.newsletter p{
    font-size: 16px;
    font-weight: 500;
    color: #a7a7a7;
    margin-bottom: 22px;
}
.newsletter input{
    position: relative;
    width: 100%;
    height: 58px;
    background: white;
    
    font-size: 14px;
    color: #a7a7a7;
    font-weight: 500;
    padding: 12px 64px 12px 54px;
    transition: all 500ms ease;
    border-radius: 100px;
}
.newsletter input:focus{
    background-color: #ffffff;
}
.newsletter a{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    font-size: 14px; 
    cursor: pointer;
    transition: all 500ms ease;
    z-index: 9;
    border-radius: 100px;
overflow: hidden;
 
    right: 10px;
    height: 43px;
    width: 43px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon{
    background: linear-gradient(272deg, #F15523 31.24%, #ff9615 99.07%);
    color: white;
}
.btn-icon::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: #0d003b;
    border-radius: 50px;
    z-index: -1;
    transition: all .5s linear;
}
.btn-icon:hover::before{
    width: 100%;
    right: auto;
    left: 0;
}


.logo-widget{
    margin-right: 30px;
    margin-top: 6px;
}
.social-icon{
    margin-top: 23px;
}
.social-icon a:hover{
    color: #F15523 !important;
}
.social-icon li{
    position: relative;
    display: inline-block;
    margin-right: 25px;
}
.social-icon h6{
    font-size: 16px;
    color: #fff;
    font-weight: 700;
}
.social-links li a{
    display: inline-block;
    font-size: 16px;
    color: #a7a7a7;
}

.newsletter{
    padding-bottom:52px;
}

.newsletter  .fa-envelope{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    color: hsla(0, 0%, 0%, 0.40);
    z-index: 9;
}
.footer-center{
    border-top: 1px solid rgba(255,255,255,.05);
    margin-top: 5px;
}
.footer-center strong{
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    font-weight: 700;
    display: block;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 5px;
}
.footer-center strong::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 20%;
    background-color: #F15523;
}
.footer-center .nav li{
    position: relative;
    display: block;
    margin-bottom: 8px;
    line-height: 32px;
    padding-left: 24px;
}
.footer-center .nav li a{
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    color: white;
    padding: 0;
    line-height: 1.3;
}
.footer-center .nav li a:hover{
    color: #F15523;
}
.footer-center .nav li a::after{
    position: absolute;
    content: '';
    width: 0%;
    height: 1px;
    left: 0px;
    bottom: 0px;
    opacity: 0;
    transition: all 500ms ease;
    font-size: 12px;

}
.footer-center .nav li a:hover::after{
    width: 100%;
    opacity: 1;
    background: #F15523;
}

.quick-ul li a{
    position: relative;

}
.quick-ul li::before{
    content: '\f054';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-family: "Font Awesome 6 Free";
}

.news-box-footer{
    position: relative;
}
.news-box-footer:not(:last-child){
    margin-bottom: 35px;

}

.news-box-footer .img-box>div::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #F15523;;
    opacity: 0;
    left: 0;
    top: 0;
    bottom: 0;
    top: 0;
    z-index: 9;
}



.news-box-footer:hover .img-box>div::after{
    opacity:  0.9;
}
.news-box-footer .img-box{
    margin-right: 16px;
    width: 50px;
}
.news-box-footer p a{ 
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: white;
    font-weight: 600;
    margin-top: 5px;
}
.news-box-footer span{
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: rgba(255,255,255,.6);
}

.footer-bottom{
    position: relative;
    width: 100%;
    padding: 14px 0px;
    background: #333333;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .copyright p{
    font-size: 16px;
    color: #a7a7a7;
}
.footer-bottom .copyright p a{
    color: #F15523;
}
.footer-bottom .footer-nav li {
    position: relative;
    display: inline-block;
}
.footer-bottom .footer-nav li:not(:last-child){
    margin-right: 15px;

}
.footer-bottom .footer-nav li a {
    font-size: 16px;
    color: #a7a7a7;
}
.footer-bottom .footer-nav li a:hover{
    color: #F15523;
}
.social-icons{
    padding: 0;
    margin-top: 40px;
}
.social-icons li {
   margin-right: 8px;
}
.social-icons li>a {
    width: 33px;
    height: 33px;
    line-height: 33px;
    border-radius: 50%;
    border: 1px solid #f1f1f1;
    text-align: center;
    display: block;
    background: linear-gradient(272deg, #F15523 31.24%, #ff9615 99.07%);
    font-size: 14px;
    color: #fff;
}
.address-content {
    margin-bottom: 12px;
}

.address-content span{
    width: 36px;
}
.address-content p,.address-content  a{
    color: white;
}

.banner-content{
    height: 920px;
    width: 100%;
    padding: 0 80px;
    position: relative;
}
.banner-content::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(13, 0, 59, 0.40)
}

.banner-content .carousel{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
}
.banner-form-content{
    max-width: 600px;
    background: linear-gradient(98deg, hsla(18, 100%, 98%, 0.8) 16.02%, hsla(233, 100%, 98%, 0.8) 75.01%);
    border-radius: 16px 16px 0 0;
    padding: 48px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.banner-form-content label{
    font-size: 18px;
    color: #0D003B;
}
.banner-form-content .form-control,.banner-form-content .form-control:focus{
    /* background-color: #463e6c; */
    background-color: #ffffff;
    border:1px solid #F15523 ;
    color: #0D003B;
    border-radius: 8px;

}

.bg-linear {
    background: linear-gradient(98deg, #FFF8F5 16.02%, #F6F7FF 75.01%) !important;
}
.bg-property{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}



.py-100{
    padding-top: 100px;
    padding-bottom: 100px;
}

.py-50{
    padding-top: 50px;
    padding-bottom: 50px;
}

.elementor img {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.abouts-img-1 {
    border-radius: 0 165px 0 0 !important;
}
.abouts-img-2 {
    border-radius: 0 0 200px 200px !important;
    position: relative;
    bottom: -8px;
}
.abouts-img-3 {
    border-radius: 200px 200px 0 0 !important;
}
.abouts-img-4 {
    border-radius: 0 0 0 165px !important;
}

.mt-42{
    margin-top: 42px;
}
.about-us-img-one .img-box img,.laptopflex-content .img-box img,
.project-content .project-box .img-box img,.gallery-content .img-box img{
    transform: scale(1);
    transition: all 0.3s linear;
    position: relative;
}
.rent-product-box .img-box img{
    transform: scale(1);
    transition: all 0.3s linear;
}
.rent-product-box:hover img{
    transition-delay: 0.3s;

}

.about-us-img-one .img-box:hover img,.laptopflex-content .img-box:hover img,.rent-product-box:hover img,
.project-content .project-box:hover .img-box img,.gallery-content .img-box:hover img{
    transform: scale(1.1);
    transition: all 0.3s linear;
}

.about-us-img-one .img-box,.laptopflex-content .img-box,.rent-product-box .img-box,.project-content .project-box .img-box,
.gallery-content .img-box{
    overflow: hidden;
    position: relative;
    transition: all 0.3s linear;
}

.about-us-img-one .img-box:hover::before,.laptopflex-content .img-box:hover::before,.rent-product-box:hover .img-box::before,
.project-content .project-box:hover .img-box::after,.gallery-content .img-box:hover::after{
    visibility: visible;
}

.about-us-img-one .img-box::before,.laptopflex-content .img-box::before,.rent-product-box .img-box::before,
.project-content .project-box .img-box::after,.gallery-content .img-box::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(272deg, #F15523 31.24%, #ff9615 99.07%);
    opacity: 0.5;
    visibility: hidden;
    transition: all 0.3s linear;
    z-index: 1;
    left:0;
    top:0;
    right:0;
    bottom:0;
}

.about-us-content p {
    font-weight: 500;
    line-height: 1.6;
}

.bg-litegrey{
    background-color: #FBF8F9;
}

.bg-blue{
    background-color: #0D003B;
}

.coustome-listing li{
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 500;
}

.coustome-listing li::before{
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(272deg, #F15523 31.24%, #ff9615 99.07%);
    border-radius: 100px;
}

.delivery-info-card h3{
    font-size: 32px;
    white-space: nowrap;
}

.delivery-info-card .img-box{
    background-color: white;
    padding: 12px;
    border-radius: 10px;
    margin-right: 26px;
}

.delivery-info-card .img-box >div{
    width: 75px;
}

.text-blue{
    color: #0D003B;
}

.delivery-info-content{
    background-image: url('../images/bg-1.jpg');    
}


    .assured-content .bg-blue{
        border-radius: 10px;
        position: relative;
    }
    .assured-content img{
        position: absolute;
        z-index: 0;
    }

    
    .shape-2 {
        bottom: 50px;
        left: 55px;
        animation: rotation 15s infinite linear;
      }
    .shape-3 {
        top: 50px;
        right: 55px;
        animation: rotation 15s infinite linear;
      }
      .shape-4 {
        top: 0;
        left: 0;
        animation: off-on 10s infinite linear;
      }
      .shape-5 {
        bottom: 0;
        right: 0;
        animation: off-on 15s infinite linear;
      }
      @keyframes rotation {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(359deg);
        }
      }
      .slick-slider .rent-product-box{
        margin-bottom: 40px;
      }

      .rent-product-box{
        border-radius: 20px;
        border: 1px solid #FFDBB0;
        background: white;
        padding: 45px 50px;
        height: 100%;
    
        /* margin-bottom: 40px; */
      }

      #rentalsdevice-slider .img-box{
background-color: hsla(0, 0%, 85%, 0.30);
      }

    #rentalsdevice-slider  .slick-slide{
        padding: 0 24px;
      }

      .slick-arrow{
        background: linear-gradient(272deg, #F15523 31.24%, #ff9615 99.07%);

        width: 43px;
        height: 43px;
        border-radius: 100px;
        transition: all 0.3s linear;
        z-index: 1;
      }
      .slick-arrow:hover,.slick-arrow:focus,.slick-arrow.active{
        background-color: white ;
        box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
        border: 10xp solid #777777;
      }
      .slick-arrow:hover::before,.slick-arrow:focus::before,.slick-arrow.active::before{
        color: #F15523;
      }


      .slick-prev{
        left: 50%;
        bottom: 0;
        margin-left: -30px;
        top: auto;
        transform: translateX(-50%);
      }
      .slick-prev:before {
        transform: translateY(-50%);
        font-family: "Font Awesome 6 Free";
        content: '\f177';
       
    }
    .slick-next{
        right: 50%;
        bottom: 0;
        margin-right: -30px;
        top: auto;
        transform: translateX(50%);
    }
    .slick-next:before {
        transform: translateY(-50%);
        font-family: "Font Awesome 6 Free";
        content: '\f178';
        
    }
    .slick-track{
        padding-bottom: 38px;
    }
    .clientsLogo-slider .slick-track{
        padding-bottom: 0;
    }

    .service-card{
        padding: 36px;
        border-radius: 20px;
        background-color: white;
        text-align: center;
        height: 100%;
    }
    .service-card .icon-box{
        width: 150px;
        height: 150px;
        border-radius: 100px;
        background-color: hsla(0, 0%, 85%, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
    }
    .service-card .icon-box img{
        width: auto;
    }


    .clientsLogo-slider .slick-slide{
        padding: 0 12px;
    }
    .clientsLogo-slider .slick-slide > div{
        display: flex;
        align-items: center;
        justify-content: center;
        /* padding:  50px 0; */
        height: 100px;
    }
    .clientsLogo-slider .slick-slide img{
        max-width: 125px;
    }

    .bookschedule-content .img-box{
        border-radius: 10px 0 0 10px;
    }

    .bookschedule-content .form-content{
padding: 50px;
border-radius: 0 10px 10px 0;
    }

    textarea.form-control{
        height: auto;
    }
    .bookschedule-content label{
        margin-bottom: 12px;
        color: #0D003B;
    }

    .bookschedule-content .img-box{
        padding: 50px;
    }

    .project-content .slick-slide{
        margin: 0 12px 24px;
    }

    .project-content .project-box .img-box{
        border-radius: 20px;
        box-shadow: 0px 8px 4px hsla(0, 0%, 0%, 0.12) ;
        overflow: hidden;

    }

    .gallery-content .img-box{
        border-radius: 20px;
        overflow: hidden;
        height:100%;
        object-fit: cover;
        object-position: center center;
    }
    .gallery-content .img-box img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .star i{
        color: #ffc107;
        font-size:20px
    }

    .testimonials-box{
        border-radius: 20px;
        border: 1px solid rgba(255, 248, 245, 0.3);
        padding: 50px 45px;
    }
    .testimonials-single-item .smile {
        font-size: 50px;
      
    }

    .testimonials-box p {
        color: white;
        margin-top: 23px;
        margin-bottom: 30px;
        font-weight: 600;
        font-size: 18px;
        line-height: 1.7;
    }

    .testimonials-slider .slick-slide{
        padding:  0 12px;
    }

    .testimonials-slider .img-box{
        width: 40px;
        height: 40px;
        border-radius: 100px;
        overflow: hidden;
    }

    .txt-litewhite{

        color: hsla(0, 0%, 100%, 0.60);
    }

    .testimonials-content,.testimonials-slider {
        z-index: 1;
    }
    .testimonials-content .shape-2,.testimonials-content .shape-3{
        z-index: -1;
    }

    .innerpage-banner{
        height: 350px;
        background-color: #0d003b;
        width: 100%;
    }
 
    .innerpage-banner ol li a{
        color: white;
        font-size: 18px;
    }
    .breadcrumb-item+.breadcrumb-item::before{
        font-family: "Font Awesome 6 Free";
        content: '\f105';
        font-size: 18px;
        color: white;
    }
    .faq-accordion .accordion-item {
        
        margin-bottom: 24px;
        border: 0;
    }
    .faq-accordion .accordion-button {
        font-size: 18px;
        line-height: 1.2;
        color: #151726;
        font-weight: 500;
        background: white;
        padding:12px 24px;
        border-radius: 0 !important;
        box-shadow: none;
    }
    .faq-accordion .accordion-button:hover{
        box-shadow: none;

    }
    .faq-accordion .accordion-button.collapsed{
        box-shadow: 0px 3px 20px #0000000f;

    }
    .faq-accordion .accordion-button span {
        min-width: 30px;
        min-height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 700;
        color: #5071b4;
        border: 2px solid #5071b4;
        border-radius: 50%;
        margin-right: 18px;
        line-height: 1;
    }
    .faq-accordion .accordion-body {
        padding: 0 30px 30px 75px;
        position: relative;
        background-color: white;
    }

    .faq-accordion .accordion-body:before {
        content: '';
        position: absolute;
        top: 0;
        left: 38px;
        bottom: 37px;
        border-left: 1px solid #5071b496;
    }
    .faq-accordion .accordion-body p {
        font-size: 18px;
        font-weight: 500;
    }
    
    .team-slider .card img{
        object-fit: contain;
        object-position: center center;
    }

    .team-slider .slick-slide{
        padding: 0 12px;
    }


    .conect-accordion .accordion-body p,.conect-accordion .accordion-body p a{
        margin-bottom: 12px;
        color: #1f1f1f;
        display: flex;
        align-items: center;
    }
    .conect-accordion .accordion-body p a{
        margin-bottom: 0;
    }
    .conect-accordion .accordion-body p a:hover{
        color: #F15523;
    }
    .conect-accordion .accordion-body p i{
        display: inline-block;
        margin-right: 12px;
        width: 18px;
        color: #F15523;
    }
   
    .map-fram{
        border: 5px inset #5071b4;
        border-radius: 12px;
    }

    .info{
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .info li {
        display: inline-block;
    }
    
    .info li i {
        color: #f15523;
        margin-right: 8px;
        position: relative;
        top: 2px;
    }
    .info li span {
        font-weight: 500;
    }
    .info li  a {
        text-decoration: none;
        color: #777777;
        font-weight: 500
    }
    .blog-list .img-box{
        border-radius: 12px 12px 0 0;
    }

    .blog-list .img-box img{
        min-height: 193px;
    }    

    .blog-list h4{
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-height: 1.3;
    }

    .blog-accordion ul li a{
        color: #0D003B;
    }
    body {
        counter-reset: my-sec-counter;
      }
      .blog-accordion ul li{
        display: flex;
        align-items: center;
        margin-bottom: 12px;
      }
    .blog-accordion ul li::before{
        counter-increment: my-sec-counter;
        content: counter(my-sec-counter) "";
        width: 30px;
        height: 30px;
        background-color: #0D003B;
        color: white;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
margin-right: 12px;
    }
    .blog-accordion ul li a{
        font-size: 18px;
    }

    .sidebar-bg-color{
        background: linear-gradient(98deg, #FFF8F5 16.02%, #F6F7FF 75.01%);
        border-radius: 20px;
        padding: 50px 40px 20px;
    }

    .widget-area ul{
        padding-left: 0;
        list-style-type: none;
        margin: 0;
    }
    .widget-area ul li {
        position: relative;
        font-size: 17px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    .widget-area  ul li a {
        text-transform: capitalize;
        color: #0D003B;
        position: relative;
        display: inline-block;
        text-decoration: none;
    }
    .widget-area  ul li a:hover{
        color: #F15523;
    }

    #latest-post-slider  .slick-slide{
        padding: 0 12px;
      }
      .tags-share {
        padding-top: 20px;
        padding-bottom: 20px;
        margin-top: 60px;
       
        clear: both;
    }
    .tags-share li {
        list-style-type: none;
        margin-bottom: 0;
        margin-right: 16px;

    }
     .tags-share li span {
        font-weight: 600;
        font-size: 18px;
        color: var(--blackColor);
        margin-right: 16px;
    }
    .tags-share li a {
        position: relative;
        padding: 5px;
        color: #0D003B;
        font-size: 14px;
    }

    .slick-initialized.slider-top .slick-slide .img-box img{
        max-height: 400px;
        margin: auto;
    }
    .slider-top .slick-track{
        padding-bottom: 0;
    }
    

    .slider-top{
        background-color: white;
        border-radius: 10px;
        overflow: hidden;
    }
    .slick-initialized.slider-bottom .slick-slide  {
        padding:  8px;

    }
    .slick-initialized.slider-bottom .slick-slide .img-box{
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;

    }
    .slick-initialized.slider-bottom .slick-slide .img-box img{
        max-height: 100px;
    }

    .details-wrapper .btn{
        padding: 9px 24px 10px;
    }
    .details-wrapper .form-select{
        border-radius: 100px;
    }
    .product-about-listing li{
        font-size: 14px;
        list-style: disc;
    }