@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Ubuntu:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: 'Roboto', 'Ubuntu', sans-serif;
    font-family: 'Ubuntu', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/*=============== VARIABLES CSS ===============*/
:root {
    --blue-color: #333366;
    --white-color: #FFFFFF;
    --black-color: #021629;
    --dark-gray: #5C5C5C;

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --big-font-size: 3.2rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
    --tiny-font-size: 0.625rem;

    /*========== Margenes Bottom ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --mb-0-25: 0.25rem;
    --mb-0-5: 0.5rem;
    --mb-0-75: 0.75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

body {
    background-color: var(--white-color);
    background-color: #fafafa;
    color: var(--black-color);
}

a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
    /* padding: 0; */
    padding-top: 80px;
}

.section__title {
    font-size: var(--h1-font-size);
    color: var(--blue-color);
    position: relative;
}

.section__title::after {
    content: '';
    background-color: var(--blue-color);
    display: block;
    width: 80px;
    height: 3px;
    position: absolute;
    bottom: -10px;
    border-radius: 5px;
}

.section__subtitle {
    display: block;
    margin-bottom: 4rem;
}

.section__title,
.section__subtitle {
    text-align: center;
}

/*=============== LAYOUT ===============*/
.container {
    max-width: 968px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
}

.header_container {
    max-width: 1224px;
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
    gap: 1.5rem;
}


/* =============== HEADER START ===============*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 100;
    border-top: 6px solid var(--blue-color);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--white-color);
    color: var(--blue-color);
}

.header_logo {
    height: 46px;
    cursor: pointer;
    margin-right: 15px;
}

.header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header_menu {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.header_menu_item a {
    font-size: var(--h3-font-size);
    color: var(--blue-color);
    padding: 10px 15px;
    font-weight: bold;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

.header_menu_item a:hover {
    /* color: var(--black-color); */
    border-bottom: 3px solid var(--blue-color);
}

.humburger_menu {
    display: none;
    cursor: pointer;
    color: var(--blue-color);
    font-weight: bold;
    z-index: 1000;
}

.humburger_menu_section {
    color: var(--blue-color);
    font-weight: bold;
    background-color: var(--white-color);
    border-top: 6px solid var(--blue-color);
    padding: 20px;
    height: 100%;
    width: 300px;
    position: fixed;
    left: -300px;
    top: 0;
    z-index: 1000;
    transition: 0.5s;
}

.humburger_menu_close {
    position: relative;
}

.humburger_menu_close_icon {
    color: var(--blue-color);
    font-weight: bold;
    font-size: var(--h2-font-size);
    text-align: right;
    cursor: pointer;
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10001;
}

.humburger_menu_list_div {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100%;
}

.humburger_menu_list {
    height: auto;
    width: 100%;
    padding: 0px 0;
}

.humburger_menu_list_item {
    padding: 10px;
    cursor: pointer;
}

.humburger_menu_list_item a {
    color: var(--blue-color);
    transition: 0.3s;
}

.humburger_menu_list_item a i {
    margin-right: 8px;
}

.humburger_menu_list_item:hover {
    transition: 0.3s;
    transform: translateX(8px);
    color: var(--blue-color);
}

.humburger_menu_list_item:hover a i {
    transition: 0.3s;
    transform: translateX(-8px);
}

.contact_menu {
    display: flex;
    padding: 15px;
    align-items: center;
    column-gap: 0.5rem;
    justify-content: space-around;
    border-top: 2px solid var(--blue-color);
}

.contact_menu i {
    font-size: var(--h2-font-size);
    cursor: pointer;
}

.social_icon_menu {
    color: var(--black-color);
}

/* =============== HEADER END ============== */


/*=============== HERO HOME PAGE START ===============*/

.home_main {
    background: rgba(0, 0, 0, 0.6) url("/images/hero-bg.jpg");
    background-size: cover;
    background-blend-mode: darken;
    height: 100vh;
    color: var(--white-color);
    padding: 0 1.5rem;
}

.home_main_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.home_head_line {
    font-size: calc(var(--h1-font-size) + 0.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}



.home_head_sub_line {
    font-size: var(--normal-font-size);
    line-height: 23px;
    margin-bottom: 0.5rem;
}

.link_button {
    display: inline-block;
    padding: 1rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--white-color);
    border-radius: 0.5rem;
    font-size: var(--normal-font-size);
    font-weight: 500;
    transition: 0.3s;
    color: var(--white-color);
}

.link_button:hover {
    background-color: var(--white-color);
    color: var(--blue-color);
}

/*=============== HERO HOME PAGE END ===============*/



/*=============== ABOUT US START ===============*/

.about_main {
    margin-bottom: 2rem;
}

.about_main_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    width: 100%;
}

.about_main_intro {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    margin: 1rem 0 1.2rem 0;
    width: 100%;
    font-size: var(--normal-font-size);
    line-height: 25px;
    text-align: justify;
}

.about_main_card_body {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1rem;
}

.about_main_card {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.about_main_card_content {
    font-size: var(--normal-font-size);
    line-height: 21px;
}

.about_main_card_header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 1.2rem;
    width: 100%;
}

.about_main_card_title {
    font-size: var(--h3-font-size);
}

.about_main_card_icon {
    margin-right: 15px;
    font-size: var(--h3-font-size);
    color: var(--blue-color);
}

/*=============== ABOUT US END ===============*/


/* ============== SERVICES PAGE START =============== */
.services_main_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    width: 100%;
}

.services_main_card_body {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
}

.services_main_card {
    display: flex;
    justify-content: start;
    flex-direction: column;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.services_main_card_image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.model_img {
    border-radius: 20px;
}

.services_main_card_title_text {
    font-size: var(--normal-font-size);
    font-weight: 700;
    margin-bottom: 1rem;
}

.services_main_card_title {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    font-size: var(--normal-font-size);
}

/* ============== SERVICES PAGE END =============== */

/* ============== SERVICES MODEL START =============== */

.mpopup {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 10px auto;
    max-width: 450px;
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-radius: 20px;
}

.modal-header {
    padding: 5px 20px;
    background-color: #ffffff;
    color: #333;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.modal-header h2 {
    font-size: 1.25rem;
    margin: 20px 0 10px 0;
    text-align: center;
}

.modal-body {
    padding: 15px 20px;
}

.modal-footer {
    padding: 1rem;
    background-color: #ffffff;
    color: #333;
    border-top: 1px solid #e9ecef;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    text-align: center;
}

.modal-footer a i {
    color: var(--blue-color);
}

.close {
    color: var(--dark-gray);
    float: right;
    font-size: 2.5rem;
    padding-bottom: 10px;
}

.close:hover,
.close:focus {
    color: var(--blue-color);
    text-decoration: none;
    cursor: pointer;
}

/* add animation effects */
@-webkit-keyframes animatetop {
    from {
        top: -200px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -200px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

/* ============== SERVICES MODEL END =============== */

/* ============== PRTNERSHIP SECTION START =============== */
.partnership_main_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    width: 100%;
}

.partnership_list {
    /* display: grid; */
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.partnership_list_item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 1.3rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.partnership_main_intro {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    width: 100%;
    line-height: 22px;
}

.partnership_list_item_header {
    display: flex;
    align-items: center;

}

.partnership_list_icon {
    font-size: var(--h2-font-size);
    color: var(--blue-color);
    margin: 0 15px 0 0;
}

.partnership_list_title {
    font-size: var(--h3-font-size);
    font-weight: 700;
    /* margin: 0 0 0 1rem; */
}

/* ============== PRTNERSHIP SECTION END =============== */

/* =============== CONTACT US PAGE START =============== */
.contact_main_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 3rem 1rem;
    width: 100%;
}

.contact_main_intro {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    margin: 1rem 0 0 0;
    width: 100%;
    font-size: var(--normal-font-size);
    text-align: center;
}

.contact_main_intro span {
    color: var(--blue-color);
    font-weight: 700;
    font-size: var(--normal-font-size);
}

.contact_sub_intro {
    margin: 0 0 1rem 0;
}

.contact_list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--blue-color);
    margin-top: 30px;
}

.contact_list_item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    background-color: var(--white-color);
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    flex-direction: column;
}

.contact_list_item h3 {
    color: var(--blue-color);
}


.contact_list_icon {
    font-size: 2rem;
    margin: 10px;
    cursor: pointer;
    color: var(--blue-color);
}

.contact_list_item:hover .contact_list_icon {
    transform: scale(1.2);
    transition: transform 0.2s ease;
}

.form-container {
    /* border: 1px solid black; */
    margin-top: 0px;
    padding: 1rem;
    width: 100%;
}

.error {
    /* border: 1px solid red !important; */
}

.error-msg {
    color: red;
    margin: 2px 0 0 10px;
    font-size: 12px;
}

input {
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    outline: none;
    font-size: 16px;
    background-color: #FFFFFF;
    padding: 13px;
    width: 100%;
}

select {
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    outline: none;
    /* color: #333366; */
    font-size: 16px;
    background-color: #FFFFFF;
    padding: 13px;
    width: 100%;
}

textarea {
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    outline: none;
    font-size: 16px;
    background-color: #FFFFFF;
    padding: 13px;
    width: 100%;
    resize: none;
}

input:focus {
    border: 1px solid var(--blue-color) !important;
}

select:focus {
    border: 1px solid var(--blue-color) !important;
}

textarea:focus {
    border: 1px solid var(--blue-color) !important;
}

#myForm {
    /* border: 1px solid black; */
    /* width: 100%; */
}

.flex {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.grid-item {
    margin-bottom: 10px;
    width: 50%;
}

.grid-item-1 {
    margin-bottom: 10px;
    width: 100%;
}


.center {
    text-align: center;
}

.btn {
    background-color: #333366;
    border-radius: 8px;
    padding: 10px 10px;
    color: #FFFFFF;
    border: none;
    box-shadow: none;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    max-width: 400px;
    text-align: center;
    margin: 20px auto 0 auto;
    display: block;
}


.loader {
    border: 5px solid #333366;
    border-top: 5px solid #f3f3f3;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: spin 2s linear infinite;
    margin-left: 10px;
}

.submit-message {
    display: none;
    margin-top: 30px;
    font-size: 18px;
    font-weight: bold;
    color: green;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#submitingBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.label {
    display: block;
    margin: 0 0 5px 5px;
    /* font-weight: bold; */
    color: #5C5C5C;
    font-size: 14px;
}

/* ============== CONTACT US PAGE END =============== */


/*=============== FOOTER SECTION ===============*/
.main_footer_div {
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 70px 0 20px 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    border-bottom: 0.5px solid var(--white-color);
}

.colom {
    flex: 1;
    padding: 1.5rem 1rem;
    /* border: 1px solid var(--white-color); */
}

.footer_logo {
    font-size: var(--h1-font-size);
    margin-bottom: var(--mb-1);

}

.footer_logo img {
    width: 180px;
}

.social_icon {
    color: var(--white-color);
    padding: 3px;
}

.social_icon:hover {
    font-weight: bold;
    cursor: pointer;
}

.footer_title {
    color: var(--white-color);
    margin-bottom: var(--mb-2);
    font-size: var(--h3-font-size);
    position: relative;
}

.footer_title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--white-color);
    margin: 0 auto;
    position: absolute;
    bottom: -12px;
    left: 0;
}

.footer_list {
    color: var(--white-color);
    margin-bottom: var(--mb-0-5);
    cursor: pointer;
    font-size: var(--small-font-size);
    transition: 0.3s;
}

.footer_list i {
    margin-right: 5px;
    transition: 0.3s;
}

.footer_list:hover {
    transform: translateX(5px);
    font-weight: bold;

}

.footer_list:hover i {
    transform: translateX(-5px);
}


.footer_list_contact {
    /* color: var(--white-color); */
    margin-bottom: var(--mb-0-5);
    cursor: pointer;
    font-size: var(--normal-font-size);
    display: inline-flex;
    align-items: center;
    color: var(--white-color);
}

.footer_list_contact i {
    margin-right: 15px;
    font-size: var(--h3-font-size);

}

.footer_list a {
    color: var(--white-color);
}

.copyright {
    color: var(--white-color);
    text-align: center;
    padding-top: 15px;
    font-size: var(--small-font-size);
}

.privacy-policy-btn {
    display: inline-block;
    margin: 25px 0 25px 0;
    color: var(--white-color);
    font-size: 16px;
    cursor: pointer;
}

.privacy-policy-btn:hover {
    text-decoration: underline;
}

.privacy-policy-modal-content {
    max-width: 768px;
    position: relative;
    background-color: #fff;
    margin: 10px auto 70px auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-radius: 20px;
}

.privacy-policy-modal-header h2 {
    margin: 20px 0 20px 0;
}

.privacy-policy-modal-body p {
    text-align: left;
    text-align: justify;
    padding: 0 0 10px 0;
}

.privacy-policy-modal-body p a {
    color: #333366;
    font-weight: bold;
}

.consent-list {
    list-style: none;
    padding: 0 15px;
    margin-top: 35px;
}

.consent-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    list-style: none;
}

/* Hide the default checkbox */
input[type="checkbox"] {
    display: none;
}

/* Custom checkbox */
.custom-checkbox {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 2px solid #333366;
    border-radius: 4px;
    margin-right: 15px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

/* Checked state */
input[type="checkbox"]:checked + label .custom-checkbox {
    background-color: #333366;
}

input[type="checkbox"]:checked + label .custom-checkbox::after {
    content: '✔';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
}

label {
    cursor: pointer;
    font-size: 14px;
    color: #333;
    user-select: none;
    display: flex;
    align-items: center;
}

.custom-checkbox {
    margin-right: 15px;
}

.email-custom {
    /* margin-right: 15px; */
    color: #333366;
    font-weight: bold;
    cursor: pointer;
}

label span.custom-checkbox {
    order: -1;
}

.checkbox-error-msg {
    display: inline-block;
    font-size: 13px;
    margin-top: 4px;
}

.checkbox-error-msg span {
    color: red;
}

.check-box-button {
    font-size: 14px;
    /* margin-top: 20px; */
}

.check-box-button a {
    color: #333366;
    font-weight: bold;
    cursor: pointer;
}

.check-box-button a:hover {
    text-decoration: underline;
}

#error-consent{
    font-size: 12px;
    color: red;
    margin-bottom: 20px;
    /* display: none; */
}

/* =============== FOOTER SECTION END =============== */

/*=============== BREAKPOINTS ===============*/
/* For laptop devices */
@media screen and (max-width: 992px) {
    .section {
        padding-top: 80px;
    }

    .home_head_line {
        font-size: var(--h1-font-size);
    }

    .home_main_container {
        padding: 20px;
    }

    .home_quick_link {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    /* .modal-content {
        margin: 10px;
    } */

    .section__title::after {
        height: 0;
    }

    .row {
        flex-direction: column;
        gap: 30px;
    }

    /* .container {
        margin-left: var(--mb-1-5);
        margin-right: var(--mb-1-5);
    } */

    .button {
        padding: 1rem 1.75rem;
    }

    .header_logo {
        height: 38px;
        /* cursor: pointer; */
        /* margin-right: 15px; */
    }

    .header_menu {
        display: none
    }

    .humburger_menu {
        display: block;
        padding-left: 10px;
    }

    .partnership_list {
        /* display: grid; */
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
}

/* For medium devices */
@media screen and (max-width: 768px) {
    :root {
        --big-font-size: 2.50rem;
    }

    .home_head_line {
        font-size: var(--h1-font-size);
    }

    /* .modal-content {
        margin: 10px;
    } */

    .section {
        padding: 2rem 0 4rem;
        padding-top: 80px;
    }

    .section__subtitle {
        margin-bottom: var(--mb-3);
    }

    .services_main_card_body {
        grid-template-columns: repeat(1, 1fr);
    }

    .about_main_card_body {
        grid-template-columns: repeat(1, 1fr);
    }

    .header_menu {
        display: none
    }

    .humburger_menu {
        display: block;
    }
}

@media screen and (max-width: 450px) {
    .modal-content {
        margin: 10px;
    }

    .privacy-policy-modal-content {
        max-width: 768px;
        position: relative;
        margin: 10px 10px 70px 10px;
    }

    .grid-item {
        /* margin-bottom: 10px; */
        width: 100%;
    }

    .flex {
        flex-wrap: wrap;
    }
}

/* For small devices */
@media screen and (max-width: 350px) {
    :root {
        --big-font-size: 2.25rem;
    }

    .home_head_line {
        font-size: var(--h1-font-size);
    }

    .modal-content {
        margin: 10px;
    }

    .privacy-policy-modal-content {
        max-width: 768px;
        position: relative;
        margin: 10px 10px 70px 10px;
    }

    .section {
        padding-top: 80px;
    }

    .services_main_card_body {
        grid-template-columns: repeat(1, 1fr);
    }

    .about_main_card_body {
        grid-template-columns: repeat(1, 1fr);
    }

    .container {
        margin-left: var(--mb-1);
        margin-right: var(--mb-1);
    }

    .header_menu {
        display: none
    }

    .humburger_menu {
        display: block;
    }
}