body {
    font-family:'Plus Jakarta Sans', sans-serif;
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 36px;
    height: 36px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    /* background: var(--bs-white); */
    transition: 1s;
}

.navbar .navbar-expand-lg .navbar-light{
border: 2px solid black;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
    margin-left: 20px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 18px;
    font-weight: 550;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav mx-auto text-center .nav-item:hover .nav-link,
.navbar-light .navbar-nav mx-auto text-center .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .quote-section p{
font-size:16px;
line-height:1.6;
max-width:1100px;
margin:auto;
font-weight:500;
}
    .navbar {
        padding: 10px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
        margin-right: 20px;
        background: white;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 0px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        /* background: var(--bs-light); */
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 400px;
    margin-left: 20px;
    
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-dark);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, .2); */
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {    
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(#00938d, rgba(0, 0, 0, 0.2)), url(../img/hhhhh.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    color: white;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Service Start ***/


/* Section */
.services-section {
    background: #dce8e8;
    padding: 60px 30px;
    border-radius: 20px;
   
}

/* Heading */
.services-header h2 {
    font-size: 32px;
    font-weight: 600;
}

/* Slider */
.slider-container {
    overflow: hidden;
    margin-top: 0px;
}

.sliderservices {
    display: flex;
    gap: 25px;
    transition: transform 0.6s ease;
}

/* Card */
.service-card {
    position: relative;
    min-width: 280px;
    max-width: 280px;
    background: linear-gradient(145deg, #ffffff, #e6eeee);
    border-radius: 25px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* graphic circle top */
.service-card::before{
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg,#4facfe,#00f2fe);
    top: -40px;
    right: -40px;
    border-radius: 50%;
    opacity: 0.25;
}

/* graphic bottom shape */
.service-card::after{
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg,#4facfe,#2a7d7d);
    bottom: -40px;
    left: -40px;
    border-radius: 50%;
    opacity: 0.25;
}


/* Hover Effect */
.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);

}
.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0%;
    height:4px;
    background:#2a7d7d;
    transition:0.4s ease;
    margin-left: 12px;
}
.service-card:hover::before{
    width:90%;
}

/* Icon */
.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2a7d7d;
}

/* Title */
.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2a7d7d;
}

/* Description */
.service-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media(max-width:768px){
    .service-card {
        min-width: 220px;
    }
}

/* Buttons */
.slider-buttons {
    text-align: center;
    margin-top: 30px;
}

.slider-buttons button {
    width: 35px;
    height: 35px;
    margin: 0 10px;
    border-radius: 50%;
    border: none;
    background: #2a7d7d;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.slider-buttons button:hover {
    background: #1e5c5c;
    transform: scale(1);
}


/*** Service End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-light);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-white);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/







.navbar-center{
display:flex;
align-items:center;
flex-wrap:nowrap;
white-space:nowrap;
}
.navbar-center .nav-link{
white-space:nowrap;
}



/* Header */
.slider-header{
max-width:1100px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:15px;
}

.buttons button{
width:40px;
height:40px;
border-radius:50%;
border:1px solid #ccc;
background:#fff;
cursor:pointer;
margin-left:8px;
}

/* Slider */

.slider-box{
width:100%;
max-width:1100px;
margin:auto;
background:#fff;
border-radius:25px;
padding:30px;
overflow:hidden;
border:1px solid #ddd;
}

.slider-track{
display:flex;
transition:transform 0.6s ease;
}

.slide{
min-width:180px;
display:flex;
justify-content:center;
align-items:center;
font-size:24px;
color:#999;
}

.slide img{
height:45px;
object-fit:contain;
margin-right:20px;
}

.separator{
margin-left:20px;
font-weight:bold;
}




.title{
text-align:center;
font-size:38px;
margin-bottom:30px;
color:#2f2a5a;
}

/* Slider */

.slidertes{
width:99%;
margin:auto;
overflow:hidden;
position:relative;
}

/* Track */

.slide-track{
display:flex;
gap:30px;
width:calc(350px * 10);
animation:scroll 30s linear infinite;
}

/* Card */

.cardtes{
width:350px;
flex-shrink:0;
text-align:center;
}

/* Bubble */

.bubble{
background:#fff;
padding:15px;
border-radius:12px;
border:1px solid #e3e6f2;
position:relative;
}

.bubble:after{
content:"";
position:absolute;
bottom:-15px;
left:50%;
transform:translateX(-50%);
border-width:15px;
border-style:solid;
border-color:#fff transparent transparent transparent;
}

.quote{
font-size:25px;
color:#555;
}

.bubble p{
line-height:1.6;
color:#444;
}

/* Profile */

.profile{
margin-top:30px;
}

.profile img{
width:70px;
height:70px;
border-radius:50%;
object-fit:cover;
border:4px solid white;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.name{
font-weight:bold;
font-size:20px;
margin-top:10px;
color:#3a3470;
}

.shop{
font-size:14px;
color:#777;
}

.stars{
color:#f4b400;
font-size:18px;
margin-top:6px;
}

/* Infinite Animation */

@keyframes scroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* Pause on hover */

.slidertes:hover .slide-track{
animation-play-state:paused;
}








/* SECTION */
.why-section {
    padding: 20px 20px;
}

.containerwhy {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

/* LEFT */
.left {
    flex: 1;
}

.left h2 {
    font-size: 36px;
    margin-bottom: 10px;
    position: relative;
}

.left h2::before {
    content: "{";
    color: #00b894;
    font-size: 60px;
    position: absolute;
    left: -25px;
    top: -10px;
}

.desc {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.left h3 {
    margin: 20px 0;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 10px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 8px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #2a7d7d;
}

.faq-question i {
    color: #00b894;
    margin-right: 10px;
    transition: 0.3s;
}

.faq-question .icon {
    transition: 0.3s;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #666;
    font-size: 14px;
    transition: max-height 0.4s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 120px;
    margin-top: 10px;
}

.faq-item.active .icon {
    transform: rotate(180deg);
}

/* HOVER EFFECT */
/* .faq-item:hover {
    background: #eef7ff;
    transform: translateX(5px);
} */

/* .faq-item:hover i {
    transform: scale(1.2);
} */

/* RIGHT */
.right {
    flex: 1;
}

.right img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: 0.3s;
}

/* IMAGE HOVER */
/* .right img:hover {
    transform: scale(1.03);
} */

/* RESPONSIVE */
@media(max-width: 900px) {
    .containerwhy {
        flex-direction: column;
    }

    .left h2 {
        font-size: 28px;
    }
}

.sectionbox{
    position:relative;
    padding:80px 8%;
    background:#ffffff;
    overflow:hidden;
}

/* SVG background */
.bg-lines{
    position:absolute;
    top:0;
    left:0;
    width:200%;
    height:100%;
}

/* lines style */
.line{
    fill:none;
    stroke-width:0.3;
    animation: moveLine 12s linear infinite,
               colorChange 6s linear infinite;
}

/* different colors */
.line1{ stroke:#4facfe; }
.line2{ stroke:#1e2a78; }
.line3{ stroke:#00c9a7; }

/* move right to left */
@keyframes moveLine{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* color change */
@keyframes colorChange{
    0%{ filter:hue-rotate(0deg); }
    100%{ filter:hue-rotate(360deg); }
}


.sectionbox h2{
    text-align:center;
    font-size:38px;
    margin-bottom:60px;
    letter-spacing:2px;
    color:#222;
}

.grid{
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:40px;
}

.card{
    position:relative;
    padding:50px 30px;
    border:3px solid #1e2a78;
    background:white;
    transition:0.4s;
    min-height:200px;
}

.card:hover{
    transform:translateY(-8px);
    border-color:#2a7d7d;
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.icon1{
    position:absolute;
    top:-20px;
    left:25px;
    background:white;
    padding:10px;
    color:#3a905d;
    font-size:28px;
}

.card h3{
    font-size:28px;
    font-weight:700;
    color:#19558f;
    margin-bottom:8px;
}

.card p{
    font-size:16px;
    color:#555;
}

/* Tablet */
@media(max-width:1024px){
    .grid{
        grid-template-columns: repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:600px){
    .grid{
        grid-template-columns: 1fr;
    }
}





/* FOOTER */

.footer{
background:#dce6ec;
border-radius:25px;
margin:16px;
padding:20px 40px;

}

/* GRID */

.footer-container{
display:grid;
grid-template-columns:1.2fr 1.3fr 1fr 1fr 1.3fr;
gap:40px;
}

/* COMPANY */

.company-logo{
font-size:28px;
font-weight:700;
color:#1d3f72;
margin-bottom:15px;
}

.company-text{
font-size:15px;
line-height:24px;
color:#333;
}

/* APP DOWNLOAD SECTION */

.app-title{
font-size:24px;
font-weight:600;
margin-bottom:10px;
color:#1d3f72;
}

.app-text{
font-size:15px;
color:#555;
margin-bottom:25px;
line-height:22px;
}

.download-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
margin-bottom:25px;
}

.store-btn{
display:flex;
align-items:center;
gap:12px;
padding:8px 18px;
border-radius:40px;
color:white;
text-decoration:none;
transition:0.35s;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.store-btn i{
font-size:22px;
}

.store-btn span{
font-size:11px;
display:block;
}

.store-btn b{
font-size:14px;
}

/* PLAYSTORE */

.playstore{
background:#34a853;
}

.playstore:hover{
background:#2d8f46;
color: white;
transform:translateY(-4px);
}

/* APP STORE */

.appstore{
background:#000;
}

.appstore:hover{
background:#222;
transform:translateY(-4px);
}

/* SOCIAL */

.social-icons{
margin-top:20px;
}

.social-icons a{
display:inline-flex;
align-items:center;
justify-content:center;
width:45px;
height:45px;
border-radius:50%;
background:#2c5d74;
color:white;
margin-right:0px;
transition:0.3s;
}

.social-icons a:hover{
background:#1f6f8b;
transform:translateY(-3px);
}

/* LINKS */

.footer h4{
font-size:20px;
margin-bottom:15px;
font-weight: 600;
}

.footer ul{
list-style:none;
padding:0;
margin:0;
}

.footer ul li{
margin-bottom:10px;
}

.footer ul li a{
text-decoration:none;
color:#333;
font-size:14px;
transition:0.3s;
font-weight: 500;
}

.footer ul li a:hover{
color:#1f6f8b;
padding-left:5px;
}

/* ADDRESS */

.address p{
font-size:14px;
line-height:22px;
color:#333;
margin-bottom:15px;
}

/* CONTACT */

.contact-info{
font-size:14px;
margin-top:10px;
}

/* BOTTOM */

.footer-bottom{
border-top:1px solid rgba(0,0,0,0.1);
margin-top:40px;
padding-top:20px;
display:flex;
justify-content:space-between;
flex-wrap:wrap;
font-size:14px;
}

.footer-bottom a{
text-decoration:none;
margin-right:15px;
color:#333;
}

/* RESPONSIVE */

@media(max-width:1100px){

.footer-container{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:700px){

.footer-container{
grid-template-columns:1fr;
}

.app-title{
font-size:28px;
}

}



.top-contact-wrapper{
width:100%;
padding:20px 0;
display:flex;
justify-content:center;
margin-bottom: 38px;
}

.top-contact-bar{
width:100%;
max-width:1400px;
background:#2d476a;
border-radius:40px;
border:1px solid rgba(255,255,255,0.08);
padding:16px 40px;

display:flex;
justify-content:space-between;
align-items:center;

color:white;

box-shadow:0 10px 30px rgba(0,0,0,0.4);

}

.contact-item{
font-size:16px;
}

.contact-item span{
color:#f4c542;
font-weight:500;
margin-right:6px;
}

@media(max-width:900px){

.top-contact-bar{
flex-direction:column;
gap:10px;
border-radius:20px;
text-align:center;
}

}


.footer::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:url("img/about-1.png") no-repeat center;
background-size:700px;
opacity:0.06;
pointer-events:none;
}



.title-underline{
width:90px;
height:6px;
background:#19558f;
margin:0 auto 35px auto;
border-radius:4px;
}



/* quote-section */
.quote-section{
padding:70px 10%;
text-align:center;
color:white;
background: linear-gradient(270deg,#f4c542,#19558f,#1f6f8b);
background-size:600% 600%;
border-radius: 10px;
animation:gradientMove 15s linear infinite;
}

.quote-section p{
font-size:20px;
line-height:1.6;
max-width:1100px;
margin:auto;
font-weight:500;
}

@keyframes gradientMove{

0%{
background-position:0% 50%;
}

50%{
background-position:100% 50%;
}

100%{
background-position:0% 50%;
}

}




.partner-header{
max-width:1100px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
}

.partner-title{
font-size:32px;
font-weight:600;
}

.partner-buttons button{
width:35px;
height:35px;
border-radius:50%;
border:1px solid #ccc;
background:white;
cursor:pointer;
margin-left:8px;
}

/* Slider Box */

.partner-slider-box{
max-width:1100px;
margin:auto;
background:#fff;
border-radius:25px;
padding:30px;
overflow:hidden;
border:1px solid #ddd;
margin-top: -50px;
}

/* Track */

.partner-slider-track{
display:flex;
transition:0.6s ease;
}

/* Slide */

.partner-slide{
min-width:180px;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
color:#999;
}

.partner-slide img{
height:50px;
object-fit:contain;
margin-right:40px;
}

.partner-separator{
margin-left:20px;
font-weight:bold;
}