:root{
    --main-color: rgba(00, 94, 155, 100);
    --main-light-color: #008fcd;
    --second-color: #ef5e41;
    --white-color: #fff;
    --dark-color: #000;
    --gold-color: #fcb24b;
    --gold-light-color: #f37b44;
    --transition: .7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body{
    background-color: #fff;
    font-family: "Lama Sans";
}

.counts .count-box p,
body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lama Sans", sans-serif
}

.canvas{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.canvas canvas{
    height: 100%;
    display: block;
}

.row-content-2:nth-child(even),
.row-content-3:nth-child(even) .row{
    flex-direction: row-reverse;
}

.section-title{
    
}
.section-title .sub-title{
    position: relative;
    color: var(--gold-color);
    width: fit-content;
    margin: 10px auto;
}

.section-title h1{
    font-size: 55px;
    font-weight: 800;
    color: #000;
    line-height: 114%;
}

.section-title .sub-title::after,
.section-title .sub-title::before{
    position: absolute;
    content: '';
    width: 37px;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--gold-color);
}

.section-title .sub-title::after{
    right: -40px;
}

.section-title .sub-title::before{
    left: -40px;
}

.btn-theme-2{
    background-color: var(--main-color);
    color: var(--white-color);
    border: 1px solid var(--main-color);
    padding: 8px 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 20px;
    width: fit-content;
    transition: .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-theme-2:hover{
    background-color: var(--gold-color);
    color: #fff;
    border-color: var(--gold-color);
}

.btn-theme-3{
    width: 200px;
    height: 200px;
    flex-direction: column;
    background-color: var(--main-color);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    overflow: hidden;
    position: relative;
}

.btn-theme-3::before{
    content: '';
    position: absolute;
    left: -200px;
    top: -100px;
    width: 100%;
    height: 100%;
    background-color: var(--gold-color);
    border-radius: 50%;
    transition: all .4s ease-out;
}

.btn-theme-3:hover::before{
    left: 0;
    top: 0;
    border-color: var(--gold-color);
}

.btn-theme-3 i,
.btn-theme-3 span{
    position: relative;
    z-index: 1;
}

.btn-theme-4{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--dark-color);
    font-weight: 600;
    transition: .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-theme-4 .circle{
    position: relative;
    display: flex;
    margin-left: 106px;
}
.btn-theme-4 .circle-2{
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    transition: .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-theme-4 svg{
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
}
.btn-theme-4 svg path{
    fill: var(--dark-color);
    transition: .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-theme-4:hover{
    color: var(--gold-color);
}

.btn-theme-4:hover .circle-2{
    border-color: var(--gold-color) !important;
}

.btn-theme-4:hover svg path{
    fill: var(--gold-color);
}

.bg-image{
    background-image: url('/uploads/settings/home-one-banner.png');
    background-size: 100%;
    background-repeat: no-repeat;
}

.fixed-top-margin{
    margin-top: 81px;
}

.lines .line-alt,
.lines .line {
    width: 1px;
    background-color: rgb(179 182 185 / 0.3);
    z-index: 0;
}
.lines .line-1{
    left: 10%;
}
.lines .line-2{
    right: calc(100% - 50%);
}
.lines .line-3{
    right: 10%;
}

.lines .line-alt-1{
    left: 30%;
}
.lines .line-alt-2{
    right: calc(30%);
}
.lines .line-alt::after{
    content: "";
    display: block;
    position: absolute;
    height: 30px;
    width: 100%;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 60, 0, 0) 0%, var(--main-color) 75%, var(--gold-color) 100%);
    animation: run-alt 7s 0s infinite alternate-reverse;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
.lines .line::after{
    content: "";
    display: block;
    position: absolute;
    height: 30px;
    width: 100%;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 60, 0, 0) 0%, var(--main-color) 75%, var(--gold-color) 100%);
    transform: translateY(30px);
    animation: run 7s 0s infinite alternate-reverse;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

@keyframes run{
    0%{
        top: 0;
    }100%{
        top: 100%;
    }
}

@keyframes run-alt{
    0%{
        bottom: 0;
    }100%{
        bottom: 100%;
    }
}

/* Start Animate */

.section-animation [data-splitting],
.section-animation-2 [data-splitting] {
    opacity: 0;
}
.section-animation.active [data-splitting] ,
.section-animation-2.active [data-splitting] {
    opacity: 1;
}

.section-animation .splitting .char,
.section-title .splitting .char{
    opacity: 0;
    transform: translateX(20px) scale(0.5);
    transition: .3s ease-out;
    transition-delay: calc(60ms * var(--char-index));
}

.section-animation.active .splitting .char,
.section-title[data-scroll="in"] .splitting .char{
    opacity: 1;
    transform: translateX(0px) scale(1);
}

.image-animate-scale,
.image-animate-scale img,
.page-animate,
.ui-resizable h2,
.ui-resizable h3,
.ui-resizable h4,
.ui-resizable li,
.ui-resizable P,
.page-animate p,
.col-animate,
.left-animate,
.btn-theme-4 span{
    transition: .5s ease-out;
}

.swiper-slide-animate{
    transition: 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-animate-scale{
    opacity: .2;
    transform: scale(.4);
}

.image-animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

.swiper-slide-animate{
    transform: translateZ(0) translateX(185%) !important;
}

.swiper-slide-animate.animated{
    transform: translateZ(0) translateX(0) !important;
}

.page-animate,
.page-animate p,
.ui-resizable h2,
.ui-resizable h3,
.ui-resizable h4,
.ui-resizable li,
.ui-resizable P,
.col-animate{
    transform: translateY(28px);
    opacity: 0;
}

.page-animate.animated,
.page-animate.animated p,
.ui-resizable.animated h2,
.ui-resizable h2.animated,
.ui-resizable.animated h3,
.ui-resizable.animated li,
.ui-resizable.animated h4,
.ui-resizable.animated P,
.col-animate.animated{
    opacity: 1;
    transform: translateY(0px);
}

.left-animate{
    transform: translateX(40px);
    opacity: 0;
}
.left-animate.animated{
    transform: translateX(0px);
    opacity: 1;
}

.btn-theme-4 .text-btn{
    transform: translateX(24px);
    opacity: .2;
}

.btn-theme-4 .circle{
    transform: translateX(-39px);
    opacity: .2;
}
.btn-theme-4[data-scroll="in"] .text-btn,
.btn-theme-4[data-scroll="in"] .circle{
    transform: translateX(0px);
    opacity: 1;
}

.scale-animate-zoom{
    transform: scaleX(.8) translateY(31px);
    opacity: .2;
    transition: all .5s ease-out;
}

.scale-animate-zoom[data-scroll="in"]{
    transform: scaleX(1) translateY(0px);
    opacity: 1;
}

/* End Animate */

/* Start Header */

#header{
    top: 0;
    background-color: #FFF;
    animation: header 1s ease-out;
}

#header.header-scrolled{
    animation: header-scrolled .7s ease-out;
}

@keyframes header-scrolled{
    0%{
        top: -86px;
    }100%{
        top: 0;
    }
}
@keyframes header{
    0%{
        opacity: 0;
    }100%{
        opacity: 1;
    }
}

.logo-fixed,
#header.header-scrolled .logo{
    display: none;
}

#header.header-scrolled .logo-fixed{
    display: block;
}

.navbar a, .navbar a:focus{
    font-size: 18px;
    line-height: 150%;
    color: #000 !important;
}

.navbar a:hover{
    color: var(--main-color) !important;
}

.navbar-mobile ul{
    width: 70%;
    top: 0;
    padding: 66px 0 0;
    box-shadow: 0 0 6px #ccc;
}

.header-scrolled .navbar-mobile ul{
    top: 0;
}

.header-scrolled .navbar-mobile .mobile-nav-toggle,
.navbar-mobile .mobile-nav-toggle{
    top: 35px;
}

.navbar-mobile .mobile-nav-toggle{
    right: 34%;
}

/* End Header */

/* Start Hero Slider */

#hero {
    height: 600px;
    /* position: relative; */
}

#hero .swiper-slide{
    position: relative;
    overflow: hidden;
}

#hero .swiper-slide::before{
    content: '';
    position: absolute;
    width: 44%;
    height: 88%;
    background-color: #f8f9fd;
    top: 0;
    left: 0;
    border-bottom-right-radius: 68%;
    z-index: 2;
    box-shadow: 0 0 87px 131px #f8f9fd;
}

#hero .swiper-slide img{
    /* object-fit: cover; */
}

.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--gold-color);
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--gold-color);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

#hero .slider-content{
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 10%;
    opacity: 0;
    transform: translateY(-50%) translateX(100px);
    transition: all 2000ms ease;
    overflow: hidden;
    width: 35%;
}

#hero .swiper-slide-active .slider-content{
    opacity: 1;
    transform: translateY(-50%) translateX(0px);
}

@keyframes faderight{
    0%{
        opacity: 0;
        transform: translateY(-50%) translateX(100px);
    }100%{
        opacity: 1;
        transform: translateY(-50%) translateX(0px);
    }
}

#hero .slider-content h2{
    color: #000;
    font-size: 91px;
    line-height: 109px;
    margin: 0;
    position: relative;
    width: fit-content;
    transition: all 1s ease-out;
}

#hero .slider-content h2::before{
    content: '';
    position: absolute;
    width: 50%;
    height: 10px;
    background-color: var(--main-color);
    left: 7px;
    bottom: 16px;
    z-index: -1;
}

#hero .slider-content p{
    color: var(--dark-color);
    line-height: 1.7;
    font-size: 18px;
    opacity: 1;
    width: 100%;
}

#hero .swiper-button-next, #hero .swiper-button-prev{
    width: 134px;
    height: 150px;
    background-color: #fff;
}

#hero .swiper-button-next, #hero .swiper-rtl .swiper-button-prev{
    right: -52px;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

#hero .swiper-button-prev, #hero .swiper-rtl .swiper-button-next{
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    left: -52px;
}

#hero .swiper-button-next:after, #hero .swiper-button-prev:after{
    font-size: 37px;
    color: var(--main-color);
}

#hero .swiper-pagination{
    width: fit-content;
    height: 100%;
    right: 2%;
    left: auto;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#hero .swiper-pagination-clickable .swiper-pagination-bullet{
    background-color: #eee;
    position: relative;
    margin: 4px 0;
    opacity: .7;
    width: 12px;
    height: 12px;
}
#hero .swiper-pagination-clickable .swiper-pagination-bullet-active{
    border: 2px solid var(--gold-color);
    background-color: transparent;
    width: 20px;
    height: 20px;
}

#hero .swiper-pagination-clickable .swiper-pagination-bullet-active::after{
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--gold-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

/* End Hero Slider */

/* Start Home Welcome */

.home{
    position: relative;
    overflow: hidden;
    background-color: #fafafa;
}

.home-welcome{
    position: relative;
}

.home-welcome::before{
    content: none;
    position: absolute;
    bottom: -36px;
    left: 0;
    width: 10%;
    height: 138px;
    background-color: var(--gold-light-color);
    border-top-right-radius: 100px;
}

.home-welcome .container,
.text-banner  .container{
    position: relative;
    z-index: 1;
}

.home-welcome .image{
    border-radius: 5%;
    overflow: hidden;
    box-shadow: 0 0 4px 0px #00000075;
}

.home-welcome .details{
    padding: 0px 0px;
    padding-left: 30px;
}
.home-welcome .details h5{
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold-color);
}
.home-welcome .details h1{
    font-size: 55px;
    font-weight: 800;
    color: #000;
    line-height: 114%;
}

.home-welcome .details h1 .center{
    color: var(--main-color);
}
.home-welcome .details p{
    font-size: 16px;
    line-height: 150%;
}

.home-welcome .btn-theme-3,
.breadcrumbs .btn-theme-3,
.row-4 .btn-theme-3,
.topics-details-2 .btn-theme-3{
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
    width: 150px;
    height: 150px;
}

.breadcrumbs .btn-theme-3{
    width: 100px;
    height: 100px;
}

.home-welcome .btn-theme-3:hover,
.breadcrumbs .btn-theme-3:hover,
.row-4 .btn-theme-3:hover,
.topics-details-2 .btn-theme-3:hover{
    border-color: var(--gold-color);
}

.home-welcome .left-animate{
    transition-delay: .5s;
}

/* End Home Welcome */

/* Start Text Banner */

.text-banner .card{
    position: relative;
    transition: var(--transition);
}

.text-banner .card:hover{
    transform: translateY(-15px);
    /* box-shadow: 0px 0px 7px 1px #ccc; */
    /* background-color: #fafafa !important; */
}

.text-banner .card::before{
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    opacity: 0;
    box-shadow: 0 0 34px 19px #ccc;
    height: 23px;
    background-color: #d4d4d4;
    border-radius: 50%;
    transition: var(--transition);
}

.text-banner .card:hover::before{
    width: 58%;
    opacity: 1;
}

.text-banner .icon{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    color: var(--gold-color);
    box-shadow: 0 0 27px 11px #00000014;
    margin: auto;
    margin-bottom: 30px;
}

.text-banner h4{
    text-align: center;
}
.text-banner p{
    /*text-align: center;*/
}

/* End Text Banner */

/* Start Services */

.services{
    background-color: #fafafa !important;
    overflow: hidden;
}

.services-details{
    background-color: #fff !important;
}

.services-details{
    background-color: #fff;
}

.services .swiper{
    padding: 0 46px;
}

.services .card{
    height: 324px;
    transition: .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.services .swiper-slide-next .card{
    height: 370px;
}

.services .card{
}

.services-details .card{
    box-shadow: 0 0 4px #ccc;
}
.services .card-header{
    width: 100px;
    height: 100px;
}
.services .card-body{
    text-align: center;
}
.services .card-body h4{

}
.services .card-body p{

}

.services .swiper-button-next, .services .swiper-button-prev{
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: var(--main-color);
    color: var(--gold-color);
}

.services .swiper-button-next:after, .services .swiper-button-prev:after{
    font-size: 18px;
}

.services .swiper-button-next.swiper-button-disabled, .services .swiper-button-prev.swiper-button-disabled{
    background-color: #fff;
    opacity: 1;
}

.services .swiper-button-prev, .services .swiper-rtl .swiper-button-next{
    left: 0;
}

.services .swiper-button-next, .services .swiper-rtl .swiper-button-prev{
    right: 0;
}

.services .card-body a{
    color: var(--gold-color);
}

/* End Services */

/* Start Products */

.products{

}

.products .row-content:nth-child(2) .row{
    flex-direction: row-reverse;
}

.products .image,
.topics-details-2 .image{
    padding: 60px;
}
.products .details h2,
.topics-details-2 h2{
    line-height: 143%;
    font-size: 36px;
    color: var(--main-color);
    font-weight: 700;
}
.products .details p,
.topics-details-2 p{
    width: 80%;
    color: #000;
}

/* End Products */

/* Start Row 4 */

.row-4{
    position: relative;
    overflow: hidden;
    background-color: #fafafa;
}

.target-market-details{
    background-color: #fff;
}

.row-4 .section-title{
    text-align: left;
}

.row-4 .section-title h6,
.row-6 .section-title h6{
    margin-left: 38px;
}

.row-4 .swiper{
    padding: 23px 0;
}

.row-4 .card-header::after{
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    background-color: #ccc;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.row-4 .card-header img{
    width: 60%;
}

.row-4 .card-body h4{
    color: var(--main-color);
    font-weight: 700;
    font-size: 30px;
}
.row-4 .card-body p{
    color: #000;
    font-size: 18px;
}

.row-4 .btn-theme-3{
    background-color: transparent;
}

.row-4 .swiper-button-div{
    margin-top: 20px;
    height: 50px;
}

.row-4 .swiper-pagination-bullet{
    height: 8px;
    width: 32px;
    border-radius: 11px
}

.row-4 .swiper-pagination-bullet-active{
    width: 80px;
    background-color: var(--gold-color);
}

/* End Row 4 */

/* Start Row 6 */

.row-6{
    background-image: url('/uploads/settings/row.png');
    background-size: cover;
    overflow: hidden;
}

.row-6 .section-title{
    text-align: start;
}

.row-6 .swiper{
    padding: 15px;
}

.row-6 .swiper-slide,
.row-6 .card{
    height: fit-content;
    box-shadow: 0 0 8px #bbb0b0a8;
    border-radius: 13px;
    height: 243px;
    background-color: #fff;
    /* border: 1px solid #e3e3e3; */
}

.row-6 .swiper-slide img,
.row-6 .icon img{
    width: 150px;
}

.row-6 h4{
    font-size: 24px;
    font-weight: 600;
    color: var(--main-color);
}

/* End Row 6 */

/* Start Partners */

.partners{
    overflow: hidden;
}
.partners .thumbnail{
    /* background-color: var(--white-color); */
    height: 200px;
}

.partners-page .card{
    box-shadow: 0 0 4px #ccc;
}

/* End Partners */

/* Start Footer */

#footer{
    background-color: #fafafa !important;
    background-size: 100%;
    background-repeat: no-repeat;
}

#footer .container{
    position: relative;
    z-index: 1;
}

#footer .footer-bottom{
    background-color: #212121 !important;
}

#footer .copyright,
#footer .copyright a{
    color: #000 !important;
    text-align: center;
}

#footer .credits,
#footer .credits a{
    color: #454545 !important;
}

#footer .copyright{
    font-size: 14px;
    margin-bottom: 0px;
}

#footer .footer-top .footer-links ul{
    padding-left: 5px;
}

#footer .footer-top .footer-links ul a,
#footer a,
#footer p{
    color: #000;
    font-size: 14px;
    line-height: 1.5;
}

#footer .footer-top .footer-links ul a{
    font-weight: 500;
}

#footer .footer-top h1{
    font-size: 20px;
    color: #000;
    padding-bottom: 12px;
    /*display: none;*/
}

#footer .footer-title{
    margin: 0;
}

#footer .contact-us-footer p{
    padding-left: 5px;
    margin-bottom: 10px;
}
#footer .contact-us-footer p i{
    color: var(--gold-color);
}

#footer .image-footer img{
    width: 150px;
}

#footer .social-links{
    align-items: center;
}

#footer .social-links a{
    background-color: transparent !important;
}

#footer .social-links a:hover{
    background-color: transparent !important;
    box-shadow: none;
}

#footer .social-links a i{
    color: #000;
}

#footer .social-links a:hover i{
    color: var(--gold-color);
}

#footer .footer-top .footer-links ul i{
    padding-right: 6px;
    color: var(--gold-color);
    font-size: 14px;
}

/* End Footer */

/* Start Topics Page */
.topics-page .post-card{
    border: 0;
    box-shadow: 0 0 4px #ccc;
}

.topics-page .image-container,
.topics-page .video-container{
    height: 350px;
}

.topics-page .card-img-top{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.topics-page .card-title{
    color: #000;
}

.topics-page .card-title a:hover{
    color: var(--gold-color);
}

/* End Topics Page */

/* Start Topic Details  */

.topic-page .section-title{
    text-align: left;
}

.topic-page .article-body,
.topic-page .article-body p,
.topic-page .article-body,
.topic-page .article-body li{
    font-size: 16px;
    color: #000;
    font-weight: 400;
    line-height: 29px;
}

.topic-page li{
    list-style: none;
    position: relative;
}

.topic-page li::after{
    content: '\f054';
    position: absolute;
    left: -21px;
    top: 7px;
    color: var(--gold-light-color);
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
}

.topic-page .custom-field-title{
    color: #000;
}

/* End Topic Details  */

/* Start Share */

.bottom-article .social-network a{
    background-color: var(--main-color) !important;
}

.bottom-article .social-network a:hover{
    background-color: var(--main-color) !important;
    box-shadow: none;
}

.bottom-article .social-network a i{
    color: #fff;
}

.bottom-article .social-network a:hover i{
    color: var(--gold-color);
}

/* End Share */

/* Start breadcrumbs */

.breadcrumbs{
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 224px;
    position: relative;
    overflow: hidden;
}

.breadcrumbs::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #dfdfdf7c;
}  

.breadcrumbs .container{
    position: relative;
    z-index: 1;
}

.breadcrumbs h2{
    font-size: 31px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-align: left;
}
.breadcrumbs li,
.breadcrumbs li a{
    color: #000;
    font-weight: 600;
}

.breadcrumbs li.active a{
    color: var(--main-color);
}

.breadcrumbs ol li+li::before{
    display: inline-block;
    padding-right: 10px;
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    content: "\f101";
    font-weight: 900;
}

.breadcrumbs .btn-theme-3{
    background-color: transparent;
    font-weight: 700;
    font-size: 12px;
}
/* End breadcrumbs */

@media (max-width: 992px){
    .fixed-top-margin{
        margin-top: 65px;
    }

    .home-welcome .row{
        flex-direction: column-reverse;
    }

    .home-welcome .details{
        padding: 0;
    }
}
@media (max-width: 768px){
    .fixed-top-margin{
        margin-top: 65px;
    }

    .lines .line-2,
    .lines .line-3,
    .lines .line-alt-2{
        display: none;
    }

    .lines .line-alt-1{
        left: 90%;
    }

    .topic-page .section-title{
        padding-bottom: 0;
    }

    .ui-resizable h2{
        margin-top: 15px;
        line-height: 30px;
    }

    .ui-resizable p{
        margin-top: 10px;
    }

    .section-title h1{
        font-size: 34px;
        line-height: 42px;
    }

    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
        padding: 0 1rem;
    }

    .navbar-mobile-bg{
        background-color: transparent;
    }

    #hero{
        height: 482px;
    }

    #hero .slider-content{
        width: 100%;
        left: 4%;
    }

    #hero .slider-content h2{
        font-size: 36px;
        line-height: 71px;
    }

    #hero .slider-content p{
        font-size: 16px;
        width: 74%;
        padding: 0;
    }

    #hero .slider-content h2::before{
        height: 6px;
    }

    .home{
        padding: 0;
    }

    .home-welcome .details h5{
        font-size: 18px;
    }

    .home-welcome .details h1{
        font-size: 34px;
    }

    .text-banner .col{
        transition: .5s 0s ease-out !important;
    }

    .services .swiper{
        padding: 0 10px;
    }

    .services .swiper-slide .card,
    .services .swiper-slide-next .card{
        height: auto;
        padding: 10px;
    }

    .services .swiper-button-next.swiper-button-disabled, .services .swiper-button-prev.swiper-button-disabled{
        background-color: var(--main-color);
        opacity: .7;
    }

    .products .section-title{
        margin: 0 !important;
    }

    .products .details h2{
        line-height: 123%;
        font-size: 27px;
    }

    .products .details p{
        width: 100%;
    }

    .row-4 .card-header,
    .row-4 .read-more{
        justify-content: center !important;
        margin-bottom: 20px;
    }
    .row-4 .card-body{
        align-items: center !important;
        text-align: center;
    }

    .row-4 .card-header::after{
        content: none;
    }

    .row-4 .swiper-pagination{
        bottom: 0;
    }

    .partners .thumbnail img{
        width: 175px;
    }

    .home-welcome .btn-theme-3, .breadcrumbs .btn-theme-3, .row-4 .btn-theme-3, .topics-details-2 .btn-theme-3{
        width: 130px;
        height: 130px;
    }

    #footer .footer-top .footer-links ul{
        /* display: flex; */
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 0;
        position: relative;
        height: 100%;
    }

    #footer .footer-top .footer-links ul::after{
        content: '';
        position: absolute;
        bottom: 20px;
        width: 100%;
        left: 50%;
        height: 1px;
        background-color: #ccc;
        transform: translateX(-50%);
    }

    #footer .footer-top .footer-links ul li:first-child{
        padding-top: 10px;
    }

    #footer .footer-top .footer-links ul li{
        /* margin: 0 10px; */
    }

    #footer .contact-us-footer p{
        display: none;
    }

    #footer .social-links{
        justify-content: center;
    }

    .breadcrumbs h2{
        font-size: 30px;
        text-align: center;
    }

    .breadcrumbs .btn-theme-3{
        display: none !important;
        margin: auto;
        margin-top: 28px;
        width: 120px;
        height: 120px;
        font-size: 17px;
    }

    .topics-details-2 .read-more {
        justify-content: center !important;
    }
    #footer .footer-top h1{
        padding-bottom: 0;
        margin-bottom: 0;
    }

    #footer .footer-top .footer-links ul li{
        padding: 3px 0;
    }
}

.navbar .dropdown ul li, .navbar-mobile .dropdown ul li
{
    min-width: 250px;
}
