

/*ROOT AND BASE*/

:root {
    --main-color: #EBDBCD;
    --second-color: #000000;
    --third-color: #ffffff;
    --fourth-color: #A7D4AC;
    --main-text-color: #CE8A4E;
    --main-font: 'Mukta', sans-serif;
    --second-font: 'Yesteryear';
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a:hover {
    color: var(--second-color);
}

html {
    font-family: 'Mukta', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Mukta', sans-serif;
    background-color: var(--main-color);
}

p {
    margin: 0;
}

ul {
    list-style-type: none;
    padding: 0;
}

.card-carousel-c {
    display: none;
}

.card-carousel-c .carousel-item {
    background: none;
}


/*BACKGROUND HEADER*/

.bkg_hdr {
    width: 100%;
    height: 100vh;
    min-height: 721px;
    background: linear-gradient(0deg, #FFFFFF 0%, rgba(255, 255, 255, 0.825) 20.34%), url('../ASSETS/IMG/bkg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*SPECIAL CONTAINER*/


.special_cont {
    width: 80%;
    margin: 0 auto;
}


/*SECTION TITLE*/

.section-title {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 35px 0;
}


/*NAV, LOGO, LINKS, SPECIAL BTN*/


.logo {
    padding: 0 15px;
    transition: linear 0.8s border;
}

.logo:hover {
    border-radius: 50%;
    background-color: var(--third-color);
}

.logo img {
    width: 85%;
}

.logo, .logo img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav_links {
    height: 100%;
    align-self: center;
    display: flex;
    flex-direction: row;
}

.nav_links_link {
    color: #000000;
    text-decoration: none;
    height: 100%;
    transition: linear 0.08s background-color;
    font-size: 20px;
    text-align: center;
}

.nav_links_link:hover {
    background-color: #00000025;
}

.nav_special_btn {
    color: #000000;
    text-decoration: none;
    background-color: var(--fourth-color);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 20px;
    transition: linear 0.08s background-color ;
}

.nav_special_btn:hover {
    background-color: #bbecc1;
}

.navbar-nav li, .navbar-nav li a {
    padding: 10px 0;
}

.navbar-nav li a {
    width: 100%;
}


/*HERO, H1, P, CTA*/

.hero {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 75px 0 25px 0;
}

h1 {
    font-family: var(--second-font);
    color: var(--main-text-color);
    font-size: 75px;
    font-weight: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 span {
    font-family: var(--main-font);
    font-size: 35px;
    text-transform: uppercase;
    color: var(--second-color);
    font-weight: 400;
    letter-spacing: 5px;
    margin-top: -5px;
}

.p {
    font-size: 22.5px;
    text-align: center;
    margin: 45px 0 0 0;
}

.p h4 {
    display: inline;
}

.cta_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 22.5px;
    padding: 25px 75px;
    text-decoration: none;
    color: var(--second-color);
    margin: 55px 0 0 0;
    border-radius: 500px;
    transition: linear 0.08s all;
}

.cta_btn:hover {
    margin-top: 45px;
}

.cta_btn img {
    width: 21px;
    height: 55px;
    margin-top: 15px;
}


/*PROMOTION*/

.promo-section {
    margin: 35px 0 0 0;
    padding: 45px 0;
}

.promo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo_title {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 25px 0;
}

.promo img {
    width: 800px;
    user-select: none;
    margin-bottom: 25px;
    transition: linear 0.08s all;
}

.promo img:hover {
    outline: 2.5px solid var(--second-color);
}

/*ABOUT, CAROUSEL, CARDS*/

.about-section {
    background-color: rgba(255, 255, 255, 0.64);
    padding: 35px 0;
    border-bottom: 2.5px solid var(--main-text-color);
    border-top: 2.5px solid var(--main-text-color);
}

.about {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel, .slide {
    height: 470px;
    width: 900px;
}

.carousel-item {
    height: 470px;
    width: 900px;
    background: url(../ASSETS/IMG/bkg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.carousel-1 {
    background-image: url(../ASSETS/IMG/carousel-1.JPG);
}

.carousel-2 {
    background-image: url(../ASSETS/IMG/carousel-2.JPG);
}

.carousel-3 {
    background-image: url(../ASSETS/IMG/carousel-3.JPG);
}


.carousel_img {
    height: 100%;
    background-color: #00000075;
}

.carousel_text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    align-items: center;
    display: flex;
    width: 800px;
    justify-content: center;
    align-content: center;
    margin: 0 auto;
    cursor: default;
    font-size: 25px;
    color: var(--third-color);
}

.about h3 {
    margin: 55px 0 0 0;
    font-family: var(--second-font);
    text-align: center;
    color: var(--main-text-color);
    font-size: 50px;
}

.card-custom-section {
    display: flex;
    flex-direction: column;
    width: 900px;
    margin: 45px 0 0 0;
}

.card-division {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.card-custom {
    height: 200px;
    width: 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
    margin: 0 0 25px 0;
    border-radius: 15px;
    border: 1px 0 1px 0 var(--second-color) solid;
    cursor: default;
    box-shadow: 0 0 1px 1px #00000035;
    transition: linear 80ms;
    transition-property: box-shadow, background-color;
}

.card-custom:hover {
    box-shadow: 0px 4px 10px 1px #00000065;
}

.card_header {
    display: flex;
    flex-direction: row;
    margin: 0 0 10px;
}

.card_icon {
    background-color: var(--third-color);
    outline: 1px solid var(--second-color);
    border-radius: 50px;
    padding: 10px;

}

.card_icon img {
    width: 30px;
}

.card_h {
    display: flex;
    align-items: center;
    margin: 0 0 0 15px;
    font-weight: 500;
    font-size: 23px;
}


/*FIND US, MAP DESCP*/

.find-us {
    margin: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map_description {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.84);
    color: #ffffff;
    font-size: 20px;
    margin-top: -7px;
    text-align: center;
}


/*FOOTER*/

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--fourth-color);
}

.flw-cnct {
    padding: 35px 0;
    display: flex;
    flex-direction: row;
}

.flw-cnct h4 {
    text-transform: uppercase;
    padding: 0 10%;
    margin-bottom: 20px;
    text-align: center;
}

.flw, .cnct {
    min-width: 50%;
    display: flex;
    flex-direction: column;
    padding-left: 25px;
}

.cnct {
    border-left: 1px solid #000000;
}

.flw-cnct ul {
    height: 132px;
    display: flex;
    flex-direction: column;
}

.flw-cnct li {
    width: 100%;
    padding: 0 5%;
    margin-bottom: 15px;
}

.flw-cnct li a {
    width: 100%;
    height: 45px;
}

.flw-cnct a {
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--third-color);
    text-decoration: none;
    text-align: center;
    transition: linear 0.08s box-shadow;
}

.flw-cnct a:hover {
    box-shadow: 0px 2px 2px 0 #00000040;
}

.flw-cnct img {
    width: 20px;
    margin: 0 5px 0 0;
}

.pymnt-mthds {
    margin: 35px 0 35px 0;
}

.pymnt-mthds h4 {
    padding: 0 10%;
    text-align: center;
}

.py-mth-list {
    padding: 0 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.py-mth-list-i {
    margin-right: 15px;
    width: 100px;
    height: 66.61px;
}

.targetas-py {
    height: 66.61px;
    min-width: 100px;
    max-width: 100px;
    line-break: loose;
    text-transform: uppercase;
    background-color: #00000095;
    color: var(--third-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    margin-right: 15px;
}

/*END SECTION AND CREDITS*/

.end-sct-section {
    background-color: var(--main-color);
}

.end-sct {
     display: flex;
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
     padding: 5px 0;
}

.end-sct-img {
    height: 85px;
}

.end-sct a {
    height: 55px;
    width: 55px;
}

.end-sct a img {
    height: 55px;
    width: 55px;
    transition: linear all 0.08s;
}

.end-sct a img:hover {
    opacity: 95%;
}

/*CREDITS*/

.credits {
    padding: 10px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.credits a {
    color: var(--second-color);
    text-decoration: none;
}

.credits a:hover {
    text-decoration: underline;
}


/*MOBILE*/

@media(max-width: 1200px) {

    .p {
        padding: 0 10%;
    }

    .card-custom {
        box-shadow: none;
    }

    .card-custom:hover {
        box-shadow: none;
    }

    .card-carousel-c .card-custom {
        padding: 25px 90px;
    }

    .c1 {
        align-items: center;
    }

    .c1 .card_h {
        font-size: 18px;
    }

    .c1 .card_content {
        width: 310px;
    }


    .card_content {
        width: 290px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card_header {
        align-items: center;
        justify-content: center;
    }

    .p, .p b {
        font-size: 20.5px;
    }

    .hero {
        margin: 50px 0 25px 0;
    }

    .cta_btn {
        display: none;
    }

    .mb_cta_btn, .mb_cta_btn img {
        display: flex;
        height: 50px;
        margin-top: 25px;
    }

    .promo img {
        width: 400px;
    }

    .carousel-indicators [data-bs-target] {
        width: 30px;
        height: 5px;
        font-size: 11px;
    }

    carousel-indicators {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        /* top: 0; */
        z-index: 2;
        display: flex;
        justify-content: center;
        padding: 0;
        margin-right: 15%;
        margin-bottom: 1rem;
        margin-left: 15%;
        list-style: none;
    }

    .carousel, .slide {
        height: 225px;
        width: 450px;
    }

    .carousel-inner {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .carousel_text {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        text-align: center;
        align-items: center;
        display: flex;
        width: 315px;
        height: 100%;
        justify-content: center;
        align-content: center;
        margin: 0 auto;
        cursor: default;
        font-size: 11px;
        color: var(--third-color);
    }

    .carousel-item-next, .carousel-item-prev, .carousel-item.active {
        display: block;
        width: 100%;
        height: 100%;
    }

    .carousel_img {
        height: 100%;
        background-color: #00000075;
        width: 100%;
    }

    .carousel-item-next, .carousel-item-prev, .carousel-item.active {
        display: block;
        width: 100%;
        height: 100%;
    }

    .carousel-item-next, .carousel-item-prev, .carousel-item.active {
        display: block;
        width: 100%;
        height: 100%;
    }

    .c-mod .card_h {
        font-size: 21px;
    }

    .c-mod .card_content {
        font-size: 13px;
    }

    .about h3 {
        padding: 0 5%;
        margin: 55px 0 35px 0;
        font-family: var(--second-font);
        text-align: center;
        color: var(--main-text-color);
        font-size: 50px;
    }

    .flw-cnct {
        padding: 35px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .flw-cnct ul {
        height: 132px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .flw-cnct li {
        display: flex;
        justify-content: center;
        width: 100vw;
    }

    .flw-cnct li a {
        display: flex;
        justify-content: center;
        width: 90%;
        margin-bottom: 15px;
    }

    .wpp {
        margin-top: 100px;
    }

    .flw, .cnct {
        min-width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
        border-bottom: 1px solid var(--second-color);
        border-left: none;
    }

    .cnct {
        border-bottom: none;
    }

    .py-mth-list {
        display: flex;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }

    .py-mth-list li {
        margin-bottom: 15px;
    }

    .credits h5 {
        font-size: 15px;
    }

    * {
        text-align: center;
    }

    .credits {
        flex-direction: column;
    }

    .end-sct a img {
        height: 45px;
        width: 45px;
        transition: linear all 0.08s;
    }

    .map-section {
        width: 90vw;
        height: 100%;
    }

    .map-section iframe {
        width: 90vw;
        height: 250px;
    }

    .map_description {
        height: 75px;
    }

    .nav_links_link {
        color: #000000;
        text-decoration: none;
        height: 100%;
        transition: linear 0.08s background-color;
        background-color: var(--third-color);
        font-size: 20px;
        width: 100%;
        text-align: center;
    }
    
    .nav_links_link:hover {
        background-color: #f0f0f0;
    }
    
    .nav_special_btn {
        color: #000000;
        text-decoration: none;
        background-color: var(--fourth-color);
        padding: 10px 15px;
        border-radius: 5px;
        font-size: 20px;
        transition: linear 0.08s background-color ;
    }

    .navbar, .navbar-expand-lg, .bg-transparent {
        width: 100%;
    }

    .flw-cnct {
        padding-bottom: 0;
    }

    .about h3 {
        font-size: 45px;
    }

    .carousel_text {
        width: 356px;
        font-size: 14px;
    }

    .card-carousel-c {
        display: block;
    }

    .card-custom-section {
        display: none;
    }

    .card-carousel-c .card-custom {
        padding: 25px 90px;
    }

    .nav_links_link, .navbar-nav li {
        padding: 0;
        height: 100%;
        display: flex;
        align-items: center;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .nav-links {
        flex-direction: column;
    }

    .special_cont {
        margin: 0 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
    }


}

@media (max-width: 462.50px) {
    .flw, .cnct {
        margin-bottom: 45px;
        padding-left: 0;
    }
    
    .carousel, .slide {
        height: 225px;
        width: 400px;
    }

    .carousel_text {
        font-size: 12px;
    }

    .about h3 {
        font-size: 35px;
    }
}

/*FIXES*/

@media(min-width: 1440px) {
    .bkg_hdr {
        height: 721px;
    }
}

.navbar {
    padding: 0;
    height: 75px;
}

.navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex!important;
        flex-basis: auto;
        width: 100%;
        height: 100%;
        align-items: center;
    }
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
}

@media (max-width: 1200px) {
    .carousel-item-next, .carousel-item-prev, .carousel-item.active {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
    }
}

.nav_special_btn {
    padding: 10px 15px;
}

.nav_links_link, .navbar-nav li {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-nav li a {
    padding: 15px 10px;
}

@media (min-width: 1200px) {
    .mb_cta_btn, .mb_cta_btn img {
        display: none;
        height: 50px;
        margin-top: 25px;
    }
}

.nav-links {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}



.ig a {
    background-color: var(--third-color);
    color: #E1306C;
}

.fb a {
    background-color: #3B5998;
}

.wpp a {
    background-color: #075E54;
}

.email a {
    background-color: #A70000;
}

.ph a {
    background-color: #000000;
}

@media (max-width : 446px) {
    .card-custom {
        align-items: center;
    }

    .c1 .card_header {
        font-size: 18px;
    }

    .card_content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 462.5px) {
    .carousel, .slide {
        height: 245px;
        width: 400px;
    }

    .carousel_text {
        font-size: 15px;
        width: 376px;
    }
}