/* CSS Reset Begin */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* CSS Reset End */

body {
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    font-size: 15px;
    background-color: #FAFAFA;
}

body.menuOpen {
    overflow: hidden;
}

strong, b {
    font-weight: 600;
}

.btn {
    display: inline-flex;
    justify-self: start;
    align-items: center;
    background-color: #331C29;
    border-radius: 20px;
    padding: 12px 24px;
    color: #FFF;
    transition: all .3s;
    line-height: 1;
    text-decoration: none;
}

.btn:hover,
.btn:focus {
    background: #5C4552;
    color: #FFF;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

p {
    font-size: 18px;
    font-weight: 200;
    line-height: 1.90rem;
    margin-block-end: 1.4rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    font-family: "Lexend", sans-serif;
    border: 2px solid #434343DB;
    padding: .5rem 1rem;
    border-radius: 5px;
    font-size: 15px;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
    font-weight: 300;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
    color: #9d9d9d;
}

ol {
    list-style: decimal;
}

a {
    color: #c36;
    text-decoration: none;
}

a:hover, a:focus {
    color: #336;
}

form .btn {
    font-family: "Lexend", sans-serif;
    padding: 12px 34px 12px 34px;
    font-size: 1rem;
    font-weight: 300;
}

header {
    background: #fafafa;
    box-shadow: 0px 1px 4px 0px #CCCCCC;
    padding: 12px 0px 16px 0px;
    z-index: 999;
}

header .toggle-menu {
    padding: 7px 10px;
    border: 2px solid #331c2a;
    border-radius: 5px;
    line-height: 0;
    z-index: 9;
}

header .toggle-menu.open {
    color: #FFF;
    border-color: #FFF;
}

header .toggle-menu .close {
    display: none;
}

header .toggle-menu.open svg {
    display: none;
}

header .toggle-menu.open .close {
    display: block;
}

.header-container > .btn {
    margin-left: auto;
    margin-right: 20px;
}

.main-nav {
    list-style: none;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    /* display: block; */
    background: #3f2836;
    color: #FFF;
    opacity: 0;
    visibility: hidden;
    transition: ease all .3s;
}

.main-nav.open {
    visibility: visible;
    opacity: 1;
}

.main-nav a {
    display: block;
    text-decoration: none;
    padding: 15px 30px;
    color: #FFF;
    position: relative;
    font-size: 16px;
}

.main-nav a::after {
    content: "";
    display: inline-block;
    background: #331C29;
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    transition: all .3s;
}

.main-nav li {
    display: block;
    line-height: 25px;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav li.active a {
    color: #66ffcc;
}

.section-legal p {
    font-weight: 300;
}

.home-banner {
    /* min-height: 40vw; */
    padding: 70px 0;
}

.home-banner h1 {
    color: #331C29;
    /* font-size: 50px; */
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 3.2rem;
    line-height: 2.9rem;
}

.home-banner img {
    max-width: 300px;
    margin: 0 auto;
}

.home-banner .btn {
    align-self: self-start;
    font-size: 18px;
    margin-top: 20px;
    padding: 12px 30px;
}

.home-banner .home-banner-content {
    width: 90%;
}

.section-about {
    background: url(../images/Graphic-bg.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    padding: 60px 40px 40px 40px;
}

.section-about h2 {
    color: #FFF;
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-about p {
    font-size: 16px;
    color: #FFF;
}

.section-about img {
    /* width: 50%; */
    margin: 0 auto 50px auto;
    max-width: 200px;
}

.section-about .btn {
    background-color: #6EEAF5;
    color: #434343;
    padding: 10px 40px;
    font-size: 18px;
}

.section-about .btn:hover {
    background-color: #66FFCC;
}

.seciton-partnerships {
    background: #F1F1F1;
    padding: 50px 0 75px 0;
    margin-top: 75px;
}

.section-main {
    padding: 60px 0 160px 0;
}

.section-main.narrow-bottom {
    padding: 60px 0 100px 0;
}

.section-main h1 {
    font-size: 35px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 20px;
}

.sub-title {
    font-size: 20px;
    font-weight: 400;
}

.seciton-partnerships h2 {
    font-size: 35px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
}

.seciton-partnerships img {
    /* width: 40%; */
    max-width: 200px;
    align-self: center;
}

.timeline {
    max-width: 880px;
    margin: 60px auto 160px auto;
    position: relative;
}

.timeline .line {
    display: block;
    position: absolute;
    top: 0;
    left: 58px;
    transform: none;
    width: 6px;
    height: 100%;
    /* background-color: #66FFCC; */
    background-color: #6EEAF5;
}

.timeline .line-active {
    display: block;
    position: absolute;
    top: 0;
    top: 0;
    left: 58px;
    width: 6px;
    background-color: #66FFCC;
}

.timeline .timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

.timeline .timeline-item:last-child {
    margin-bottom: 0;
}

.timeline .timeline-item .timeline-content,
.timeline .timeline-item .timeline-spacer {
    flex: 1;
}

.timeline .timeline-item .timeline-content {
    border: 4px solid #66FFCC;
    padding: 30px 20px;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    box-shadow: 0px 0px 10px 0px rgba(202.3, 202.3, 202.3, 0.8);
}

.timeline .timeline-item .timeline-spacer {
    padding: 0 20px;
    border: 4px solid transparent;
}

.timeline .timeline-item .timeline-icon {
    flex-grow: 0;
    flex-shrink: 0;
    width: 120px;
    display: flex;
    justify-content: center;
}

.timeline .timeline-item .timeline-icon .icon-holder {
    display: inline-block;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
    color: #6EEAF5;
    background-color: #FAFAFA;
    box-shadow: 0px 0px 4px 0px #CCCCCC;
    border-radius: 50%;
    z-index: 2;
}

.timeline .timeline-item .timeline-icon .icon-holder.active {
    color: #66FFCC;
}

.timeline .timeline-item .timeline-icon .icon-holder svg {
    width: 45px;
    height: 45px;
}

.image-gallery .image-group {
    gap: 1rem;
}

.image-gallery .image-group > img {
    max-height: 330px;
}

.image-gallery > div > img {
    max-height: 330px;
}

/* .image-group {
    gap: 2.5rem;
    margin: 30px 0 20px 0;
}

.image-group > img {
    max-height: 330px;
}

.image-group div {
    gap: 1rem;
}

.image-group div > img {
    max-height: 109px;
} */

.section-contact {
    box-shadow: 0px -2px 4px 0px rgba(204, 204, 204, 0.8);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 25px 0px 50px 0px;
}

.section-contact p {
    font-size: 16px;
}

.section-contact .btn {
    font-size: 18px;
    padding: 10px 35px;
}

.process-horizontal {
    text-align: center;
    /* margin-top: 15px; */
}

.process-horizontal .row {
    gap: 2rem;
}

.process-horizontal .row > .col-md-4 {
    gap: 1rem;
}

.process-horizontal p {
    color: #434343;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
}

.process-horizontal .process-step {
    padding: 10px 20px 20px 20px;
    text-align: center;
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0px 0px 4px 0px #CCCCCC;
    height: 100%;
}

.process-horizontal .process-icon {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.process-horizontal .process-icon span {
    display: inline-block;
    position: relative;
    flex: 1;
}

.process-horizontal .process-icon span:not(.icon)::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background-color: #66FFCC;
}

.process-horizontal .process-icon span.icon + span::after {
    height: calc(100% + 7px);
    width: 4px;
    right: 50%;
    bottom: 0;
    top: auto;
    transform: translateX(50%) translateY(1rem);
}

.process-horizontal .process-icon span:first-child {
    display: none;
}

.process-horizontal .process-icon span:first-child:after {
    left: 50%;
    height: calc(100% + 7px);
    width: 4px;
    right: 50%;
    top: 0;
    bottom: auto;
    transform: translateX(-50%) translateY(-1rem);
}

.process-horizontal .col-md-4:first-child .process-icon span:first-child:after,
.process-horizontal .col-md-4:last-child .process-icon span:last-child:after {
    display: none;
}

.process-horizontal .process-icon span.icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0px 0px 4px 0px #CCCCCC;
}

.process-horizontal .process-icon svg {
    height: 30px;
    width: auto;
    fill: #66ffcc;
}

.process-horizontal .process-step h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.process-horizontal .process-step p {
    margin-bottom: 20px;
}

/* Footer Begin */

footer {
    background: #331C29;
    padding: 55px 0 50px 0;
    font-size: 16px;
}

footer h2 {
    color: #FFF;
    font-size: 22px;
    margin-bottom: 20px;
}

footer img {
    margin-bottom: 75px;
}

footer .narrow-container {
    margin: 0 auto;
}

footer .footer-nav li {
    line-height: 24px;
}

footer a {
    color: #FAFAFA;
    text-decoration: none;
    font-weight: 200;
}

footer a:hover,
footer a:focus {
    color: #66FFCC;
}

footer p {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 24px;
}

footer .footer-text {
    text-align: center;
    color: #FAFAFA;
    margin-top: 25px;
}

/* Footer End */


@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 100%;
        /* max-width: 540px; */
    }

    .main-nav li:last-child {
        display: none;
    }
    
    .timeline .line,
    .timeline .line-active {
        left: 50%;
        transform: translateX(-50%);
    }

    .process-horizontal .process-icon span.icon {
        flex: 0 0 80px;
        width: 80px;
        height: 80px;
    }

    .process-horizontal .process-icon svg {
        height: 50px;
    }

    .process-horizontal .row > .col-md-4 {
        gap: 2rem;
    }
}


@media (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: 100%;
    }

    .home-banner img {
        max-width: 80%;
    }

    .section-about img {
        max-width: 100%;
    }

    .seciton-partnerships img {
        max-width: 100%;
    }

    .process-horizontal .row {
        gap: 0;
    }

    .process-horizontal .row > .col-md-4 {
        gap: 0;
    }

    .process-horizontal .process-icon {
        flex-direction: row;
        margin-left: calc(var(--bs-gutter-x) * -.5);
        margin-right: calc(var(--bs-gutter-x) * -.5);
    }

    .process-horizontal .process-icon span.icon + span::after {
        width: calc(100% - 7px);
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        height: 4px;
    }

    .process-horizontal .process-icon span:first-child:after {
        width: calc(100% - 7px);
        left: 0;
        height: 4px;
        right: auto;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
    }

    .process-horizontal .process-icon {
        margin-bottom: 20px;
    }

    .process-horizontal .process-icon span:first-child {
        display: block;
    }
}


@media (min-width: 992px) {
    /* .container, .container-lg, .container-md, .container-sm {
        max-width: 960px;
    } */

    .main-nav a:hover,
    .main-nav a:focus,
    .main-nav li.active a {
        color: #331C29;
    }

    .home-banner h1 {
        font-size: 40px;
        line-height: 3.2rem;
    }

    .main-nav a:hover::after,
    .main-nav li.active a::after {
        opacity: 1;
    }

    .seciton-partnerships img {
        width: 40%;
    }

    .toggle-menu {
        display: none;
    }

    .main-nav {
        display: flex;
        position: static;
        background-color: transparent;
        width: auto;
        opacity: 1;
        visibility: visible;
    }

    .main-nav a {
        color: #231F20;
        padding: 15px 30px;
    }

    .header-container > .btn {
        margin-left: unset;
        margin-right: 0px;
    }
    
}

@media (min-width: 1200px) {
    /* .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px;
    } */

    .home-banner h1 {
        font-size: 50px;
    }

    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1120px;
    }

    .header-container {
        margin-left: calc(var(--bs-gutter-x) * -.5);
        margin-right: calc(var(--bs-gutter-x) * -.5);
    }

    .home-banner {
        min-height: 60vw;
    }

    .section-about img {
        width: 50%;
    }
}

@media (min-width: 1400px) {
    .home-banner {
        min-height: 40vw;
    }
    /* .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1120px;
    } */
}