/* Global Things*/

/*COLORS*/

/*FONT SIZES*/

body {
    font-family: 'Catamaran', sans-serif;
    font-size: 16px;
    background-color: #f4f4f4;
    /*    background-color: red;*/
}

/*Bootstrap resets*/

a,
a:hover,
a:focus,
a:active {
    color: inherit;
    text-decoration: none !important;
    outline: 0;
}

button,
button:hover,
button:focus,
button:active {
    color: inherit;
    text-decoration: none !important;
    outline: 0;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    outline: 0;
    box-shadow: none;
}

.input-group .form-control:active,
.input-group .form-control:focus,
.input-group .form-control:hover {
    z-index: 2;
}

textarea {
    resize: none;
}

/*Helpers*/

/*MAX WIDTH FIX*/

.navbar,
.container-fluid,
.modal {
    max-width: 1920px;
    margin-right: auto;
    margin-left: auto;
}

.hide-overflow {
    overflow: hidden;
}

.container-custom {
    max-width: 1700px;
    padding: 0 30px
}

.container-custom-2 {
    max-width: 1300px;
    padding: 0 30px
}

/* light */

.font-weight-300 {
    font-weight: 300;
}

/* regular */

.font-weight-400 {
    font-weight: 400;
}

/* medium */

.font-weight-500 {
    font-weight: 500;
}

/* semi-bold */

.font-weight-600 {
    font-weight: 600;
}

/* bold */

.font-weight-700 {
    font-weight: 700;
}

/* black */

.font-weight-900 {
    font-weight: 900;
}

.main-content-wrapper {
    max-width: 1920px;
    margin: 0 auto;
}

@media only screen and (max-width: 1439px) {}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 575px) {}

.font-size-1 {
    font-size: 50px;
}

.font-size-2 {
    font-size: 30px;
}

.font-size-3 {
    font-size: 22px;
    line-height: 22px;
}

.font-size-4 {
    font-size: 16px;
}

.font-size-5 {
    font-size: 14px;
}

@media only screen and (max-width: 1199px) {
    .font-size-1 {
        font-size: 40px;
        line-height: 40px;
    }
    .font-size-2 {
        font-size: 25px;
        line-height: 25px;
    }
    .font-size-3 {
        font-size: 20px;
        line-height: 20px;

    }
}

@media only screen and (max-width: 991px) {
    .font-size-1 {
        font-size: 35px;
        line-height: 35px;
    }
}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 575px) {
    .font-size-1 {
        font-size: 23px;
        line-height: 23px;
    }
    .font-size-2 {
        font-size: 20px;
        line-height: 20px;
    }
    .font-size-3 {
        font-size: 18px;
        line-height: 18px;
    }
}

.main-navigation {
    font-weight: 700;
    height: 100px;
    background-color: #f4f4f4;
    padding: 0;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.2);
}

.main-navigation__navbar-nav {
    height: 100%;
}

.main-navigation__navbar-brand {
    z-index: 11;
}

.main-navigation__navbar-brand--white-mask {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.main-navigation__link,
.main-navigation__link:hover,
.main-navigation__link:active,
.main-navigation__link:focus {
    height: 100%;
    position: relative;
}

.main-navigation__link-inner {
    text-transform: uppercase;
    color: #567981;
    top: 50%;
    position: relative;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
}

.main-navigation__link-inner::after {
    content: '';
    display: block;
    background-color: #ddbb4c;
    width: 0;
    height: 5px;
    transition: width 0.3s ease;
}

.main-navigation__link:hover .main-navigation__link-inner::after,
.main-navigation__item--active .main-navigation__link-inner::after {
    width: 100%;
}

/*DROPDOWN THINGS*/

.main-navigation__dropdown {
    position: relative;
}

.main-navigation__dropdown-menu {
    width: 300px;
    float: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    background-color: #f4f4f4;
    list-style: none;
    /*        display: none;*/
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
}

.main-navigation__dropdown:hover .main-navigation__dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
}

.main-navigation__dropdown-item {
    display: block;
    clear: both;
    font-weight: 400;
    font-size: 18px;
    color: #567981;
    white-space: nowrap;
    background-color: #f4f4f4;
    border: 0;
    padding: 0 1.5rem;
}

.main-navigation__dropdown-item:nth-child(1) .main-navigation__dropdown-item-inner {
    transition-delay: 40ms
}

.main-navigation__dropdown-item:nth-child(2) .main-navigation__dropdown-item-inner {
    transition-delay: 80ms
}

.main-navigation__dropdown-item:nth-child(3) .main-navigation__dropdown-item-inner {
    transition-delay: .12s
}

.main-navigation__dropdown-item:nth-child(4) .main-navigation__dropdown-item-inner {
    transition-delay: .16s
}

.main-navigation__dropdown-item:nth-child(5) .main-navigation__dropdown-item-inner {
    transition-delay: .2s
}

.main-navigation__dropdown-item:nth-child(6) .main-navigation__dropdown-item-inner {
    transition-delay: .24s
}

.main-navigation__dropdown-item:nth-child(7) .main-navigation__dropdown-item-inner {
    transition-delay: .28s
}

.main-navigation__dropdown-item:nth-child(8) .main-navigation__dropdown-item-inner {
    transition-delay: .32s
}

.main-navigation__dropdown-item:nth-child(9) .main-navigation__dropdown-item-inner {
    transition-delay: .36s
}

.main-navigation__dropdown-item:nth-child(10) .main-navigation__dropdown-item-inner {
    transition-delay: .4s
}

.main-navigation__dropdown-item .main-navigation__dropdown-item-inner {
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    transition: all .3s ease-in-out 0.1s;
}

.main-navigation__dropdown:hover .main-navigation__dropdown-item .main-navigation__dropdown-item-inner {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.main-navigation__dropdown-item:last-child {
    border: 0;
}

.main-navigation__dropdown-item:hover {
    background-color: #dce2e3;
    color: #567981;
}

.main-navigation__dropdown-item:hover .main-navigation__dropdown-item-inner {
    border-color: transparent;
}

.main-navigation__dropdown-item-inner {
    border-bottom: 1px solid #dce2e3;
    text-align: left;
    display: block;
    padding: 1rem 0;
}

.main-navigation__dropdown-item:last-child .main-navigation__dropdown-item-inner {
    border: 0;
}

/*MOBILE THINGS*/

.main-navigation__menu-toogle-container {
    z-index: 11;
    height: 100%;
    width: 80px;
    position: relative;
    background-color: #567981;

}

.main-navigation__menu-toogle {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: white;
}

.main-navigation__menu-toogle-link {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
}

.main-navigation__collapse {
    height: 100%;
}

.main-navigation__dropdown-menu > .main-navigation__dropdown-item:first-child {
    box-shadow: inset 0 20px 20px -15px rgba(0, 0, 0, 0.2);
}

/*    variables for animating the burger menu*/

.main-navigation__line {
    height: 2px;
    background-color: white;
    display: block;
    transition: all 0.3s ease;
}

.main-navigation__line {
    height: 2px;
    background-color: white;
    display: block;
    will-change: transform;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.main-navigation__text {
    will-change: transform;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.main-navigation__menu-toogle--open .main-navigation__text {
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px);
}

.main-navigation__menu-toogle--open .main-navigation__line.top {
    -webkit-transform: translateY(14px) rotate(45deg) scale(0.6);
    transform: translateY(14px) rotate(45deg) scale(0.6);
}

.main-navigation__menu-toogle--open .main-navigation__line.bot {
    -webkit-transform: translateY(-15px) rotate(-45deg) scale(0.6);
    transform: translateY(-15px) rotate(-45deg) scale(0.6);

}

/*    Change menu to mobile*/

@media only screen and (max-width:991px) {

    .main-navigation {
        /*    Collapse*/

        /*Hide dropdown on mobile menu*/



    }
    .main-navigation__collapse {
        height: 100vh !important;
        z-index: 11;
        display: block;
        visibility: hidden;
        opacity: 0;
        /*transition timings when menu is closing*/
        transition: all .1s ease .1s;
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
    }

    .main-navigation__collapse.show {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        /*transition timings when menu is opening*/
        transition: all .3s ease .1s;

    }


    .main-navigation__burger-bg {
        height: 0;
        width: 100vw;
        position: fixed;
        top: 0;
        left: 0;
        background-color: #567981;
        z-index: 10;
        transition: height 0.3s ease;
    }

    .main-navigation__burger-bg--open {
        height: 100vh;

    }

    .main-navigation__link-inner {
        top: 0;
        position: static;
        -webkit-transform: none;
        transform: none;
        color: white;
        display: inline-block;
    }
    .main-navigation .navbar-nav {
        padding-top: 30px;
        text-align: center;
    }
    .main-navigation__dropdown-menu {
        display: none !important;
    }

}

@media only screen and (max-width:575px) {
    .main-navigation {
        height: 80px;
    }
}

.big-title {
    color: #567981;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 900;
    text-align: center;
}

.big-title__after {
    display: block;
    /*        after animation 110% width*/
    width: 0;
    right: 5%;
    position: relative;
    height: 15px;
    background-color: #ddbb4c;
    margin-top: 10px;
}

.big-title--light {
    color: #fff;
}

.big-title--small .big-title__after {
    width: 110%;
    height: 10px;
}

@media only screen and (max-width: 1199px) {
    .big-title__after {
        margin-top: 5px;
    }
}

@media only screen and (max-width: 575px) {
    .big-title__after {
        margin-top: 0;
        height: 10px;
    }
}

.wings-button {
    text-transform: uppercase;
    white-space: nowrap;
    color: #567981;
    display: inline-block;
    text-align: center;
    padding: 10px 15px;
    z-index: 1;
    position: relative;
    overflow: hidden;
    transition: all 0s linear 0.15s;
    transition-delay: calc(.6s / 4);
}

.wings-button:hover {
    background-color: #ddbb4c;
    color: #fff;
}

.wings-button:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    -webkit-transform: translateY(calc(-100% + 2px));
    transform: translateY(calc(-100% + 2px));
    left: 0;
    background-color: #567981;
    transition: all .6s ease;
    transition-duration: .6s;
    z-index: 2;
}

.wings-button:hover:before {
    -webkit-transform: translateY(calc(100% + 2px));
    transform: translateY(calc(100% + 2px));
}

/*    INVERT BUTTON*/

.wings-button--invert {
    color: #fff;
}

.wings-button--invert:hover {
    background-color: #ddbb4c;
    color: #fff;
}

.wings-button--invert:before {
    background-color: #fff;
}

.wings-button--wide {
    width: 120px;
}

.homepage-slider {
    padding-bottom: 80px;
    background-color: #ddbb4c;
    background: linear-gradient(to bottom, #f4f4f4 25%, transparent 25%), linear-gradient(to right, #f4f4f4 15%, #ddbb4c 15%);
}

.homepage-slider .owl-carousel {
    position: relative;
    z-index: 3;
}

.homepage-slider .owl_page_description {
    max-width: 745px;
    opacity: 1;
    top: 0;
    position: relative;
    padding: 20px 0px;
    color: #fff;
}

.homepage-slider .previous_image_preview {
    position: absolute;
    bottom: -36px;
    left: -50%;
    max-width: 1100px;
    z-index: 1;
    width: 70%;
    overflow: hidden;
}

.homepage-slider .owl_pages img {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.homepage-slider .owl_pages_text {
    min-width: 100px;
    text-align: center;
    display: inline-block;
}

.homepage-slider .owl_descriptions {
    position: absolute;
    background-color: #567981;
    right: -30px;
    bottom: -30px;
    z-index: 9;
    color: #fff;
    padding: 10px;
}

.homepage-slider .desciption_text {
    width: 100%;
    max-width: 75%;
}

.homepage-slider .desciption_readmore {
    display: inline-block;
    width: 100%;
    max-width: 24%;
    text-align: center;
}

.homepage-slider .owl-stage-outer-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #567981;
    z-index: 99;
}

.homepage-slider .previous_image_preview-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #567981;
}

.homepage-slider .owl_timer {
    position: relative;
    top: 15px;
    left: -45px;
    height: 2px;
    background-color: #fff;
    width: 0px;
}

@media only screen and (max-width: 1199px) {
    .homepage-slider {
        padding-bottom: 40px;
    }
    .homepage-slider .owl_descriptions {
        position: relative;
        right: 0;
        bottom: 0;
    }
    .homepage-slider .owl_page_description {
        display: inline-block;
        margin-top: 10px;
    }
    .homepage-slider .desciption_readmore {
        display: block;
        margin: 15px auto 0 auto;
        max-width: none;
    }
    .homepage-slider .owl_timer {
        margin: 20px auto 10px auto;
        position: static;
    }
    .homepage-slider .container-custom {
        padding: 0;
    }
    .homepage-slider .previous_image_preview {
        display: none;
    }
    .homepage-slider .owl_pager {
        margin-top: -75px;
    }


}

@media only screen and (max-width: 575px) {
    .homepage-slider .owl_pager {
        margin-top: -50px;
    }
    .homepage-slider .owl_timer {
        margin: 5px auto 0 auto;
    }
    .homepage-slider .owl_page_description {
        padding: 20px 0 0 0;
    }
}

.homepage-about-us {
    /*        background-color: red;*/
    padding: 100px 0;
}

.homepage-about-us__col1 {
    position: relative;
    left: 30px;
}

.homepage-about-us__col2 {
    position: relative;
    left: -30px;
}

.homepage-about-us__col1_inner {
    background-color: #f4f4f4;

}

.homepage-about-us__paragraph {
    color: #567981;
}

.homepage-about-us__button {
    margin-left: 120px;
    margin-top: 15px;
}

.homepage-about-us__image-1 {
    position: relative;
    z-index: -1;
}

.homepage-about-us__image-2 {
    position: relative;
    left: -280px;
    top: -30px;
    z-index: -1;
}

@media only screen and (max-width: 992px) {
    .homepage-about-us {
        text-align: center;
        padding: 60px 0;
    }
    .homepage-about-us__col1 {
        position: static;
    }
    .homepage-about-us__col2 {
        position: static;
    }
    .homepage-about-us__button {
        margin: 15px 0 30px 0;
    }
    .homepage-about-us__image-2 {
        left: 0;
        width: 80%;
    }
}

@media only screen and (max-width: 575px) {
    .homepage-about-us {
        padding: 30px 0;
    }
}

.homepage-our-solutions {
    position: relative;
    padding: 60px;
}
.homepage-our-solutions__img {
    max-width: 150px;
}

.homepage-our-solutions__bg-green {
    position: absolute;
    background-color: #567981;
    height: 100%;
    width: 90%;
    top: 0;
    right: 0;
}

.homepage-our-solutions__col2-inner {
    padding-left: 90px;
    max-width: 1000px;
}

.homepage-our-solutions__mini-title {
    color: white;
}

.homepage-our-solutions__desc {
    color: white;
}

.homepage-our-solutions__cta {
    color: #ddbb4c;
    white-space: nowrap;
    padding-left: 15px;
}

@media only screen and (max-width: 1339px) {
    .homepage-our-solutions__col2-inner {
        padding-left: 30px;
    }
}

@media only screen and (max-width: 1199px) {
    .homepage-our-solutions__bg-green {
        width: 100%;
    }
    .homepage-our-solutions__col2-inner {
        padding: 0;
        max-width: auto;
    }
    .homepage-our-solutions__bg-green {
        height: 80%;
    }
}

@media only screen and (max-width: 991px) {
    .homepage-our-solutions {
        padding: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .homepage-our-solutions__cta {
        position: absolute;
        bottom: 15px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media only screen and (max-width: 575px) {
    .homepage-our-solutions__col2-inner .w-25,
    .homepage-our-solutions__col2-inner .w-75 {
        width: 100% !important;
    }
    .homepage-our-solutions__bg-green {
        height: 95%;
    }
}

.homepage-customers-and-partners {
    padding: 200px 0;
    position: relative;
}

.homepage-customers-and-partners__inner-col {
    max-width: 1000px;
    padding-left: 300px;
}

.homepage-customers-and-partners__grey-rect {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 450px;
    width: 80%;
    height: 1000px;
    background-color: #e2e2e2;
    z-index: -1;
}

.homepage-customers-and-partners__paragraph {
    color: #567981;
}

@media only screen and (max-width: 991px) {
    .homepage-customers-and-partners {
        padding: 100px 0;
    }
    .homepage-customers-and-partners__inner-col {
        padding-left: 100px;
    }
}

@media only screen and (max-width: 575px) {
    .homepage-customers-and-partners {
        padding: 30px 0;
    }
    .homepage-customers-and-partners__inner-col {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.homepage-our-news {
    padding: 60px 0;
    background-color: #567981;
    width: 95%;
    position: relative;
    color: white;
    text-align: left;
    margin-bottom: 80px;
}

.homepage-our-news::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    left: 120px;
    top: 40px;
    background-color: #7497a0;
    position: absolute;
    z-index: -1;
}

.homepage-our-news__article-box {
    padding: 0 10px;
    display: inline-block;
}

.homepage-our-news__big-title {
    padding: 0 25px;
}

@media only screen and (max-width: 1199px) {
    .homepage-our-news__article-box {
        padding: 30px 10px;
    }
}

@media only screen and (max-width: 575px) {
    .homepage-our-news {
        width: 100%;
    }
    .homepage-our-news__article-box {
        padding: 15px 0;
    }
    .homepage-our-news::after {
        left: 40px;
    }

    .homepage-our-news .container-custom {
        padding: 0;
    }
    .homepage-our-news__article-box-meta, .homepage-our-news__article-box-title {
        padding: 0 15px;
    }
}

.footer {
    color: #fff;
}

/*TOP FOOTER*/

.footer__top {
    color: #fff;
    /*        padding: 60px;*/
    padding: 60px 60px 80px 60px;
    background-color: #242424;
}

.footer__top--logo {
    /*        padding: 60px 0;*/
    padding: 60px 0 120px 0;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.footer__top-navigation {
    list-style: none;
    -webkit-columns: 2;
    columns: 2;
    padding-left: 0;
}

/*    NEWSLETTER INPUT*/

.footer__top--subscribe-container {
    max-width: 300px;
    display: inline-block;
}

.footer__top-input,
.footer__top-input:focus {
    background-color: transparent;
    border-color: #fff;
    border-radius: 0;
    border-width: 1px;
    border-right: 0;
    padding: 15px 20px;
    margin-top: 10px;
    color: #fff;
}

.footer__top-input::-webkit-input-placeholder {
    color: #fff;
}

.footer__top-input:-ms-input-placeholder {
    color: #fff;
}

.footer__top-input::-ms-input-placeholder {
    color: #fff;
}

.footer__top-input::placeholder {
    color: #fff;
}

.footer__top-input-icon,
.footer__top-input-icon:hover {
    padding: 15px 20px;
    margin-top: 10px;
    border-color: #fff;
    border-width: 1px;
    border-radius: 0;
    border-left: 0;
    background-color: transparent;
}

.footer__top-input-icon img {
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.footer__top-input-icon:hover img {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);

}

.footer__top-social-icon img {
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;

}

.footer__top-social-icon:hover img {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
}

/*BOTTOM FOOTER*/

.footer__bottom {
    background-color: #181818;
}

.footer__bottom-copyright {
    padding: 30px 0;
    color: #fff;
}

.footer__bottom-copyright a {
    white-space: nowrap;
}

.footer__bottom-copyright-antmoves {
    color: #ddbb4c;
}

.footer__bottom-eula {
    padding: 30px 0;
    color: #fff;
}

@media only screen and (max-width: 1199px) {
    .footer__top-navigation {
        -webkit-columns: 1;
        columns: 1;
    }
}

@media only screen and (max-width: 767px) {
    .footer__bottom-copyright {
        padding: 10px 0;
    }
    .footer__bottom-eula {
        padding: 10px 0;
    }
}

@media only screen and (max-width: 575px) {
    .footer__top {
        padding: 30px 0;
    }

    .footer__top--logo {
        padding: 60px 0;
    }

    .footer__bottom {
        padding: 30px 0;
    }

}

.generic-page-header {
    position: relative;
    padding-bottom: 2.7%;
}

.generic-page-header__inner-title-container {
    width: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.generic-page-header__title {
    opacity: 0;
    color: #fff;
    border-bottom: 2px solid #fff;
    text-transform: uppercase;
    padding: 10px 30px;
    display: inline-block;
}

.generic-page-header__image-clone {
    position: absolute;
    z-index: -1;
    width: 80%;
    left: -60%;
    bottom: -5%;
}

.generic-page-header__inner::after {
    content: '';
    display: block;
    width: 100%;
    height: 80%;
    background-color: #ddbb4c;
    position: absolute;
    bottom: -10%;
    left: 10%;
    z-index: -2;
}

@media only screen and (max-width: 991px) {
    .generic-page-header .container-custom {
        padding: 0;
    }
    .generic-page-header__image-clone {
        display: none;
    }
    .generic-page-header__main-image {
        min-width: 1150px;
        position: relative;
    }

    .generic-page-header {
        padding-bottom: 35px;
    }
}

@media only screen and (max-width: 575px) {
    .generic-page-header__main-image {
        left: -100%;
    }
}

.about-mission {
    padding: 60px 0;
    margin: 0 auto;
}

.about-mission__container-1 {
    max-width: 1000px;
}

.about-mission ul {
    padding-left: 0;
}

.about-mission__li {
    list-style: none;
}

.about-mission__li:before {
    content: "\2022";
    margin-right: 10px;
}

.about-mission__image-1 {
    position: relative;
}

.about-mission__image-2 {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 15%;
    width: 40%;
}

@media only screen and (max-width: 1199px) {
    .about-mission__image-2 {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
    }

    .about-mission__negative-margin {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 575px) {
    .about-mission__image-2 {
        width: 90%;
    }

    .about-mission__container-2 {
        padding: 0;
    }
    .about-mission__container-1 {
        padding: 0 15px;
    }

    .about-mission {
        padding: 30px 0;
    }
}

.about-our-team {
    padding: 30px 0;
    margin: 0 auto;
    position: relative;
}

.about-our-team__container-1 {
    /*        max-width: 1000px;*/
    /*        ORIGINAL is 1000xp*/
    max-width: 1200px;
}

.about-our-team__grey-bg {
    position: absolute;
    width: 40%;
    height: 1200px;
    background-color: #e2e2e2;
    left: 0;
    z-index: -1;
}

.about-our-team__number-wrapper {
    padding: 0 15px;
    white-space: nowrap;
}

.about-our-team__big-number {
    font-size: 200px;
    color: #567981;
}

.about-our-team__rotated-text {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-transform: rotate(180deg) translateY(-15px) translateX(-10px);
    transform: rotate(180deg) translateY(-15px) translateX(-10px);
    text-transform: uppercase;
    text-align: left;
    color: #567981;
}

.about-our-team__button {
    padding: 15px 60px;
    text-transform: uppercase;
    display: inline-block;
    color: #567981;
    border: 3px solid #ddbb4c;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.about-our-team__button:hover {
    color: #fff;
    background-color: #ddbb4c;
}

@media only screen and (max-width: 991px) {
    .about-our-team__big-number {
        font-size: 120px;
    }
    .about-our-team__grey-bg {
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .about-our-team__rotated-text {
        -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
        writing-mode: initial;
        -webkit-transform: none;
        transform: none;
        display: inline-block;
        padding-left: 10px;
    }
    .about-our-team__number-wrapper {
        text-align: right !important;
        max-width: 500px;
        display: inline-block;

    }
}

@media only screen and (max-width: 575px) {
    .about-our-team__button,
    .about-our-team__button:hover {
        display: block;
        padding: 10px 30px;
    }
}

.about-timeline-profile {
    padding: 120px 0;
    position: relative;
    left: 100px;
}

/*
    TIMELINE PART
    ========================
    ========================
*/

.about-timeline-profile__timeline-container {
    display: block;
    background-color: #567981;
    padding: 60px 100px;
    z-index: 6;
    position: relative;
}

.about-timeline-profile__timeline-paragraph {
    color: white;
    padding: 120px 140px 180px 30px;
    margin-bottom: 0;
}

.about-timeline-profile__timeline-photo-container {
    position: relative;
    z-index: 7;
    top: -120px;
    top: -20%;
    left: -200px;
    left: -40%;
}

.about-timeline-profile__carousel-arrows {
    color: white;
    text-align: center;
    display: block;
    /*        background-color: red;*/
    width: 240px;
    height: 60px;
    position: absolute;
    top: 25%;
    left: -10%;
    border-bottom: 2px solid white;
}
/*
    PROFILE PART
    ========================
    ========================
*/

.about-timeline-profile__profile-container {
    position: relative;
    z-index: 5;
    top: -120px;
    top: -20%;
    left: -60px;
    left: -10%;
    display: block;
    background-color: #303030;
    min-height: 600px;
    padding: 220px 100px 0 140px;
}

.about-timeline-profile__profile-paragraph {
    color: white;
    padding: 30px 60px;
    margin-bottom: 0;
}

.about-timeline-profile__profile-ppt-container {
    background-color: #ddbb4c;
    display: block;
    height: 100%;
    position: relative;
    top: -200px;
    top: -30%;
    left: -200px;
    left: -40%;
    padding: 320px 0 0 140px;
    color: #fff;
}

@media only screen and (max-width: 1199px) {
    .about-timeline-profile__timeline-paragraph {
        padding: 60px 30px;
    }

    .about-timeline-profile__profile-container {
        min-height: 0;
        padding: 60px 0;
    }
    .about-timeline-profile__profile-paragraph {
        padding: 60px 30px;
    }
    .about-timeline-profile__profile-ppt-container {
        padding: 60px 0;
    }

    .about-timeline-profile,
    .about-timeline-profile__timeline-photo-container,
    .about-timeline-profile__profile-container,
    .about-timeline-profile__profile-ppt-container {
        position: static;
    }
    .about-timeline-profile__carousel-arrows {
        top: unset;
        bottom: 5%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media only screen and (max-width: 575px) {
    .about-timeline-profile__timeline-paragraph,
    .about-timeline-profile__profile-paragraph {
        padding: 30px 15px;
    }

    .about-timeline-profile__profile-container,
    .about-timeline-profile__timeline-container {
        padding: 30px;
    }

    .about-timeline-profile {
        padding: 90px 0;
    }

    .about-timeline-profile .container-custom {
        padding: 0;
    }

    .about-timeline-profile__profile-ppt-container {
        margin: 0 30px;
        padding: 30px 0;
    }


}

.about-qa {
    padding-bottom: 100px;
}

.about-qa__container {
    position: relative;
}

.about-qa__inner {
    position: absolute;
    width: 50%;
    /*        height: 100%;*/
    padding: 30px 60px;
    background-color: #567981;
    top: 60px;
    left: 50%;
    color: white;
    line-height: 35px;
}

.about-qa img {
    max-height: 563px;
}

.about-qa ul {
    padding-left: 0;
}

.about-qa__li {
    list-style: none;
    text-indent: -15px;
    margin-bottom: 5px;
}

.about-qa__li:before {
    content: "\2022";
    margin-right: 10px;
}

@media only screen and (max-width: 1199px) {
    .about-qa img {
        max-height: 100%;
    }
    .about-qa__inner {
        position: static;
        width: 100%;
    }
}

@media only screen and (max-width: 575px) {
    .about-qa {
        text-align: center;
    }
    .about-qa__inner {
        padding: 30px;
    }
    .about-qa .container-custom-2 {
        padding: 0;
    }
    .about-qa {
        padding-bottom: 90px;
    }
}

.about-core-values {
    padding: 100px 0;
}

.about-core-values__inner {
    position: absolute;
    min-width: 70%;
    width: 800px;
    padding: 60px;
    background-color: #567981;
    top: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    right: 100%;
    color: white;
    line-height: 35px;
}

.about-core-values__img-container {
    max-width: 70%;
    position: relative;
    text-align: right;
    display: inline-block;
}

.about-core-values ul {
    padding-left: 0;
}

.about-core-values__li {
    list-style: none;
    text-indent: -15px;
    margin-bottom: 5px;
}

.about-core-values__li:before {
    content: "\2022";
    margin-right: 10px;
}

@media only screen and (max-width: 1199px) {
    .about-core-values__img-container {
        max-width: 100%;
        position: static;
    }
    .about-core-values__inner {
        position: static;
        width: 100%;
        -webkit-transform: none;
        transform: none;
    }
    .about-core-values {
        padding: 60px 0;
    }
}

@media only screen and (max-width: 991px) {
    .about-core-values {
        padding: 0;
    }
}

@media only screen and (max-width: 575px) {

    .about-core-values .container-fluid {
        padding: 0;
    }
}

.about-social-responsibility {
    position: relative;
    padding: 100px 0;
}

.about-social-responsibility__grey-bg {
    width: 100%;
    height: 350px;
    background-color: #e2e2e2;
    position: absolute;
    bottom: 0;
}

.about-social-responsibility__col1 {
    background-color: #567981;
    color: white;
    position: relative;
    z-index: 1;
}

.about-social-responsibility__col1,
.about-social-responsibility__col2 {
    padding: 60px 30px;
    margin: 60px 0;
}

.about-social-responsibility__col2 {
    background-color: #f4f4f4;
    position: relative;
    top: 30px;
    left: -60px;
    z-index: 0;
}

.about-social-responsibility ul {
    padding-left: 0;
    line-height: 35px;
}

.about-social-responsibility__li {
    list-style: none;
    text-indent: -15px;
    margin-bottom: 5px;
}

.about-social-responsibility__li:before {
    content: "\2022";
    margin-right: 10px;
}

@media only screen and (max-width: 1199px) {
    .about-social-responsibility__col2 {
        position: static;
    }
    .about-social-responsibility__col1,
    .about-social-responsibility__col2 {
        margin: 0;
    }
}

@media only screen and (max-width: 575px) {
    .about-social-responsibility {
        padding: 90px 0 0 0;
    }
    .about-social-responsibility__p {
        line-height: 30px;
        padding: 30px 0;
    }
    .about-social-responsibility .container-custom-2 {
        padding: 0;
    }
    .about-social-responsibility__grey-bg {
        top: 15%;
        width: 50%;
    }
}

.member-of {
    background-color: #e2e2e2;
    text-align: right;
    position: relative;
    color: #fff;
}

.member-of__yellow-bg {
    position: absolute;
    width: 100%;
    height: 80%;
    background-color: #ddbb4c;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.member-of__container {
    padding: 30px 0;
    z-index: 1;
    position: relative;
    display: inline-block;
    width: 90%;
    background-color: #567981;
}

.member-of__images {
    padding: 0 30px;
    display: inline-block;
    max-width: 600px;
    background-color: #567981;
    z-index: 5;
}

.member-of__images img {
    padding: 10px;
}

.member-of__title {
    padding: 10px 0px 10px 60px;
    background-color: #567981;
    z-index: 5;
}

.member-of__container::before {
    position: absolute;
    content: '';
    left: calc(-5%);
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    display: block;
    height: 2px;
    width: 1500px;
}

@media only screen and (max-width: 991px) {
    .member-of__title {
        padding: 10px;
    }
    .member-of__container::before {
        display: none;
    }

    .member-of__images {
        margin: 0 auto;
        display: block;
    }

    .member-of__title::after {
        content: '';
        display: block;
        background-color: #fff;
        height: 2px;
        margin-top: 10px;
    }
}

@media only screen and (max-width: 575px) {
    .member-of__title::after {
        position: relative;
        left: -20px;
    }
    .member-of {
        background-color: #f4f4f4;
    }
    .member-of__yellow-bg {
        height: 95%;
    }
}

.generic-article-container {
    position: relative;
    color: #567981;
}

.generic-article-container__main-col img {
    display: block;
    margin: 0 auto;
    padding: 30px 0;
    max-width: 100%;
    height: auto;
}

.generic-article-container__main-col p,
.generic-article-container__main-col li {
    line-height: 30px !important;
}

.generic-article-container__main-col p,
.generic-article-container__main-col ul {
    margin-bottom: 30px;
}

.generic-article-container__main-col {
    padding: 60px 120px;
    background-color: #fff;
}

.generic-article-container__main-col ul {
    padding-left: 20px;
}

.generic-article-container__main-col li {
    list-style: none;
    text-indent: -15px;
    margin-bottom: 5px;
}

.generic-article-container__main-col li:before {
    content: "\2022";
    margin-right: 10px;
}

.generic-article-container__share-this-col {
    background-color: #fff;
    padding: 30px 0;
}

.generic-article-container__share-this {
    position: relative;
    padding-bottom: 15px;
}

.generic-article-container__share-this::after {
    position: absolute;
    content: '';
    display: inline-block;
    height: 2px;
    width: 100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #ddbb4c;
    bottom: 0;
}

@media only screen and (max-width: 991px) {
    .generic-article-container__main-col {
        padding: 30px 60px;
    }
}

@media only screen and (max-width: 575px) {
    .generic-article-container__main-col {
        padding: 15px 30px;
    }
}

.career-container {
    padding: 60px 0;
}

.career-container__intro-paragraph {
    padding: 30px 120px;
    line-height: 35px !important;
}

.career-container .card {
    position: relative;
    border: 0;
    border-radius: 0;
    background-color: transparent;
}

.career-container .card-header {
    background-color: #567981;
    color: #fff;
    border: 0;
    border-radius: 0;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.career-container .card-header {
    padding: 30px 60px;
    cursor: pointer;
}

.career-container .card::after {
    position: absolute;
    content: '';
    display: block;
    height: 1px;
    background-color: #fff;
    width: 90%;
    left: 5%;
    text-align: center;
    bottom: 0;
}

.career-container .card:last-child::after {
    display: none;
}

.career-container .card-body {
    padding: 30px 90px;
}

.career-container__close {
    color: #ddbb4c;
    text-transform: uppercase;
}

.career-container__close::before {
    content: '';
    vertical-align: middle;
    display: inline-block;
    background-color: #ddbb4c;
    height: 2px;
    width: 15px;
    margin: 0 15px;
}

.career-container ul {
    padding-left: 20px;
}

.career-container li {
    list-style: none;
    text-indent: -15px;
    margin-bottom: 5px;
}

.career-container li:before {
    content: "\2022";
    margin-right: 10px;
}

@media only screen and (max-width: 991px) {
    .career-container__intro-paragraph {
        padding: 15px 60px;
        line-height: auto !important;
    }
    .career-container .card-body {
        padding: 15px 30px;
    }
}

@media only screen and (max-width: 575px) {
    .career-container__intro-paragraph {
        padding: 15px;
        line-height: auto !important;
    }
    .career-container .card-header {
        padding: 20px;
    }
    .career-container .card-body {
        padding: 15px;
    }
}

.platform-container {
    padding: 60px 0;
    background: linear-gradient(to bottom, transparent 40%, #e2e2e2 40%, #e2e2e2 100%);
}

.platform-container__item {
    position: relative;
    display: inline-block;
}

.platform-container__item-title {
    color: #fff;
    position: absolute;
    width: 70%;
    bottom: 0;
    padding: 15px;
    text-transform: uppercase;
    z-index: 10;
}

.platform-container__read-more {
    color: #fff;
    position: absolute;
    display: inline-block;
    right: -1%;
    bottom: 0;
    text-transform: uppercase;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.platform-container__mask {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.platform-container__link:hover .platform-container__read-more,
.platform-container__link:hover .platform-container__mask {
    opacity: 1;
}

@media only screen and (max-width: 1199px) {
    .platform-container__read-more {
        display: none;
    }

    .platform-container__item-title {
        width: 100%;
    }
}

@media only screen and (max-width: 575px) {
    .platform-container {
        padding: 30px 0;

    }
}

.customers-main-container {
    padding: 60px 0;
    background: linear-gradient(to bottom, transparent 70%, #e2e2e2 70%, #e2e2e2 100%);

}

.customers-main-container__intro-paragraph {
    padding: 30px 120px;
    line-height: 35px !important;
}

.customers-main-container__item {
    position: relative;
    display: inline-block;
}

.customers-main-container__item-title {
    color: #fff;
    position: absolute;
    width: 70%;
    bottom: 0;
    padding: 15px;
    text-transform: uppercase;
    z-index: 10;
}

.customers-main-container__read-more {
    color: #fff;
    position: absolute;
    display: inline-block;
    right: -2.5%;
    bottom: 0;
    text-transform: uppercase;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.customers-main-container__mask {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.customers-main-container__link:hover .customers-main-container__read-more,
.customers-main-container__link:hover .customers-main-container__mask {
    opacity: 1;
}

.customers-main-container__triple-cols-container {
    padding: 60px 30px;
}

@media only screen and (max-width: 1199px) {
    .customers-main-container__read-more {
        display: none;
    }

    .customers-main-container__item-title {
        width: 100%;
    }
}

@media only screen and (max-width: 991px) {
    .customers-main-container {
        padding: 30px 0;
    }
    .customers-main-container__triple-cols-container {
        padding: 30px 15px;
    }
    .customers-main-container__intro-paragraph {
        padding: 15px 60px;
        line-height: auto !important;
    }
}

@media only screen and (max-width: 575px) {
    .customers-main-container {
        background: linear-gradient(to bottom, transparent 80%, #e2e2e2 80%, #e2e2e2 100%);
    }
    .customers-main-container__intro-paragraph {
        padding: 15px;
        line-height: auto !important;
    }

    .customers-main-container__triple-cols-container img {
        max-height: 350px;
    }
}

.customers-others-container {
    background-color: #e2e2e2;
}

.customers-others-container__list {
    -webkit-columns: 3;
    columns: 3;
    list-style-type: none;
    padding: 120px 0;
    color: #567981;
}

.customers-others-container__list li {
    margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
    .customers-others-container__list {
        -webkit-columns: 3;
        columns: 3;
        padding: 60px 0;
    }
}

@media only screen and (max-width: 575px) {
    .customers-others-container__list {
        -webkit-columns: 2;
        columns: 2;
        padding: 30px 0;

    }
}

.news-article-page-header {
    color: #567981;
    padding-top: 100px;
}

.news-article-page-header__title {
    position: relative;
    padding: 0 120px;
}

.news-article-page-header__title::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 5px;
    max-width: 650px;
    width: 60%;
    background-color: #ddbb4c;
    text-align: center;
}

@media only screen and (max-width: 991px) {
    .news-article-page-header {
        padding-top: 30px;
    }
    .news-article-page-header__title {
        padding: 0 30px;
    }
}

@media only screen and (max-width: 575px) {
    .news-article-page-header {
        padding-top: 15px;
    }
    .news-article-page-header__title {
        padding: 0;
    }
}

.contact-hello {
    padding: 120px 0;
    position: relative;
    left: 120px;
}

.contact-hello__col-1 {
    background-color: #567981;
    padding: 60px 240px 60px 60px;
    color: #fff;
}

.contact-hello__col-1-paragraph {
    padding: 30px;
    line-height: 35px;
}

.contact-hello__col-2 {
    background-color: #fff;
    padding: 30px;
    height: 80%;
    top: 10%;
    left: -240px;
    position: relative;
}

.contact-hello__form .form-control {
    padding: 15px;
    border: 0;
    border-radius: 0;
    background-color: #eeeeee;
}

.contact-hello__form .form-control.has-error {
    border: 1px solid red;
}

@media only screen and (max-width: 1199px) {
    .contact-hello {
        left: 60px;
    }
    .contact-hello__col-2 {
        left: -120px;
    }
    .contact-hello__col-1 {
        padding: 60px 120px 60px 60px;
    }
}

@media only screen and (max-width: 991px) {
    .contact-hello,
    .contact-hello__col-2 {
        position: static;
        height: auto;
        width: auto;
    }

    .contact-hello__col-1 {
        padding: 30px;
    }

    .contact-hello {
        padding: 60px 0;
    }
}

@media only screen and (max-width: 575px) {
    .contact-hello {
        padding: 30px 0 0 0;
    }
    .contact-hello .container-custom-2 {
        padding: 0;
    }
}

.contact-map__map-container #map {
    height: 600px;
}

.contact-map__map-container {
    position: relative;
}

.contact-map__map-info {
    position: absolute;
    max-width: 25%;
    min-width: 500px;
    height: 60%;
    background-color: #567981;
    left: 5%;
    top: 20%;
    z-index: 100;
    padding: 30px 60px;
    color: #fff;
    line-height: 35px;
}

@media only screen and (max-width: 1199px) {
    .contact-map__map-info {
        min-width: 360px;
        height: 50%;
        left: 3%;
        top: 25%;
        padding: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .contact-map__map-info {
        position: static;
        max-width: none;
        min-width: 0;
        width: 100%;
        padding: 30px;
    }
    .contact-map__map-container #map {
        height: 400px;
    }
}

.projects {
    padding: 60px 0;
}

.projects__filters {
    background-color: #567981;
    list-style-type: none;
    padding: 15px;
    text-align: center;
    margin: 0;
}

.projects__filters-li {
    white-space: nowrap;
    display: inline-block;
    margin: 15px 60px 15px 0;
    text-transform: uppercase;
    color: #fff;
}

.projects__filters-circle {
    display: inline-block;
    border-radius: 50%;
    background-color: #567981;
    height: 18px;
    width: 18px;
    position: relative;
    vertical-align: middle;
    margin-right: 15px;
    margin: 5px 15px 5px 0;
    transition: all 0.3s ease;
}

.projects__filters-li:hover .projects__filters-circle {
    background-color: #ddbb4c;
}

.projects__filters-circle::after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    border: 1px solid #ddbb4c;
    -webkit-transform: translate(-50%, -50%) scale(1.4);
    transform: translate(-50%, -50%) scale(1.4);
    transition: all 0.3s ease;
}

.projects__filters-li:hover .projects__filters-circle::after {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.projects__filters-li.active .projects__filters-circle {
    background-color: #ddbb4c;
}

.projects__grid {
    margin-top: 60px;
}

.projects__project-container {
    padding: 15px;
    -webkit-transform: matrix(1, 0, 0, 1, 0, 100);
    transform: matrix(1, 0, 0, 1, 0, 100);
    opacity: 0;
}

.projects__project-img-container {
    position: relative;
    display: inline-block;
}

.projects__read-more {
    color: #fff;
    position: absolute;
    display: inline-block;
    right: -2%;
    bottom: 0;
    text-transform: uppercase;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.projects__mask {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.projects__link:hover .projects__read-more,
.projects__link:hover .projects__mask {
    opacity: 1;
}

/*FILTERS MODAL
    =================================
    =================================
*/

.projects__filters-container {
    position: relative;
}

.projects__filters-modal {
    padding: 30px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    /*        height: 100%;*/
}

.projects .modal-header {
    background-color: #567981;
}

.projects .modal-header .close {
    opacity: 1;
}

.projects .modal-body {
    padding: 0;
}

.projects .modal, .projects .modal-header, .projects .modal-content {
    border: 0;
    border-radius: 0;
}

.projects .modal .projects__filters-li {
    display: block;
    margin-bottom: 30px;
}

/*END FILTERS MODAL
    =================================
    =================================
*/

.projects__grid .row [class*='col-']:nth-child(even) .projects__project-container {
    margin-top: 100px;
}

@media only screen and (max-width: 1199px) {
    .projects__filters {
        padding-left: 30px;
        text-align: left;
    }
}

@media only screen and (max-width: 991px) {
    .projects__grid .row [class*='col-']:nth-child(even) .projects__project-container {
        margin-top: 0;
    }
    .projects__grid {
        margin-top: 30px;
    }
    .projects__project-container {
        padding: 30px 0;
    }
}

@media only screen and (max-width: 575px) {
    .projects__filters-li {
        display: block;
    }
    .projects__filters {
        text-align: left;
    }
    .projects .container-custom-2 {
        padding: 0 0 15px 0;
    }
    .projects__grid {
        margin-top: 15px;
    }
    .projects {
        padding: 30px 15px;
    }
}

.pagination {
    border-top: 1px solid #567981;
    border-radius: 0;
    padding: 15px 0;
    margin: 60px 0;
}

/*ACTIVE*/

.pagination__page-item.active .pagination__page-link::after {
    content: '';
    display: block;
    width: 90%;
    left: 5%;
    position: absolute;
    height: 4px;
    background-color: #ddbb4c;
    margin-top: 10px;
    transition: width 0.3s ease;
}

/*HOVER*/

.pagination__page-link::after {
    content: '';
    display: block;
    width: 0;
    left: 5%;
    position: absolute;
    height: 4px;
    background-color: #ddbb4c;
    margin-top: 10px;
    transition: width 0.3s ease;
}

.pagination__page-item.active .pagination__page-link::after,
.pagination__page-link:hover::after {
    width: 90%;
}

.pagination__page-link,
.pagination__page-link:hover {
    padding: 15px 0 5px 0;
    margin: 0 10px;
    position: relative;
    display: block;
    color: #567981;
    min-width: 40px;
}

.pagination__page-link:hover {
    font-weight: 700;
}

@media only screen and (max-width: 575px) {
    .pagination__page-link,
    .pagination__page-link:hover {
        min-width: 38px;
    }

}

.news {
    padding: 60px 0;
}

.news__tags-container {
    position: relative;
}

.news__tags {
    padding: 0;
    text-align: center;
}

.news__tags::after {
    content: '';
    display: block;
    width: 120px;
    text-align: center;
    margin: 30px auto;
    height: 2px;
    background-color: #ddbb4c;
}

.news__tags-li {
    white-space: nowrap;
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    background-color: #919191;
    padding: 6px;
    margin: 3px;
    transition: all 0.3s ease;
}
.news__tags-li--wrap {
    white-space: unset;
}

.news__tags-li.active,
.news__tags-li:hover {
    background-color: #567981;
}

/*TAGS MODAL
    =================================
    =================================*/

.news__tags-modal-toggle {
    padding: 30px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.news .modal-header {
    background-color: #567981;
}

.news .modal-header .close {
    opacity: 1;
}

.news .modal-body {
    padding: 0;
}

.news .modal,
.news .modal-header,
.news .modal-content {
    border: 0;
    border-radius: 0;
}

.news .modal .news__modal-tags {
    background-color: #567981;
    display: block;
    padding: 0;
    margin: 0;
    padding-bottom: 30px;
}

/*GRID
    =================================
    =================================*/

.news__featured-article {
    margin: 60px 0;
}

.news__grid-featured-col1 {
    text-align: right;
    position: relative;
    left: 60px;
    z-index: 5;
}

.news__grid-featured-col2 {
    max-width: 650px;
    display: inline-block;
    background-color: #567981;
    color: #fff;
    height: 110%;
    top: -5%;
    position: relative;
    right: 60px;
    padding: 60px;
    padding-left: 120px;
}

.news__new-container {
    display: inline-block;
    background-color: #fff;
    color: #567981;
    max-width: 500px;
    text-align: left;
}

.news__new-under-img {
    padding: 30px;
}

.news__grid-tags {
    background-color: #567981;
    color: #fff;
    padding: 10px 15px;
}

.news__grid-2 .row [class*='col-']:nth-child(even) .news__new-container {
    margin-top: 100px;
}

@media only screen and (max-width: 1439px) {
    .news__grid-featured-col2 {
        height: 102%;
        top: -1%;
    }
}

@media only screen and (max-width: 1199px) {
    .news__tags {
        background-color: #567981;
        padding: 15px;
        margin: 0;
        text-align: left;
    }

    .news__tags-li:not(.active) {
        display: none;
    }

    .news__modal-tags .news__tags-li:not(.active) {
        display: inline-block;
    }
    .news__modal-tags .news__tags-li {
        background-color: transparent;
    }

    .news__modal-tags .news__tags-li.active {
        background-color: #fff;
        color: #567981;
    }


    .news__tags::after {
        display: none;
    }

    .news__tags-accordion-toggle {
        display: none;
    }
    .news__new-container {
        margin-top: 30px !important;
    }
    .news__grid-featured-col1,
    .news__grid-featured-col2 {
        position: static;
        text-align: center;
        max-width: none;
    }

    .news__grid-featured-col2 {
        padding: 60px;
        height: auto;
    }
}

@media only screen and (max-width: 575px) {
    .news__featured-article {
        margin: auto;
        margin-right: -15px;
        margin-left: -15px;
    }
    .news .container-custom-2, .news .container-custom {
        padding: 0 0 15px 0;
    }
    .news {
        padding: 30px 15px;
    }
    .news__grid-featured-col2 {
        padding: 30px;
    }
}

.js-img-animation {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    /*
    Added vertical align because overflow hidden adds a padding.
    Ref: https://stackoverflow.com/questions/25818199/why-does-overflow-hidden-add-additional-height-to-an-inline-block-element
    */
}

.js-img-animation img {
    /*Start the opacity of the image at 0 so we can reveal it later*/
    opacity: 0;
}

.js-img-animation__after {
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    display: inline-block;
    background-color: #ddbb4c;
}

.js-img-animation--green .js-img-animation__after {
    background-color: #567981;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ddbb4c;
    z-index: 9999;
}


