
:root {
    --font-family: "Nunito", sans-serif;
    --primary-color: #DD8F88;
    --secondary-color: #FF1E00;
    --color: #0C0C0C;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --light-color: #A2A2A2;
    --border-color: #CDCDCD;
    --text-gray:#666666;
    --transition: all 0.4s;
    --border-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(153, 153, 153, 0.14) 65.04%);
}

body {
    font-family: var(--font-family);
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    color: var(--color);
    overflow-x: hidden;
    font-weight: 500;
    /* background-color: #fff3eb4f; */
}
/* Chrome, Edge, and Safari */
/* * {
    scrollbar-width: auto;
    scrollbar-color: var(--primary-color) var(--border-color);
} */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
    background: var(--border-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family);
    margin-bottom: 0;
    font-weight: 600;
}

p {
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

a {
    display: inline-block;
    color: var(--color);
    text-decoration: none;
    transition: var(--transition);
    /* transition: var(--transition);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition); */
}

a:hover {
    text-decoration: none;
    color: var(--secondary-color);
}

img {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* margin: auto; */
}

ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

button{
    outline:none;
    border:none;
    background: transparent;
}

button:focus,
.btn-close:focus {
    outline: none;
    box-shadow: none;
}


/* fixed-class */
.flex-center {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-color {
    color: var(--primary-color) !important;
}
.dcode{
    color: #20B36D;
}

.c-pointer {
    cursor: pointer;
}

.mb-100 {
    margin-bottom: 100px;
}

.mt-100 {
    margin-top: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.mx-100 {
    margin-right: 100px;
    margin-left: 100px;
}
.px-100 {
    padding-right: 100px;
    padding-left: 100px;
}
.mb-40{
    margin-bottom: 40px;
}
.mb-20{
    margin-bottom: 20px !important;
}
.mb-10{
    margin-bottom: 10px !important;
}
.main-btn-box {
    display: -webkit-flex;
    display: flex;
}
.white-title{
    color: var(--text-white) !important;
}
.text-danger {
    font-size: 12px;
    margin-top: 2px;
    position: absolute;
}
.main-btn{
    background-color: var(--color);
    color: var(--text-white);
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.main-btn:hover{
    background-color: var(--secondary-color);
    color: var(--text-white);
}
.main-btn.header-btn{
    background-color: var(--secondary-color);
}
.main-btn.header-btn:hover{
    background-color: var(--color);
}
/* input desing */
.atmik-input, textarea{
    background-color: transparent;
    font-size: 14px;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    border-radius: 0;
}
.atmik-input:hover,
.atmik-input:focus{
    border-color: var(--primary-color);
}
textarea:hover,
textarea:focus{
    border-color: var(--primary-color);
}
.atmik-input::placeholder{
    font-size: 14px;
}
textarea::placeholder{
    font-size: 14px;
}
input:focus-visible {
    outline-offset: 0px;
    outline: none;
}
textarea:focus-visible {
    outline-offset: 0px;
    outline: none;
}
.main-title{
    margin-bottom: 50px;
}
.main-title h1{
    font-size: 60px;
    margin-bottom: 10px;
}
.main-title h2{
    font-size: 44px;
    margin-bottom: 10px;
}
.main-title h3{
    font-size: 36px;
    margin-bottom: 10px;
}
.main-title h4{
    font-size: 30px;
    margin-bottom: 10px;
}
.main-title h5{
    font-size: 26px;
    margin-bottom: 10px;
}
.main-title h6{
    font-size: 22px;
}
.description{
    max-width: 600px;
    margin: auto;
}
@media (max-width:1500px) {
    .mx-100 {
        margin-right: 50px;
        margin-left: 50px;
    }
    .px-100 {
        padding-right: 50px;
        padding-left: 50px;
    }
    .main-title{
        margin-bottom: 40px;
    }
    .main-title h1{
        font-size: 50px;
    }
    .main-title h2{
        font-size: 40px;
        margin-bottom: 10px;
    }
}
@media (min-width:992px) and (max-width:1200px) {
    .mb-100 {
        margin-bottom: 80px;
    }
    .mt-100 {
        margin-top: 80px;
    }
    .pt-100 {
        padding-top: 80px;
    }
    .pb-100 {
        padding-bottom: 80px;
    }
    body{
        font-size: 16px;
    }
    .main-title{
        margin-bottom: 30px;
    }
    .main-title h1{
        font-size: 40px;
    }
    .main-title h2{
        font-size: 32px;
    }
    .main-title h3{
        font-size: 26px;
    }
    .main-title h4{
        font-size: 24px;
        margin-bottom: 10px;
    }
    .main-title h5{
        font-size: 22px;
        margin-bottom: 10px;
    }
    .main-title h6{
        font-size: 20px;
    }
}
@media (min-width:768px) and (max-width:991px) {
    body{
        font-size: 16px;
    }
    .mb-100 {
        margin-bottom: 70px;
    }
    .mt-100 {
        margin-top: 70px;
    }
    .pt-100 {
        padding-top: 70px;
    }
    .pb-100 {
        padding-bottom: 70px;
    }
    .mx-100 {
        margin-right: 30px;
        margin-left: 30px;
    }
    .px-100 {
        padding-right: 30px;
        padding-left: 30px;
    }
    .mb-40{
        margin-bottom: 30px;
    }
    .mb-20{
        margin-bottom: 14px !important;
    }
    .main-title{
        margin-bottom: 30px;
    }
    .main-title h1{
        font-size: 32px;
    }
    .main-title h2{
        font-size: 28px;
    }
    .main-title h3{
        font-size: 24px;
    }
    .main-title h4{
        font-size: 24px;
    }
    .main-title h5{
        font-size: 22px;
    }
    .main-title h6{
        font-size: 20px;
    }

    .main-btn {
        font-size: 15px;
        padding: 10px 16px;
    }
}

@media (min-width:576px) and (max-width:767px) {
    body{
        font-size: 14px;
    }
    .mb-100 {
        margin-bottom: 60px;
    }
    .mt-100 {
        margin-top: 60px;
    }
    .pt-100 {
        padding-top: 60px;
    }
    .pb-100 {
        padding-bottom: 60px;
    }
    .mx-100 {
        margin-right: 30px;
        margin-left: 30px;
    }
    .px-100 {
        padding-right: 30px;
        padding-left: 30px;
    }
    .mb-40{
        margin-bottom: 20px;
    }
    .mb-20{
        margin-bottom: 12px !important;
    }
    .main-title{
        margin-bottom: 30px;
    }
    .main-title h1{
        font-size: 26px;
    }
    .main-title h2{
        font-size: 24px;
    }
    .main-title h3{
        font-size: 22px;
    }
    .main-title h4{
        font-size: 22px;
    }
    .main-title h5{
        font-size: 20px;
    }
    .main-title h6{
        font-size: 18px;
    }
    .main-btn {
        font-size: 15px;
        padding: 10px 16px;
    }
}
@media (max-width:575px) {
    body{
        font-size: 14px;
    }
    .mb-100 {
        margin-bottom: 40px;
    }
    .mt-100 {
        margin-top: 40px;
    }
    .pt-100 {
        padding-top: 40px;
    }
    .pb-100 {
        padding-bottom: 40px;
    }
    .mx-100 {
        margin-right: 12px;
        margin-left: 12px;
    }
    .px-100 {
        padding-right: 12px;
        padding-left: 12px;
    }
    .mb-40{
        margin-bottom: 20px;
    }
    .mb-20{
        margin-bottom: 10px !important;
    }
    .main-title{
        margin-bottom: 20px;
    }
    .main-title h1{
        font-size: 26px;
    }
    .main-title h2{
        font-size: 24px;
    }
    .main-title h3{
        font-size: 22px;
    }
    .main-title h4{
        font-size: 20px;
    }
    .main-title h5{
        font-size: 18px;
    }
    .main-title h6{
        font-size: 16px;
    }
    .main-btn {
        font-size: 14px;
        padding: 10px 12px;
    }
    .atmik-input{
        padding: 5px 0;
    }
}

/* HEADER */
header{
    padding-top: 20px;
    padding-bottom: 20px;
    background: linear-gradient(180deg, #E6D1C8 0.34%, #d864665c 100.44%);
    background: #E1AC9F;
}
header .main-logo{
    margin-bottom: 10px;
}
header .menu-listing-main .navbar-list{
    gap: 70px;
}
header .menu-listing-main .navbar-list li.active{
    border-bottom: 2px solid var(--secondary-color);
}
header .menu-listing-main .navbar-list li.active a{
    color: var(--secondary-color);
}
header .menu-listing-main .navbar-list li span:hover{
    color: var(--secondary-color);
}
@media (max-width:1400px){
    header{
        padding-top: 16px;
        padding-bottom: 16px;
    }
    header .menu-listing-main .navbar-list{
        gap: 40px;
    }
}
@media (max-width:991px){
    header .menu-listing-main .navbar-list{
        display: none;
    }
    .menu-wrap{
        position: relative;
        line-height: 0.4;
        z-index: 1;
        display: flex !important;
        justify-content: end;
        z-index: 999;
    }
    .menu-wrap .toggler{
        position:relative;
        z-index:1000;
        cursor:pointer;
        width:30px;
        height:30px;
        opacity:0;
    }
    .menu-wrap .hamburger{
        position:absolute;
        z-index: 1;
        width:30px;
        height:30px;
        padding: 4px;
        display: -webkit-flex;
        display: flex;
        align-items:center;
        justify-content:center;
    }
    .menu-wrap .hamburger > div{
        position:relative;
        flex:none;
        width:100%;
        height:2px;
        background-color: var(--bg-white);
        display:flex;
        align-items:center;
        justify-content:center;
        transition: all 0.4s ease;
    }
    .menu-wrap .hamburger > div::before,
    .menu-wrap .hamburger > div::after{
        content:"";
        position:absolute;
        z-index:1;
        top:-7px;
        width:100%;
        height:2px;
        background:inherit;
    }
    .menu-wrap .hamburger > div::after{
        top: 7px;
    }
    .menu-wrap .toggler:checked + .hamburger > div{
        transform:rotate(135deg);
    }
    .menu-wrap .toggler:checked + .hamburger > div::before,
    .menu-wrap .toggler:checked + .hamburger > div::after{
        top: 0;
        transform: rotate(90deg);
    }
    .menu-wrap .toggler:checked:hover + .hamburger > div{
        transform: rotate(225deg);
    }
    .menu-wrap .toggler:checked ~ .header-menu-mobile{
        visibility:visible;
    }
    .menu-wrap .toggler:checked ~ .header-menu-mobile > div{
        transform:scale(1);
        transition-duration: 0.8s;
    }
    .menu-wrap .toggler:checked ~ .header-menu-mobile > div > div{
        opacity:1;
        transition:opacity 0.4s ease 0.4s;
    }
    .menu-wrap .header-menu-mobile{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        visibility: hidden;
        overflow: hidden;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .menu-wrap .header-menu-mobile > div{
        background: linear-gradient(180deg, #E6D1C8 0.34%, #D86466 100.44%);
        opacity: 0.95;
        border-radius: 50%;
        width: 400vw;
        height: 400vw;
        display: -webkit-flex;
        display: flex;
        flex: none;
        align-items: center;
        justify-content: center;
        transform: scale(0);
        transition: all 0.4s ease;
    }
    .menu-wrap .header-menu-mobile > div > div{
        text-align: center;
        max-width: 90vw;
        max-height: 100vh;
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    .menu-wrap .header-menu-mobile > div > div > ul > li{
        font-size: 30px;
        padding: 13px;
    }
    .menu-wrap .header-menu-mobile > div > div > ul > li > a{
        line-height: normal;
    }
}
@media (max-width:767px){
    .menu-wrap .toggler{
        width:24px;
        height:20px;
        opacity:0;
    }
    .menu-wrap .hamburger{
        width:24px;
        height:20px;
        padding: 2px;
    }
    .menu-wrap .hamburger > div{
        height:2px;
    }
    .menu-wrap .header-menu-mobile > div > div > ul > li{
        font-size: 30px;
        padding: 12px;
    }
}
@media (max-width:575px){
    header{
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .menu-wrap .toggler{
        width:24px;
        height:18px;
        opacity:0;
    }
    .menu-wrap .hamburger{
        width:24px;
        height:18px;
        padding: 2px;
    }
    .menu-wrap .hamburger > div{
        height:2px;
    }
    .menu-wrap .header-menu-mobile > div > div > ul > li{
        font-size: 24px;
        padding: 12px;
    }
}

/* FOOTER */
footer{
    padding-top: 50px;
    padding-bottom: 10px;
    background: linear-gradient(180deg, #E6D1C8 0.34%, #d864665c 100.44%);
}
.footer-menu-list ul{
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 80px;
}
.footer-menu-list.social-links ul{
    gap: 20px;
}
.copyrights{
    border-top: 1px solid var(--bg-white);
    padding-top: 10px;
    margin-top: 20px;
    font-size: 12px;
    text-align: center;
    font-weight: 500;
}
.footer-newsletter{
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
}
.footer-newsletter .form-field{
    max-width: 500px;
    width: 100%;
    gap: 20px;
    display: -webkit-flex;
    display: flex;
}
.footer-newsletter input{
    border-color: var(--bg-white);
}
.footer-newsletter input, .footer-newsletter button{
    border-color: var(--bg-white);
    color: var(--text-white);
}
.footer-newsletter input::placeholder{
    color: var(--text-white);
}


/* footer */
.footer-main{
    position: relative;
    z-index: 5;
}
.footer-main .main-title p{
    max-width: 320px;
    text-align: left;
    font-size: 15px;
    margin-top: 20px;
    font-weight: 500;
}
.footer-main .footer-menu-list{
    max-width: 200px;
    margin: auto;
}
.footer-main .footer-menu-list ul li{
    margin-bottom: 16px;
}
.footer-main .footer-menu-list ul li.active a{
    color: var(--secondary-color);
}
.footer-main .footer-newsletter{
    display: block;
}
.footer-main .footer-newsletter p{
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-main .footer-newsletter .form-field input{
    color: var(--color);
    border-color: var(--color);
}
.footer-main .footer-newsletter .form-field input::placeholder{
    color: var(--color);
}
.footer-main .social-links{
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    margin-top: 30px;
}
.social-links ul li:not(:last-child){
    margin-right: 20px;
}
.footer-app ul{
    gap: 50px;
}
.footer-main .logo-bg{
    position: absolute;
    inset: 0;
    height: 100%;
    opacity: 0.08;
    z-index: -1;
}
.footer-main .logo-bg svg{
    width: 100%;
    height: 100%;
}
@media (max-width:767px){
    .footer-main .main-title p{
        font-size: 14px;
        margin-top: 16px;
    }
    .footer-main .footer-menu-list ul{
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .footer-main .footer-menu-list ul li{
        margin-bottom: 10px;
    }
    .footer-main .footer-newsletter{
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .footer-main .footer-newsletter p{
        margin-bottom: 5px;
    }
    .footer-main .social-links{
        font-size: 14px;
        margin-top: 16px;
    }
    .social-links ul li:not(:last-child){
        margin-right: 12px;
    }
}
@media (max-width:575px){
    .footer-main .footer-menu-list{
        margin: inherit;
    }
    .footer-main .footer-menu-list ul{
        margin-top: 20px;
        margin-bottom: 0px;
    }
    .copyrights{
        padding-top: 10px;
        margin-top: 20px;
        font-size: 12px;
    }
}


/* POLICIES */
.policy-main h3{
    font-size: 22px;
    margin: 30px 0 20px;
}
.content-main{
    max-width: 1200px;
    margin: auto;
}
.content-main p{
    margin-bottom: 12px;
}
.content-main ul{
    list-style: disc;
    padding-left: 30px;
}
.content-main ul li{
    margin-bottom: 12px;
}

/* HOME PAGE */
/* HERO SECTION */
.hero-sect{
    position: relative;
}
.hero-sect .hero-content{
    position: absolute;
    inset: 0;
    left: 0;
    margin: auto 100px;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-direction: column;
    gap: 20px;
}
.hero-sect .hero-content .main-title h1{
    margin-bottom: 20px;
}
.footer-app p{
    margin-bottom: 10px;
    font-size: 20px;
}
.footer-app ul{
    gap: 30px;
}
@media (max-width:1400px){
    .hero-sect .hero-content{
        gap: 0px;
        margin: auto 70px;
    }
    .hero-sect .hero-content .main-title h1{
        margin-bottom: 10px;
    }
    .hero-sect .hero-content .main-title h6{
        font-size: 20px;
    }
    .footer-app p{
        font-size: 18px;
    }
    .footer-app ul{
        gap: 20px;
    }
}
@media (min-width:768px) and (max-width:991px){
    .hero-sect .hero-cover{
        min-height: 350px;
        object-fit:cover;
    }
}
@media (min-width:576px) and (max-width:767px){
    .hero-sect .hero-cover{
        min-height: 300px;
        object-fit:cover;
    }
    .hero-sect .hero-content{
        margin: auto 40px;
    }
    .hero-sect .hero-content .main-title h6{
        font-size: 18px;
    }
    .footer-app p{
        font-size: 16px;
    }
}
@media (max-width:575px){
    .hero-sect .hero-cover{
        min-height: 150px;
        object-fit:cover;
    }
    .hero-sect .hero-content{
        margin: 20px 12px;
        position:relative;
    }
    .hero-sect .hero-content .main-title h6{
        font-size: 16px;
    }
    .footer-app p{
        font-size: 14px;
    }
    .footer-app ul{
        gap: 20px;
    }
}

/* phone screen slider */
/* slider arrow */
.pm-reels-slider-main .slick-list{
    max-width: 900px;
    margin: auto;
}
span.pm-reels-prev, span.pm-reels-next{
    cursor: pointer;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: #EFEFEF;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 9;
}
span.pm-reels-prev svg, span.pm-reels-next svg{
    stroke: #000000;
}
span.pm-reels-prev:hover svg, span.pm-reels-next:hover svg{
    stroke: var(--primary-color);
}
.pm-reels-prev{
    left: 0;
}
.pm-reels-next{
    right: 0;
}
/* slider */
.pm-reels-slider-main{
    margin-top: 20px;
}
.pm-reels-slider-main .reels-video-frame{
    position: absolute;
    top: -14px;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    transition: var(--transition);
    min-height: 630px;
}
.pm-reels-slider-main .reels_video-slider{
    position: relative;
    z-index: 2;
}
.pm-reels-slider-main .slick-slide{
    height: auto;
}
.video-database-width {
    position: relative;
    padding: 20px 12px 0;
    display: flex !important;
    align-items: center;
    margin: auto;
    flex-direction: column;
}
.video-database-width .content{
    margin-top: 70px;
    text-align: center;
    transition: var(--transition);
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
}
.video-database-width .content h4{
    font-size: 22px;
    margin-bottom: 10px;
}
.video-database-width img{
    max-width: 245px;
    width: 100%;
    border-radius: 36px;
    transition: all 0.4s;
    min-height: 535px;
    max-height: 535px;
    object-fit: cover;
    overflow: hidden;
    position: relative;
}
.slick-center .video-database-width {
    overflow: hidden;
}
.slick-center .video-database-width .content{
    visibility: visible;
    opacity: 1;
}
.slick-center .video-database-width img{
    transform: scale(1.18);
    right: -4px;
    border-radius: 60px;
}
@media (max-width:1199px) {
    .pm-reels-slider-main .slick-list{
        max-width: 710px;
    }
    .pm-reels-slider-main {
        margin-top: 12px;
        margin-bottom: 52px;
    }
    .pm-reels-slider-main .reels-video-frame {
        top: 0px;
    }
    .pm-reels-slider-main .reels-video-frame img{
        height: 500px;
    }
    .video-database-width .content h4{
        font-size: 20px;
    }
    .video-database-width img{
        min-height: 440px;
        max-height: 440px;
    }
    .slick-center .video-database-width img{
        top: 12px;
        right: 0px;
        transform: scale(1.1);
        border-radius: 30px;
    }
}
@media (max-width:1019px) {
    span.pm-reels-prev, span.pm-reels-next{
        height: 40px;
        width: 40px;
    }
    span.pm-reels-prev svg, span.pm-reels-next svg{
        width: 20px;
        height: auto;
    }
    .pm-reels-prev {
        left: -10px;
    }
    .pm-reels-next {
        right: -10px;
    }
    .pm-reels-slider-main {
        margin-top: 0px;
    }
    .video-database-width {
        padding: 10px 37px;
    }
    .video-database-width .content h4{
        font-size: 18px;
    }
    .video-database-width img{
        min-height: 445px;
        max-height: 445px;
        max-width: 200px;
    }
    .slick-center .video-database-width img{
        top: 16px;
        right: 0px;
        transform: scale(1.1);
    }
}
@media (max-width:767px) {
    .video-database-width {
        padding: 20px 12px 0;
    }
    .video-database-width .content{
        margin-top: 70px;
    }
    .video-database-width .content h4{
        font-size: 18px;
    }
}
@media (max-width:575px) {
    span.pm-reels-prev, span.pm-reels-next{
        height: 40px;
        width: 40px;
    }
    span.pm-reels-prev svg, span.pm-reels-next svg{
        width: 20px;
    }
    .pm-reels-slider-main .reels-video-frame img{
        height: 390px;
    }
    .video-database-width {
        padding: 0;
    }
    .video-database-width .content{
        margin-top: 30px;
    }
    .video-database-width .content h4{
        font-size: 16px;
    }
    .video-database-width img{
        min-height: 380px;
        max-height: 380px;
        max-width: 176px;
    }
    .slick-center .video-database-width img{
        top: 6px;
        transform: scale(1);
        border-radius: 20px;
    }
}

/* KEY FEATURES */
.featured-main-sect{
    background-color: #F7E4E2;
}
.featured-cover img{
    border-radius: 16px;
}
 .featured-content {
    max-width: 630px;
    margin: auto;
    display: block !important;
}
.featured-content h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
}
.featured-content p {
    margin-bottom: 10px;
}
.featured-content ul {
    list-style: disc;
    padding-left: 10px;
}
.featured-content ul li:not(:last-child) {
    margin-bottom: 6px;
}
/* slick dots */
.slick-dots {
    position: absolute;
    /* bottom: 10px; */
    text-align: center;
    left: 100px;
}
.slick-dots li {
    display: inline-block;
    margin: 0 5px;
    line-height: 0;
    transition: all 0.4s;
    border-radius: 50%;
}
.slick-dots button {
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-white);
    border: none;
    outline: none;
    transition: all 0.4s;
}
.slick-dots .slick-active button {
    background: var(--primary-color);
}
.slick-dots .slick-active{
    border-color: var(--primary-color);
}
 .cta-content {
    max-width: 500px;
    margin: auto;
}
.cta-content h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
}
.cta-content p {
    margin-bottom: 10px;
}
.cta-content > ul {
    padding-left: 10px;
    margin-bottom: 30px;
}

.cta-content > ul li:not(:last-child) {
    margin-bottom: 6px;
}
.arrow-icon {
    list-style: none !important;
}

.arrow-icon li {
    padding-left: 30px;
    background: url('../images/arrow-icon.svg') no-repeat left center;
    background-size: 13px;
}
@media (max-width:767px) {
    .cta-content{
        margin-top: 20px;
    }
}
@media (max-width:767px) {
    .featured-content{
        margin-top: 20px;
    }    
    .slick-dots {
        left: 0;
    }
    .cta-content > ul {
        margin-bottom: 20px;
    }
}
/* TESTIMONIALS */
.testimonial-slider {
    width: 90%;
    margin: auto;
    position: relative;
}
.testimonial-slider .slick-dots {
    left: 0;
    right: 0;
    bottom: -40px;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
}
.testimonial-slider .slick-dots button {
    background-color: var(--primary-color);
    opacity: 0.3;
}
.testimonial-slider .slick-dots .slick-active button {
    background-color: var(--primary-color);
    opacity: 1;
}
.testimonial-slide {
    background: #F7E4E2;
    border-radius: 16px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    max-height: 300px;
    min-height: 300px;
}
.testimonial-slide .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.testimonial-slide .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-slide .name {
    font-size: 20px;
    margin-bottom: 20px;
}
.testimonial-slide .role {
    font-size: 14px;
    color: #6e6b7b;
    margin-bottom: 20px;
}
.testimonial-slide .text {
    font-size: 16px;
    color: #4a4a57;
}
.testimonial-slide .logo {
    width: 100px;
    margin: 0 auto;
}
.quotes-icon{
    position: absolute;
    bottom: 0px;
    right: 0px;
    border-radius: 16px;
    overflow: hidden;
}
@media (max-width:575px) {
    .testimonial-slide .name {
        font-size: 16px;
        margin-bottom: 16px;
    }
    .testimonial-slide .text {
        font-size: 14px;
    }
}
/* Center and scale effect */
.slick-slide {
    transform: scale(0.85);
    opacity: 0.5;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.slick-center {
    transform: scale(1);
    opacity: 1;
}
@media (max-width:1400px) {
    .testimonial-slider {
        width: 100%;
    }
}
@media (min-width:576px) and (max-width:767px) {
    .testimonial-slide {
        max-height: max-content;
        min-height: max-content;
    }
    .testimonial-slide .avatar{
        width: 60px;
        height: 60px;
    }
}
@media (max-width:575px) {
    .testimonial-main-sect{
        padding-bottom: 20px;
    }
    .testimonial-slider .slick-dots {
        bottom: -25px;
    }
}
  /* ABOUT US */
  .about-us-cover img {
    border-radius: 16px;
}
.vission-content {
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    background: linear-gradient(180deg, #E6D1C8 0.34%, #d864665c 100.44%);
    height: 100%;
}
.about-us-content {
    max-width: 500px;
    margin: auto;
}
@media (max-width:1400px) {
    .vission-content {
        padding: 20px;
    }
}
@media (min-width:768px) and (max-width:991px) {
    .vission-content {
        padding: 16px;
    }
}
@media (min-width:576px) and (max-width:767px) {
    .vission-content {
        padding: 16px;
    }
    .about-us-cover {
        margin-bottom: 12px;
    }
}
@media (max-width:575px) {
    .vission-content {
        padding: 16px;
    }
    .about-us-cover {
        margin-bottom: 12px;
    }
}

/* ARTICLES */
.latest-blog-cover img {
    object-fit: cover;
}
.latest-blog-main {
    display: -webkit-flex;
    display: flex;
    align-items: center;
}
.latest-blog-content {
    max-width: 570px;
    margin-left: -80px;
    background: white;
    padding: 80px 30px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 7px 1px;
}
.latest-blog-content p {
    font-size: 16px;
    margin-bottom: 20px;
}
.latest-blog-content .read-more-btn {
    font-size: 14px;
}
.latest-blog-content .read-more-btn svg {
    stroke: var(--color);
    transition: var(--transition);
}
.latest-blog-content .read-more-btn:hover svg {
    stroke: var(--secondary-color);
}
.blog-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.blog-card img {
    object-fit: cover;
}
.blog-card h5 {
    margin-bottom: 0;
}
.blog-card p {
    font-size: 14px;
}
.blog-card .read-more-btn {
    font-size: 14px;
}
.blog-card .read-more-btn svg {
    stroke: var(--color);
    transition: var(--transition);
}
.blog-card .read-more-btn:hover svg {
    stroke: var(--secondary-color);
}
.posted-by {
    font-size: 12px;
    color: var(--light-color);
    display: block;
    white-space: nowrap;
}
@media (max-width:1400px) {
    .latest-blog-content {
        margin-left: -130px;
        padding: 50px 20px;
    }
}
@media (max-width:1199px) {
    .latest-blog-content {
        max-width: 470px;
        margin-left: -130px;
        padding: 30px 12px;
    }
    .latest-blog-content p {
        font-size: 14px;
        margin-bottom: 14px;
    }
}
@media (max-width:991px) {
    .latest-blog-content {
        margin-left: -130px;
        padding: 15px;
        max-width: 370px;
    }
}
@media (max-width:767px) {
    .latest-blog-main {
        flex-direction: column;
    }
    .latest-blog-content {
        max-width: max-content;
        margin-left: 0;
        padding: 12px;
        width: 90%;
        margin-top: -30px;
    }
    .latest-blog-content .read-more-btn {
        font-size: 12px;
    }
}
/* BLOG DETAILS */
.blog-detail-content * {
    font-family: var(--font-family) !important;
    color: var(--color);
}
.blog-detail-content {
    max-width: 1200px;
    margin: auto;
}
.blog-detail-content ul {
    list-style: inherit !important;
    padding-left: 30px !important;
}
.blog-detail-content h2, .blog-detail-content h2 * {
    font-size: 32px;
}
.blog-detail-content h2, .blog-detail-content h3, .blog-detail-content h4, .blog-detail-content h5, .blog-detail-content h6 {
    margin-top: 20px;
    margin-bottom: 8px;
}
.blog-detail-content p {
    font-size: 16px;
    margin-bottom: 5px;
}
.blog-side-bar {
    position: sticky;
    top: 5px;
}
.related-blog-list {
    gap: 10px;
    align-items: center;
}
.related-blog-list {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}
.related-blog-list .cover{
    flex-shrink: 0;
}
.related-blog-list img {
    width: 150px;
    height: 100px;
    object-fit: cover;
}
.related-blog-list-title h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
}
.related-blog-list-title p {
    font-size: 12px;
}
@media (max-width:1400px) {
    .related-blog-list img {
        width: 120px;
        height: 75px;
        object-fit: cover;
    }
}
@media (max-width:1199px) {
    .related-blog-list{
        flex-direction: column;
        align-items: baseline;
    }
}
@media (max-width:991px) {
    .related-blog-list{
        flex-direction: column;
        align-items: baseline;
    }
}
@media (max-width:767px) {
    .related-blog-list {
        padding-bottom: 0px;
        border-bottom: none;
        margin-bottom: 0px;
    }
    .related-blog-list{
        flex-direction: column;
        align-items: baseline;
    }
    .blog-detail-content p {
        font-size: 14px;
    }
    .blog-side-bar {
        margin-bottom: 24px;
    }
}
/* CONTACT US */
.contact-us-content {
    border-radius: 16px;
    background-color: #f7f7f7;;
    padding: 40px;
}
.contact-img {
    height: 100%;
    object-fit: cover;
}
.contact-img img{
    border-radius: 16px;
    height: 100%;
    object-fit: cover;
}
.connect-field{
    padding: 12px;
    border-radius: 16px;
    gap: 12px;
    background-color: var(--bg-white);
}
.connect-field .icon{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: linear-gradient(180deg, #E6D1C8 0.34%, #d864665c 100.44%);
    /* border: 1px solid var(--primary-color); */
}
.connect-field .mail-field p{
    font-size: 16px;
}
.connect-field .mail-field a{
    color: var(--light-color);
    font-size: 14px;
    margin-top: 5px;
}
.connect-field .mail-field a:hover{
    color: var(--secondary-color);
}
.contact-us-content .row{
    row-gap: 20px;
}
.contact-us-content textarea{
    height: 100px;
}
@media (max-width:991px) {
    .contact-img{
        padding-bottom: 20px;
    }
}
@media (max-width:767px) {
    .contact-us-content {
        padding: 20px;
    }
    .connect-field .mail-field p {
        font-size: 14px;
    }
    .connect-field .mail-field a {
        font-size: 12px;
        margin-top: 1px;
    }
    .connect-field .icon {
        height: 40px;
        width: 40px;
    }
    .connect-field .icon svg{
        height: 20px;
        width: 20px;
    }
}