:root {
    --main-color: #f88b00;
    --text-color: #004750;
    --second-main-color: #fbad15;
}

/* ========== SCROLL ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes slideInFromBottom {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transition: none;
}
.animate-on-scroll.animated {
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-on-scroll.animated.fade-up { animation-name: fadeInUp; }
.animate-on-scroll.animated.fade-left { animation-name: fadeInLeft; }
.animate-on-scroll.animated.fade-right { animation-name: fadeInRight; }
.animate-on-scroll.animated.scale-in { animation-name: scaleIn; }
.animate-on-scroll.animated.slide-up { animation-name: slideInFromBottom; }

/* Staggered delays for children */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }


*,
::after,
::before {
    box-sizing: border-box;
}

body {
    /* font-family: "Inter", "Helvetica Neue", Arial, sans-serif !important; */
    font-family: "Montserrat", sans-serif !important;
    margin: 0;
    font-size: 18px;
    overflow-x: hidden;
    /* background: #f4f7fc; */
}

body a {
    color: var(--main-color);
    text-decoration: unset;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile {
    display: none;
}

.container-web {
    margin: 0px auto;
    max-width: 75%;
}

img {
    width: 100%;
    height: 100%;
}

.btn-wrap {
    display: inline-block;
    vertical-align: middle;
    min-width: 190px;
    padding: 16px 25px 16px 10px;
    color: #141414;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid transparent;
    position: relative;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
}

.btn-wrap span.arrow {
    position: relative;
}

.btn-wrap span.arrow::before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    border: 2px solid #141414;
    border-radius: 100px;
    top: 50%;
    right: -15px;
    transform: translateY(-2px);
    margin-left: 10px;
    transition: all ease .3s;
}

.btn-wrap:hover span.arrow::before {
    border-color: var(--main-color);
}

.btn-wrap span.arrow::after {
    content: "";
    width: 11px;
    height: 11px;
    border: 2px solid #141414;
    border-radius: 2px;
    border-left: none;
    border-bottom: none;
    position: absolute;
    top: 0px;
    margin-left: 10px;
    -webkit-transition: all ease .3s;
    -ms-transition: all ease .3s;
    transition: all ease .3s;

}

.btn-wrap:hover span.arrow::after {
    border-color: var(--main-color);
    top: 3px;
    left: 1px;
    transform: rotate(45deg);
    -webkit-transition: all ease .3s;
    -ms-transition: all ease .3s;
    transition: all ease .3s;
}

input,
textarea,
select {
    outline: none;
}

.btn-text {
    position: relative;
    color: var(--main-color);
}

.btn-text::before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    border: 2px solid var(--main-color);
    border-radius: 100px;
    top: 50%;
    right: -15px;
    transform: translateY(-2px);
    margin-left: 10px;
}

.btn-text::after {
    content: "";
    width: 11px;
    height: 11px;
    border: 2px solid var(--main-color);
    border-radius: 2px;
    border-left: none;
    border-bottom: none;
    position: absolute;
    top: 2px;
    margin-left: 10px;
    -webkit-transition: all ease .3s;
    -ms-transition: all ease .3s;
    transition: all ease .3s;
}

.btn-text:hover::after {
    transition: all ease .3s;
    top: 5px;
    transform: rotate(45deg);
}

.title-session .sub-title-session {
    text-align: center;
    color: #95a2b4;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 1.0px;
    font-weight: 600;
    text-transform: uppercase;
}

.title-session .main-title-session {
    position: relative;
    font-size: 55px;
    line-height: 60px;
    font-weight: 600;
    letter-spacing: 0;
    color: #141414;
    text-align: center;
    padding: 5px 0px;
}

.title-session .main-title-session::after {
    content: "";
    background-image: url(../images/widget-title-sep.png);
    background-size: 42px;
    display: none;
    width: 42px;
    height: 14px;
    margin: 0 auto;
    background-repeat: no-repeat;
    margin-top: 20px;
}

@media (max-width:1400px) {
    .container-web {
        margin: 0px auto;
        max-width: 90%;
    }
}

@media (max-width:1200px) {
    .container-web {
        max-width: 950px;
    }
}

@media (max-width:995px) {
    .container-web {
        max-width: 710px;
    }

    .mobile {
        display: block;
    }

    .desktop {
        display: none !important;
    }
}

@media (max-width: 780px) {
    .container-web {
        max-width: 550px;
    }
}

@media (max-width: 580px) {
    .container-web {
        max-width: 90%;
    }

    .title-session .main-title-session {
        font-size: 35px;
        line-height: 35px;

    }

    .main-news .title-news {
        display: none;
    }
}

@media (max-width: 490px) {
    .container-web {
        max-width: 95%;
    }
}