body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    max-height: 100vh;
    overflow-x: hidden !important;
    max-width: 100% !important;
}

a {
    text-decoration: none;
    color: #f89f0d;
}

a:hover {
    color: #80c792;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 20%;
    z-index: 996;
    background: #f89f0d;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #78c48c;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #fbfbfb;
    font-size: 15px;
    height: 60px;
    padding: 0;
    z-index: 100;
}

#topbar .contact-info {
    background: transparent;
    font-size: 10px;
    padding: 0;
}

#topbar .contact-info:hover {
    border: none;
}

#topbar .phone-call {
    margin-top: -15px;
}

#topbar .contact-info .contact-icon {
    width: 40px;
    height: 40px;
    margin: auto;
    display: block;
}

#topbar .contact-info .google-map {
    background: url("../img/nav/google-map.svg") no-repeat;

}

#topbar .contact-info .zalo {
    background: url("../img/nav/zalo.svg") no-repeat;
    background-size: contain;
    border-radius: 100%
}

#topbar .contact-info {
    border-color: transparent;
}

#topbar .contact-info .phone {
    background: url("../img/nav/p2.gif") no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
}

#topbar .contact-info .messenger {
    background: url("../img/nav/messenger.svg") no-repeat;

}

#topbar .contact-info .sms {
    background: url("../img/nav/sms.svg") no-repeat;
    background-size: contain;
    border-radius: 100%
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    height: 70px;
}

#header.header-scrolled {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#header .logo a {
    color: #f89f0d;
}

#header .logo img {
    max-height: 60px;
}

.scrolled-offset {
    margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    color: #222222;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #f89f0d;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0 0 5px rgb(127 137 161 / 25%);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: #f89f0d;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #222222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.ri-close-fill {
    margin-top: 30px;
    color: #00a400;
    position: fixed;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    width: 70%;
    height: 70vh;
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    /*left: 0;*/
    bottom: 0;
    background: #fff;
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #222222;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #f89f0d;
}

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 0px 10px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0 0 5px rgb(127 137 161 / 25%);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: #f89f0d;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    /*height: 70vh;*/
    /*background-color: rgba(9, 9, 9, 0.8);*/
    overflow: hidden;
    position: relative;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 50px;
    right: 50px;
}

#hero .container {
    text-align: center;
}

#hero h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 700;
}

#hero p {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
    width: 100%;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: #f89f0d;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    background: #f89f0d;
}

#hero .btn-get-started:hover {
    background: #6ec083;
}

@media (max-width: 992px) {
    #hero {
        /*height: 60vh;*/
    }

    #hero .carousel-container {
        top: 66px;
    }
}

@media (min-width: 1025px) {
    #hero {
        min-height: 45vh;
    }

    #hero .carousel-control-prev, #hero .carousel-control-next {
        width: 5%;
    }
}
@media (max-width: 1024px) {
    #hero {
        min-height: 40vh;
    }
}
@media (max-width: 880px) {
    #hero {
        min-height: 30vh;
    }
}
@media (max-width: 767px) {
    #hero {
        min-height: 20%;
    }

    #hero h2 {
        font-size: 28px;
    }
}

@media (max-width: 430px) {
    #hero {
        min-height: 18vh;
    }
}
@media (max-width: 376px) {
    #hero {
        min-height: 12vh;
    }
}

@media (max-width: 320px) {
    #hero {
        /*height: 29vh;*/
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 30px 0;
}

.section-bg {
    background-color: #f8fcf9;
}

.section-title {
    text-align: center;
    padding-bottom: 10px;
    color: #f89f0d;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #f89f0d;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
    font-size: 14px;
    color: #919191;
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
    padding: 20px 0;
}

.featured-services .icon-box {
    padding: 20px;
}

.featured-services .icon-box-bg {
    background-image: linear-gradient(0deg, #222222 0%, #2f2f2f 50%, #222222 100%);
}

.featured-services .icon {
    margin-bottom: 15px;
}

.featured-services .icon i {
    color: #f89f0d;
    font-size: 42px;
}

.featured-services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.featured-services .title a {
    color: #222222;
    transition: 0.3s;
}

.featured-services .icon-box:hover .title a {
    color: #f89f0d;
}

.featured-services .description {
    line-height: 24px;
    font-size: 14px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 700;
    font-size: 28px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
}

.about .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #f89f0d;
}

.about .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us:before {
    content: "";
    /*background: #ff8b00;*/
    background: rgba(246 169 14 / 15%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.why-us {
    padding: 30px 0;
    /*background: url("./../img/bg/why-us.png") top center no-repeat;*/
    position: relative;
}

.why-us .row {
    overflow: hidden;
}

.why-us .content-item {
    display: flex;
    padding: 30px;
    border-left: 1px solid #f89f0d;
    border-bottom: 1px solid #f89f0d;
    margin: -1px;
}

.why-us .content-item span {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: #f89f0d;
    padding-right: 10px;
}

.why-us .content-item h4 {
    font-size: 26px;
    font-weight: 300;
    padding: 0;
    margin: 20px 0;
}

.why-us .content-item p {
    color: #444444;
    font-size: 16px;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .why-us .content-item {
        padding: 10px
    }

    .why-us .content-item p {
        color: #444444;
        font-size: 14px;
        font-weight: normal;
        margin: 0;
        padding: 0;
    }

}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients .swiper-slide img {
    /*opacity: 0.5;*/
    transition: 0.3s;
}

.clients .swiper-slide img:hover {
    opacity: 1;
}

.clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #f89f0d;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #f89f0d;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    padding-bottom: 30px;
}

.services .icon-box {
    margin-bottom: 20px;
    text-align: center;
}

.services .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    /*background: #fff;*/
    border-radius: 20%;
    transition: 0.5s;
    color: #428bca;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    /*overflow: hidden;*/
}

.services .icon i {
    font-size: 36px;
    line-height: 0;
}

.services .icon-box:hover .icon {
    box-shadow: 0 0 30px rgba(66, 139, 202, 0.5);
}

.services .title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    padding-bottom: 15px;
}

.services .title a {
    color: #444;
    transition: 0.3s;
}

.services .title a:hover {
    color: #428bca;
}

.services .title::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: #428bca;
    bottom: 0;
    left: calc(50% - 25px);
}

.services .description {
    line-height: 24px;
    font-size: 14px;
}

.services .buying-service {
    background: url("../img/services/muaho.png") no-repeat;
    background-size: contain;
}

.services .ship-eu {
    background: url("../img/services/logistics.png") no-repeat;
    background-size: contain;
}

.services .clearance-service {
    background: url("../img/services/thongquan.png") no-repeat;
    background-size: cover;
}

.services .booking-service {
    background: url("../img/services/booking.png") no-repeat;
    background-size: contain;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: #f89f0d;
    padding: 80px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn:hover {
    background: #fff;
    color: #f89f0d;
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background: #f89f0d;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(34, 34, 34, 0.6);
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(34, 34, 34, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap img {
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    margin: 0 5px 0 0;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #6ec083;
}

.portfolio .portfolio-wrap:hover::before {
    opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
    transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #f89f0d;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #f89f0d;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 0 12px 0 rgba(34, 34, 34, 0.07);
    padding: 30px 20px;
    background: #fff;
}

.team .member img {
    max-width: 60%;
    border-radius: 50%;
    margin: 0 0 30px 0;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

.team .member p {
    padding-top: 10px;
    font-size: 14px;
    font-style: italic;
    color: #aaaaaa;
}

.team .member .social {
    margin-top: 15px;
}

.team .member .social a {
    color: #919191;
    transition: 0.3s;
}

.team .member .social a:hover {
    color: #f89f0d;
}

.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    border-top: 3px solid #f89f0d;
    border-bottom: 3px solid #f89f0d;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
    font-size: 20px;
    color: #f89f0d;
    float: left;
    width: 44px;
    height: 44px;
    /*background: #eaf6ed;*/
    background: #f6d099;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222222;
    text-align: left;
}

.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #555555;
}

.contact .info .social-links {
    padding-left: 60px;
}

.contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
}

.contact .info .social-links a:hover {
    background: #f89f0d;
    color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
    background: #f89f0d;
    color: #fff;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #fbfbfb;
    min-height: 40px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 66px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 300;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #3c3c3c;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #f89f0d;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 30px 0;
}

#footer h3 {
    font-size: 36px;
    font-weight: 700;
    color: #212529;
    position: relative;
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0 0 15px 0;
}

#footer p {
    font-size: 15px;
    font-style: italic;
    padding: 0;
    /*margin: 0 0 40px 0;*/
}

#footer .social-links {
    margin: 0 0 40px 0;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #f89f0d;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: #449d5b;
    color: #fff;
    text-decoration: none;
}

#footer .copyright {
    margin: 0 0 5px 0;
}

#footer .credits {
    font-size: 13px;
}

@keyframes fillLeft {
    100% {
        right: 100%;
    }
}

@keyframes fillTop {
    100% {
        top: 100%;
    }
}

@keyframes fillLeftOdd {
    100% {
        left: 100%;
    }
}

#term .term-note {
    text-align: center;
    font-style: italic;
    color: red;
}

#term {
    /*background-color: #daf3a4;*/
}

#term .header-term .info .address, .email, .phone {
    font-size: 20px;
    font-weight: 300;
}

#term .inner-page .thead-hanaimex {
    background-color: #9bbb59;
    border-bottom: #528f03 solid 1px;
}

#term .inner-page .bg-hanaimex {
    background-color: #e6eed5;
}

#term .inner-page .table-hanaimex {
    border-color: #528f03;
}

.term-title {
    /*border: #9bbb59 solid 5px;*/
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.term-title:before {
    content: "";
    position: absolute;
    display: block;
    width: 60%;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(100% - 80%);
}

.term-title:after {
    content: "";
    position: absolute;
    display: block;
    width: 40%;
    height: 3px;
    background: #f89f0d;
    bottom: 0;
    left: calc(100% - 70%);
}

@media (max-width: 786px) {
    #term h1, .h1 {
        font-size: 28px;
    }

    #term h2, .h2 {
        font-size: 22px;
    }

    #term h3, .h3 {
        font-size: 18px;
    }

    #term h4, .h4 {
        font-size: 15px;
    }

    #term .header-term .info .address, .email, .phone, tr, p {
        font-size: 12px;
        font-weight: 200;
    }
}



.steps {
    position: relative
}

.steps .container {
    position: relative;
    color: #fff
}

.steps .container .title {
    color: #fff
}

.service-steps .step-number, .service-simple-steps .step-number {
    font-family: Montserrat;
    font-weight: 800;
    font-size: 86px;
    margin-right: 30px
}

.service-steps .step-number.active, .service-simple-steps .step-number.active {
    color: #29abe2
}

.service-steps .step, .service-simple-steps .step {
    height: 70px;
    line-height: 70px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 70px
}

.service-steps .step:nth-child(4), .service-simple-steps .step:nth-child(4) {
    margin-bottom: 0
}

/* by default steps should go down like a list */
.service-steps {
    display: inline-block;
    vertical-align: top
}

.service-steps {
    zoom: 1
}

.service-steps:before, .service-steps:after {
    content: "";
    display: table;
    clear: both
}

.service-steps .step {
    position: relative;
    vertical-align: bottom
}

.service-steps .step:before, .service-steps .step:after {
    content: "";
    position: absolute;
    border-color: #29abe2;
    left: 50%;
    top: 100%
}

.service-steps .step:before {
    border-style: dashed;
    border-width: 0 0 0 2px;
    margin-top: 20px;
    height: 59px
}

.service-steps .step:after {
    border-radius: 50%;
    width: 13px;
    height: 13px;
    border-style: solid;
    border-width: 2px;
    margin-left: -5.5px;
    margin-top: 83px
}

.service-steps .step:nth-child(4):after, .service-steps .step:nth-child(4):before {
    display: none
}

.service-simple-steps {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-box;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.service-simple-steps .step-separator {
    display: none;
    padding: 0 40px;
    font-size: 34px;
    line-height: 70px;
    color: #29abe2
}

@media (min-width: 1200px) {
    /* for higher resolutions make steps go horizontaly */
    .service-steps .step {
        float: left
    }

    .service-simple-steps {
        -webkit-box-orient: horizontal;
        -moz-box-orient: horizontal;
        -o-box-orient: horizontal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .service-simple-steps .step-separator {
        display: block;
        float: left
    }

    .service-simple-steps .step {
        max-width: 200px;
        display: table
    }

    .service-simple-steps .step-number {
        padding-right: 10px;
        vertical-align: top;
        display: table-cell
    }

    .service-simple-steps .step-text {
        line-height: 1.4;
        display: table-cell;
        vertical-align: bottom;
        text-align: left
    }

    .service-steps .step:before {
        border-width: 2px;
        margin-top: 0;
        right: 37px
    }

    .service-steps .step:after {
        left: auto;
        margin: 0;
        right: 20px
    }

    .service-steps .step:nth-child(2n+1) {
        margin-bottom: 140px
    }

    .service-steps .step:nth-child(2n) {
        margin-top: 140px;
        margin-bottom: 0
    }

    .service-steps .step:nth-child(1):before {
        border-top-width: 0;
        border-right-width: 0;
        margin-top: 20px;
        height: 85px
    }

    .service-steps .step:nth-child(1):after {
        right: 20px;
        margin-top: 98.5px
    }

    .service-steps .step:nth-child(2):before, .service-steps .step:nth-child(2):after {
        bottom: 100%;
        top: auto
    }

    .service-steps .step:nth-child(2):before {
        border-bottom-width: 0;
        border-right-width: 0;
        height: 131px;
        margin-bottom: -26px
    }

    .service-steps .step:nth-child(2):after {
        margin-bottom: 98.5px
    }

    .service-steps .step:nth-child(3):before, .service-steps .step:nth-child(3):after {
        display: none
    }

    .service-steps .step:nth-child(4):before, .service-steps .step:nth-child(4):after {
        display: block;
        bottom: 100%;
        top: auto;
        right: 50%
    }

    .service-steps .step:nth-child(4):before {
        border-bottom-width: 0;
        border-left-width: 0;
        left: 20px;
        height: 91px;
        margin-bottom: -9px
    }

    .service-steps .step:nth-child(4):after {
        margin-right: -6.5px;
        margin-bottom: -26px
    }
}
.main-color {
    color: #f89f0d;
}
