:root {
    /* Fonts */
    --main_font: "Poppins", sans-serif;
    --code_font: "Roboto Mono", monospace;

    /* Colors */
    --light: #ffffff;
    --dark: #000000;

    --primary: #49BBBD;
    --secondary: #252641;
}


/* ------------------ GLOBAL TAGS STYLE ------------------ */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--main_font);
    min-width: 320px;
    min-height: 100vh;
    background-color: var(--light);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

p,
span,
label,
h6 {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    /* color: var(--secondary); */
    color: black;
}

form {
    width: 100%;
}

button {
    width: 232px;
    padding: 15px 30px;
    margin: 0;
    margin-left: auto;
    border-radius: 36px;
    background-color: var(--primary);
    border: 0;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

button:hover {
    transform: scale(1.05);
}

/* ------------------ GLOBAL CLASSES ------------------ */
.container {
    max-width: 1300px;
    margin: 0 auto;
}

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

.flex-col {
    flex-direction: column;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.w-full {
    width: 100%;
}

.w-half {
    width: 50%;
}

.h-full {
    width: 100%;
}

.h-half {
    width: 50%;
}

.to-right {
    margin: 0 auto 0 0;
}

.to-left {
    margin: 0 0 0 auto;
}

.menu-toggler {
    margin-left: 10px;
    cursor: pointer;
    display: none;
}

.section-wrapper {
    padding: 50px 0;
}

.divider-h{
    width: 100%;
    height: 2px;
    background-color: #BFBFBF;
}
.divider-h-alt{
    width: 100%;
    height: 2px;
    background-color: #44aba9;
}
@media screen and (max-width: 990px) {

    .menu-toggler {
        display: flex;
    }
}

.main-header {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    position: relative;
    height: auto;
    /* width: 100%; */
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.main-header.not-home {
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}


.main-header.not-home.logged-in {
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    top: 80px;
}

.main-header .holder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 50px;
    width: 100%;
    height: 100%;
    z-index: 10;
}

@media screen and (max-width: 990px) {

    .main-header .holder {
        justify-content: space-between;
    }
}

.main-header nav.wide {
    flex: 1;
    margin-right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-header nav.mobile {
    position: absolute;
    background-color: white;
    width: 100%;
    /* height: 30vh; */
    left: 0;
    top: 110%;
    border: 1px solid var(--primary);
    display: none;
    justify-content: center;
    align-items: center;
    /* opacity: 0;
    z-index: -1;
    transform: translateY(-20%);
    transition: all 0.3s ease-in-out; */
}

.main-header.not-home nav.mobile {
    background-color: var(--primary);
    border: 1px solid white;

}

.main-header nav.mobile ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 90%;
}

.main-header nav.mobile ul li {
    margin: 10px 0;
    width: 100%;
    text-align: center;
}

.main-header nav.mobile ul li a {
    color: var(--primary);
}

.main-header.not-home nav.mobile ul li a {
    color: white;

}

@media screen and (max-width: 990px) {

    .main-header nav.wide {
        display: none;
    }
}

.main-header nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100%;
}

.main-header nav ul li {
    margin-left: 50px;
}

.main-header nav ul li a {
    color: white;
    font-size: 14px;
    line-height: 33px;
}

.main-header nav ul li a.active {
    border-bottom: 3px solid white;
}

.main-header.not-home nav ul li a {
    color: black;

}

.main-header.not-home nav ul li a.active {
    border-bottom: 3px solid black;
}

.main-header div.actions {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-header div.actions button {
    margin: 0;
    padding: 0;
    background-color: white;
    color: var(--primary);
    height: 35px;
    width: 80px;
    margin: auto;
    font-size: 14px;
}

.main-header.not-home div.actions button {
    background-color: var(--primary);
    color: white;
}

.select {
    border-radius: 22px;
    border: 1px solid white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: auto 15px;
    height: 35px;
    padding-left: 1rem;
    padding-right: 0.75rem;
    margin-inline-start: 10px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.main-header.not-home .select {
    border: 1px solid black;
}

.select p {
    color: white;
    font-size: 14px;
    line-height: 33px;
}

.main-header.not-home .select p {
    color: black;
}

.select img {
    width: 20px;
    color: white;
    transition: all 0.3s ease-in-out;
}

.main-header.not-home .select img {
    color: black;
}

.select div.values {
    position: absolute;
    top: 110%;
    background-color: white;
    border: 1px solid var(--primary);
    border-radius: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    z-index: -1;
    transform: translateY(-20px);
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

.main-header.not-home .select div.values {
    border: 1px solid black;
}



.main-footer {
    background-color: var(--secondary);
    color: white;
}

.main-footer .holder {
    width: 100%;
    margin: 0 auto;
    padding: 25px;
    display: grid;
    gap: 30px;
}

/* @media screen and (max-width: 700px) {
    .main-footer .holder {
        width: 90%;
    }
}

@media screen and (min-width: 701px) and (max-width: 1084px) {
    .main-footer .holder {
        width: 80%;
    }
} */


.main-footer .holder div {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 7px;
    margin: 7px 0;
}

.main-footer .holder div.header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    margin: 15px 0;
    width: 100%;
}

.main-footer .holder div.header img {
    height: 60px;
}

.main-footer .holder div.header p {
    font-family: Nunito Sans;
    font-weight: 600;
    font-size: 20px;
    line-height: 32.74px;
}

.main-footer .holder section {
    /* background-color: orange; */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-footer .holder section aside {
    /* background-color: blue; */
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 10px;
}

.main-footer .holder section aside h3 {
    font-family: Nunito Sans;
    font-weight: 700;
    font-size: 20px;
    line-height: 32.74px;
    border-bottom: 2px solid #626381;
    margin: 0;
}

.main-footer .holder section aside:nth-last-child(1) h3 {
    font-weight: 500;
    color: #B2B3CF;
    border-bottom: none;
}

.main-footer .holder section aside div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.main-footer .holder section aside div p {
    font-family: Nunito Sans;
    font-weight: 400;
    font-size: 18px;
    line-height: 30.01px;
}

.main-footer .holder section aside div p a,
.main-footer .holder section aside div p a:visited {
    color: inherit;
}

.main-footer .holder section aside div p a:hover{
    text-decoration: underline;
}

.main-footer .holder section aside div.form_group {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.main-footer .holder section aside div.form_group input {
    margin-top: 0;
    background-color: transparent;
    border: 1px solid #83839A;
    color: white;
    width: 250px;
}

.main-footer .holder section aside div.form_group button {
    width: auto;
    border: none;
    margin: 0;
}

.main-footer .holder section aside div.social {
    display: grid;
    gap: 10px;
    margin-bottom: 60px;
}

.main-footer .holder section aside div.social h4 {
    font-family: Nunito Sans;
    font-weight: 600;
    font-size: 20px;
    line-height: 32.74px;
    color: #B2B3CF;
    margin: 0;
}
.main-footer .holder section aside div.social div {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin: 0;
}

@media screen and (max-width: 600px) {
    .main-footer .holder div.header {
        gap: 10px;
    }
    .main-footer .holder div.header img{
        height: 40px!important;
    }
}

.main-footer .holder div p {
    font-size: 22px;
    font-weight: 600;
    line-height: 33px;
    color: white;
}

@media screen and (max-width: 600px) {
    .main-footer .holder div p {
        border-left: 0;
    }
}

@media screen and (max-width: 600px) {
    .main-footer .holder .form_group {
        gap: 25px;
    }
}



.main-footer .holder span {
    font-weight: 400;
    line-height: 15px;
    color: #B2B3CF;
    text-align: center;
}

.divider {
    width: 2px;
    height: 100%;
    background-color: #626381;
}
.main-footer  .divider-1 {
    width: 100%;
    height: 1px;
    background-color: #626381;
}
.main-footer .footer-links {
    /* background-color: red; */
    width: 50%;
    margin: 0 auto!important;
}

@media screen and (max-width: 850px) {
    .main-footer .footer-links {
        /* background-color: red; */
        width: 100%;
    }
}
.main-footer .footer-links .divider-2 {
    width: 2px;
    height: 100%;
    background-color: #626381;
}

@media screen and (max-width: 700px) {
    .main-footer .holder span {
        line-height: 20px;
    }
}

.main-footer .holder span:nth-child(3) {
    border-right: 0;
}

p.copyright {
    text-align: center;
    color: #B2B3CF;
    margin: 0;
}


    .no-copy {
        user-select: none;
        -webkit-user-select: none;
        /* Chrome/Safari */
        -moz-user-select: none;
        /* Firefox */
        -ms-user-select: none;
        /* IE/Edge */
    }
.blog_post_container img{
    max-width: 100%;
    padding: 10px;
}