﻿html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}
/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: #f6921e #111;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 12px;
  }

  *::-webkit-scrollbar-track {
    background:#111;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #f6921e;
    border-radius: 0px;
    border: 0px none #ffffff;
  }

:root {
    --primary-color: #f6921e;
    --secondary-color: #e6325b;
    --bg-light-blue: #eaf0ff;
    --body-font-color: #202020;
    --white-color: #ffffff;
    --heading-colors: #162231;
    --light-bg: #feefee;
    --footer-bg: #0b0916;
    --text-light: #2b3440;
    --text-light-2: #5a5a5a;
    --yellowcolor: #fedc65;
    --innersubtitle: #0c043d;
}

/* Header Css Start*/
#header {
    padding: 15px 0;
   /* height:100px;*/
}

.bshadow {
    box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    background-color: #000711d5;
    padding:12px 0;
}

.extra-mrt {
    margin-top: 100px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
/*.navbar {
    padding: 0;
    justify-content: flex-end;
}*/
.privacy ul {
    padding: 20px 0;
}
.privacy h4{
    padding:20px 0;
}
.privacy h4 {
    font-weight: bold
}
.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size:calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
    color: var(--white-color);
    white-space: nowrap;
    transition: 0.3s;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
}

    .navbar a i,
    .navbar a:focus i {
        font-size: 14px;
        line-height: 0;
        font-weight:600;
        margin-left: 5px;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover > a {
        color: var(--primary-color);
    }

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding:0px 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: #111;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

    .navbar .dropdown ul li {
        min-width: 200px;
        /*height: 48px;*/
        padding:0;
        
    }

    .navbar .dropdown ul a {
        padding: 10px 15px;
        text-transform: none;
        font-size: 14px;
    }

        .navbar .dropdown ul a i {
            font-size: 12px;
        }

        .navbar .dropdown ul a:hover,
        .navbar .dropdown ul .active:hover,
        .navbar .dropdown ul li:hover > a {
            color: var(--body-font-color);
            background-color:var(--primary-color)
        }

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

.brand-logo img {
    max-width: 190px;
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: var(--primary-color);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .big-box{
        margin-bottom:15px !important;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(4 12 21 / 77%);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #000000ba;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a, .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #ffffff;
    }

    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover > a {
        color: var(--primary-color);
    }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #1b16168a;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: var(--white-color);
                background-color:var(--primary-color);
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

.nav-holder {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ylw-btn {
    background-image: -moz-linear-gradient( 96deg, rgb(254,132,43) 0%, rgb(255,187,11) 100%);
    background-image: -webkit-linear-gradient( 96deg, rgb(254,132,43) 0%, rgb(255,187,11) 100%);
    background-image: -ms-linear-gradient( 96deg, rgb(254,132,43) 0%, rgb(255,187,11) 100%);
    color: var(--body-font-color);
    -webkit-animation: 2s cubic-bezier(0.25, 0, 0, 1) 3s infinite pulse;
    animation: 2s cubic-bezier(0.25, 0, 0, 1) 3s infinite pulse;
    font-size: calc(15px + (20 - 15) * ((100vw - 300px) / (1920 - 300)));
   /* display: flex;
    align-items: center;*/
    text-decoration: none;
    font-weight: 700;
    border: 0;
    border-radius: 50px;
    padding: 9px 25px;
    margin-right:20px;
    display:flex;
    align-items:center;
}

.red-bdr {
    background: transparent;
    box-shadow: none;
    border: 2px solid #c32454;
    font-size: calc(15px + (20 - 15) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    padding: 9px 40px;
    color: var(--white-color);
    text-decoration: none;
    border-radius: 30px;
    transition:0.5s ease-out;
}
.red-bdr:hover {
    background-color:var(--white-color);
    color:var(--body-font-color);
    
}

.dropdown-menu.show {
    display: block;
    min-width: 180px;
    background-color: #313333;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    font-size: 14px;
    font-weight: 400;
}

.dropdown-menu .nav-link {
    padding: 0;
    margin: 0;
}

.header-right {
    display: flex;
    justify-content: end;
}

    /*.header-right a {
        margin-right: 10px;
    }*/

.navbar-nav .nav-link {
    color: #fff;
}

.dropend .dropdown-toggle {
    color: salmon;
    margin-left: 1em;
}

.dropdown-item:hover {
    background-color: lightsalmon;
    color: #fff;
}

.dropdown .dropdown-menu {
    display: none;
}

.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
    display: block;
    margin-top: 0.125em;
    margin-left: 0.125em;
}

@media screen and (min-width: 769px) {
    .dropend:hover > .dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
    }

    .dropend .dropdown-toggle {
        margin-left: 0.5em;
    }
    
}

/* Header Css Start*/
.home-banner {
    min-height: 800px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 50px;
    border-bottom: 6px solid #f13c5f;
}
.pb0{
    padding-bottom:0!important;
}

.banner-form-holder {
    background-image: url(/assets/images/banner-form-bg.webp);
    min-height: 560px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    max-width: 550px;
    margin: 0 auto;
    padding: 50px 133px 23px 90px;
    position: relative;
}

    .banner-form-holder h2 {
        font-size: 44px;
        color: #eb911b;
        margin-bottom: 10px;
    }
.cnt-ban{
    padding-bottom:0;
}
    .cnt-img{
        margin-top:90px;
    }
    .inner-banner {
        min-height: 400px;
    }
.contact-banner .ctm-banner-title {
    font-size: calc(24px + (60 - 24) * ((100vw - 300px) / (1920 - 300)));
}
.form-mini-title {
    font-size: 22px;
    text-transform: uppercase;
}

.banner-form-holder input {
    height: 45px;
    border: 1px solid #f3f3f3 ;
    border-radius: 29px ;
    margin-bottom: 10px;
    width: 100%;
    background-color: #f3f3f3;
    padding-left: 20px;
}
    .banner-form-holder input:focus-visible{
        outline:none;
    }
    .banner-form-holder select {
        height: 45px;
        border: 1px solid #f3f3f3;
        border-radius: 29px;
        margin-bottom: 20px;
        width: 100%;
        background-color: #f3f3f3;
        padding-left: 20px;
    }

.ctm-form-btn {
    background-color: #eb911b;
    padding: 18px 26px;
    border-radius: 10px;
    transition: 0.3s ease-in;
}

    .ctm-form-btn:hover {
        background-color: #000;
        color: #fff;
    }

.ctm-line-dc {
    width: 6px;
    height: 80%;
    background-color: #eb911b;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    bottom: 0;
    z-index: -1;
}

.form-iscount-tag {
    position: absolute;
    right: 20px;
    top: 15.5%;
    height: 318px;
    z-index: 1;
}

    .form-iscount-tag img {
        max-width: 125px;
    }

.form-mini-title {
    font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
    color:var(--body-font-color);
    font-weight:500;
}

.banner-mini-tt {
    color: var(--white-color);
    font-size: calc(15px + (20 - 15) * ((100vw - 300px) / (1920 - 300)) ) ;
    font-weight: 400;
}

.ctm-banner-title span {
    color: var(--primary-color);
}

.ctm-banner-title {
    color: var(--white-color);
    font-size: calc( 24px + (40 - 24) * ((100vw - 300px) / (1920 - 300)) ) ;
    font-weight: bold;
}

.ctm-bannre-text {
    color: var(--white-color);
    font-size: calc( 14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)) ) ;
    font-weight: 400;
    display: block;
}

.phone {
    /*  background: rgb(193,18,80);
background: -moz-linear-gradient(90deg, rgba(193,18,80,1) 0%, rgba(241,60,95,1) 100%);
background: -webkit-linear-gradient(90deg, rgba(193,18,80,1) 0%, rgba(241,60,95,1) 100%);
background: linear-gradient(90deg, rgba(193,18,80,1) 0%, rgba(241,60,95,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c11250",endColorstr="#f13c5f",GradientType=1);*/
    /*color: #c81852;*/
    filter: brightness(0) saturate(100%) invert(15%) sepia(92%) saturate(3387%) hue-rotate(328deg) brightness(92%) contrast(94%);
    margin-right: 10px;
    font-size: 20px;
}

.ctm-line-dc {
    background-color: #e5325b !important;
}
.banner-btn-holder{
    display:flex;
    gap:20px;
}
.yellow-btn {
    border-radius: 29px;
    background-image: -moz-linear-gradient( 96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100% );
    background-image: -webkit-linear-gradient( 96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100% );
    background-image: -ms-linear-gradient( 96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100% );
    /*display: inline-flex;*/
    align-items: center;
    justify-content: center;
    border: none;
    font-size: calc(14px + (19 - 14) * ((100vw - 300px) / (1920 - 300)));
    padding: 10px 35px;
    color: var(--body-font-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: capitalize;
    min-width: 150px;
}

    .yellow-btn:hover {
        color: #fff;
       
    }

.red-btn {
    border-radius: 29px;
    background-image: -moz-linear-gradient( 96deg, rgb(193, 18, 80) 0%, rgb(241, 60, 95) 100% );
    background-image: -webkit-linear-gradient( 96deg, rgb(193, 18, 80) 0%, rgb(241, 60, 95) 100% );
    background-image: -ms-linear-gradient( 96deg, rgb(193, 18, 80) 0%, rgb(241, 60, 95) 100% );
    border: none;
    color: var(--white-color);
    font-size: calc(14px + (19 - 14) * ((100vw - 300px) / (1920 - 300)));
    text-transform: capitalize;
    font-weight: 400;
    padding: 10px 35px;
    text-decoration: none;
    display: inline-block;
    margin-bottom:12px;
    
    text-align:center;
    min-width:150px;
}

    .red-btn:hover {
        background-image: -moz-linear-gradient( 96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100% );
        background-image: -webkit-linear-gradient( 96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100% );
        background-image: -ms-linear-gradient( 96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100% );
         -webkit-transition: all .94s cubic-bezier(.2,.95,.57,.99);
    -moz-transition: all .4s cubic-bezier(.2,.95,.57,.99);
    -o-transition: all .4s cubic-bezier(.2,.95,.57,.99);
    transition: all .4s cubic-bezier(.2,.95,.57,.99);
    box-shadow: 2px 0px 14px rgba(0,0,0,.6);
    }

.common-title{
    font-size: calc(30px + (46 - 30) * ((100vw - 300px) / (1920 - 300)) ) !important;
    font-weight: bold;
    color:var(--body-font-color);
}

.common-title span {
   -webkit-background-clip: text !important;
   -webkit-text-fill-color: transparent;
   background: linear-gradient(135deg, #c11250, #f13c5f);
}
.common-text  {
    font-size:calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)) ) !important;
    font-weight: 400;
    color:var(--body-font-color);
}
.counter span {
    color: var(--white-color);
    font-size: calc( 24px + (40 - 24) * ((100vw - 300px) / (1920 - 300)) ) ;
    font-weight: bold;
}

.counter p {
    font-size: calc( 12px + (15 - 12) * ((100vw - 300px) / (1920 - 300)) ) ;
    font-weight: 400;
    color: var(--white-color);
}

.ctm-form-btn {
    border-radius: 29px;
    background-image: -moz-linear-gradient( 96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100% );
    background-image: -webkit-linear-gradient( 96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100% );
    background-image: -ms-linear-gradient( 96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100% );
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 16px;
    font-weight: 500;
    padding: 18px 36px;
}
.ctm-form-btn2 {
    background-image: -webkit-linear-gradient(96deg, rgb(193, 18, 80) 0%, rgb(241, 60, 95) 100%) !important;
    background-image: -ms-linear-gradient(96deg, rgb(193, 18, 80) 0%, rgb(241, 60, 95) 100%) !important;
    border: none !important;
    color: var(--white-color) !important;
    margin-top:15px;
}
.ctm-form-btn1 {
    padding: 15px 36px !important;
    font-size: 20px !important;
}

    .sec_2 h2 {
        font-size: calc( 20px + (30 - 20) * ((100vw - 300px) / (1920 - 300)) ) !important;
        font-weight: bold;
        color: #eb375d;
        font-weight: bold;
        text-align: start;
        -moz-transform: matrix(1.08896454465698, 0, 0, 1.08896454465698, 0, 0);
        margin-bottom: 10px;
        -ms-transform: matrix(1.08896454465698, 0, 0, 1.08896454465698, 0, 0);
    }

.sec_2 p {
    font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    color: var(--body-font-color);
    margin:0;
}

.sec_2 {
    padding: 40px 0 30px;
    position: relative;
}
.over-slide .item{
    display:flex;
    align-items:center;
    justify-content:center;
}

.service {
    background-image: url(/assets/images/our-services-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
    position: relative;
}

    .service h3 {
        font-weight: bold;
        font-size: calc(26px + (46 - 26) * ((100vw - 300px) / (1920 - 300)));
        margin: 0;
    }

    .service span {
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent;
        background: linear-gradient(135deg, #c11250, #f13c5f);
    }

.ser-text h6 {
    font-size: 20px !important;
    font-weight: bold;
}

.ser-text p {
    font-size: calc(12px + (15 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    color:var(--body-font-color);
}

.ser-box {
    border: 1px solid #fda236;
    border-radius: 10px;
    padding: 65px 30px 30px 30px;
    position: relative;
    min-height: 235px;
}

    .ser-box:hover {
        background-color: #fe981f;
    }

.ser-text-2 h2 {
    font-size: calc(26px + (46 - 26) * ((100vw - 300px) / (1920 - 300)));
    font-weight: bold;
    color: var(--white-color);
}

.ser-text-2 p {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.ser-box-2 {
    border-radius: 10px;
    background-image: -moz-linear-gradient( 96deg, rgb(193, 18, 80) 0%, rgb(241, 60, 95) 100% );
    background-image: -webkit-linear-gradient( 96deg, rgb(193, 18, 80) 0%, rgb(241, 60, 95) 100% );
    background-image: -ms-linear-gradient( 96deg, rgb(193, 18, 80) 0%, rgb(241, 60, 95) 100% );
    box-shadow: 6.688px 6.022px 15.84px 0.16px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 32px 30px 30px 30px;
    min-height: 235px;
}

.ser-img {
    position: absolute;
    top: -70px;
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 6.688px 6.022px 15.84px 0.16px rgba(0, 0, 0, 0.15);
}

.end-to-end {
    padding: 80px 0;
    position:relative;
}

    .end-to-end h2 {
        font-size: calc(30px + (46 - 30) * ((100vw - 300px) / (1920 - 300)));
        font-weight: bold;
        line-height: 1;
        margin-bottom: 30px;
    }

        .end-to-end h2 span {
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent;
            background: linear-gradient(135deg, #c11250, #f13c5f);
        }

    .end-to-end p {
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 30px;
    }

.author-sec {
    background-image: url(/assets/images/author-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding:80px 0;
    position: relative;
}
.author-sec-1 {
    padding: 80px 0;
    position: relative;
    background-image:none;
}

    .author-sec img {
        width: 100%;
        margin-top: -37px;
    }

.auth-img {
    position: relative;
}

.author-shadow img {
    position: absolute;
    bottom: 10px;
    left: -161px;
}
/*.auth-img-2{
    position:relative;
    bottom:-20px;
    z-index:9;
}*/
.author-sec h3 {
    font-size: calc(22px + (30 - 22) * ((100vw - 300px) / (1920 - 300)) );
    font-weight: bold;
    color: #fe981f;
    margin-bottom: 30px;
}

.author-sec h2 {
    font-size: calc( 30px + (46 - 30) * ((100vw - 300px) / (1920 - 300)) );
    font-weight: bold;
    line-height: 1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

    .author-sec h2 span {
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent;
        background: linear-gradient(135deg, #c11250, #f13c5f);
    }

.author-sec p {
    font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)) );
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--body-font-color);
}

/*.author-secr h6 {
    font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)) );
    font-weight: 500;
    margin-bottom: 30px;
}*/
/*book-writing*/
.list-b1{
    padding:0;
    margin:10px 0;
}


.list-b1 li {
    list-style:none;
    font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)) );
    
    color: var(--white-color);
    margin-bottom: 15px;
    position:relative;
    padding-left:25px;
}
.list-b1 li::before {
    content:"";
    background-image:url('/assets/images/icons/check-icon.webp');
    background-repeat:no-repeat;
    background-size:contain;
    width: 15px;
    height: 15px;
    position:absolute;
    left:0;
    top:4px;
}

.proud-sec {
    padding:50px 0;
    position:relative;
}



    .proud-sec h2 {
        font-weight: bold;
        font-size: calc(24px + (45 - 24) * ((100vw - 300px) / (1920 - 300)) );
        margin: 0;
        text-align: center;
        text-transform: uppercase;
    }

.proud-sec h2 span {
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, #c11250, #f13c5f);
}

    .proud-sec p {
        font-weight: 400;
        font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)) );
        text-align: center;
        color:var(--body-font-color);
    }

.auth-img-2 img {
    margin-top: 0 !important;
}

.whats-sec {
    background-image: url(/assets/images/apart-bg.webp);
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center;
    padding:90px 0;
}

    .whats-sec h2 {
        font-weight: bold;
        font-size: calc(24px + (45 - 24) * ((100vw - 300px) / (1920 - 300)) );
        text-transform: uppercase;
        margin-bottom: 10px;
    }

        .whats-sec h2 span {
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent;
            background: linear-gradient(135deg, #c11250, #f13c5f);
        }

    .whats-sec p {
        font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)) );
        font-weight: 400;
        color:var(--body-font-color);
    }

.big-cnt {
    margin-top: 10px;
}

    .big-cnt h4 {
        font-weight: bold;
        font-size: calc(20px + (26 - 20) * ((100vw - 300px) / (1920 - 300)) );
    }

        .big-cnt h4 span {
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent;
            background: linear-gradient(135deg, #c11250, #f13c5f);
        }

.big-box {
    background-color: var(--white-color);
    border-radius: 20px;
    box-shadow: 6.688px 6.022px 15.84px 0.16px rgba(85, 85, 85, 0.1);
    display: flex;
    justify-content: space-between;
    padding: 30px 30px;
    min-height: 200px;
    margin-bottom: 50px;
}

.big-img img {
    width: 100%;
    height: auto;
}

.big-cnt p {
    font-weight: 400;
    font-size: 16px;
    text-align: start;
    margin-top: 15px;
    margin-bottom: 0 !important;
    line-height: 1.4;
}

.sm-box {
    background-color: var(--white-color);
    border-radius: 20px;
    box-shadow: 6.688px 6.022px 15.84px 0.16px rgba(85, 85, 85, 0.1);
    display: flex;
    justify-content: space-between;
    padding: 30px 25px;
    min-height: 220px;
    align-items:center;
    margin-bottom:15px;
}

.sm-cnt h4 {
    font-weight: bold;
    font-size: calc(30px + (67 - 30) * ((100vw - 300px) / (1920 - 300)) );
    display:flex;
}

    .sm-cnt h4 span {
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent;
        background: linear-gradient(135deg, #c11250, #f13c5f);
    }

.sm-cnt p {
    font-weight: 400;
    font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)) );
    margin-top: 15px;
    
}

.sm-img img {
    width:100%;
    height: auto;
}
/*book-writing*/

.portfolio h2 {
    font-size: calc( 30px + (46 - 30) * ((100vw - 300px) / (1920 - 300)) ) !important;
    font-weight: bold;
    text-transform: uppercase;
}

    .portfolio h2 span {
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent;
        background: linear-gradient(135deg, #c11250, #f13c5f);
    }

.portfolio p {
    font-weight: 400;
    font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1920 - 300)));
    max-width: 1000px;
    margin: 0 auto;
    color: var(--body-font-color);
}
.proud-logos .proud-item {
    text-align: center;
    display:flex;
    align-items:center;
    justify-content:center;
}
.portfolio .inner{
    margin:8px 8px 12px 8px;
}
/*.slick-slide {
    margin-top: 25px;
    margin-right: 5px;
    margin-left: 5px;
}*/
.process {
    padding: 65px 0;
    background-image: url(/assets/images/process-bg1.webp);
}

    .process p {
        font-weight: 400;
        font-size: 16px;
        max-width: 1000px;
        text-align: center;
        margin: 0 auto;
        color: var(--body-font-color);
    }

    .process h2 {
        font-size: calc( 30px + (46 - 30) * ((100vw - 300px) / (1920 - 300)) ) !important;
        font-weight: bold;
        text-transform: uppercase;
    }

        .process h2 span {
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent;
            background: linear-gradient(135deg, #c11250, #f13c5f);
        }

.process-text h6 {
    font-weight: bold;
    font-size: 20px;
    color: var(--body-font-color);
}
.process nav .nav-item {
    max-width:180px;
}
/*.process .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-image: -moz-linear-gradient( 96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100% );
    background-image: -webkit-linear-gradient( 96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100% );
    background-image: -ms-linear-gradient( 96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100% );
    box-shadow: 6.688px 6.022px 15.84px 0.16px rgba(85, 85, 85, 0.1);
    background-color:transparent!important;
}*/
.nav-pills .nav-link.active, .nav-pills .show > .nav-link{
    background-color:transparent;
}
    .nav-pills .nav-link.active .process-inner {
        background-image: -webkit-linear-gradient(96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100%);
    }
        .nav-pills .nav-link.active .process-inner .process-box .triangle {
            background-image: -webkit-linear-gradient(96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100%);
           
        }

    .nav-pills .nav-link.active .process-box .triangle {
        display:block;
    }
   
        /*.process-inner h5 {
    font-weight: 400;
    font-size: calc(30px + (46 - 30) * ((100vw - 300px) / (1920 - 300)));
    color: var(--body-font-color);
}*/
        .process-inner span {
            font-weight: 600;
            font-size: calc(12px + (20 - 12) * ((100vw - 300px) / (1920 - 300))) !important;
            color: var(--body-font-color);
            margin-bottom: 10px;
            display: block;
        }
.process-inner {
    background-color: var(--white-color);
    padding: 20px 15px;
    border-radius: 15px;
    text-align: center;
    min-height: 230px;
    /* margin-top: 35px;*/
    margin: 35px 20px 20px 20px;
    cursor: pointer;
    position: relative;
    max-width: 180px;
    min-width: 180px;
}

.process-inner::before {
    content:"";
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 44px solid var(--primary-color);
    position:absolute;
    bottom:-45px;
    right:0;
    left:0;
    margin:0 auto;
    z-index:1;
    display:none;
}


.process-inner img {
  /*margin: 12px;*/
  max-width: 120px;
  margin: 0 auto;
  padding: 20px 0;
}

.process-inner p {
   font-size: calc(15px + (16 - 15) * ((100vw - 300px) / (1920 - 300)));
   font-weight: 400;
   color: var(--body-font-color);
   margin-top: 10px;
}

.process-box {
    /*   max-width: 170px;*/
    margin-bottom: 10px;
    position:relative;
}
.process-box .triangle {
      width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 50px solid rgb(254, 132, 43);
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display:none;
}
.process-inner:hover {
    background-image: -moz-linear-gradient( 96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100% );
    background-image: -webkit-linear-gradient( 96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100% );
    background-image: -ms-linear-gradient( 96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100% );
    box-shadow: 6.688px 6.022px 15.84px 0.16px rgba(85, 85, 85, 0.1);
}
.process-box:hover .triangle{
    display:block;
}

.odd-box::after {
    background-image: url(/assets/images/icons/p-arrow-01.webp);
    content: "";
    width: 57px;
    height: 7px;
    display: block;
    background-repeat: no-repeat;
    position: absolute;
    top: 12px;
    right: -44px;
}

.odd-box {
    position: relative;
}

.even-box {
    position: relative;
}
.process-box.even-box.last-box:after {
    display: none;
}
    .even-box::after {
        background-image: url(/assets/images/icons/p-arrow-02.webp);
        content: "";
        width: 57px;
        height: 7px;
        display: block;
        background-repeat: no-repeat;
        position: absolute;
        top: 12px;
        right: -44px;
    }

.platform {
    padding: 80px 0;
    position: relative;
}

    .platform h2 {
        font-size: calc( 30px + (46 - 30) * ((100vw - 300px) / (1920 - 300)) ) !important;
        font-weight: bold;
        font-family: "Poppins", sans-serif !important;
        text-transform: uppercase;
        text-align: center;
    }

        .platform h2 span {
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent;
            background: linear-gradient(135deg, #c11250, #f13c5f);
        }

    .platform p {
        font-size: 16px;
        font-weight: 400;
        text-align: center;
    }

.platform-box {
    background-color: var(--white-color);
    min-height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 6.688px 6.022px 15.84px 0.16px rgba(85, 85, 85, 0.1);
    margin-bottom: 20px;
}
/*.platform-box img{
    width:100%;
}*/
.platform-box-1 {
    padding: 0 30px 0 30px;
    min-height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    box-shadow: 6.688px 6.022px 15.84px 0.16px rgba(85, 85, 85, 0.1);
    background: rgb(254, 132, 43);
    background: linear-gradient( 90deg, rgba(254, 132, 43, 1) 0%, rgba(255, 187, 11, 1) 100% );
}
    .platform-box-1 a{
        text-decoration:none;
    }

    .platform-box-1 h5 {
        font-size: 20px;
        font-weight: bold;
        font-family: "Poppins", sans-serif !important;
        color: black;
        margin: 0;
    }

        .platform-box-1 h5 span {
            color: var(--white-color);
            text-decoration: underline;
        }

.testimonial {
    background-image: url(/assets/images/testimonial-bg.webp);
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
    
}

    .testimonial h2 {
        font-size: calc(22px + (44 - 22) * ((100vw - 300px) / (1920 - 300)) );
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
        text-align: start;
        margin-top: 30px;
    }

        .testimonial h2 span {
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent;
            background: linear-gradient(135deg, #c11250, #f13c5f);
        }

.test-text h3 {
    font-size: calc(22px + (30 - 22) * ((100vw - 300px) / (1920 - 300)) );
    font-weight: bold;
}

.test-text p {
    font-size:calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)) );
    font-weight:400;
    color:var(--body-font-color);
    margin-bottom:10px;
}

.testi-cont {
    display: flex;
    align-items: center;
    margin-top:50px;
}
.testi-cont .testi-img{
    margin-right:20px;
}
.testi-cont .testi-img img{
    width:140px;
    height:140px;
    border:0;
    border-radius:10px;
}
.testi-para {
    margin-top: 30px;
}

.stars i {
    color: gold;
    margin: 0;
    padding: 0;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rate span {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: "Poppins", sans-serif !important;
}

.testi-para p {
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif !important;
}

.tm-lower {
    display: flex;
    justify-content: space-between;
    align-items: center;
   
}
.tm-lower-hold {
    position: absolute;
    bottom: 27px;
    width: 100%;
}
.tm-btn {
    display: flex;
    gap: 10px;
}

    .tm-btn button {
        border: none;
        background-color: transparent;
    }

    .tm-btn svg {
        border: 1px solid black;
        border-radius: 50%;
        height: 32px;
        width: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

        .tm-btn svg:hover {
            border: 1px solid #fc9a40;
            color: #fc9a40;
        }

.featured {
    padding: 80px 0;
    position: relative;
}

    .featured h2 {
        font-size: calc( 35px + (50 - 35) * ((100vw - 300px) / (1920 - 300)) ) !important;
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
    }

        .featured h2 span {
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent;
            background: linear-gradient(135deg, #c11250, #f13c5f);
        }

    .featured p {
        font-size: 16px;
        font-weight: 400;
        text-align: center;
    }

.portfolio {
    padding: 80px 0;
    position: relative;
}

.featured-item {
    padding: 0 20px 0 20px;
}

.complete {
    background-image: url(/assets/images/complete-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0 0;
}

    .complete h2 {
        font-size: calc( 35px + (50 - 35) * ((100vw - 300px) / (1920 - 300)) ) !important;
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
    }

        .complete h2 span {
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent;
            background: linear-gradient(135deg, #c11250, #f13c5f);
            font-size: calc( 35px + (50 - 35) * ((100vw - 300px) / (1920 - 300)) ) ;
            font-weight: bold;
            font-family: "Poppins", sans-serif !important;
            text-transform: uppercase;
        }

    .complete p {
        font-size: 16px;
        font-weight: 400;
        text-align: center;
    }
    .complete .complete-box{
        max-width:400px;
        margin:0 auto;
        text-align:center;
        position:relative;
        top:15px;
    }
    .complete .complete-box a {
        color: var(--body-font-color);
        font-weight: 600;
        text-align: center;
        margin: 30px 0;
        font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300)) );
        text-decoration: none;
    }
.warp-book{
    position:relative;
    margin-bottom:-250px;
    z-index:10;
}
.featured-item {
    display: flex;
    align-items: center;
}

    .featured-item img {
        width: 100%;
    }

/* commnet*/

ul.contact-lst li.first a {
    animation: none;
    font-size: calc( 10px + (20 - 10) * ((100vw - 300px) / (1920 - 300)) ) !important;
    font-weight: bold;
    padding: 0 20px 0 20px !important;
}

.btn-first {
    width: 59%;
}

.btn-last {
    width: 42%;
}

.banner-form-holder h2 {
    font-size: calc( 16px + (35 - 16) * ((100vw - 300px) / (1920 - 300)) ) !important;
}

ul.contact-lst li.last a {
    background-color: none !important;
    animation: none !important;
    background: none !important;
    box-shadow: none;
    border: 2px solid #c32454;
    font-size: calc( 10px + (20 - 10) * ((100vw - 300px) / (1920 - 300)) ) !important;
    font-weight: 400;
    padding: 0 10px 0 10px !important;
}

.end-to-end .slick-dots {
    width: auto !important;
}

.end-to-end .slick-dots {
    bottom: -1.5rem;
}

    .end-to-end .slick-dots > li {
        width: auto;
        height: auto;
    }

.end-to-end .slick-dots > li {
    /* margin: 0; */
}

    .end-to-end .slick-dots > li:not(:last-child) {
        margin-right: 0.5rem;
    }

    .end-to-end slick-dots > li > button {
        border: 1px solid var(--colorGrey2);
        background: transparent;
        border-radius: 100%;
        width: 9px;
        height: 9px;
    }

.end-to-end .slick-dots li button {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 11px;
    /* margin: 0 5px; */
    padding: 0;
    cursor: pointer;
    background: #ffa816;
    border-radius: 10px;
    /* background-color: red !important; */
    color: red !important;
    height: 8px;
    width: 21px;
    border-radius: 15px;
    top: -1px;
}

    .end-to-end .slick-dots li button:before {
        opacity: 0;
    }

    .end-to-end .slick-dots li button:hover:before {
        opacity: 0;
    }

.end-to-end li.slick-active.first {
    background-color: red !important;
    color: red !important;
    height: 8px;
    width: 21px;
    border-radius: 15px;
    top: 12px;
}

.end-to-end li.slick-active {
    background-color: red !important;
    color: red !important;
    height: 8px;
    width: 21px;
    border-radius: 15px;
    top: 12px;
}

    .end-to-end li.slick-active.last {
        background-color: red !important;
        color: red !important;
        height: 8px;
        width: 21px;
        border-radius: 15px;
        top: 12px;
    }

.end-to-end .slick-dots > li.slick-active > button {
    background: var(--colorOrange);
    border-color: var(--colorOrange);
}

/*.end-to-end .slick-dots li button:before {
}*/

footer {
    background-image: url(/assets/images/footer-bg.webp);
    padding-top: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.card-1{
    display:flex;
    justify-content:start;
}
.foot-up {
    border-top: 1px solid var(--white-color);
    border-bottom: 1px solid var(--white-color);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 25px 0 25px 0;
}

    .foot-up span {
        font-size: 16px;
        font-weight: 500;
        padding-left: 0;
        color: #c7c7c7;
        display:block;
    }

.srvs-fot-lnk {
    margin-top: 24px;
}

.fot-logo img {
    margin-bottom: 12px;
}

.fot-logo-2 {
    display: flex;
    margin-top: 40px;
}

/*.foot-logo {
    display: flex;
    justify-content: space-between;
    width: 100%;
}*/

.footer-bottom {
    display: flex;
    border-top: 1px solid var(--white-color);
    padding-top: 40px;
    margin-top: 60px;
}

.fot-logo-4 {
    display: flex;
    justify-content: space-between;
}

    .fot-logo-4 img {
        height: 100%;
    }

.disclamar {
    padding: 70px 0 40px;
}

    .disclamar p {
        color: var(--white-color);
        font-size: calc(13px + (15 - 13) * ((100vw - 300px) / (1920 - 300)));
        font-weight: 400;
    }

        .disclamar p span {
            color: var(--primary-color);
            font-weight: 600;
        }
.engage {
    display: flex;
    align-items: center;
    justify-content: end;
}

.engage h5 {
    font-size: calc(20px + (24 - 20) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 600;
    color: var(--white-color);
    margin-right: 20px;
    padding: 0;
}

footer h5 {
    color: var(--white-color);
    font-size: calc(18px + (24 - 18) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 600;
}

.srvs-fot-lnk ul li {
    margin-bottom: 20px;
}

footer h4 {
    font-weight: 600;
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 25px;
}

.footer-links {
    padding: 0;
    margin: 0;
}

    .footer-links li {
        list-style: none;
        padding: 0;
        margin-bottom: 10px;
    }

        .footer-links li a {
            color: var(--white-color);
            font-size: calc(13px + (15 - 13) * ((100vw - 300px) / (1920 - 300)));
            font-weight: 400;
            text-decoration: none;
        }

            .footer-links li a svg {
                margin-right: 15px;
                color: var(--secondary-color);
            }

.social-list {
    padding: 0;
    margin-bottom:12px;
}

    .social-list li {
        list-style: none;
        display: inline-block;
        margin-right: 10px;
    }

        .social-list li a {
            color: var(--white-color);
            font-size: calc(20px + (24 - 20) * ((100vw - 300px) / (1920 - 300)));
            text-decoration: none;
        }

            .social-list li a:hover {
                color: var(--primary-color);
            }

/* Wrap Css Start*/
.wrap {
    position: relative;
    z-index: 100;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    margin-bottom: -250px;
}

    .wrap .slider {
        position: relative;
        z-index: 200;
        padding: 0 0px;
        margin: 5rem auto;
        max-width: 800px;
        width: 100%;
    }

    .wrap .slick-arrow {
        position: absolute;
        top: 50%;
        width: 40px;
        height: 50px;
        line-height: 50px;
        margin-top: -25px;
        border: none;
        background: transparent;
        color: #fff;
        font-family: monospace;
        font-size: 5rem;
        z-index: 300;
        outline: none;
    }

    .wrap .slick-slider {
        position: relative;
    }

    .wrap .slick-prev {
        left: -50px;
        text-align: left;
    }

    .wrap .slick-next {
        right: -50px;
        text-align: right;
    }

    .wrap .item.slick-slide {
        width: 450px;
        height: 600px;
        transition: transform 0.4s;
        position: relative;
    }

    .wrap .item.slick-slide {
        transform: scale(0.7) translate(640px);
    }

        .wrap .item.slick-slide.slick-center + .slick-slide {
            transform: scale(0.8) translate(-250px);
            z-index: 10;
        }

            .wrap .item.slick-slide.slick-center + .slick-slide + .item.slick-slide {
                transform: scale(0.7) translate(-640px);
                z-index: 5;
            }

        .wrap .item.slick-slide.slick-active {
            transform: scale(0.8) translate(250px);
        }

        .wrap .item.slick-slide.slick-center {
            /* margin: 0 -10%; */
            transform: scale(1);
            z-index: 30;
        }

    .wrap .slick-active {
        opacity: 1;
    }

/* Warp Css End*/

/*@media (min-width: 1700px) {
    .container {
        max-width: 1300px !important;
        width: 1300px !important;
    }
}*/


/* Meet Css Start*/
.meet-sec{
    position:relative;
   
}
.meet-box {
    max-width: 1050px;
    width:1000px;
    margin: 20px;
    /* border: 4px solid rgb(255,187,11);*/
    position: relative;
    /* border-radius: 38px;*/
    /*height: 480px;*/
    overflow: hidden;
    position: relative;
    border-width: 1px;
    border-color: rgb(255, 186, 12);
    border-style: solid;
    box-shadow: 6.688px 6.022px 15.84px 0.16px rgba(85, 85, 85, 0.1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}


.meet-img-right img{
    width:100%;
    float:right;
    position:relative;
    max-width:520px;
   
}
.meet-img-right::before {
    content: "";
    background-image: url(/assets/images/fade2.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    margin: 0 auto;
    /* right: 0; */
    width: 450px;
    height: 706px;
    z-index: 09;
    left: 39%;
    opacity: 0.9;
}
.meet-left-side {
    padding: 80px 0px 25px 0;
    background-color: transparent;
    position: relative;
    max-width: 520px;
    margin-right: auto;
}
.meet-left-top {
    position:relative;
    border-bottom:2px solid rgb(255,187,11);
    padding-bottom:20px;
    margin-bottom:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.meet-left-top label{
    font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300)));
    font-weight:700;
    color:var(--body-font-color);
}
.mt-david{
    display:grid;
    padding-left:40px;
}
.mt-david span{
    font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color:#9c9c9c;
    display:flex;
    align-items:center;
}

.mt-david span svg {
    color: var(--secondary-color);
    margin-right:15px;
}
.meet-stars {
    display: flex;
    align-items: center;
}
.meet-stars img{
    margin-right:20px;
}
.meet-stars label{
    font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300)));
    font-weight:700;
    color:var(--body-font-color);
}
.meet-stars-box p {
    font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    color: #201f1f;
    margin: 0;
}
.meet-inner-box {
    display:grid;
}
.meet-inner-box .meet-inner-box-icon{
    margin-bottom:10px;
}
.meet-inner-box .meet-inner-box-text span{
     font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300)));
    font-weight:700;
    color:var(--body-font-color);
}
.meet-inner-box .meet-inner-box-text p{
      font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    color: #9c9c9c;
    margin:0;
}
.pd-lft {
    padding-top:30px;
    padding-left:40px;
}
.meet-nav-holder {
    max-width: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    top: 30px;
    justify-content: space-between;
}
.meet-nav-holder button{
    background-color:transparent;
    border:0;
    position:relative;
    z-index:999;
}
.meet-nav-holder button:hover{

}
.meet-nav-holder .news__counter{
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    font-size: calc(18px + (20 - 18) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 500;
    color:var(--body-font-color);
}
/* Meet Css End */
/* Faqs Css Start*/
.faqs-sec {
    position: relative;
}
.accordion-button:not(.collapsed)::after {
    background-image: url('/assets/images/icons/close.png');
    background-size: contain;
    width: 17px;
    height: 17px;
}
.accordion-button::after{
    background-image:url('/assets/images/icons/plus-icon.png')!important;
    background-size:contain;
    width:20px;
    height:20px;
}


.faqs-sec .accordion-item {
    border-radius: 10px;
    background-color: rgb(254, 255, 255);
    box-shadow: 6.688px 6.022px 15.84px 0.16px rgba(85, 85, 85, 0.1);
    margin-bottom:20px;
    border:0;
    transition:0.7s ease;

}
    .faqs-sec .accordion-item .accordion-button {
        background-color: rgb(254, 255, 255);
        border-radius: 10px;
        border: 0;
        color: #636d79;
        font-size: calc(16px + (18 - 16) * ((100vw - 300px) / (1920 - 300)));
        padding:20px 25px;
        font-weight:500;
        box-shadow:none;
    }
    .faqs-sec .accordion-item .accordion-body {
        color: #a2a9b0;
        font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
        padding:30px 25px;
        font-weight:400;
    }
    .faqs-sec .accordion-item:active{
        border:2px solid rgb(254, 132, 43)!important;
    }
/* Faqs Css End*/
.space-p-t {
    padding-top: 80px;
}

.space-p-b {
    padding-bottom: 80px;
}

.space-p-tb {
    padding: 80px 0;
}

.space-m-t {
    margin-top: 80px;
}

.space-m-b {
    margin-bottom: 80px;
}

.space-m-tb {
    margin: 80px 0;
}
/* Contact Page Css Start*/
.banner-form-holder .form-select:focus{
    box-shadow:none;
    border:none;
    outline:none;
    
}
.banner-form-holder .form-select:focus-visible {
    outline: none;
    box-shadow: none;
    border: none;
}
    .contact-touch h2 {
        margin-bottom: 50px;
        font-size: calc(35px + (50 - 35) * ((100vw - 300px) /(1920 - 300))) !important;
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
    }

.contact-touch h2 span {
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, #c11250, #f13c5f);
}


.contact-left h5 {
    font-size: calc(20px + (24 - 20) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 600;
    color: var(--body-font-color);
    margin-bottom: 20px;
}
.contact-box a {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: calc(20px + (20 - 20) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    color: #2e2e2e;
    text-decoration:none;
}
.contact-box a svg{
    margin-right:25px;
    color:var(--body-font-color);
    filter: brightness(0) saturate(100%) invert(11%) sepia(6%) saturate(12%) hue-rotate(11deg) brightness(90%) contrast(94%);
}
.contact-page-sec{
    position:relative;
    background-image:url(/assets/images/con-sec.webp);
    padding:40px 0;
    background-repeat:no-repeat;
}

.contact-page-sec form label{
    display:block;
     font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 400;
    margin:0;
    text-align:left;
}
    .contact-page-sec h2 {
    
        margin-bottom: 15px;
        font-size: calc(35px + (50 - 35) * ((100vw - 300px) /(1920 - 300))) !important;
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
    }
    .contact-page-sec h2 span{
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent;
        background: linear-gradient(135deg, #c11250, #f13c5f);
    }
    .contact-page-sec p{
        font-size:14px;
        font-weight:400;
        margin-bottom:30px;
    }
    .contact-page-sec input {
        width: 100%;
        position: relative;
        background: transparent;
        border: 2px solid #f494a6 !important;
        border-radius: 33px !important;
        margin-bottom: 10px;
        padding: 24px 50px !important;
        height: 68px;
        outline:none;
        font-size:20px;
    }
        .contact-page-sec input::placeholder{
            color:black !important;
        }
    .contact-page-sec textarea {
        width: 100%;
        height: 200px;
        border-radius: 25px;
        padding: 24px 50px !important;
        position: relative;
        background: transparent;
        border: 2px solid #f494a6 !important;
        outline: none;
        font-size: 20px;
    }
        .contact-page-sec textarea::placeholder {
            color: black !important;
        }
    .contact-page-sec select {
        width: 100%;
        position: relative;
        background-color: transparent;
        border: 2px solid #f494a6 !important;
        border-radius: 33px !important;
        margin-bottom: 10px;
        padding: 15px 50px !important;
        height: 68px;
        outline: none;
        font-size: 20px;
        background-position: 95% 28px;
        outline:none;
       box-shadow:none;
       
    }
        .contact-page-sec select:focus{
            box-shadow:none;
        }
        .contact-page-sec .ctn-btn {
            border-radius: 29px;
            background-image: -moz-linear-gradient( 96deg, rgb(193, 18, 80) 0%, rgb(241, 60, 95) 100% );
            background-image: -webkit-linear-gradient( 96deg, rgb(193, 18, 80) 0%, rgb(241, 60, 95) 100% );
            background-image: -ms-linear-gradient( 96deg, rgb(193, 18, 80) 0%, rgb(241, 60, 95) 100% );
            border: none;
            color: var(--white-color);
            font-size: calc(14px + (20 - 14) * ((100vw - 300px) / (1920 - 300)));
            text-transform: capitalize;
            font-weight: 400;
            padding: 14px 35px;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 12px;
            margin-right: 12px;
        }
/* Contact Page Css End*/
/* Testimonail Page Css Start*/
.testimonial-banner{
    padding-bottom:0;
}
.testimonial-box {
    position:relative;
    border-radius: 25px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 9px 15.84px 0.16px rgba(0, 0, 0, 0.1);
    margin-bottom:20px;
    padding:25px 40px;
    min-height:600px;

}
.testimonial-box .testi-top{
    position:absolute;
    top:5px;
    left:20px;
    background-color:rgb(255,187,11);
    width:100px;
    height:100px;
    border:0;
    display:flex;
    align-items:center;
    justify-content:center;

}
.testimonial-box .testi-profile{
    /*margin:0 auto;
    max-width:180px;*/
    margin-top:50px;
    margin-bottom:30px;
    text-align:center;
    display:flex;
    align-items:center;
    justify-content:center;
}
.testimonial-box .testi-profile img{
    width:150px;
    height:150px;
    border:0;
    border-radius:50%;
}
.testimonial-box .testi-content{
    display:block;
    color:var(--body-font-color);
    font-weight:400;
    font-size:calc(20px + (28 - 20) * ((100vw - 300px) / (1920 - 300)));
    text-align:center;
    margin-bottom:20px;

}
.testimonial-box  .testi-footer{
    text-align:center;
}
.testimonial-box  .testi-footer span{
    display:block;
    color:var(--body-font-color);
    font-weight:bold;
    font-size:calc(24px + (40 - 24) * ((100vw - 300px) / (1920 - 300)));
} 
.testimonial-box  .testi-footer img{
    margin:0 auto;
}
/* Testimonail Page Css End*/

.package-header {
    background-color:var(--secondary-color);
    /*height:80px;*/
    margin-bottom:10px;
    position:relative;
    padding:25px 12px;
    border:0;
    border-radius:0;
    /*border-radius: 10px 10px 50px 50px;*/
}

.package-title {
    font-size: calc(22px + (27 - 22) * ((100vw - 300px) / (1920 - 300)));
    font-weight:600;
    margin:0;
    line-height:1;
    padding:0;
    text-transform:uppercase;
    color:#fff;
}


.package-header label{
    font-size:calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
    line-height:1;
    font-weight:400;
    color:var(--white-color);
}
.package-footer {
    margin-top:40px;
}

.package-price-holder {
    position:relative;
    padding:15px;
    color:#fff;
    text-align: center;
    display:flex;
    align-items:center;
    justify-content:center;
}
.package-price-holder{
    margin-bottom: 25px;
    min-height:100px;
    display: block;
}
.package-price-holder span{
    display:block;
    font-size: 16px;
    /* font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1920 - 300))); */
    font-weight:500;
    color:#000;
    line-height: 1;
}
.package-price {
    font-size: 47px;
    /* font-size:calc(24px + (47 - 24) * ((100vw - 300px) / (1920 - 300))); */
    font-weight: bold;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 0;
}

.package-holder {
    box-sizing:border-box;
    border:2px solid #111;
    border-radius:0;
    margin:0 10px 40px 10px;
    transition:0.5s;
    text-align:center;    
    min-height:570px;
/*    margin-bottom:40px;*/
}

.package-holder:hover {
    /*transform: scale(1.05);*/
    box-shadow: 0px 0px 27px 0px rgba(7, 7, 7, 0.22);
    border:2px solid var(--primary-color);
    cursor:pointer;
}

.package-holder:hover .package-header{
    background-color:var(--primary-color);
}
.package-holder>.package-content{
    min-height:200px;
    padding:0 30px;
   
}

/*.package-holder:hover .package-price{
    color: var(--secondary-color);
}*/
.package-holder:hover .package-price{
    color:var(--primary-color);
}
.package-holder:hover .red-btn{
      background-color:var(--primary-color);
    color: var(--white-color);
}
 .package-list {
    list-style: none;
    padding-left:25px;    
    height:300px;
    overflow-y:auto;
    scroll-behavior: smooth;
}
.package-list li {
    font-size:calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
    font-weight:400;
    color: var(--textcolor);
    margin-bottom:10px;
    text-align: left;
    position: relative;
   
}
.package-list li::before {
    content:"\f00c";
    font-family:'FontAwesome';
    position: absolute;
    left:-25px;
    top:0;
    color:var(--primary-color);
    font-size:14px;
}


/*Modal Css Start*/
.modal form{
    padding:20px;
}
.modal-2 form{
    padding:0 !important;
}
.modal-body {
    padding: 40px 25px 25px 25px;
    border: 0;
    border-radius: 20px;
}
.modal-body-bg {
    background-color: #191c24;
    border-radius:0 !important;
    padding:0 !important;
}
.modal-body h2 {
    color:var(--body-font-color);
    font-weight:600;
    margin-bottom:10px;
    text-align:center;
   
}
.modal-2 h2 {
    text-align: start !important;
    font-size: 40px;
    margin-bottom:50px;
}
.modal-2 h4 {
    color: white;
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 0px;
}
.pops-img-bg {
    background-image: url(/assets/images/pop-feilds.webp);
    height: 100%;
    BACKGROUND-SIZE: COVER;
    PADDING: 35px;
    padding-left: 0 !important;
}
.pops-forms {
    background: rgb(22, 25, 32);
    background: linear-gradient(117deg, rgba(22, 25, 32, 1) 0%, rgba(37, 39, 46, 1) 28%, rgba(67, 68, 73, 1) 48%, rgba(22, 25, 32, 1) 100%);
    height: 100%;
    padding: 30px 35px;
    background-size: cover;
    display: flex;
    align-items: center;
    position:relative;
}
    .pops-forms h2 span {
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent;
        background: linear-gradient(135deg, #c11250, #f13c5f);
        font-weight:bold;
    }
.modal form input {
    width: 100%;
    height: 50px;
    border:1px solid #333;
    border-radius:15px;
    margin-bottom:10px;
    position:relative;
    padding:5px 12px;
}
.modal-2 form input {
    border: 2px solid #8f2f43 !important;
    border-radius: 33px !important;
    margin-bottom: 10px;
    position: relative;
    padding: 10px 26px !important;
    background-color: #191c24 !important;
    color: white !important;
    height: 53px;
    outline: none;
}



    .modal-2 form input::placeholder{
        color:white !important;
    }
.modal-2 form textarea {
    width: 100%;
    height: 100px !important;
    border: 2px solid #8f2f43 !important;
    border-radius: 33px !important;
    position: relative;
    padding: 24px 26px !important;
    background-color: #191c24 !important;
}
    .modal-2 form textarea::placeholder{
        color:white !important;
    }
.modal form textarea {
    width: 100%;
    height: 80px;
    border: 1px solid #333;
    border-radius: 15px;
    margin-bottom: 10px;
    position: relative;
    padding: 5px 12px;
    color: white;
    outline: none;
}

button.ctm-btn-close img {
    width: 40px;
}

.modal .ctm-btn-close {
    position: absolute;
    right: 15px;
    top: 14px;
    z-index: 1050;
    border: 0;
    border-radius: 8px;
    opacity: 1;
    background: none;
}
.pop-left {
    padding-top: 35px;
    padding-left: 35px;
    padding-bottom: 35px;
}
.touch-img::after{
    background-image:url()
}
.touch-add {
    background-image: url(/assets/images/touch-add.webp);
    /* height: 100%; */
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    border-radius: 6%;
    padding-top: 65px;
    padding-bottom: 40px;
}
.add-1 h5 {
    padding-left: 65px;
    color: white;
    font-size: calc(15px + (20 - 15) * ((100vw - 300px) / (1920 - 300)));
    font-weight:bold;
}
.add-1 p {
    padding-left: 65px;
    color: white;
    margin-top: 10px;
    font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1920 - 300)));
}
.add-1 span {
    border-bottom: 1px solid #ce1e54;
    display: block;
}
.add h5 {
    padding-left: 65px;
    color: white;
    font-size: calc(15px + (20 - 15) * ((100vw - 300px) / (1920 - 300)));
    font-weight:bold;
}
.add p {
    padding-left: 65px;
    color: white;
    margin-top: 10px;
    font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1920 - 300)));
}
.touch-email h5 {
   
    padding-left: 65px;
    color: white;
}
.touch-email p {
    padding-left: 65px;
    color: white;
    margin-top: 10px;
}
.touch-email span {
    border-bottom: 2px solid #ce1e54;
    display: block;
}
.touch-phone h5 {
   
    padding-left: 65px;
    color: white;
}
.touch-phone p {
    padding-left: 65px;
    color: white;
    margin-top: 10px;
}
.touch-phone span {
    border-bottom: 2px solid #ce1e54;
    display: block;
}
.add span {
    border-bottom: 1px solid #ce1e54;
    display: block;
}
.touch-sm-links{
    padding-left:65px;
}
    .touch-sm-links a img {
        height: 57px;
        width: 57px;
    }
.add-1 {
    min-height: 120px;
}
    .add {
        min-height: 110px;
    }
@media (max-width: 1399.98px) {
    .navbar-nav .nav-link {
        padding: 10px 5px 0 5px !important;
            border: 0;
    }
    .navbar a, .navbar a:focus{
        padding-left:20px;
    }
    .red-bdr {
        padding: 9px 12px;
    }
    .ylw-btn {
        padding: 9px 10px;
    }
    .ser-box-2 {
        min-height: 216px;
    }
    .process .nav-pills .nav-item .nav-link{
        padding:3px;
    }
    
    .process-inner {
    }
    }

@media(max-width:1300px){
  /*  .navbar a, .navbar a:focus {
         padding: 10px 0 10px 22px;
    }*/
}
    @media (max-width: 1199.98px) {
        .author-sec img{
            margin-top:0;
        }
        .add h5 {
            padding-left: 40px;
        }
        .add p {
            padding-left: 40px;
        }
        .add-1 h5 {
            padding-left: 40px;
        }

        .add-1 p {
            padding-left: 40px;
        }
        .touch-sm-links {
            padding-left: 40px;
        }
        .header-right {
            display: none;
        }
        .modal-2 h4 {
            font-size: 27px;
            margin-top: 20px;
        }
        .modal-2 h2 {
            font-size: 25px;
            margin-bottom: 30px;
        }
        .tm-lower-hold {
            bottom: 0px;
        }
        .testi-cont{
            margin-top:0;
        }
        .ser-box-2 {
            min-height: 240px;
        }

        .ser-text-2 h2 {
            font-size: 40px !important;
        }
        .process .nav-pills .nav-item {
            flex: 1 0 33%;
            max-width: 33%;
            text-align: center;
            margin-bottom:20px;
        }
        .process .nav-pills .nav-link{
            margin:0 auto;
        }
        
        .banner-form-holder {
            padding: 50px 98px 23px 60px;
        }
     
        .meet-box {
            width: 700px;
            max-width: max-content;
        }

        .meet-inner-box {
            margin-bottom: 20px;
        }

        .meet-left-side {
            padding: 50px 0px 25px 0;
            max-width: 580px;
        }

        .meet-stars-box {
            padding-left: 25px;
            padding-top: 25px;
        }
        .odd-box::after {
            right: -93px;
        }

        .even-box::after {
            right: -93px;
        }
        .process-inner {
            min-width: 160px;
        }
        .author-sec{
            padding:50px 0;
        }
        .whats-sec{
            padding:50px 0;
        }
        .process{
            padding:45px 0;
        }
        .space-p-tb{
            padding:50px 0;
        }
        .pop-left {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .pop-left img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .pops-forms img{
            width:60%;
        }
        .modal .ctm-btn-close{
            right:-6px;
        }
    }

    @media (max-width: 991.98px) {
        
        .navbar-mobile li {
            border-bottom: 1px solid #ffffff47;
        }

        .add-1 h5 {
            padding-left: 65px;
        }
        .add-1 p {
            padding-left: 65px;
        }
        .add h5 {
            padding-left: 65px;
        }
        .add p {
            padding-left: 65px;
        }
        .touch-sm-links {
            padding-left: 65px;
        }
        .auth-img-22 img {
            margin-bottom: -50px;
        }
        .foot-up span {
            margin-bottom: 20px;
        }
        .contact-page-sec textarea {
            height: 110px;
        }
        .contact-page-sec input{
            height:50px;
            margin-bottom:0;
        }
        .contact-page-sec select {
            height: 50px;
            margin-bottom: 0;
            padding: 0 50px !important;
            background-position: 95% 17px;
        }
        .tm-lower-hold {
            bottom: -61px;
        }
       
            .even-box::after {
                right: -46px;
            }
        .odd-box::after {
            right: -46px;
        }
        .extra-mrt{
            margin-top:0;
        }
       
        .banner-btn-holder {
            display: grid;
            justify-content: center;
        }

        .banner-form-holder {
            margin-top: 30px;
        }

        .ser-box {
            margin-bottom: 100px;
        }

        .auth-img {
            margin-top: 70px;
        }

        .banner-form-holder {
            min-height: auto;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            background-color: #fff;
            background-image: none;
        }

        .form-iscount-tag {
            display: none;
        }

        .testimonial {
            padding: 40px 0;
        }

        .author {
            padding: 40px 0;
        }

        .process-inner {
            min-height: auto;
        }

        .il-logo {
            display: none;
        }
        .service{
            padding:40px 0;
        }
        .end-to-end{
            padding:40px 0;
        }
        .meet-box {
            width: 480px;
            max-width: max-content;
        }

        .meet-inner-box {
            margin-bottom: 20px;
        }

        .meet-left-side {
            padding: 50px 0px 25px 0;
            max-width: 450px;
        }

        .meet-stars-box {
            padding-left: 25px;
            padding-top: 25px;
        }
        .process-inner{
            min-width:150px;
        }
        .pop-left img{
            display:none;
            
        }
        .pop-left {
            padding: 0;
        }
        .pops-img-bg {
            padding-left: 35px !important;
        }
        .tm-lower {
            justify-content: space-around;
        }
    }

@media (max-width:767.98px) {

    .brand-logo img {
        max-width: 150px;
    }

    .card-1 {
        justify-content: center;
    }
    .process .nav-pills .nav-item {
        flex: 1 0 50%;
        max-width: 50%;
        text-align: center;
        margin-bottom: 20px;
    }
    .engage {
       margin-top:40px;
        justify-content: center;
    }
    .social-list li a{
        font-size:40px;
    }
    .process-inner {
        max-width: 160px;
        min-width: 160px;
    }
    .sec_2 img {
        margin-bottom: 20px;
    }

    

    .tm-lower {
        
    }

    .foot-logo {
        display: grid;
    }

    

    .service h3 {
        margin-bottom: 100px !important;
    }

    .ser-box-2 {
        min-height: 240px;
        margin-top: -50px;
    }
    footer {
        padding-top:200px;
    }
   /* .meet-sec{
        display:none;
    }*/
    .meet-box{
        width:280px;
        max-width:max-content;
    }
    .meet-inner-box{
        margin-bottom:20px;
    }
    .meet-left-side {
        padding: 40px 0px 25px 0;
        max-width: 300px;
    }
    .meet-stars-box{
        padding-left:25px;
        padding-top:25px;
    }
    .tm-lower {
        justify-content: space-around;
    }
}
@media (max-width: 575px) {
    .tm-lower{
        justify-content:space-around;
    }
    .pops-forms {
        padding: 15px 15px;
    }
    .modal-2 form textarea{
        border-radius:18px !important;
    }
    .modal-2 form input {
        margin-bottom: 0 !important;
        height: 58px;
    }
    .modal form textarea {
        margin-bottom: 0 !important;
    }
    .modal-2 h4 {
        margin-top: 40px !important;
        margin-bottom: 0px !important;
    }
    .modal-2 h2{
        margin-bottom:18px;
    }
    .modal-content {
        background-color: transparent !important;
    }
    .modal-body-bg{
        background-color: transparent !important;
    }
    .pops-img-bg{
        background-image:none !important;
    }
    .pops-img-bg{
        padding-left:35px !important;
    }
    .modal-2 form textarea {
        height: 110px !important;
        padding: 12px 25px !important
    }
    .modal-2 form input {
        padding: 12px 25px !important;
        height: 43px;
    }
    .ctm-form-btn1 {
        padding: 12px 25px !important;
        font-size: 16px !important;
    }
}
    @media (max-width: 480px) {
        .add-1 h5 {
            padding-left: 30px;
        }

        .add-1 p {
            padding-left: 30px;
        }

        .add h5 {
            padding-left: 30px;
        }

        .add p {
            padding-left: 30px;
        }

        .touch-sm-links {
            padding-left: 30px;
        }
        .tm-lower{
            justify-content:space-around;
        }
        .tm-image{
           display:none;
        }
        .tm-btn{
            margin-bottom:10px;
        }
        .touch-sm-links a img {
            height: 45px;
            width: 45px;
        }
        .warp-book {
            display: none;
        }
        .modal-2 h4{
            font-size:18px;
        }
        .modal-2 h2 {
            font-size: 18px;
        }
        .engage {
            flex-direction: column;
        }

        footer {
            padding-top: 0;
        }
    }


    /*Cookie Popoup CSS*/
.cookie-alert {
    position: fixed;
    bottom: 15px;
    right: 0;
    width: 100%;
    z-index: 999;
    opacity: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    max-width: 1200px;
    left: 0;
    margin: auto;
}

    .cookie-alert.show {
        opacity: 1;
        transform: translateY(0%);
        transition-delay: 1000ms;
    }

.cookie-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accept-cookies {
    background-image: -moz-linear-gradient(96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100%);
    background-image: -webkit-linear-gradient(96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100%);
    background-image: -ms-linear-gradient(96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100%);
    color: var(--body-font-color);
    border-color: #fe842b;
    padding: 11px 52px;
}


    .accept-cookies:hover {
        background-image: -moz-linear-gradient(96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100%);
        background-image: -webkit-linear-gradient(96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100%);
        background-image: -ms-linear-gradient(96deg, rgb(254, 132, 43) 0%, rgb(255, 187, 11) 100%);
    }

.btn.btn-link {
    background-image: -moz-linear-gradient(96deg, rgb(193, 18, 80) 0%, rgb(241, 60, 95) 100%);
    background-image: -webkit-linear-gradient(96deg, rgb(193, 18, 80) 0%, rgb(241, 60, 95) 100%);
    background-image: -ms-linear-gradient(96deg, rgb(193, 18, 80) 0%, rgb(241, 60, 95) 100%);
    padding: 11px 20px;
    color: #ffff;
    margin-right: 12px;
    text-decoration: none;
}

    .btn.btn-link:hover {
        background-color: #333;
        text-decoration: none;
    }

@media (max-width: 991.98px) {
    .cookie-row {
        flex-flow: column;
        text-align: center;
    }

    .cookie-col {
        margin-top: 20px;
    }
}

@media (max-width: 575.98px) {

    .cky-btn-holder a {
        margin-bottom: 10px;
    }
}


    /*Cookie Popoup End*/