/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

    .owl-carousel .owl-stage {
        position: relative;
        -ms-touch-action: pan-Y;
        touch-action: manipulation;
        -moz-backface-visibility: hidden;
        /* fix firefox animation glitch */
    }

        .owl-carousel .owl-stage:after {
            content: ".";
            display: block;
            clear: both;
            visibility: hidden;
            line-height: 0;
            height: 0;
        }

    .owl-carousel .owl-stage-outer {
        position: relative;
        overflow: hidden;
        /* fix for flashing background */
        -webkit-transform: translate3d(0px, 0px, 0px);
    }

    .owl-carousel .owl-wrapper,
    .owl-carousel .owl-item {
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
    }

    .owl-carousel .owl-item {
        position: relative;
        min-height: 1px;
        float: left;
        -webkit-backface-visibility: hidden;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }

        .owl-carousel .owl-item img {
            display: block;
            width: 100%;
        }

    .owl-carousel .owl-nav.disabled,
    .owl-carousel .owl-dots.disabled {
        display: none;
    }

    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next,
    .owl-carousel .owl-dot {
        cursor: pointer;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next,
    .owl-carousel button.owl-dot {
        color: inherit;
        border: none;
        padding: 0 !important;
        font: inherit;
    }

    .owl-carousel.owl-loaded {
        display: block;
    }

    .owl-carousel.owl-loading {
        opacity: 0;
        display: block;
    }

    .owl-carousel.owl-hidden {
        opacity: 0;
    }

    .owl-carousel.owl-refresh .owl-item {
        visibility: hidden;
    }

    .owl-carousel.owl-drag .owl-item {
        -ms-touch-action: pan-y;
        touch-action: pan-y;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .owl-carousel.owl-grab {
        cursor: move;
        cursor: grab;
    }

    .owl-carousel.owl-rtl {
        direction: rtl;
    }

        .owl-carousel.owl-rtl .owl-item {
            float: right;
        }

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
    transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
    /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

    .owl-carousel .owl-item .owl-lazy {
        opacity: 0;
        transition: opacity 400ms ease;
    }

        .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
            max-height: 0;
        }

    .owl-carousel .owl-item img.owl-lazy {
        transform-style: preserve-3d;
    }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}

    .owl-carousel .owl-video-play-icon:hover {
        -ms-transform: scale(1.3, 1.3);
        transform: scale(1.3, 1.3);
    }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

/*
 * Vendor Prefix generator
 */
/*
 * a small mixin for easy use of rem with px as fallback
 * usage: @include x-rem(font-size, 14px)
 * usage: @include x-rem(margin, 0 12px 2 1.2)
 * usage: @include x-rem(padding, 1.5 24px)
 *
 * thanks to Eric Meyer for https://github.com/ericam/susy
 * and Hans Christian Reinl for http://drublic.de/blog/rem-fallback-sass-less/
 */
/*
 * Linear gradient generator. 'start' is top, 'end' is bottom. IE9 support not included using CSS SVG include.
 *
 * Use http://www.colorzilla.com/gradient-editor/ to generate IE9 SVG element
 *
 */
/****************** BUTTONS **************************/
/*
 * Linear gradient generator. 'start' is top, 'end' is bottom. IE9 support not included using CSS SVG include.
 *
 * Use http://www.colorzilla.com/gradient-editor/ to generate IE9 SVG element
 *
 */
.alert[style*=inline] {
    display: block !important;
}

html {
    scroll-behavior: smooth;
}

@media screen and (min-width: 1920px) {
    .container {
        max-width: 1700px;
    }
}

body {
    font-family: "Inter", sans-serif;
}

a {
    color: #000000;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.btn-style {
    display: inline-block;
    position: relative;
    transition: 0.5s;
    border: 2px solid #fd7501;
    height: 54px;
    padding: 16px 40px 15px;
    text-align: center;
    text-transform: capitalize;
    background: #ffffff;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    min-width: 175px;
    border-radius: 3px;
    color: #fd7501;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.84px;
    text-decoration: none;
}

    .btn-style:hover, .btn-style:focus, .btn-style:active {
        text-decoration: none;
        outline: none !important;
        background: transparent;
    }

#menu-btn {
    display: none;
}

@media screen and (max-width: 767px) {
    #menu-btn {
        display: block;
        position: absolute;
        top: 8px;
        right: 15px;
        height: 30px;
        width: 30px;
        background: url("../img/001-menu.svg") no-repeat;
        background-size: 100%;
        z-index: 9999;
    }

        #menu-btn.active {
            background: url("../img/002-cancel.svg") no-repeat;
            background-size: 100%;
            z-index: 99999;
            position: fixed;
            top: 35px;
            right: 20px;
            left: auto;
            margin: auto;
            height: 50px;
            width: 20px;
        }
}

#main-menu {
    display: block;
}

@media screen and (max-width: 767px) {
    #main-menu {
        display: none;
        background: #000000;
        margin-top: 0;
        position: fixed;
        height: 100%;
        text-align: center !important;
        z-index: 9999;
        padding: 20px 0;
        left: 0;
        width: 100%;
        top: 0;
        padding-top: 100px;
    }

        #main-menu ul {
            padding-left: 20px;
            /*    padding-top: 100px;
        top: 0;*/
            width: 100%;
        }

            #main-menu ul li {
                display: block;
                text-align: left;
            }

                #main-menu ul li a {
                    display: block;
                }

        #main-menu.active {
            display: block;
        }
}

html {
    min-height: 100%;
    font-size: 12px;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

    body > section {
        flex-grow: 1;
    }

header {
    position: absolute;
    width: 100%;
    max-width: 1920px;
    margin: auto;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 9;
}

    header:before {
        content: "";
        position: absolute;
        width: calc(100% - 252px);
        height: 1px;
        background: rgba(150, 149, 149, 0.49);
        bottom: -16.5px;
        left: 126px;
    }

@media screen and (max-width: 767px) {
    header:before {
        display: none;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    header:before {
        width: calc(100% - 72px);
        left: 38px;
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    header:before {
        width: calc(100% - 96px);
        left: 48px;
    }
}

@media screen and (max-width: 1365px) and (min-width: 1200px) {
    header:before {
        width: calc(100% - 90px);
        left: 45px;
    }
}

@media screen and (max-width: 767px) {
    header .logo img {
        max-width: 210px;
    }
}

header #navbar .menu-main-menu-container {
    text-align: right;
}

    header #navbar .menu-main-menu-container ul {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 0;
        position: relative;
        /* &:before {
     content: "";
     position: absolute;
     width: 71%;
     height: 1px;
     background: rgba(150, 149, 149, 0.49);
     bottom: 0;
     right: 0;
     @media screen and (max-width: $screen-xs) {
       display: none;
     }
     @media screen and (max-width: 1199px) and (min-width: 768px) {
       width: 100%;
     }
   }*/
    }

@media screen and (max-width: 767px) {
    header #navbar .menu-main-menu-container ul {
        padding: 0 15px;
    }
}

header #navbar .menu-main-menu-container ul li {
    display: inline-block;
}

@media screen and (max-width: 767px) {
    header #navbar .menu-main-menu-container ul li {
        display: block;
    }
}

header #navbar .menu-main-menu-container ul li:not(:last-of-type) {
    margin-right: 57px;
}

@media screen and (max-width: 767px) {
    header #navbar .menu-main-menu-container ul li:not(:last-of-type) {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
    header #navbar .menu-main-menu-container ul li:not(:last-of-type) {
        margin-right: 5px;
    }
}

@media screen and (max-width: 1919px) and (min-width: 1200px) {
    header #navbar .menu-main-menu-container ul li:not(:last-of-type) {
        margin-right: 10px;
    }
}

header #navbar .menu-main-menu-container ul li.active a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fc6307;
    bottom: 0;
}

header #navbar .menu-main-menu-container ul li a {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 38px;
    position: relative;
}

@media screen and (max-width: 767px) {
    header #navbar .menu-main-menu-container ul li a {
        padding-bottom: 15px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    header #navbar .menu-main-menu-container ul li a {
        font-size: 0.75rem;
        padding-bottom: 35px;
    }
}

.home-banner-section {
    background: url("../img/home-banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 290px;
    min-height: 842px;
    margin-top: -2px;
}

@media screen and (max-width: 767px) {
    .home-banner-section {
        padding-top: 200px;
        min-height: 600px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .home-banner-section {
        padding-top: 230px;
        min-height: 630px;
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .home-banner-section {
        padding-top: 250px;
        min-height: 700px;
    }
}

.home-banner-section h1 {
    color: #11ccc1;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "Khand", sans-serif;
    font-size: 7.375rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

@media screen and (max-width: 767px) {
    .home-banner-section h1 {
        font-size: 3.438rem;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .home-banner-section h1 {
        font-size: 3.75rem;
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .home-banner-section h1 {
        font-size: 5.313rem;
    }
}

@media screen and (max-width: 1599px) and (min-width: 1200px) {
    .home-banner-section h1 {
        font-size: 6.25rem;
    }
}

.home-banner-section .small-text {
    color: rgba(155, 189, 187, 0.85);
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: -40px;
}

@media screen and (max-width: 767px) {
    .home-banner-section .small-text {
        margin-top: -15px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .home-banner-section .small-text {
        margin-top: -20px;
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .home-banner-section .small-text {
        margin-top: -28px;
    }
}

.home-banner-section p:not(.small-text) {
    color: #8ce5e0;
    font-family: "Inter", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

    .home-banner-section p:not(.small-text) strong {
        font-weight: 700;
    }

@media screen and (max-width: 767px) {
    .home-banner-section p:not(.small-text) {
        font-size: 1rem;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .home-banner-section p:not(.small-text) {
        font-size: 1.125rem;
    }
}

.applications-banner-section {
    background: url("../img/applications-banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 335px;
    min-height: 1129px;
    position: relative;
    margin-top: -6px;
}

@media screen and (max-width: 767px) {
    .applications-banner-section {
        padding-top: 250px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .applications-banner-section {
        padding-top: 230px;
        min-height: 990px;
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .applications-banner-section {
        padding-top: 250px;
        min-height: 900px;
    }
}

.applications-banner-section h1 {
    color: #ff6b1a;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "Khand", sans-serif;
    font-size: 7rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

@media screen and (max-width: 767px) {
    .applications-banner-section h1 {
        font-size: 3.438rem;
        margin-bottom: 100px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .applications-banner-section h1 {
        font-size: 3.75rem;
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .applications-banner-section h1 {
        font-size: 5.313rem;
    }
}

@media screen and (max-width: 1599px) and (min-width: 1200px) {
    .applications-banner-section h1 {
        font-size: 6.25rem;
    }
}

.applications-banner-section .applications-div {
    position: absolute;
    padding: 65px 0;
    bottom: 0;
    width: 100%;
    max-width: 1920px;
    left: 0;
    right: 0;
    margin: auto;
}

@media screen and (max-width: 767px) {
    .applications-banner-section .applications-div {
        position: relative;
    }
}

.applications-banner-section .applications-div:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    left: 0;
    top: 0;
}

@media screen and (max-width: 767px) {
    .applications-banner-section .applications-div:before {
        width: calc(100% + 30px);
        left: -15px;
    }
}

.applications-banner-section .applications-div .mini-container {
    max-width: 1320px;
    margin: auto;
}

.applications-banner-section .applications-div .inner-wrap {
    text-align: center;
    position: relative;
}

@media screen and (max-width: 767px) {
    .applications-banner-section .applications-div .inner-wrap {
        margin-bottom: 30px;
    }
}

.applications-banner-section .applications-div .inner-wrap img {
    margin-bottom: 20px;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .applications-banner-section .applications-div .inner-wrap img {
        transform: scale(0.7);
    }
}

.applications-banner-section .applications-div .inner-wrap h2 {
    color: #ffffff;
    text-align: center;
    font-family: "Kantumruy Pro", sans-serif;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .applications-banner-section .applications-div .inner-wrap h2 {
        font-size: 1rem;
    }
}

.costumers-banner-section,
.contact-banner-section {
    background: url("../img/costumers-banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 345px;
    min-height: 832px;
}

@media screen and (max-width: 767px) {
    .costumers-banner-section,
    .contact-banner-section {
        padding-top: 250px;
        min-height: 600px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .costumers-banner-section,
    .contact-banner-section {
        padding-top: 280px;
        min-height: 630px;
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .costumers-banner-section,
    .contact-banner-section {
        padding-top: 320px;
        min-height: 700px;
    }
}

.costumers-banner-section h1,
.contact-banner-section h1 {
    color: #ff6b1a;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "Khand", sans-serif;
    font-size: 7rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

@media screen and (max-width: 767px) {
    .costumers-banner-section h1,
    .contact-banner-section h1 {
        font-size: 3.438rem;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .costumers-banner-section h1,
    .contact-banner-section h1 {
        font-size: 3.75rem;
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .costumers-banner-section h1,
    .contact-banner-section h1 {
        font-size: 5.313rem;
    }
}

@media screen and (max-width: 1599px) and (min-width: 1200px) {
    .costumers-banner-section h1,
    .contact-banner-section h1 {
        font-size: 6.25rem;
    }
}

.contact-banner-section {
    background: url("../img/contact-banner.png");
}

.contact-section {
    padding: 70px 0;
    background: #f5f5f5;
}

    .contact-section h2 {
        color: #000000;
        font-family: "Inter", sans-serif;
        font-size: 1.563rem;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin-bottom: 35px;
    }

    .contact-section .form label {
        color: #727070;
        font-family: "Inter", sans-serif;
        font-size: 1rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 8px;
    }

    .contact-section .form .form-group:not(:last-of-type) {
        margin-bottom: 30px;
    }

    .contact-section .form .form-control {
        border-radius: 10px;
        border: 1px solid #d6d6d6;
        background: #fff;
        height: 45px;
        padding: 6px 12px;
    }

    .contact-section .form textarea.form-control {
        height: 268px;
    }

    .contact-section .form .form-btn {
        color: #ffffff;
        font-family: "Inter", sans-serif;
        font-size: 1.25rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        border-radius: 5px;
        padding: 15px 50px;
        background: #ff7a00;
        border: 1px solid #ff7a00;
    }

        .contact-section .form .form-btn:hover {
            background: transparent;
            color: #ff7a00;
        }

@media screen and (max-width: 767px) {
    .contact-section .col-md-5 {
        margin-top: 50px;
    }
}

.contact-section .info p {
    color: #949494;
    font-family: "Inter", sans-serif;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 30px;
}

@media screen and (max-width: 991px) and (min-width: 320px) {
    .contact-section .info p {
        font-size: 1.125rem;
    }
}

.contact-section .info ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

    .contact-section .info ul li {
        color: #9a9a9a;
        font-family: "Inter", sans-serif;
        font-size: 1.375rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        position: relative;
        padding-left: 35px;
    }

@media screen and (max-width: 991px) and (min-width: 320px) {
    .contact-section .info ul li {
        font-size: 1.125rem;
    }
}

.contact-section .info ul li a {
    color: #9a9a9a;
}

.contact-section .info ul li:not(:last-of-type) {
    margin-bottom: 15px;
}

.contact-section .info ul li:before {
    content: "";
    position: absolute;
    left: -6px;
    width: 30px;
    height: 30px;
}

.contact-section .info ul li.address:before {
    background: url("../img/location.png");
}

.contact-section .info ul li.email:before {
    background: url("../img/mail.png");
}

.contact-section .info ul li.web:before {
    background: url("../img/website.png");
}

.contact-section .info ul li.phone:before {
    background: url("../img/phone.png");
}

.login-banner-section {
    background: url("../img/login-banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .login-banner-section {
        padding: 215px 0 200px;
    }
}

.login-banner-section .login-form {
    border-radius: 10px;
    background: rgba(94, 120, 150, 0.82);
    max-width: 700px;
    margin: auto;
    padding: 55px 100px;
}

@media screen and (max-width: 767px) {
    .login-banner-section .login-form {
        padding: 40px 5px;
    }
}

.login-banner-section .login-form h1 {
    color: #ffffff;
    font-family: "Khand", sans-serif;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 50px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .login-banner-section .login-form h1 {
        margin-bottom: 10px;
    }
}

.login-banner-section .login-form .form-group:not(:last-of-type) {
    margin-bottom: 30px;
}

.login-banner-section .login-form label {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 1.063rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media screen and (max-width: 767px) {
    .login-banner-section .login-form label {
        margin-bottom: 8px;
    }
}

.login-banner-section .login-form .login-btn {
    color: #ffffff;
    border-radius: 3px;
    background: #11ccc1;
    border: 0;
    width: 100%;
    height: 35px;
}

.login-banner-section .login-form .forgot-div a {
    color: #ff7a00;
    font-family: "Inter", sans-serif;
    font-size: 1.063rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.login-banner-section .login-form .form-control {
    border-radius: 3px;
    background: #d9d9d9;
    height: 35px;
}

.login-banner-section .login-form p {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 1.063rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

    .login-banner-section .login-form p a {
        color: #ff7a00;
        font-weight: 600;
    }

.register-section {
    background: #5e697f;
    padding: 140px 0;
}

@media screen and (max-width: 767px) {
    .register-section {
        padding: 80px 0;
    }
}

@media screen and (min-width: 768px) {
    .register-section .col-md-6:first-of-type {
        padding-right: 0;
    }

    .register-section .col-md-6:last-of-type {
        padding-left: 0;
    }
}

.register-section .bg-img {
    background: url("../img/register.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 218px 170px;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .register-section .bg-img {
        padding: 150px 30px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .register-section .bg-img {
        padding: 218px 30px;
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .register-section .bg-img {
        padding: 218px 60px;
    }
}

@media screen and (max-width: 1600px) and (min-width: 1200px) {
    .register-section .bg-img {
        padding: 218px 60px;
    }
}

.register-section .bg-img h2 {
    color: #ffffff;
    font-family: "Khand", sans-serif;
    font-size: 4.688rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

@media screen and (max-width: 767px) {
    .register-section .bg-img h2 {
        font-size: 2.813rem;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .register-section .bg-img h2 {
        font-size: 3.438rem;
    }
}

.register-section .form-wrapper {
    background: #f7f7f7;
    padding: 50px 100px 97px;
}

@media screen and (max-width: 767px) {
    .register-section .form-wrapper {
        padding: 40px 15px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .register-section .form-wrapper {
        padding: 50px 25px;
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .register-section .form-wrapper {
        padding: 50px 30px;
    }
}

@media screen and (max-width: 1600px) and (min-width: 1200px) {
    .register-section .form-wrapper {
        padding: 50px;
    }
}

.register-section .form-wrapper .col-md-3 {
    text-align: right;
}

@media screen and (max-width: 767px) {
    .register-section .form-wrapper .col-md-3 {
        text-align: left;
    }
}

.register-section .form-wrapper h2 {
    color: #66809e;
    font-family: "Khand", sans-serif;
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 60px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .register-section .form-wrapper h2 {
        margin-bottom: 30px;
    }
}

.register-section .form-wrapper .form-group:not(:last-of-type) {
    margin-bottom: 30px;
}

.register-section .form-wrapper label {
    color: #6d8bad;
    text-align: right;
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media screen and (max-width: 767px) {
    .register-section .form-wrapper label {
        margin-bottom: 8px;
    }
}

.register-section .form-wrapper .form-btn {
    color: #ffffff;
    border-radius: 3px;
    background: #11ccc1;
    border: 0;
    width: 100%;
    height: 35px;
}

.register-section .form-wrapper .form-control {
    border-radius: 3px;
    border: 1px solid #ff7a00;
    background: #fff;
    height: 35px;
}

.register-section .form-wrapper p {
    color: #9f6816;
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.only-heading {
    text-align: center;
    padding: 90px 0;
}

    .only-heading h2 {
        color: #66809e;
        text-align: center;
        font-family: "Khand", sans-serif;
        font-size: 2.5rem;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        position: relative;
    }

        .only-heading h2 strong {
            font-weight: 500;
            color: #ff6b1a;
        }

        .only-heading h2:before {
            content: "";
            position: absolute;
            width: 80px;
            height: 2px;
            background: #11ccc1;
            left: 0;
            right: 0;
            bottom: -20px;
            margin: auto;
        }

.only-img {
    background: #f9f9f9;
    text-align: center;
    padding: 75px 0;
}

.gray-bg {
    background: #5e697f;
    min-height: 306px;
}

.app-heading {
    padding: 60px 0 100px;
}

    .app-heading h2 {
        color: #ff6b1a;
        text-align: center;
        font-family: "Khand", sans-serif;
        font-size: 4.375rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 15px;
    }

@media screen and (max-width: 767px) {
    .app-heading h2 {
        font-size: 2.813rem;
    }
}

.app-heading h3 {
    color: #a7b1c2;
    text-align: center;
    font-family: "Khand", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
}

    .app-heading h3 strong {
        font-weight: 400;
    }

        .app-heading h3 strong:first-of-type {
            color: #ff6b1a;
        }

        .app-heading h3 strong:last-of-type {
            color: #11ccc1;
        }

    .app-heading h3:before {
        content: "";
        position: absolute;
        width: 80px;
        height: 2px;
        background: #ff6b1a;
        left: 0;
        right: 0;
        bottom: -10px;
        margin: auto;
    }

.plm-section .bg-div {
    background: #5e697f;
    padding: 55px 100px;
}

@media screen and (max-width: 767px) {
    .plm-section .bg-div {
        padding: 50px 15px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .plm-section .bg-div {
        padding: 55px 10px;
    }
}

.plm-section .bg-div .inner {
    text-align: center;
}

@media screen and (max-width: 767px) {
    .plm-section .bg-div .inner {
        margin-bottom: 15px;
    }
}

.plm-section .bg-div .inner img {
    margin-bottom: 25px;
}

.plm-section .bg-div .inner h3 {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .plm-section .bg-div .inner h3 {
        word-wrap: break-word;
    }
}

.plm-section .img-div {
    padding: 100px 0;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .plm-section .img-div {
        padding: 50px 0;
    }
}

.plm-section .gray-bg {
    background: #efefef;
    padding: 66px 48px;
}

@media screen and (max-width: 767px) {
    .plm-section .gray-bg {
        padding: 50px 15px;
    }
}

.plm-section .gray-bg img {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .plm-section .gray-bg img {
        margin-bottom: 30px;
    }
}

.plm-section .gray-bg h4 {
    color: #ff7a00;
    font-family: "Inter", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 18px;
}

@media screen and (max-width: 767px) {
    .plm-section .gray-bg h4 {
        font-size: 1.25rem;
    }
}

.plm-section .gray-bg p {
    color: #66809e;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 48px;
}

.plm-section .gray-bg ul li {
    color: #515050;
    font-family: "Inter", sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    list-style-type: auto;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .plm-section .gray-bg ul li {
        font-size: 1rem;
    }
}

.plm-section .gray-bg ul li strong {
    color: #ff7a00;
    font-style: italic;
    font-weight: 400;
}

.plm-section .btn-div {
    padding: 55px 0 120px;
    text-align: right;
}

    .plm-section .btn-div a {
        padding: 13px 47px;
        border-radius: 5px;
        background: #11ccc1;
        color: #fff;
        font-family: "Inter", sans-serif;
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

.logistics-section {
    background: #f5f5f5;
    padding: 60px 0;
}

@media screen and (max-width: 767px) {
    .logistics-section img {
        margin-bottom: 30px;
    }
}

.logistics-section.hris {
    border-bottom: 1px solid #a7b1c2;
}

@media screen and (max-width: 767px) {
    .logistics-section.hris {
        padding-top: 0;
    }
}

@media screen and (max-width: 1920px) and (min-width: 768px) {
    .logistics-section.hris {
        padding-top: 0;
    }
}

.logistics-section.hris .container h2 {
    margin-bottom: 0;
}

.logistics-section.hris .container > p {
    text-align: center;
    margin-bottom: 180px;
    color: #66809e;
    font-family: "Khand", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media screen and (max-width: 767px) {
    .logistics-section.hris .container > p {
        margin-bottom: 50px;
        font-size: 1.563rem;
    }
}

@media screen and (max-width: 1920px) and (min-width: 768px) {
    .logistics-section.hris .container > p {
        margin-bottom: 80px;
    }
}

.logistics-section.project {
    background: #fff;
}

    .logistics-section.project .bg-div {
        background: #fafafa;
        padding: 44px 0;
    }

    .logistics-section.project .container h2 {
        margin-bottom: 20px;
    }

    .logistics-section.project .container > p {
        text-align: center;
        margin-bottom: 180px;
        color: #66809e;
        font-family: "Khand", sans-serif;
        font-size: 2rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

@media screen and (max-width: 767px) {
    .logistics-section.project .container > p {
        margin-bottom: 50px;
        font-size: 1.563rem;
    }
}

@media screen and (max-width: 1920px) and (min-width: 768px) {
    .logistics-section.project .container > p {
        margin-bottom: 80px;
    }
}

.logistics-section.project ul li {
    color: #282727;
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .logistics-section.project ul li {
        font-size: 1rem;
    }
}

.logistics-section.project ul li:not(:last-of-type) {
    margin-bottom: 25px;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .logistics-section.project ul li:not(:last-of-type) {
        margin-bottom: 15px;
    }
}

.logistics-section.project ul li ul {
    margin-top: 10px;
}

    .logistics-section.project ul li ul > li {
        margin-bottom: 10px !important;
    }

.logistics-section img {
    width: 100%;
}

.logistics-section h2 {
    text-align: center;
    color: #ff7a00;
    font-family: "Khand", sans-serif;
    font-size: 4.375rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    margin-bottom: 160px;
}

@media screen and (max-width: 767px) {
    .logistics-section h2 {
        font-size: 2.813rem;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 1920px) and (min-width: 768px) {
    .logistics-section h2 {
        margin-bottom: 80px;
    }
}

.logistics-section h2:before {
    content: "";
    position: absolute;
    width: 60px;
    height: 2px;
    background: #ff7a00;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.logistics-section ul li {
    color: #66809e;
    font-family: "Khand", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 60px; /* 250% */
    letter-spacing: 0.72px;
    text-transform: uppercase;
}

@media screen and (max-width: 767px) {
    .logistics-section ul li {
        font-size: 1.25rem;
        line-height: 40px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .logistics-section ul li {
        font-size: 1.25rem;
        line-height: 40px;
    }
}

.logistics-section ul li::marker {
    color: #ff7a00;
}

.renew-section {
    padding: 77px 0 170px;
}

@media screen and (max-width: 767px) {
    .renew-section {
        padding: 0 0 60px;
    }
}

.renew-section h2 {
    color: #000;
    text-align: left;
    font-family: "Khand", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media screen and (max-width: 767px) {
    .renew-section h2 {
        font-size: 1.625rem;
    }
}

.communication-section {
    background: #5e697f;
    padding: 75px 0 100px;
}

    .communication-section h2 {
        text-align: center;
        color: #ff7a00;
        font-family: "Khand", sans-serif;
        font-size: 4.375rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        position: relative;
    }

@media screen and (max-width: 767px) {
    .communication-section h2 {
        font-size: 2.813rem;
    }
}

.communication-section h2:before {
    content: "";
    position: absolute;
    width: 60px;
    height: 2px;
    background: #ff7a00;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.communication-section p {
    color: #fff;
    font-family: "Khand", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 60px;
    text-align: center;
}

/*# sourceMappingURL=main.css.map */