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

/* GENERAL */
body {
    padding: 80px 0px;
    font-family: "ABeeZee", sans-serif;
    font-size: 18px;
    background: #a4acb030;
    color: #ffffff;
}
@media (max-width: 576px) {
    body {
        padding: 15px;
    }
}
a {
    text-decoration: none;
    color: inherit;
    transition: color .3s ease;
}
a:hover {
    color: #fe645f;
}

/* IMAGES */
.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

/* TYPOGRAPHY */
h1, h2 {
    font-size: 40px;
    line-height: 1.05;
}
h3 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}
@media (max-width: 576px) {
    h1 {
        font-size: 30px;
    }
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    
}
.header-wrapper {
    background-color: #ffffff;
    padding: 24px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000000;
}
@media (max-width: 576px) {
    .header-wrapper {
        padding: 24px 30px;
    }
}
.logo {
    font-weight: bold;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.main-nav a {
    font-size: 18px;
    font-weight: bold;
}

/* BUTTON */
.button {
    padding: 20px;
    border: 5px solid #ffffff;
    border-radius: 50px;
    color: #ffffff;
    font-weight: bold;
    font-size: 20.3px;
    text-decoration: none;
}
.button:hover {
    background-color: #ffffff;
    color: #063070;
}
.button.yellow:hover {
    color: #f5a41d;
}

/* WORD ANIMATE */
.word-animate span {
    display: inline-block;
    opacity: 0;
    transform: translateY(12px);
}
.word-animate.aos-animate span {
    animation: wordFadeUp 0.4s ease forwards;
}
.word-animate.aos-animate span:nth-child(1) {
    animation-delay: 0.9s;
}
.word-animate.aos-animate span:nth-child(2) {
    animation-delay: 1s;
}
.word-animate.aos-animate span:nth-child(3) {
    animation-delay: 1.1s;
}
@keyframes wordFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SECTION */
.whiteBg {
    background-color: #ffffff;
}
.blueBg {
    background-color: #063070;
}

.yellowBg {
    background-color: #f5a41d;
}
.coral {
    color: #fe645f;
}
.split-box {
    width: 100%;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 90px;
}
.split-box.text {
    justify-content: space-between;
    padding: 130px 90px;
}
@media (max-width: 992px) {
    .split-box {
        min-height: 550px;
    }
    .split-box.text {
        padding: 100px 70px;
    }
}
@media (max-width: 576px) {
    .split-box.text {
        padding: 50px 30px;
    }
}

/* FOOTER */
.footer-top {
    background-color: #000000;
}
.footer-bottom {
    background-color: #ffffff;
    color: #000000;
    padding-bottom: 70px;
}
.box-padding {
    padding: 70px 70px;
}
@media (max-width: 992px) {
    .box-padding:nth-child(2) {
        padding: 0 70px;
    }
}
@media (max-width: 576px) {
    .box-padding {
        padding: 70px 30px;
    }
    .box-padding:nth-child(2) {
        padding: 0 30px;
    }
}
.footer-box {
    border-bottom: 5px solid #ffffff;
}
.footer-bottom-box {
    font-size: 20px;
}
/* FOOTER TITLE ANIMATE */
.footer-title {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.footer-title.in-view {
    opacity: 1;
    transform: translateY(0);
}