/* first section */
.first_section {
    width: 100%;
    height: var(--first-section-height);
    color: var(--color-gold);
    position: relative;
}
.bg_img {
    height: inherit;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section_title {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 900;
    text-transform: uppercase;
}
.section_title > h1 {
    font-family: var(--medium-font);
    font-size: var(--title-font-size-big);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.08em;
    text-align: center;
}

/* Section Two */

/* About Company */
.second_section {
    max-width: 1900px;
    margin: auto;
    position: relative;
    display: flex;
    flex-direction: column;
}
.about_company {
    margin-left: 64px;
    display: grid;
    grid-template-areas:
        "about-company-title about-company-img"
        "about-company-article about-company-img";
}

.about_company_container {
    grid-area: about-company-article;
    display: flex;
    flex-direction: column;
    gap: 44px;
}
.about_company_title {
    grid-area: about-company-title;
    margin-top: 250px;
    margin-bottom: 10px;
}
.about_title {
    display: flex;
    flex-direction: column;
    font-family: var(--light-font);
    font-size: var(--title-font-size-small);
    font-weight: var(--font-weight-thin);
    letter-spacing: 1px;
    text-align: left;
}
.about_title_underlined {
    font-family: var(--bold-font);
    font-size: var(--title-font-size-medium);
    font-weight: var(--font-weight-large);
    letter-spacing: 0.17731092870235443px;
    text-align: left;
}
.about_company_text {
    font-family: var(--medium-font);
    font-size: var(--text-font-size-big);
    font-weight: var(--font-weight-medium);
    line-height: 21px;
    letter-spacing: 0.20000000298023224px;
    text-align: justify;
}
.about_company_img {
    grid-area: about-company-img;
    width: 700px;
    display: flex;
    justify-content: flex-end;
}
.about_company_img_img {
    position: relative;
    width: 100%;
    height: max-content;
}

.about_company_img_content {
    height: 100%;
    width: 100%;
    position: absolute;
}
.plus_symbol {
    margin-left: 16px;
    font-family: var(--medium-font);
    font-size: var(--title-font-size-small);
    font-weight: var(--font-weight-medium);
    line-height: 77px;
    letter-spacing: 1px;
    text-align: center;
}
.img_content_title {
    position: absolute;
    display: flex;
    flex-direction: column;
    font-family: var(--bold-font);
    color: var(--color-blue);
    font-size: 40px;
    font-weight: var(--font-weight-large);
    line-height: 37px;
    letter-spacing: 0em;
    text-align: center;
    text-transform: uppercase;
}
.img_content_title:nth-child(1) {
    top: 22%;
    right: 59.5%;
}
.img_content_title:nth-child(2) {
    top: 39.6%;
    right: 65%;
}
.img_content_title:nth-child(3) {
    top: 59.8%;
    right: 63%;
}
.img_content_title:nth-child(4) {
    top: 81%;
    right: 41%;
}
.img_content_title_unerlined {
    font-family: var(--medium-font);
    font-size: 120px;
    font-weight: var(--font-weight-medium);
    line-height: 77px;
    letter-spacing: 1px;
    text-align: center;
}

/* Our Team  */

.our_team {
    position: relative;
    margin: 0 64px;
    margin-bottom: 36px;
}
.our_team_title_name {
    text-transform: capitalize;
    font-family: var(--light-font);
    font-size: var(--title-font-size-small);
    font-weight: var(--font-weight-thin);
    letter-spacing: 0.17731092870235443px;
    text-align: left;
}
.our_team_title_undrlined_name {
    text-transform: capitalize;
    font-family: var(--bold-font);
    font-size: var(--title-font-size-medium);
    font-weight: var(--font-weight-large);
    letter-spacing: 0.17731092870235443px;
    text-align: left;
}
.team {
    padding: 100px 20px;
}
.team_row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 72px;
}
.team_second_row {
    margin-top: 42px;
}
.person {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.person_img {
    position: relative;
    width: 100%;
    background-color: transparent;
}
.person_img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 40));
    z-index: 1;
}
.person_img_name {
    position: absolute;
    width: 100%;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    font-family: var(--bold-font);
    font-size: 28px;
    font-weight: var(--font-weight-large);
    line-height: 36px;
    letter-spacing: 1px;
    text-align: center;
    word-spacing: 200px;
    text-transform: uppercase;
    z-index: 2;
}
.person_job {
    text-align: center;
    text-transform: capitalize;
    font-family: var(--bold-font);
    font-size: var(--text-font-size-big);
    font-weight: var(--font-weight-large);
    line-height: 36px;
    letter-spacing: 1px;
}
.cover_line {
    position: absolute;
    width: 264px;
    height: 284px;
    background-color: #fff;
    top: 50px;
    left: 20px;
    z-index: -1;
}
.person_img_line {
    position: absolute;
    width: 264px;
    height: 284px;
    border: 1px solid var(--color-gold);
    top: 60px;
    left: 40px;
    z-index: -2;
}

/* Section Three */

.third_section {
    height: 100vh;
    min-height: 800px;
    width: 100%;
    position: relative;
}
.for_partners_background {
    width: 100%;
    height: 100%;
    background-image: url("../assets/images/aboutus/sectionthree_bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}
.partners_box {
    height: 100%;
    margin: 0 108px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.partners_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.partners_title h2 {
    font-family: var(--light-font);
    font-size: var(--title-font-size-small);
    font-weight: var(--font-weight-thin);
    line-height: 77px;
    letter-spacing: 1px;
    text-transform: capitalize;
    text-align: center;
    color: #fff;
}
.partners_title span {
    font-family: var(--bold-font);
    font-size: var(--title-font-size-medium);
    font-weight: var(--font-weight-large);
    line-height: 77px;
    letter-spacing: 1px;
    text-align: center;
}
.partners_title p {
    max-width: 880px;
    margin-top: 36px;
    font-family: var(--light-font);
    font-size: 30px;
    font-weight: var(--font-weight-thin);
    line-height: 38px;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
}
.partners_content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.content_box {
    display: flex;
    width: 30%;
    height: 100%;
}
.content_box:nth-child(1) {
    transform: translateX(200px);
}
.content_box:nth-child(2) {
    transform: translateX(350px);
}
.content_box:nth-child(3) {
    transform: translateX(500px);
}
.content_number {
    margin-right: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content_number > img {
    width: 90px;
    height: 140px;
}
.content_text {
    display: flex;
    flex-direction: column;
    max-width: 390px;
    gap: 10px;
}
.content_text > h4 {
    font-family: var(--bold-font);
    font-size: 40px;
    font-weight: var(--font-weight-large);
    line-height: 41px;
    letter-spacing: 1px;
    text-align: left;
}
.content_text > p {
    font-family: var(--light-font);
    font-size: var(--text-font-size-big);
    font-weight: var(--font-weight-thin);
    line-height: 41px;
    letter-spacing: 1px;
    text-align: left;
    color: #fff;
}

/* Section Four */

/* title */
.welcome {
    margin-top: 100px;
}
.welcome_title {
    margin-left: 134px;
}
.welcome_title_name {
    display: flex;
    flex-direction: column;
    font-family: var(--light-font);
    font-size: var(--title-font-size-small);
    font-weight: var(--font-weight-thin);
    padding-right: 108px;
    letter-spacing: 1px;
    text-align: left;
    text-transform: capitalize;
}
.welcome_title_name .underlined_title {
    margin-left: 170px;
    font-family: var(--bold-font);
    font-size: var(--title-font-size-medium);
    font-weight: var(--font-weight-large);
    letter-spacing: 0.20000000298023224px;
    text-align: left;
}
.welcome_title_name span:nth-child(1) {
    transform: translateX(-300px);
}
.welcome_title_name span:nth-child(2) {
    transform: translateX(300px);
}

/* body */

.welcome_content {
    position: relative;
}

.welcome_bg_line {
    width: 100%;
    height: 40vh;
    min-height: 328px;
    margin-top: 220px;
    position: relative;
    display: flex;
    justify-content: center;
    background-image: url("../assets/images/aboutus/welcome_bgline.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.cover_white {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
}
.cover_white.visible {
    animation: right-anim 2.5s forwards 0.5s;
}
@media screen and (max-width: 1024px) {
    .cover_white {
        display: none;
    }
}
@keyframes right-anim {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}
.travel_journey {
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2%;
}

.travel_box {
    height: 100%;
    width: 15%;
    display: flex;
    align-items: center;
}

.travel_box:nth-child(odd) {
    flex-direction: column;

    > .travel_box_content {
        justify-content: center;
    }
}

.travel_box:nth-child(even) {
    flex-direction: column-reverse;

    > .travel_box_content {
        justify-content: flex-start;
    }
}

.travel_box_img {
    width: 28%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(200px);
}
.travel_year {
    margin-top: 8px;
    font-family: var(--bold-font);
    font-size: 40px;
    font-weight: var(--font-weight-large);
    line-height: 37px;
    letter-spacing: 0em;
    text-align: center;
}

.travel_box_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.travel_box_content_p_title {
    text-align: center;
    font-family: var(--bold-font);
    font-size: 26px;
    font-weight: var(--font-weight-large);
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
}
.travel_box_content_p {
    margin-top: 10px;
    text-align: center;
    font-family: var(--medium-font);
    font-size: var(--text-font-size-medium);
    font-weight: var(--font-weight-medium);
    line-height: 22px;
    letter-spacing: 0em;
    text-align: center;
    color: var(--color-blue);
}

/* Transport section */

.transport_title {
    margin-top: 140px;
    margin-left: 160px;
}

.transport_title_name {
    font-family: var(--light-font);
    font-size: var(--title-font-size-small);
    font-weight: var(--font-weight-thin);
    line-height: 46px;
    letter-spacing: 0.17731092870235443px;
    text-align: left;
    transform: translateX(-200px);

    > span {
        font-family: var(--bold-font);
        font-size: var(--title-font-size-medium);
        font-weight: var(--font-weight-large);
        line-height: 46px;
        letter-spacing: 0.17731092870235443px;
        text-align: left;
    }
}

.transport_content {
    margin-top: 90px;
    margin-bottom: 120px;
    padding: 0 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-evenly;
    gap: 80px;
    overflow: hidden;
}

.transports {
    width: 514px;
}
.transports:nth-child(1) {
    transform: translateY(100px);
}
.transports:nth-child(2) {
    transform: translateY(300px);
}
.transports:nth-child(3) {
    transform: translateY(500px);
}
.transports_img {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.transports_img_box {
    overflow: hidden;
    object-fit: contain;

    > img {
        width: 100%;
    }
}

.transports_count {
    width: 128px;
    height: 128px;
    position: absolute;
    left: -30px;
    bottom: -10px;
    border-radius: 50%;
    background-color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;

    > span {
        font-family: var(--bold-font);
        font-size: 60px;
        font-weight: var(--font-weight-large);
        line-height: 41px;
        letter-spacing: 1px;
        text-align: left;
    }
}
.transports_description {
    padding: 12px;
    border: 1px solid var(--color-gold);

    > h4 {
        font-family: var(--bold-font);
        font-size: 40px;
        font-weight: var(--font-weight-large);
        line-height: 41px;
        letter-spacing: 1px;
        text-align: left;
    }

    > p {
        color: var(--color-blue);
        opacity: 0.7;
        font-family: var(--bold-font);
        font-size: var(--text-font-size-big);
        font-weight: var(--font-weight-large);
        line-height: 25px;
        letter-spacing: 1px;
        text-align: left;
    }
}

body {
    overflow-x: hidden;
}

.hover {
    background-color: #fff;
    color: var(--color-blue) !important;
}
