/* Header */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;

    /* Because we want header to be sticky later */
    height: 9.6rem;
    padding: 0 4.8rem;
    position: relative;
}

.logo {
    height: 6.4rem;
}

/* Navigation */

.main-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
    display: inline-block;

    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.8rem;
    transition: all 0.5s;
}

.main-nav-link:hover,
.main-nav-link:active {
    color: #02075d;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
    padding: 1.2rem 2.4rem;
    border-radius: 9px;
    color: #fff;
    background-color: #000080;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
    background-color: #02075d;
}

/* MOBILE */

.btn-mobile-nav {
    border: none;
    background: none;
    cursor: pointer;

    display: none;
}

.icon-mobile-nav {
    height: 4.8rem;
    width: 4.8rem;
    color: #333;
}

.icon-mobile-nav[name="close-outline"] {
    display: none;
}

/* Sticky navigation */

.sticky .header {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 8rem;
    padding-top: 0;
    padding-bottom: 0;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 999;
    box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
    margin-top: 9.6rem;
}

/* Hero section */

.section-hero {
    background-color: #fff;
    padding: 9.6rem 0 2.4rem;
}

.hero {
    max-width: 130rem;
    margin: 0 auto;
    padding: 0 3.2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9.6rem;
    align-items: center;
}

.hero-description {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 4.8rem;
}

.hero-img {
    width: 100%;
}

/* Why choose us section */

.section-why {
    padding: 9.6rem 0 2.4rem;
}

.feature-icon {
    height: 9.6rem;
    width: 9.6rem;
    margin-bottom: 1.2rem;
    padding: 1.6rem;
}

.feature-title {
    font-size: 2.4rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 1.6rem;
}

.feature-text {
    font-size: 1.8rem;
    line-height: 1.8;
    text-align: justify;
}

/* Form section */

.section-form {
    padding: 9.6rem 0;
}

.interview-title {
    display: flex;
    align-items: center;

    margin-bottom: 2.4rem;
}

.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem;
}

.form-divider {
    display: flex;
    align-items: center;
}

.form-divider:not(:first-child) {
    margin-top: 3.2rem;
}

.form-divider-icon {
    width: 2.4rem;
    height: 2.4rem;
    color: #000080;
}

.form-divider-title {
    font-size: 2.4rem;
    color: #333;
}

.form label,
.cta-form label {
    display: block;
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.form input,
.form select,
.cta-form input,
.cta-form select {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.8rem;
    font-family: inherit;
    border: none;
    background: rgba(225, 225, 225, 0.25);
    border-radius: 0.9rem;
    outline: none;
    color: #333;
}

.form input::placeholder {
    color: #ccc;
}

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

    background: #02075d;
    width: 100%;
    padding: 1.2rem;
    border-radius: 0.9rem;
    transition: all 0.5s;
}

.submit-btn:hover,
.submit-btn:focus {
    background: #000080;
}

.submit-icon {
    width: 2.4rem;
    height: 2.4rem;
    color: #fff;
}

.submit-txt {
    font-size: 1.8rem;
    color: #fff;
}

/* Contact section */

.section-contact {
    padding: 9.6rem 0 2.4rem;
}

.step-number {
    font-size: 8.6rem;
    font-weight: 600;
    color: rgba(225, 225, 225, 1);
    margin-bottom: 1.2rem;
}

.step-description {
    display: flex;
    flex-direction: column;
    row-gap: 1.6rem;
}

.description-icon {
    width: 2.4rem;
    height: 2.4rem;
    color: #555;
}

.description-txt {
    font-size: 1.8rem;
    font-weight: bold;
    color: #555;
}

.step-img-box {
    position: relative;

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

.step-img-box::before,
.step-img-box::after {
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-img-box::before {
    width: 60%;
    /* height: 60%; */

    /* 60% of parent's width */
    padding-bottom: 60%;

    background-color: rgba(225, 225, 225, 0.5);
    z-index: -2;
}

.step-img-box::after {
    width: 45%;
    padding-bottom: 45%;
    background-color: rgba(125, 125, 125, 0.1);
    z-index: -1;
}

.step-img {
    width: 75%;
    /* z-index: 10; */
}

/* About section */

.section-about {
    padding: 9.6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    column-gap: 4.8rem;
}

.about-heading-secondary-border-bottom {
    border-bottom: 1px solid rgba(125, 125, 125, 0.25);
}

.about-text {
    font-size: 1.8rem;
    line-height: 2;
    color: #333;
    padding: 3.2rem;
    text-align: justify;
    background: linear-gradient(
        to right bottom,
        #fff,
        #fff,
        rgba(225, 225, 225, 0.25),
        #fff,
        #fff
    );
    border-radius: 11px;
}

.about-img {
    width: 100%;
}

/* Footer */

.footer {
    padding: 12.8rem 0;
    margin-top: 6.4rem;
    border-top: 1px solid rgba(225, 225, 225, 1);
}

.grid--footer {
    grid-template-columns: 1fr 1fr 1fr;
}

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

.footer-logo {
    display: block;
    margin-bottom: 3.2rem;
}

.footer-social {
    display: flex;
    align-items: center;
    column-gap: 2.4rem;
    margin-bottom: 2.4rem;
}

.copyright {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #767676;
}

.footer-heading {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 4rem;
}

.contacts {
    font-style: normal;
    font-size: 1.6rem;
    line-height: 1.6;
}

.address {
    margin-bottom: 2.4rem;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
    text-decoration: none;
    font-size: 1.6rem;
    color: #767676;
    transition: all 0.5s;
}

.footer-link:hover,
.footer-link:active {
    color: #555;
}
