/* font */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* variable */
:root {
    --base-color: #EA9200;
    --dark-gray: #292D36;
    --medium-gray: #808291;
    --primary-font: 'Archivo', sans-serif;
    --alt-font: 'Archivo', sans-serif;
}

/* reset */
body {
    font-size: 18px;
    line-height: 28px;
    color: #0D0D19;
}

a {
    color: #808291;
}

/* bg gradient color */
.bg-gradient-black-dark-orange {
    background-image: linear-gradient(to right top, #353332, #312b28, #15110f, #4a3229, #5a2611);
}

.bg-gradient-dark-orange-transparent {
    background-image: linear-gradient(to right top, rgba(212, 110, 66, .8), rgba(197, 105, 66, .8), rgba(184, 101, 66, .8), rgba(158, 93, 67, .8), rgba(111, 80, 70, .8));
}

/* header */
.header-icon .icon>a {
    font-size: 20px;
}

.navbar .navbar-nav .nav-link {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0px;
}

.navbar .navbar-nav .dropdown .dropdown-menu a {
    font-size: 18px;
    line-height: 28px;
}

.push-menu {
    width: 400px;
}

header .navbar-brand img {
    max-height: 56px;
}

.navbar .navbar-nav .simple-dropdown .dropdown-menu {
    border-radius: 5px;
}

.navbar .navbar-nav .simple-dropdown .dropdown-menu li a {
    padding: 9px 0 11px;
    border-bottom: 1px solid var(--light-medium-gray);
}

.navbar .navbar-nav .simple-dropdown .dropdown-menu li:first-child a {
    padding-top: 0;
}

.navbar .navbar-nav .simple-dropdown .dropdown-menu li:last-child a {
    border: 0;
    padding-bottom: 0;
}

.push-menu .close-menu {
    right: 30px;
    top: 30px;
}

/* typography */
h1 {
    line-height: 4.5rem;
}

/* subcribe style 02 */
.newsletter-style-02 .btn {
    padding: 7px 18px 9px 18px;
}

/* footer */
footer .input-small,
footer .textarea-small {
    font-size: 15px;
    padding-left: 20px;
}

footer .footer-logo img {
    max-height: 56px;
}

/* page title */
.page-title-extra-small h1 {
    font-size: 22px;
    line-height: 32px;
}

/* subcribe style 02 */
.newsletter-style-02 input {
    padding-right: 65px;
}

/* media query responsive */
@media (max-width: 1199px) {
    .newsletter-style-02 input {
        padding-left: 15px;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav .simple-dropdown .dropdown-menu {
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .page-title-extra-small h1 {
        font-size: 20px;
        line-height: 28px;
    }

    .process-step-style-02 .progress-step-separator {
        display: block;
    }
}

@media (max-width: 575px) {
    .process-step-style-02 .progress-step-separator {
        display: none;
    }
}

.options {
    display: none;
    flex-direction: column;
    border: 1px solid #ccc;
    background: white;
    position: absolute;
    margin-top: 5px;
    width: 75px;
    z-index: 10;
}

.options.show {
    display: flex;
}

.option {
    padding: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    display: flex;
}

.option:hover {
    background: #eee;
}

.selected-option {
    padding: 10px;
    width: 100%;
    cursor: pointer;
}

.custom-select {
    position: relative;
    display: inline-block;
}

.selected-option span {
    margin-left: 10px;
}

.sidebar-lang img {
    width: 20px;
    margin-right: 10px;
}

.history {
    width: 100%;
    padding-bottom: 135px;
    letter-spacing: 3px;
    overflow: hidden;
}

.history ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.history ul,
.history ul li {
    float: left;
    width: 100%;
}

.history ul li {
    text-align: center;
    position: relative;
    margin-top: 30px;
}

.history ul li .date {
    display: inline-block;
    font-display: block;
    font-size: 40px;
    line-height: 85px;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 4px;
    border-bottom: 3px solid #FDC543;
}

.history ul li .company-establishment {
    width: calc(50% - 228px);
    font-display: block;
    font-size: 18px;
    line-height: 35px;
    -webkit-font-smoothing: antialiased;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #000;
    border: 3px solid #FDC543;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    background-color: #FFF;
    -webkit-transition-property: background-color, color;
    -moz-transition-property: background-color, color;
    -o-transition-property: background-color, color;
    -ms-transition-property: background-color, color;
    transition-property: background-color, color;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    -ms-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    -ms-transition-timing-function: ease;
    transition-timing-function: ease;
    position: absolute;
    bottom: -31px;
    z-index: 1;
    letter-spacing: 0;
    padding: 12px 24px;
}

.history ul li .company-establishment strong {
    color: #FDC543;
    font-weight: 400;
}

.history ul li .company-establishment:after {
    content: '';
    width: 140px;
    height: 3px;
    background-color: #FDC543;
    position: absolute;
    z-index: 1;
    top: calc(50% - 1.5px);
}

.history ul li .company-establishment.leftside {
    left: 0;
}

.history ul li .company-establishment.leftside:after {
    right: -140px;
}

.history ul li .company-establishment.rightside {
    right: 0;
}

.history ul li .company-establishment.rightside:after {
    left: -140px;
}

.history ul li .company-establishment:hover {
    background-color: #FDC543;
    color: #FFF;
}

.history ul li .company-establishment:hover strong {
    color: #FFF;
}

@media screen and (max-width: 1550px) {
    .history ul li {
        margin-top: 10px;
    }
}

@media screen and (max-width: 1410px) {
    /* .navbar .navbar-nav .nav-link{
        font-size: 16px;
    } */
    .history ul li {
        margin-top: 15px;
    }

    .history ul li .date {
        font-size: 35px;
        line-height: 65px;
    }

    .history ul li .company-establishment {
        font-size: 20px;
    }
}

@media screen and (max-width: 1280px) {
    .history ul li .company-establishment {
        width: calc(50% - 120px);
    }

    .history ul li .company-establishment:after {
        width: 60px;
    }

    .history ul li .company-establishment.leftside:after {
        right: -60px;
    }

    .history ul li .company-establishment.rightside:after {
        left: -60px;
    }
}

@media screen and (max-width: 1100px) {
    .history ul li .date {
        font-size: 30px;
    }

    .history ul li .company-establishment {
        font-size: 16px;
        line-height: 40px;
        bottom: -21px;
    }
}

@media screen and (max-width: 1024px) {
    .history ul li .date {
        font-size: 20px;
        line-height: 40px;
    }

    .history ul li .company-establishment {
        width: calc(50% - 60px);
        font-size: 12px;
    }

    .history ul li .company-establishment:after {
        width: 20px;
    }

    .history ul li .company-establishment.leftside:after {
        right: -20px;
    }

    .history ul li .company-establishment.rightside:after {
        left: -20px;
    }
}

@media screen and (max-width: 767px) {
    .history {
        margin-top: 0;
        padding: 15px 0 30px 0;
    }

    .history ul li .company-establishment {
        width: 100%;
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 10px;
    }

    .history ul li .company-establishment:after {
        display: none;
    }
}

.swiper-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    padding-right: 20px;
    position: absolute;
    right: 30px;
    bottom: -70px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #292d361f;
    border-radius: 50%;
    color: var(--dark-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
}

.swiper-button-prev {
    margin-left: 10px;
}

.activity-box {
    background-color: #f2f2f7;
    border-radius: 12px;
    min-height: 235px;
    height: 100%;
    display: flex;
    align-items: center;
}

.activity-box .feature-box {
    align-items: center;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    column-gap: 32px;
    row-gap: 32px;
}

footer a {
    color: #0D0D19;
}