@-webkit-keyframes buzz {
    50% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    100% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
}

@keyframes buzz {
    50% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    100% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
}

@-webkit-keyframes bob {
    0% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }

    50% {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
    }

    100% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}

@keyframes bob {
    0% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }

    50% {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
    }

    100% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}

@-webkit-keyframes bob-float {
    100% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}

@keyframes bob-float {
    100% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(-50%, 60%, 0);
        transform: translate3d(-50%, 60%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(-50%, 60%, 0);
        transform: translate3d(-50%, 60%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(-50%, -100%, 0);
        transform: translate3d(-50%, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(-50%, -100%, 0);
        transform: translate3d(-50%, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

@-webkit-keyframes slideInDownNormal {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDownNormal {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes slideInUpNormal {
    from {
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUpNormal {
    from {
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animated {
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.delay-1 {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.delay-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.delay-3 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.delay-4 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBtn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-50%, 100px, 0);
        transform: translate3d(-50%, 100px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes fadeInUpBtn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-50%, 100px, 0);
        transform: translate3d(-50%, 100px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

.fadeInUpBtn {
    -webkit-animation-name: fadeInUpBtn;
    animation-name: fadeInUpBtn;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100px, 0, 0);
        transform: translate3d(-100px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100px 0, 0);
        transform: translate3d(-100px 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100px, 0);
        transform: translate3d(0, -100px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100px, 0);
        transform: translate3d(0, -100px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@font-face {
    font-family: Circe;
    src: local("Circe-Regular"), local("Circe-Regular"), url(/fonts/Circe-Regular.woff2?v=hcyUTgN-slWr8Wa1VNIw29y15LM) format("woff2"), url(/fonts/Circe-Regular.woff?v=hcyUTgN-slWr8Wa1VNIw29y15LM) format("woff"), url(/fonts/Circe-Regular.ttf?v=hcyUTgN-slWr8Wa1VNIw29y15LM) format("truetype"), url(/fonts/Circe-Regular.svg#Circe-Regular) format("svg");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: Circe;
    src: local("Circe-Light"), local("Circe-Light"), url(/fonts/Circe-Light.woff2?v=hcyUTgN-slWr8Wa1VNIw29y15LM) format("woff2"), url(/fonts/Circe-Light.woff?v=hcyUTgN-slWr8Wa1VNIw29y15LM) format("woff"), url(/fonts/Circe-Light.ttf?v=hcyUTgN-slWr8Wa1VNIw29y15LM) format("truetype"), url(/fonts/Circe-Light.svg#Circe-Light) format("svg");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: Circe;
    src: local("Circe-Bold"), local("Circe-Bold"), url(/fonts/Circe-Bold.woff2?v=hcyUTgN-slWr8Wa1VNIw29y15LM) format("woff2"), url(/fonts/Circe-Bold.woff?v=hcyUTgN-slWr8Wa1VNIw29y15LM) format("woff"), url(/fonts/Circe-Bold.ttf?v=hcyUTgN-slWr8Wa1VNIw29y15LM) format("truetype"), url(/fonts/Circe-Bold.svg#Circe-Bold) format("svg");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: Circe;
    src: local("Circe-ExtraBold"), local("Circe-ExtraBold"), url(/fonts/Circe-ExtraBold.woff2?v=hcyUTgN-slWr8Wa1VNIw29y15LM) format("woff2"), url(/fonts/Circe-ExtraBold.woff?v=hcyUTgN-slWr8Wa1VNIw29y15LM) format("woff"), url(/fonts/Circe-ExtraBold.ttf?v=hcyUTgN-slWr8Wa1VNIw29y15LM) format("truetype"), url(/fonts/Circe-ExtraBold.svg#Circe-ExtraBold) format("svg");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "Unthrift Second Personal";
    src: local("UnthriftSecondPersonal"), local("UnthriftSecondPersonal"), url(/fonts/UnthriftSecondPersonal.woff2?v=hcyUTgN-slWr8Wa1VNIw29y15LM) format("woff2"), url(/fonts/UnthriftSecondPersonal.woff?v=hcyUTgN-slWr8Wa1VNIw29y15LM) format("woff"), url(/fonts/UnthriftSecondPersonal.ttf?v=hcyUTgN-slWr8Wa1VNIw29y15LM) format("truetype"), url(/fonts/UnthriftSecondPersonal.svg#UnthriftSecondPersonal) format("svg");
    font-weight: 400;
    font-style: normal;
}

.navbar .navbar-nav .nav-item .nav-link {
    font-size: 15.5px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .navbar .navbar-nav .nav-item .nav-link {
        font-size: 14px;
        letter-spacing: 1.4px;
    }
}

@media (max-width: 768px) {
    .navbar .navbar-nav .nav-item .nav-link {
        font-size: 16px;
        letter-spacing: 1.7px;
    }
}

.slider-section
.blog-slider__item
.blog-slider__content
.blog-slider__title
h1 {
    font-weight: 300;
    text-transform: uppercase;
    line-height: 41.5px;
    letter-spacing: 1px;
    font-size: 40.5px;
    color: #18435c;
}

@media (max-width: 1366px) {
    .slider-section
    .blog-slider__item
    .blog-slider__content
    .blog-slider__title
    h1 {
        font-size: 38.5px;
        line-height: 39.5px;
    }
}

@media (max-width: 1024px) {
    .slider-section
    .blog-slider__item
    .blog-slider__content
    .blog-slider__title
    h1 {
        font-size: 30.5px;
        line-height: 33.5px;
    }
}

.slider-section .blog-slider__item .blog-slider__content .blog-slider__text h2 {
    font-size: 15.5px;
    letter-spacing: 1.16px;
    line-height: 27px;
    color: #95a3ab;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 1024px) {
    .slider-section
    .blog-slider__item
    .blog-slider__content
    .blog-slider__text
    h2 {
        font-size: 13.5px;
        letter-spacing: 1px;
        line-height: 25px;
    }
}

.title-box h4 {
    font-family: "Unthrift Second Personal";
    color: #3d8da5;
    font-size: 48px;
    line-height: 50px;
    margin: 0;
}

@media (max-width: 1024px) {
    .title-box h4 {
        font-size: 44px;
        line-height: 46px;
    }
}

@media (max-width: 767px) {
    .title-box h4 {
        font-size: 36px;
        line-height: 30px;
    }
}

.title-box h1 {
    font-size: 35.5px;
    letter-spacing: 7.1px;
    text-transform: uppercase;
    color: #fff;
    line-height: 36px;
}

@media (max-width: 1024px) {
    .title-box h1 {
        font-size: 33.5px;
        letter-spacing: 6.1px;
    }
}

@media (max-width: 767px) {
    .title-box h1 {
        font-size: 28px;
        letter-spacing: 4px;
        line-height: 33px;
    }
}

.top-title-section-contact .text-box p,
.top-title-section-investiments .text-box h2 {
    color: #839097;
    font-size: 16.8px;
    line-height: 26px;
    letter-spacing: 1.68px;
}

@media (max-width: 767px) {
    .top-title-section-contact .text-box p,
    .top-title-section-investiments .text-box h2 {
        font-size: 15.2px;
        line-height: 24px;
        letter-spacing: 1.1px;
    }
}

.investiments-section .card .card-body .box-about .text-about p {
    font-size: 15.5px;
    line-height: 24px;
    letter-spacing: 1.16px;
    color: #839097;
    margin: 0;
}

@media (max-width: 767px) {
    .investiments-section .card .card-body .box-about .text-about p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 1px;
    }
}

.investiments-section .card .card-body .box-about .tags ul li h2 {
    color: #3d8da5;
    font-size: 14.5px;
    line-height: 16.8px;
    letter-spacing: 0.72px;
}

@media (max-width: 767px) {
    .investiments-section .card .card-body .box-about .tags ul li h2 {
        font-size: 13px;
        letter-spacing: 0.6px;
    }
}

.investiments-section .card .card-body .box-testimonial .text p {
    font-size: 15.5px;
    line-height: 23px;
    letter-spacing: 0.78px;
    color: #fff;
    margin: 0;
}

@media (max-width: 767px) {
    .investiments-section .card .card-body .box-testimonial .text p {
        font-size: 13.5px;
        line-height: 21px;
        letter-spacing: 0.45px;
    }
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Circe;
    font-weight: 400;
}

a:active,
a:after,
a:before,
a:focus,
a:hover,
a:visited,
button:active,
button:after,
button:before,
button:focus,
button:hover,
button:visited {
    outline: 0;
    text-decoration: none;
}

.block-desk {
    display: block;
}

@media (max-width: 767px) {
    .block-desk {
        display: inline;
    }
}

.p-w {
    padding: 0 50px;
}

@media (max-width: 1366px) {
    .p-w {
        padding: 0 25px;
    }
}

@media (max-width: 768px) {
    .p-w {
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    .p-w {
        padding: 0;
    }
}

.m-w {
    margin: 0 50px;
}

@media (max-width: 768px) {
    .m-w {
        margin: 0 20px;
    }
}

@media (max-width: 767px) {
    .m-w {
        margin: 0;
    }
}

.loader-box {
    position: fixed;
    right: 0;
    top: 100%;
    width: 100%;
    background-color: #fff;
    z-index: 1020;
    height: 100%;
    opacity: 0;
    overflow: hidden;
    transition: top 1s ease-in, opacity 20s ease-out;
}

    .loader-box.active-loader {
        opacity: 1;
        top: 0;
    }

.loader {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0 auto;
    text-align: center;
}

    .loader .svg {
        width: 80px;
        -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
        animation: heartbeat 1.5s ease-in-out infinite both;
        fill: #18435c;
    }

.home .loader-box {
    background: #18435c;
}

.home .loader .svg {
    fill: #fff;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 0.125rem 0.25rem transparent;
    padding-left: 50px;
    padding-right: 50px;
    transition: 0.7s all;
}

@media (max-width: 1024px) {
    .navbar {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 86px;
    }
}

@media (max-width: 767px) {
    .navbar {
        padding-left: 15px;
        padding-right: 15px;
        height: 70px;
    }
}

.navbar .navbar-brand {
    padding-top: 15px;
}

@media (max-width: 768px) {
    .navbar .navbar-brand {
        padding-top: 0;
    }
}

.navbar .navbar-brand .img-brand {
    width: 200px;
    fill: #18435c;
    transition: 0.7s all;
}

@media (max-width: 1024px) {
    .navbar .navbar-brand .img-brand {
        width: 185px;
    }
}

@media (max-width: 767px) {
    .navbar .navbar-brand .img-brand {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .navbar.white-mobile {
        background: #fff;
    }

        .navbar.white-mobile .navbar-brand .img-brand {
            fill: #18435c;
        }
}

@media (max-width: 768px) {
    .navbar .navbar-collapse {
        height: calc(100vh - 85px);
        background: #f2f3f3;
        position: fixed;
        width: 100%;
        right: 0;
        top: 86px;
        z-index: 555555555;
        padding: 40px 50px 25rem;
    }

        .navbar .navbar-collapse.collapsing {
            transition: right 0.3s ease;
            right: -100%;
        }

        .navbar .navbar-collapse.show {
            right: 0;
            transition: right 0.3s ease-in;
        }
}

@media (max-width: 767px) {
    .navbar .navbar-collapse {
        padding: 30px 15px 100px;
        height: calc(100% - 69px);
        top: 70px;
    }
}

@media (max-width: 768px) {
    .navbar .navbar-nav {
        height: 100%;
    }
}

.navbar .navbar-nav .nav-item {
    margin: 0 20px;
    position: relative;
}

@media (max-width: 1024px) {
    .navbar .navbar-nav .nav-item {
        margin: 0 15px;
    }
}

@media (max-width: 768px) {
    .navbar .navbar-nav .nav-item {
        margin: 10px 17px;
        height: 20%;
        align-items: center;
        display: flex;
        justify-content: start;
    }
}

.navbar .navbar-nav .nav-item:before {
    content: "";
    width: 1px;
    height: 0;
    background: #3d8da5;
    display: block;
    margin: 0 auto;
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    transition: height 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .navbar .navbar-nav .nav-item:before {
        display: none;
    }
}

.navbar .navbar-nav .nav-item .nav-link {
    color: #95a3ab;
    padding-bottom: 5px;
    transition: all 0.2s ease-in-out;
}

@media (max-width: 768px) {
    .navbar .navbar-nav .nav-item .nav-link {
        color: #18435c;
        text-align: left;
    }
}

.navbar .navbar-nav .nav-item.active:before,
.navbar .navbar-nav .nav-item:active:before,
.navbar .navbar-nav .nav-item:focus:before,
.navbar .navbar-nav .nav-item:hover:before {
    height: 45px;
}

.navbar .navbar-nav .nav-item.active .nav-link,
.navbar .navbar-nav .nav-item:active .nav-link,
.navbar .navbar-nav .nav-item:focus .nav-link,
.navbar .navbar-nav .nav-item:hover .nav-link {
    color: #18435c;
}

@media (max-width: 768px) {
    .navbar .navbar-nav .nav-item.active .nav-link,
    .navbar .navbar-nav .nav-item:active .nav-link,
    .navbar .navbar-nav .nav-item:focus .nav-link,
    .navbar .navbar-nav .nav-item:hover .nav-link {
        color: #3d8da5;
    }
}

.navbar.small {
    background-color: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

    .navbar.small .navbar-brand .img-brand {
        width: 160px;
        fill: #18435c;
    }

@media (max-width: 1024px) {
    .navbar.small .navbar-brand .img-brand {
        width: 145px;
    }
}

@media (max-width: 767px) {
    .navbar.small .navbar-brand .img-brand {
        width: 135px;
    }
}

.navbar.small .navbar-nav .nav-item:before {
    background: #3d8da5;
}

.navbar.small .navbar-nav .nav-item .nav-link {
    color: #95a3ab;
    font-size: 14.5px;
}

@media (max-width: 1024px) {
    .navbar.small .navbar-nav .nav-item .nav-link {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .navbar.small .navbar-nav .nav-item .nav-link {
        color: #18435c;
        font-size: 16px;
    }
}

.navbar.small .navbar-nav .nav-item.active:before,
.navbar.small .navbar-nav .nav-item:active:before,
.navbar.small .navbar-nav .nav-item:focus:before,
.navbar.small .navbar-nav .nav-item:hover:before {
    height: 48px;
}

.navbar.small .navbar-nav .nav-item.active .nav-link,
.navbar.small .navbar-nav .nav-item:active .nav-link,
.navbar.small .navbar-nav .nav-item:focus .nav-link,
.navbar.small .navbar-nav .nav-item:hover .nav-link {
    color: #18435c;
}

@media (max-width: 768px) {
    .navbar.small .navbar-nav .nav-item.active .nav-link,
    .navbar.small .navbar-nav .nav-item:active .nav-link,
    .navbar.small .navbar-nav .nav-item:focus .nav-link,
    .navbar.small .navbar-nav .nav-item:hover .nav-link {
        color: #3d8da5;
        font-size: 36px;
        letter-spacing: 2.3px;
    }
}

.navbar .navbar-toggler {
    border: none;
    background: 0 0 !important;
}

    .navbar .navbar-toggler:focus {
        outline: 0;
        background: 0 0 !important;
    }

    .navbar .navbar-toggler .icon-bar {
        background-color: #3d8da5;
        -webkit-transform: rotate(0) translate(0, 0);
        transform: rotate(0) translate(0, 0);
        transition: ease all 0.2s;
        display: block;
        width: 30px;
        height: 2px;
        border-radius: 1px;
    }

@media (max-width: 767px) {
    .navbar .navbar-toggler .icon-bar {
        width: 35px;
    }
}

.navbar .navbar-toggler .icon-bar + .icon-bar {
    margin-top: 6px;
}

@media (max-width: 767px) {
    .navbar .navbar-toggler .icon-bar + .icon-bar {
        margin-top: 5px;
    }
}

.navbar .navbar-toggler .icon-bar:nth-child(2) {
    transition: ease all 0.2s;
}

.navbar .navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(6px, 6px);
    transform: rotate(45deg) translate(6px, 6px);
    transition: ease all 0.2s;
}

@media (max-width: 767px) {
    .navbar .navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
        -webkit-transform: rotate(45deg) translate(5px, 5px);
        transform: rotate(45deg) translate(5px, 5px);
    }
}

.navbar .navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
    opacity: 0;
    transition: ease all 0.2s;
}

.navbar .navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(5px, -6px);
    transform: rotate(-45deg) translate(5px, -6px);
    transition: ease all 0.2s;
}

@media (max-width: 767px) {
    .navbar .navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
        -webkit-transform: rotate(-45deg) translate(4px, -5px);
        transform: rotate(-45deg) translate(4px, -5px);
    }
}

.lang-switcher {
    position: absolute;
    right: 20px;
    top: 5px;
    list-style: none;
    padding: 0;
}

@media (max-width: 768px) {
    .lang-switcher {
        position: relative;
        text-align: left;
        top: 0;
        right: 0;
        height: 15%;
        padding: 25px 0;
        margin: 0 0;
    }
}

@media (max-width: 767px) {
    .lang-switcher {
        padding: 10px 0;
    }
}

.lang-switcher li {
    display: inline-block;
    padding: 0 5px;
    text-transform: uppercase;
    font-size: 11.5px;
    color: #c4ced4;
    font-weight: 700;
    transition: color 0.3s ease-in-out;
    position: relative;
}

@media (max-width: 768px) {
    .lang-switcher li {
        padding: 0 10px;
        color: #18435c;
    }
}

.lang-switcher li a {
    font-size: 11.5px;
    color: #c4ced4;
    font-weight: 700;
    transition: color 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .lang-switcher li a {
        font-size: 16px;
        color: #18435c;
    }
}

.lang-switcher li:last-child:before {
    content: "";
    width: 2px;
    height: 2px;
    background-color: #18435c;
    display: inline-block;
    position: absolute;
    left: -2px;
    bottom: 5px;
}

.lang-switcher li.current-lang,
.lang-switcher li:active,
.lang-switcher li:focus,
.lang-switcher li:hover {
    color: #18435c;
}

@media (max-width: 768px) {
    .lang-switcher li.current-lang,
    .lang-switcher li:active,
    .lang-switcher li:focus,
    .lang-switcher li:hover {
        color: #3d8da5;
    }
}

.lang-switcher li.current-lang a,
.lang-switcher li:active a,
.lang-switcher li:focus a,
.lang-switcher li:hover a {
    color: #18435c;
}

@media (max-width: 768px) {
    .lang-switcher li.current-lang a,
    .lang-switcher li:active a,
    .lang-switcher li:focus a,
    .lang-switcher li:hover a {
        color: #3d8da5;
    }
}

.home .navbar {
    background-color: transparent;
}

    .home .navbar .navbar-brand .img-brand {
        fill: #fff;
    }

@media (max-width: 768px) {
    .home .navbar.white-mobile {
        background: #fff;
    }

        .home .navbar.white-mobile .navbar-brand .img-brand {
            fill: #18435c;
        }
}

.home .navbar .navbar-nav .nav-item:before {
    background: #fff;
}

.home .navbar .navbar-nav .nav-item .nav-link {
    color: #fff;
}

@media (max-width: 768px) {
    .home .navbar .navbar-nav .nav-item .nav-link {
        color: #18435c;
    }
}

.home .navbar .navbar-nav .nav-item.active .nav-link,
.home .navbar .navbar-nav .nav-item:active .nav-link,
.home .navbar .navbar-nav .nav-item:focus .nav-link,
.home .navbar .navbar-nav .nav-item:hover .nav-link {
    color: #3d8da5;
}

.home .navbar .lang-switcher li:last-child:before {
    background-color: #fff;
}

.home .navbar .lang-switcher li.current-lang,
.home .navbar .lang-switcher li:active,
.home .navbar .lang-switcher li:focus,
.home .navbar .lang-switcher li:hover {
    color: #3d8da5;
}

    .home .navbar .lang-switcher li.current-lang a,
    .home .navbar .lang-switcher li:active a,
    .home .navbar .lang-switcher li:focus a,
    .home .navbar .lang-switcher li:hover a {
        color: #3d8da5;
    }

.home .navbar.small {
    background-color: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

    .home .navbar.small .navbar-brand .img-brand {
        width: 160px;
        fill: #18435c;
    }

@media (max-width: 1024px) {
    .home .navbar.small .navbar-brand .img-brand {
        width: 145px;
    }
}

@media (max-width: 767px) {
    .home .navbar.small .navbar-brand .img-brand {
        width: 135px;
    }
}

.home .navbar.small .navbar-nav .nav-item:before {
    background: #3d8da5;
}

.home .navbar.small .navbar-nav .nav-item .nav-link {
    color: #95a3ab;
    font-size: 14.5px;
}

@media (max-width: 1024px) {
    .home .navbar.small .navbar-nav .nav-item .nav-link {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .home .navbar.small .navbar-nav .nav-item .nav-link {
        color: #18435c;
        font-size: 16px;
    }
}

.home .navbar.small .navbar-nav .nav-item.active:before,
.home .navbar.small .navbar-nav .nav-item:active:before,
.home .navbar.small .navbar-nav .nav-item:focus:before,
.home .navbar.small .navbar-nav .nav-item:hover:before {
    height: 48px;
}

.home .navbar.small .navbar-nav .nav-item.active .nav-link,
.home .navbar.small .navbar-nav .nav-item:active .nav-link,
.home .navbar.small .navbar-nav .nav-item:focus .nav-link,
.home .navbar.small .navbar-nav .nav-item:hover .nav-link {
    color: #18435c;
}

@media (max-width: 768px) {
    .home .navbar.small .navbar-nav .nav-item.active .nav-link,
    .home .navbar.small .navbar-nav .nav-item:active .nav-link,
    .home .navbar.small .navbar-nav .nav-item:focus .nav-link,
    .home .navbar.small .navbar-nav .nav-item:hover .nav-link {
        color: #3d8da5;
        font-size: 36px;
        letter-spacing: 2.3px;
    }
}

.home .navbar.small .lang-switcher li:last-child:before {
    background-color: #18435c;
}

.home .navbar.small .lang-switcher li.current-lang,
.home .navbar.small .lang-switcher li:active,
.home .navbar.small .lang-switcher li:focus,
.home .navbar.small .lang-switcher li:hover {
    color: #18435c;
}

    .home .navbar.small .lang-switcher li.current-lang a,
    .home .navbar.small .lang-switcher li:active a,
    .home .navbar.small .lang-switcher li:focus a,
    .home .navbar.small .lang-switcher li:hover a {
        color: #18435c;
    }

footer .footer-section {
    background: #18435c;
    border-bottom: 4px solid #3d8da5;
    position: relative;
}

@media (max-width: 767px) {
    footer .footer-section {
        padding-bottom: 45px;
    }
}

footer .footer-section .logo-icon-box {
    background: url(/img/bg-footer.png?v=hcyUTgN-slWr8Wa1VNIw29y15LM) center no-repeat;
    height: 73px;
    width: 150.5px;
    background-size: cover;
    margin: -32px auto 0;
    text-align: center;
    line-height: 83px;
}

    footer .footer-section .logo-icon-box .svg {
        width: 48px;
        fill: #fff;
    }

footer .footer-section .links-icon-box {
    margin: 10px 0 50px;
}

    footer .footer-section .links-icon-box .icon {
        margin: 0 25px;
    }

        footer .footer-section .links-icon-box .icon a {
            -webkit-transform: perspective(1px) translateZ(0);
            transform: perspective(1px) translateZ(0);
            display: inline-block;
            transition: 0.2s all;
            padding: 15px 0;
        }

            footer .footer-section .links-icon-box .icon a:active,
            footer .footer-section .links-icon-box .icon a:focus,
            footer .footer-section .links-icon-box .icon a:hover {
                -webkit-animation-name: bob-float, bob;
                animation-name: bob-float, bob;
                -webkit-animation-duration: 0.3s, 1.5s;
                animation-duration: 0.3s, 1.5s;
                -webkit-animation-delay: 0s, 0.3s;
                animation-delay: 0s, 0.3s;
                -webkit-animation-timing-function: ease-out, ease-in-out;
                animation-timing-function: ease-out, ease-in-out;
                -webkit-animation-iteration-count: 1, infinite;
                animation-iteration-count: 1, infinite;
                -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
                -webkit-animation-direction: normal, alternate;
                animation-direction: normal, alternate;
            }

footer .footer-section .text-box p {
    font-size: 11.5px;
    letter-spacing: 2.3px;
    color: #3d8da5;
    margin-bottom: 10px;
}

footer .footer-section .by {
    position: absolute;
    right: 20px;
    bottom: 5px;
    text-align: right;
}

    footer .footer-section .by a {
        display: inline-block;
        vertical-align: middle;
        -webkit-transform: perspective(1px) translateZ(0);
        transform: perspective(1px) translateZ(0);
    }

        footer .footer-section .by a:active,
        footer .footer-section .by a:focus,
        footer .footer-section .by a:hover {
            -webkit-animation-name: buzz;
            animation-name: buzz;
            -webkit-animation-duration: 0.15s;
            animation-duration: 0.15s;
            -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
        }

        footer .footer-section .by a img {
            width: 30px;
        }

@media (max-width: 767px) {
    footer .footer-section .by a img {
        width: 27px;
    }
}

.hero-section {
    height: 100vh;
}

@media (max-width: 768px) {
    .hero-section {
        height: 620px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 440px;
    }
}

.hero-section .slider-wrapper {
    position: relative;
    background: #18435c;
    margin: 0 auto;
    overflow: hidden;
    height: 100%;
}

    .hero-section .slider-wrapper .carousel {
        height: 100%;
    }

        .hero-section .slider-wrapper .carousel .carousel-inner {
            height: 100%;
        }

            .hero-section .slider-wrapper .carousel .carousel-inner .carousel-item {
                height: 100%;
            }

                .hero-section .slider-wrapper .carousel .carousel-inner .carousel-item img {
                    height: 100%;
                    -o-object-fit: cover;
                    object-fit: cover;
                    max-width: 100%;
                }

                .hero-section
                .slider-wrapper
                .carousel
                .carousel-inner
                .carousel-item
                .slide-content {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                    padding: 15px;
                    overflow: hidden;
                }

                    .hero-section
                    .slider-wrapper
                    .carousel
                    .carousel-inner
                    .carousel-item
                    .slide-content
                    .slide-titles {
                        position: relative;
                        top: 50%;
                        -webkit-transform: translateY(-50%);
                        transform: translateY(-50%);
                    }

                        .hero-section
                        .slider-wrapper
                        .carousel
                        .carousel-inner
                        .carousel-item
                        .slide-content
                        .slide-titles
                        h1 {
                            font-size: 66.8px;
                            font-family: "Unthrift Second Personal";
                            color: #3d8da5;
                            text-align: center;
                            line-height: 55.8px;
                            margin: 0;
                            opacity: 1;
                            position: relative;
                        }

@media (max-width: 1024px) {
    .hero-section
    .slider-wrapper
    .carousel
    .carousel-inner
    .carousel-item
    .slide-content
    .slide-titles
    h1 {
        font-size: 59.8px;
    }
}

@media (max-width: 767px) {
    .hero-section
    .slider-wrapper
    .carousel
    .carousel-inner
    .carousel-item
    .slide-content
    .slide-titles
    h1 {
        font-size: 43px;
    }
}

.hero-section
.slider-wrapper
.carousel
.carousel-inner
.carousel-item
.slide-content
.slide-titles
h2 {
    font-family: Circe;
    color: #fff;
    font-size: 34.8px;
    letter-spacing: 1.74px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    max-width: 410px;
    margin: 0 auto;
    position: relative;
}

@media (max-width: 1024px) {
    .hero-section
    .slider-wrapper
    .carousel
    .carousel-inner
    .carousel-item
    .slide-content
    .slide-titles
    h2 {
        font-size: 30.8px;
    }
}

@media (max-width: 767px) {
    .hero-section
    .slider-wrapper
    .carousel
    .carousel-inner
    .carousel-item
    .slide-content
    .slide-titles
    h2 {
        font-size: 21px;
    }
}

.hero-section
.slider-wrapper
.carousel
.carousel-inner
.carousel-item
.slide-content
.slide-titles
.slide-txt {
    position: relative;
    display: block;
    max-width: 490px;
    margin: 47px auto 0;
}

@media (max-width: 1024px) {
    .hero-section
    .slider-wrapper
    .carousel
    .carousel-inner
    .carousel-item
    .slide-content
    .slide-titles
    .slide-txt {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .hero-section
    .slider-wrapper
    .carousel
    .carousel-inner
    .carousel-item
    .slide-content
    .slide-titles
    .slide-txt {
        margin-top: 20px;
    }
}

.hero-section
.slider-wrapper
.carousel
.carousel-inner
.carousel-item
.slide-content
.slide-titles
.slide-txt
p {
    margin: 0;
    text-align: center;
    color: #fff;
    font-size: 16.8px;
    line-height: 23px;
    letter-spacing: 1.26px;
}

@media (max-width: 1024px) {
    .hero-section
    .slider-wrapper
    .carousel
    .carousel-inner
    .carousel-item
    .slide-content
    .slide-titles
    .slide-txt
    p {
        font-size: 15.8px;
        line-height: 22px;
    }
}

@media (max-width: 767px) {
    .hero-section
    .slider-wrapper
    .carousel
    .carousel-inner
    .carousel-item
    .slide-content
    .slide-titles
    .slide-txt
    p {
        font-size: 13px;
        line-height: 19px;
    }
}

.hero-section
.slider-wrapper
.carousel
.carousel-inner
.carousel-item
.slide-content
.slider-link {
    display: block;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    color: #3d8da5;
    letter-spacing: 1.15px;
    font-size: 11.5px;
    border-bottom: 2.5px solid #fff;
    padding-bottom: 5px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    outline: 0;
    overflow: hidden;
    transition: color 0.3s linear;
}

@media (max-width: 767px) {
    .hero-section
    .slider-wrapper
    .carousel
    .carousel-inner
    .carousel-item
    .slide-content
    .slider-link {
        font-size: 11px;
        letter-spacing: 0.8px;
        bottom: 60px;
    }
}

.hero-section
.slider-wrapper
.carousel
.carousel-inner
.carousel-item
.slide-content
.slider-link:active,
.hero-section
.slider-wrapper
.carousel
.carousel-inner
.carousel-item
.slide-content
.slider-link:focus,
.hero-section
.slider-wrapper
.carousel
.carousel-inner
.carousel-item
.slide-content
.slider-link:hover {
    color: #fff;
}

.hero-section .slider-wrapper .carousel .arrow {
    cursor: pointer;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left: 20px;
    margin-right: 20px;
    width: 70px;
    height: 90px;
    opacity: 0;
    transition: opacity 0.4s linear;
}

@media (max-width: 767px) {
    .hero-section .slider-wrapper .carousel .arrow {
        opacity: 1;
        top: 100%;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        width: 25px;
        height: 50px;
        margin-left: 10px;
        margin-right: 10px;
    }
}

.hero-section .slider-wrapper .carousel .arrow svg {
    padding: 5px;
}

@media (max-width: 767px) {
    .hero-section .slider-wrapper .carousel .arrow.carousel-control-prev {
        right: 50px;
        left: auto;
    }
}

.hero-section
.slider-wrapper
.carousel
.arrow.carousel-control-prev:hover
polyline {
    stroke-width: 2;
}

.hero-section
.slider-wrapper
.carousel
.arrow.carousel-control-prev.active
polyline {
    stroke-width: 3;
    transition: all 0.1s ease-in-out;
}

.hero-section
.slider-wrapper
.carousel
.arrow.carousel-control-next:hover
polyline {
    stroke-width: 2;
}

.hero-section
.slider-wrapper
.carousel
.arrow.carousel-control-next.active
polyline {
    stroke-width: 3;
    transition: all 0.1s ease-in-out;
}

.hero-section .slider-wrapper .carousel .arrow polyline {
    transition: all 0.3s ease-in-out;
}

.hero-section .slider-wrapper .carousel:focus .arrow,
.hero-section .slider-wrapper .carousel:hover .arrow {
    opacity: 1;
}

.slider-section {
    display: flex;
    height: 855px;
}

@media (max-width: 1024px) {
    .slider-section {
        height: 640px;
    }
}

@media (max-width: 768px) {
    .slider-section {
        min-height: 720px;
        height: auto;
    }
}

@media (max-width: 767px) {
    .slider-section {
        min-height: 860px;
    }
}

.slider-section .container-fluid,
.slider-section .row {
    height: 100%;
}

.slider-section .blog-slider {
    width: 100%;
    position: relative;
    margin: 0 auto;
    height: 100%;
    transition: all 0.3s;
    display: flex;
    border-left: 2px solid rgba(196, 206, 212, 0.4);
    padding: 100px 0 110px;
    max-width: 1320px;
}

@media (max-width: 1366px) {
    .slider-section .blog-slider {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .slider-section .blog-slider {
        width: 100%;
        flex-direction: column;
        border-left: 0;
        border-top: 2px solid rgba(196, 206, 212, 0.4);
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 70px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .slider-section .blog-slider {
        margin-top: 60px;
    }
}

.slider-section .blog-slider__pagination {
    position: relative;
    z-index: 21;
    text-align: center;
    max-width: 290px;
    bottom: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 1366px) {
    .slider-section .blog-slider__pagination {
        max-width: 260px;
    }
}

@media (max-width: 1024px) {
    .slider-section .blog-slider__pagination {
        max-width: 210px;
    }
}

@media (max-width: 768px) {
    .slider-section .blog-slider__pagination {
        flex-direction: row;
        max-width: 100%;
        margin-bottom: 50px;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .slider-section .blog-slider__pagination {
        margin-bottom: 20px;
        padding: 0 15px;
    }
}

.slider-section .blog-slider__pagination .swiper-pagination-bullet {
    display: block;
    opacity: 0.8;
    font-family: Circe;
    font-size: 17.8px;
    text-transform: uppercase;
    letter-spacing: 0.44px;
    color: #c4ced4;
    position: relative;
    width: 100%;
    height: 80px;
    line-height: 80px;
    background: 0 0;
    text-align: left;
    border-radius: 0;
    margin: 0 0 65px;
    padding: 0 20px;
    transition: 0.5s all ease-in;
    outline: 0;
}

@media (max-width: 768px) {
    .slider-section .blog-slider__pagination .swiper-pagination-bullet {
        font-size: 19.8px;
        letter-spacing: 1px;
        margin: 0 10px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .slider-section .blog-slider__pagination .swiper-pagination-bullet {
        font-size: 13px;
        letter-spacing: 0;
        margin: 0 5px;
        padding: 0 5px;
        height: 40px;
        line-height: 40px;
    }
}

.slider-section .blog-slider__pagination .swiper-pagination-bullet:focus {
    outline: 0;
}

.slider-section .blog-slider__pagination .swiper-pagination-bullet span {
    font-size: 55.2px;
    letter-spacing: 1.38px;
    color: #18435c;
    opacity: 0;
    display: block;
    position: absolute;
    top: 50%;
    left: 50px;
    font-weight: 800;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 36px;
    word-break: break-word;
    transition: 0.6s all ease-in;
}

@media (max-width: 1366px) {
    .slider-section .blog-slider__pagination .swiper-pagination-bullet span {
        font-size: 48.2px;
    }
}

@media (max-width: 1024px) {
    .slider-section .blog-slider__pagination .swiper-pagination-bullet span {
        font-size: 40.2px;
    }
}

@media (max-width: 768px) {
    .slider-section .blog-slider__pagination .swiper-pagination-bullet span {
        font-size: 43px;
        text-align: center;
        display: block;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .slider-section .blog-slider__pagination .swiper-pagination-bullet span {
        font-size: 20px;
        letter-spacing: 0;
        line-height: 15px;
    }
}

.slider-section .blog-slider__pagination .swiper-pagination-bullet:before {
    content: "";
    height: 100%;
    width: 3.5px;
    background: #18435c;
    display: block;
    position: absolute;
    left: -3px;
    top: -22px;
    opacity: 0;
    transition: 0.3s top;
}

@media (max-width: 768px) {
    .slider-section .blog-slider__pagination .swiper-pagination-bullet:before {
        height: 3.5px;
        width: 100%;
        left: 0;
        transition: 0.3s left;
    }
}

.slider-section .blog-slider__pagination .swiper-pagination-bullet:last-child {
    margin-bottom: 0;
}

    .slider-section
    .blog-slider__pagination
    .swiper-pagination-bullet:last-child
    span {
        max-width: 55%;
    }

@media (max-width: 768px) {
    .slider-section
    .blog-slider__pagination
    .swiper-pagination-bullet:last-child
    span {
        max-width: 100%;
    }
}

.slider-section .blog-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    color: #18435c;
    font-weight: 800;
}

    .slider-section .blog-slider__pagination .swiper-pagination-bullet-active span {
        opacity: 0.14;
        left: 3px;
    }

    .slider-section
    .blog-slider__pagination
    .swiper-pagination-bullet-active:before {
        opacity: 1;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

@media (max-width: 768px) {
    .slider-section
    .blog-slider__pagination
    .swiper-pagination-bullet-active:before {
        top: -22px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.slider-section .blog-slider__pagination .swiper-pagination-bullet:hover {
    font-weight: 800;
}

.slider-section .blog-slider__wrp {
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .slider-section .blog-slider__wrp:before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        background: url(/img/grade@2x.png?v=hcyUTgN-slWr8Wa1VNIw29y15LM) center no-repeat;
        background-size: cover;
        width: 100%;
        padding-top: 52.74%;
    }

@media (max-width: 767px) {
    .slider-section .blog-slider__wrp:before {
        padding-top: 0;
        height: 100%;
    }
}

.slider-section .blog-slider__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .slider-section .blog-slider__item .slider-container {
        width: 100%;
        max-width: 1028px;
        margin-right: auto;
        display: flex;
        flex-direction: row;
        align-content: center;
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        height: 100%;
        justify-content: center;
        align-items: center;
    }

@media (max-width: 1366px) {
    .slider-section .blog-slider__item .slider-container {
        max-width: 915px;
    }
}

@media (max-width: 1024px) {
    .slider-section .blog-slider__item .slider-container {
        max-width: 715px;
    }
}

@media (max-width: 767px) {
    .slider-section .blog-slider__item .slider-container {
        flex-direction: column;
    }
}

.slider-section .blog-slider__item .blog-slider__img {
    width: 465px;
    flex-shrink: 0;
    height: 269px;
    -webkit-transform: translateX(-120px) translateY(-55px);
    transform: translateX(-120px) translateY(-55px);
    margin-left: auto;
    overflow: hidden;
    order: 2;
}

@media (max-width: 1366px) {
    .slider-section .blog-slider__item .blog-slider__img {
        max-width: 455px;
    }
}

@media (max-width: 1024px) {
    .slider-section .blog-slider__item .blog-slider__img {
        max-width: 355px;
        height: 209px;
        -webkit-transform: translateX(-60px) translateY(-55px);
        transform: translateX(-60px) translateY(-55px);
    }
}

@media (max-width: 767px) {
    .slider-section .blog-slider__item .blog-slider__img {
        max-width: 90%;
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
        margin: 0 auto;
        height: 150px;
    }
}

.slider-section .blog-slider__item .blog-slider__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: all 0.3s;
}

.slider-section .blog-slider__item .blog-slider__content {
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
    max-width: 380px;
}

@media (max-width: 1366px) {
    .slider-section .blog-slider__item .blog-slider__content {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        max-width: 345px;
    }
}

@media (max-width: 1024px) {
    .slider-section .blog-slider__item .blog-slider__content {
        max-width: 295px;
    }
}

@media (max-width: 767px) {
    .slider-section .blog-slider__item .blog-slider__content {
        max-width: 100%;
        order: 2;
        margin-top: 20px;
    }
}

.slider-section .blog-slider__item .blog-slider__content > * {
    opacity: 0;
    -webkit-transform: translateY(35px);
    transform: translateY(35px);
    transition: all 0.6s;
}

.slider-section .blog-slider__item .blog-slider__content .blog-slider__title {
    max-width: 250px;
    text-align: right;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: 40px;
}

    .slider-section
    .blog-slider__item
    .blog-slider__content
    .blog-slider__title.min-w-en {
        max-width: 300px;
    }

@media (max-width: 1366px) {
    .slider-section .blog-slider__item .blog-slider__content .blog-slider__title {
        max-width: 210px;
    }
}

@media (max-width: 1024px) {
    .slider-section .blog-slider__item .blog-slider__content .blog-slider__title {
        max-width: 160px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .slider-section .blog-slider__item .blog-slider__content .blog-slider__title {
        max-width: 100%;
    }
}

.slider-section
.blog-slider__item
.blog-slider__content
.blog-slider__title.no-max-width {
    max-width: 100%;
}

.slider-section .blog-slider__item .blog-slider__content .blog-slider__text {
    width: 540px;
    height: 250px;
    background: #fff;
    padding: 50px 75px;
    position: relative;
    left: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 1024px) {
    .slider-section .blog-slider__item .blog-slider__content .blog-slider__text {
        width: 480px;
        height: 200px;
        padding: 35px 35px;
        left: 60px;
    }
}

@media (max-width: 767px) {
    .slider-section .blog-slider__item .blog-slider__content .blog-slider__text {
        width: 90%;
        margin: 0 auto;
        left: 0;
        height: auto;
    }
}

.slider-section .blog-slider__item.swiper-slide-active .blog-slider__img img {
    opacity: 1;
    transition-delay: 0.3s;
}

.slider-section
.blog-slider__item.swiper-slide-active
.blog-slider__content > * {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.slider-section
.blog-slider__item.swiper-slide-active
.blog-slider__content > :nth-child(1) {
    transition-delay: 0.3s;
}

.slider-section
.blog-slider__item.swiper-slide-active
.blog-slider__content > :nth-child(2) {
    transition-delay: 0.4s;
}

.slider-section
.blog-slider__item.swiper-slide-active
.blog-slider__content > :nth-child(3) {
    transition-delay: 0.5s;
}

.slider-section
.blog-slider__item.swiper-slide-active
.blog-slider__content > :nth-child(4) {
    transition-delay: 0.6s;
}

.slider-section
.blog-slider__item.swiper-slide-active
.blog-slider__content > :nth-child(5) {
    transition-delay: 0.7s;
}

.slider-section
.blog-slider__item.swiper-slide-active
.blog-slider__content > :nth-child(6) {
    transition-delay: 0.8s;
}

.slider-section
.blog-slider__item.swiper-slide-active
.blog-slider__content > :nth-child(7) {
    transition-delay: 0.9s;
}

.slider-section
.blog-slider__item.swiper-slide-active
.blog-slider__content > :nth-child(8) {
    transition-delay: 1s;
}

.slider-section
.blog-slider__item.swiper-slide-active
.blog-slider__content > :nth-child(9) {
    transition-delay: 1.1s;
}

.slider-section
.blog-slider__item.swiper-slide-active
.blog-slider__content > :nth-child(10) {
    transition-delay: 1.2s;
}

.slider-section
.blog-slider__item.swiper-slide-active
.blog-slider__content > :nth-child(11) {
    transition-delay: 1.3s;
}

.slider-section
.blog-slider__item.swiper-slide-active
.blog-slider__content > :nth-child(12) {
    transition-delay: 1.4s;
}

.slider-section
.blog-slider__item.swiper-slide-active
.blog-slider__content > :nth-child(13) {
    transition-delay: 1.5s;
}

.slider-section
.blog-slider__item.swiper-slide-active
.blog-slider__content > :nth-child(14) {
    transition-delay: 1.6s;
}

.slider-section
.blog-slider__item.swiper-slide-active
.blog-slider__content > :nth-child(15) {
    transition-delay: 1.7s;
}

.slider-section .blog-slider__item.swiper-slide-active .blog-slider__title {
    -webkit-animation: text-focus-in 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
    animation: text-focus-in 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.slider-section
.blog-slider
.swiper-container-horizontal > .swiper-pagination-bullets,
.slider-section .blog-slider .swiper-pagination-custom,
.slider-section .blog-slider .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.top-title-section-investiments {
    padding: 24px 0 55px;
}

@media (max-width: 768px) {
    .top-title-section-investiments {
        padding: 24px 0 55px;
    }
}

.top-title-section-investiments .text-box {
    margin-bottom: 40px;
    padding: 0 25px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .top-title-section-investiments .text-box {
        padding: 0 10px;
    }
}

@media (max-width: 767px) {
    .top-title-section-investiments .text-box {
        padding: 0;
        margin-bottom: 30px;
    }
}

.top-title-section-investiments .text-box h2 {
    margin: 0;
}

.investiments-section {
    background: #eff2f4;
    padding-top: 60px;
    padding-bottom: 60px;
}

    .investiments-section .container-cards {
        max-width: 1500px;
    }

    .investiments-section .card {
        border: 0;
        border-radius: 0;
        max-width: 470px;
        margin: 0 auto 90px;
        background: 0 0;
    }

@media (max-width: 768px) {
    .investiments-section .card {
        max-width: 570px;
    }
}

.investiments-section .card .card-img-top {
    border: 0;
    border-radius: 0;
    max-width: 100%;
    height: 222px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 768px) {
    .investiments-section .card .card-img-top {
        height: 260px;
    }
}

@media (max-width: 767px) {
    .investiments-section .card .card-img-top {
        height: 210px;
    }
}

.investiments-section .card .card-body {
    width: 375px;
    height: 500px;
    margin: 0 auto;
    position: relative;
    padding: 0;
    margin-top: -90px;
}

@media (max-width: 1366px) {
    .investiments-section .card .card-body {
        width: 345px;
        height: 520px;
        margin-top: -105px;
    }
}

@media (max-width: 1024px) {
    .investiments-section .card .card-body {
        width: 365px;
    }
}

@media (max-width: 768px) {
    .investiments-section .card .card-body {
        width: 85%;
        height: 460px;
    }
}

@media (max-width: 767px) {
    .investiments-section .card .card-body {
        width: 100%;
        margin-top: -55px;
    }
}

.investiments-section .card .card-body .nav-tabs {
    border: 0;
    height: 62px;
    line-height: 62px;
}

@media (max-width: 768px) {
    .investiments-section .card .card-body .nav-tabs {
        height: 74px;
        line-height: 70px;
    }
}

@media (max-width: 767px) {
    .investiments-section .card .card-body .nav-tabs {
        height: 54px;
        line-height: 46px;
    }
}

.investiments-section .card .card-body .nav-tabs .nav-item {
    width: 50%;
}

    .investiments-section .card .card-body .nav-tabs .nav-item.nav-about:after {
        content: "";
        display: block;
        background-image: url(/img/bg-branco@2x.png?v=hcyUTgN-slWr8Wa1VNIw29y15LM);
        background-size: cover;
        height: 63px;
        background-repeat: no-repeat;
        background-position: bottom center;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 0;
    }

@media (max-width: 768px) {
    .investiments-section .card .card-body .nav-tabs .nav-item.nav-about:after {
        height: 75px;
    }
}

@media (max-width: 767px) {
    .investiments-section .card .card-body .nav-tabs .nav-item.nav-about:after {
        height: 55px;
    }
}

.investiments-section .card .card-body .nav-tabs .nav-item.nav-about .nav-link {
    color: #95a3ab;
    text-align: right;
}

.investiments-section
.card
.card-body
.nav-tabs
.nav-item.nav-testimonial:after {
    content: "";
    display: block;
    background-image: url(/img/bg-azul@2x.png?v=hcyUTgN-slWr8Wa1VNIw29y15LM);
    background-size: cover;
    height: 63px;
    background-repeat: no-repeat;
    background-position: bottom center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

@media (max-width: 768px) {
    .investiments-section
    .card
    .card-body
    .nav-tabs
    .nav-item.nav-testimonial:after {
        height: 75px;
    }
}

@media (max-width: 767px) {
    .investiments-section
    .card
    .card-body
    .nav-tabs
    .nav-item.nav-testimonial:after {
        height: 55px;
    }
}

.investiments-section
.card
.card-body
.nav-tabs
.nav-item.nav-testimonial
.nav-link {
    color: #3d8da5;
}

.investiments-section .card .card-body .nav-tabs .nav-item.nav-active:after {
    opacity: 0;
}

.investiments-section .card .card-body .nav-tabs .nav-item .nav-link {
    border: 0;
    border-radius: 0;
    background: 0 0;
    position: relative;
    z-index: 1;
    font-size: 12.5px;
    letter-spacing: 1.25px;
    transition: 0.2s all;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
}

@media (max-width: 768px) {
    .investiments-section .card .card-body .nav-tabs .nav-item .nav-link {
        font-size: 14.5px;
    }
}

@media (max-width: 767px) {
    .investiments-section .card .card-body .nav-tabs .nav-item .nav-link {
        font-size: 11.5px;
        letter-spacing: 0.25px;
    }
}

.investiments-section .card .card-body .nav-tabs .nav-item .nav-link.active {
    opacity: 0;
}

.investiments-section .card .card-body .nav-tabs .nav-item .nav-link:focus,
.investiments-section .card .card-body .nav-tabs .nav-item .nav-link:hover {
    -webkit-animation-name: bob-float, bob;
    animation-name: bob-float, bob;
    -webkit-animation-duration: 0.3s, 1.5s;
    animation-duration: 0.3s, 1.5s;
    -webkit-animation-delay: 0s, 0.3s;
    animation-delay: 0s, 0.3s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
}

.investiments-section .card .card-body .box-about {
    background: #fff;
    padding: 20px 0 0;
    height: 100%;
}

    .investiments-section .card .card-body .box-about:before {
        content: "";
        display: block;
        background-image: url(/img/bg-branco@2x.png?v=hcyUTgN-slWr8Wa1VNIw29y15LM);
        background-size: cover;
        height: 63px;
        background-repeat: no-repeat;
        background-position: bottom center;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 0;
    }

@media (max-width: 768px) {
    .investiments-section .card .card-body .box-about:before {
        height: 75px;
    }
}

@media (max-width: 767px) {
    .investiments-section .card .card-body .box-about:before {
        height: 55px;
    }
}

.investiments-section .card .card-body .box-about .logo {
    width: 150px;
    margin-left: auto;
    position: relative;
    top: -20px;
}

@media (max-width: 767px) {
    .investiments-section .card .card-body .box-about .logo {
        width: 120px;
    }
}

.investiments-section .card .card-body .box-about .logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.investiments-section .card .card-body .box-about .text-about {
    margin-top: auto;
    margin-bottom: auto;
}

@media (max-width: 768px) {
    .investiments-section .card .card-body .box-about .text-about {
        max-width: 70%;
    }
}

@media (max-width: 767px) {
    .investiments-section .card .card-body .box-about .text-about {
        max-width: 100%;
    }
}

.investiments-section .card .card-body .box-about .tags ul {
    padding: 0;
    list-style: none;
}

    .investiments-section .card .card-body .box-about .tags ul li {
        display: inline-block;
        margin-right: 14px;
    }

        .investiments-section .card .card-body .box-about .tags ul li h2 {
            margin-bottom: 0;
            display: inline-block;
        }

.investiments-section .card .card-body .box-about .card-footer {
    background: #eff2f4;
}

    .investiments-section
    .card
    .card-body
    .box-about
    .card-footer
    .social-box
    .social-link {
        color: #18435c;
    }

    .investiments-section
    .card
    .card-body
    .box-about
    .card-footer
    .link-box
    .card-link {
        color: #18435c;
    }

.investiments-section .card .card-body .box-testimonial {
    background: #18435c;
    padding: 20px 0 0;
    height: 100%;
}

    .investiments-section .card .card-body .box-testimonial:before {
        content: "";
        display: block;
        background-image: url(/img/bg-azul@2x.png?v=hcyUTgN-slWr8Wa1VNIw29y15LM);
        background-size: cover;
        height: 63px;
        background-repeat: no-repeat;
        background-position: bottom center;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 0;
    }

@media (max-width: 768px) {
    .investiments-section .card .card-body .box-testimonial:before {
        height: 75px;
    }
}

@media (max-width: 767px) {
    .investiments-section .card .card-body .box-testimonial:before {
        height: 55px;
    }
}

.investiments-section .card .card-body .box-testimonial .text {
    max-width: 300px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .investiments-section .card .card-body .box-testimonial .text {
        max-width: 90%;
    }
}

@media (max-width: 767px) {
    .investiments-section .card .card-body .box-testimonial .text {
        max-width: 100%;
    }
}

.investiments-section .card .card-body .box-testimonial .text:after,
.investiments-section .card .card-body .box-testimonial .text:before {
    content: "";
    display: block;
    width: 18px;
    height: 16px;
    background: url(/img/aspas-abre@2x.png?v=hcyUTgN-slWr8Wa1VNIw29y15LM) center no-repeat;
    background-size: cover;
}

.investiments-section .card .card-body .box-testimonial .text:after {
    background: url(/img/aspas-fecha@2x.png?v=hcyUTgN-slWr8Wa1VNIw29y15LM) center no-repeat;
    background-size: cover;
}

.investiments-section .card .card-body .box-testimonial .text p {
    margin: 12px 0;
}

@media (max-width: 767px) {
    .investiments-section .card .card-body .box-testimonial .text p {
        margin: 8px 0;
    }
}

.investiments-section .card .card-body .box-testimonial .author {
    color: #3d8da5;
    margin-bottom: 10px;
}

    .investiments-section .card .card-body .box-testimonial .author p {
        font-size: 16.8px;
        letter-spacing: 0.84px;
        margin-bottom: 0;
    }

@media (max-width: 767px) {
    .investiments-section .card .card-body .box-testimonial .author p {
        font-size: 14.5px;
        letter-spacing: 0.7px;
    }
}

.investiments-section .card .card-body .box-testimonial .author span {
    font-weight: 800;
    font-size: 14.5px;
    letter-spacing: 0.72px;
}

@media (max-width: 767px) {
    .investiments-section .card .card-body .box-testimonial .author span {
        font-size: 12.5px;
        letter-spacing: 0.6px;
    }
}

.investiments-section .card .card-body .box-testimonial .card-footer {
    background: #18435c;
}

    .investiments-section
    .card
    .card-body
    .box-testimonial
    .card-footer
    .social-box
    .social-link {
        color: #fff;
    }

    .investiments-section
    .card
    .card-body
    .box-testimonial
    .card-footer
    .link-box
    .card-link {
        color: #fff;
    }

.investiments-section .card .card-body .card-footer {
    border-radius: 0;
    border: 0;
    height: 56px;
    padding: 0 25px;
}

@media (max-width: 767px) {
    .investiments-section .card .card-body .card-footer {
        padding: 0 15px;
    }
}

.investiments-section .card .card-body .card-footer .social-box ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

    .investiments-section .card .card-body .card-footer .social-box ul li {
        display: inline-block;
        margin: 0 10px;
    }

@media (max-width: 767px) {
    .investiments-section .card .card-body .card-footer .social-box ul li {
        margin: 0 6px;
    }
}

.investiments-section
.card
.card-body
.card-footer
.social-box
ul
li:first-child {
    margin-left: 0;
}

.investiments-section
.card
.card-body
.card-footer
.social-box
ul
li:last-child {
    margin-right: 0;
}

.investiments-section
.card
.card-body
.card-footer
.social-box
ul
li
.social-link {
    transition: all 0.3s linear;
}

    .investiments-section
    .card
    .card-body
    .card-footer
    .social-box
    ul
    li
    .social-link:active,
    .investiments-section
    .card
    .card-body
    .card-footer
    .social-box
    ul
    li
    .social-link:focus,
    .investiments-section
    .card
    .card-body
    .card-footer
    .social-box
    ul
    li
    .social-link:hover {
        color: #3d8da5;
    }

@media (max-width: 767px) {
    .investiments-section
    .card
    .card-body
    .card-footer
    .social-box
    ul
    li
    .social-link {
        font-size: 14px;
    }
}

.investiments-section .card .card-body .card-footer .link-box .card-link {
    text-transform: uppercase;
    font-size: 14.5px;
    letter-spacing: 1.45px;
    transition: all 0.2s linear;
}

@media (max-width: 767px) {
    .investiments-section .card .card-body .card-footer .link-box .card-link {
        font-size: 13px;
        letter-spacing: 0.9px;
    }
}

.investiments-section .card .card-body .card-footer .link-box .card-link:active,
.investiments-section .card .card-body .card-footer .link-box .card-link:focus,
.investiments-section .card .card-body .card-footer .link-box .card-link:hover {
    color: #3d8da5;
}

.investiments-section .card .card-body .tab-content {
    height: 438px;
    box-shadow: 0 2px 12px 2px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1366px) {
    .investiments-section .card .card-body .tab-content {
        height: 458px;
    }
}

@media (max-width: 768px) {
    .investiments-section .card .card-body .tab-content {
        height: 398px;
    }
}

.investiments-section .card .card-body .tab-content .tab-pane .tab-content-box {
    height: calc(100% - 56px);
    padding: 0 25px 20px;
    opacity: 0;
    transition: 0.3s all linear;
}

@media (max-width: 767px) {
    .investiments-section
    .card
    .card-body
    .tab-content
    .tab-pane
    .tab-content-box {
        padding: 0 15px 15px;
    }
}

.investiments-section
.card
.card-body
.tab-content
.tab-pane.active.show
.tab-content-box {
    opacity: 1;
}

.top-title-section-team {
    background: #eff2f4;
    margin-top: 110px;
}

@media (max-width: 767px) {
    .top-title-section-team {
        margin-top: 90px;
    }
}

.top-title-section-team .title-box {
    margin-top: 55px;
}

@media (max-width: 767px) {
    .top-title-section-team .title-box {
        margin-top: 35px;
    }
}

.top-title-section-team .container-fluid {
    max-width: 1400px;
}

.top-title-section-team .team-box {
    margin-top: 80px;
    margin-bottom: 100px;
    min-height: 620px;
}

@media (max-width: 1024px) {
    .top-title-section-team .team-box {
        margin-top: 20px;
        margin-bottom: 80px;
        min-height: 560px;
    }
}

.top-title-section-team .team-box .instructions {
    margin-top: 100px;
    opacity: 1;
    transition: 0.2s all;
}

    .top-title-section-team .team-box .instructions p {
        color: #839097;
        text-transform: uppercase;
        font-size: 13.5px;
        letter-spacing: 1.35px;
        line-height: 22px;
    }

.top-title-section-team .team-box .team {
    padding-left: 50px;
}

@media (max-width: 1366px) {
    .top-title-section-team .team-box .team {
        padding-left: 55px;
    }
}

@media (max-width: 1024px) {
    .top-title-section-team .team-box .team {
        padding-left: 45px;
    }
}

.top-title-section-team .team-box .team .member {
    position: relative;
    flex: 0 0 155px;
    margin-left: -50px;
}

@media (max-width: 1440px) {
    .top-title-section-team .team-box .team .member {
        flex: 0 0 145px;
    }
}

@media (max-width: 1366px) {
    .top-title-section-team .team-box .team .member {
        flex: 0 0 135px;
        margin-left: -55px;
    }
}

@media (max-width: 1024px) {
    .top-title-section-team .team-box .team .member {
        flex: 0 0 110px;
        margin-left: -45px;
    }
}

.top-title-section-team .team-box .team .member:before {
    content: "";
    width: 1.5px;
    height: 0;
    background: #3d8da5;
    display: block;
    position: absolute;
    bottom: -55px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: height 0.5s linear;
}

@media (max-width: 1024px) {
    .top-title-section-team .team-box .team .member:before {
        bottom: -30px;
    }
}

.top-title-section-team .team-box .team .member.deep {
    z-index: 1;
}

.top-title-section-team .team-box .team .member img {
    height: 400px;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 100%;
    opacity: 0.95;
    transition: opacity 0.5s linear;
    cursor: pointer;
}

.top-title-section-team .team-box .team .member .about-member {
    position: absolute;
    width: 310px;
    margin-top: 70px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    bottom: 0;
    transition: opacity 0.5s linear;
}

@media (max-width: 1024px) {
    .top-title-section-team .team-box .team .member .about-member {
        margin-top: 50px;
        width: 200px;
    }
}

.top-title-section-team .team-box .team .member .about-member .infos h3 {
    font-size: 13.5px;
    color: #18435c;
    letter-spacing: 1.35px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 5px;
}

@media (max-width: 1024px) {
    .top-title-section-team .team-box .team .member .about-member .infos h3 {
        font-size: 11.5px;
        letter-spacing: 1px;
    }
}

.top-title-section-team .team-box .team .member .about-member .infos h2 {
    font-size: 18.8px;
    color: #3d8da5;
    letter-spacing: 3.75px;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 1024px) {
    .top-title-section-team .team-box .team .member .about-member .infos h2 {
        font-size: 15.8px;
        letter-spacing: 1.5px;
    }
}

.top-title-section-team .team-box .team .member .about-member .jobs {
    margin-top: 10px;
}

    .top-title-section-team .team-box .team .member .about-member .jobs p {
        color: #839097;
        font-size: 16.8px;
        letter-spacing: 1.26px;
        line-height: 25px;
        margin-bottom: 0;
    }

@media (max-width: 1024px) {
    .top-title-section-team .team-box .team .member .about-member .jobs p {
        font-size: 12px;
        letter-spacing: 0.7px;
        line-height: 18px;
    }
}

.top-title-section-team .team-box .team .member .about-member .social-member {
    display: inline-block;
    width: 75px;
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .top-title-section-team .team-box .team .member .about-member .social-member {
        width: 65px;
        margin-top: 15px;
    }
}

.top-title-section-team
.team-box
.team
.member
.about-member
.social-member
.svg {
    fill: #18435c;
}

.top-title-section-team .team-box .team .member.active img {
    opacity: 1;
    transition: opacity 0.5s linear;
}

.top-title-section-team .team-box .team .member.active:before {
    height: 45px;
    transition: height 0.5s;
}

.top-title-section-team .team-box .team .member.active .about-member {
    opacity: 1;
    visibility: visible;
    bottom: auto;
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    transition: visibility 0s 0.5s, opacity 0.5s linear;
}

    .top-title-section-team
    .team-box
    .team
    .member.active
    .about-member
    .social-member
    .svg {
        transition: 0.2s all ease-in-out;
        -webkit-transform: perspective(1px) translateZ(0);
        transform: perspective(1px) translateZ(0);
    }

    .top-title-section-team
    .team-box
    .team
    .member.active
    .about-member
    .social-member:active,
    .top-title-section-team
    .team-box
    .team
    .member.active
    .about-member
    .social-member:hover {
        -webkit-animation-name: bob-float, bob;
        animation-name: bob-float, bob;
        -webkit-animation-duration: 0.3s, 1.5s;
        animation-duration: 0.3s, 1.5s;
        -webkit-animation-delay: 0s, 0.3s;
        animation-delay: 0s, 0.3s;
        -webkit-animation-timing-function: ease-out, ease-in-out;
        animation-timing-function: ease-out, ease-in-out;
        -webkit-animation-iteration-count: 1, infinite;
        animation-iteration-count: 1, infinite;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-direction: normal, alternate;
        animation-direction: normal, alternate;
    }

        .top-title-section-team
        .team-box
        .team
        .member.active
        .about-member
        .social-member:active
        .svg,
        .top-title-section-team
        .team-box
        .team
        .member.active
        .about-member
        .social-member:hover
        .svg {
            fill: #3d8da5;
        }

.top-title-section-team .team-box .team.active-content + .instructions {
    opacity: 0;
}

.board-section {
    background: #18435c;
    margin-bottom: 80px;
}

    .board-section .board-text {
        max-width: 190px;
        margin-left: 65px;
    }

@media (max-width: 1366px) {
    .board-section .board-text {
        margin-left: 40px;
    }
}

@media (max-width: 1024px) {
    .board-section .board-text {
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .board-section .board-text {
        max-width: 100%;
        padding: 45px 0;
    }
}

.board-section .board-text h4 {
    color: #3d8da5;
    font-size: 40.5px;
    line-height: 25px;
    margin-bottom: 10px;
    font-family: "Unthrift Second Personal";
}

    .board-section .board-text h4.title-en {
        margin-bottom: 0;
    }

@media (max-width: 1024px) {
    .board-section .board-text h4 {
        font-size: 34.5px;
        line-height: 20px;
    }
}

.board-section .board-text h1 {
    font-size: 36px;
    letter-spacing: 7.2px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 25px;
}

@media (max-width: 1024px) {
    .board-section .board-text h1 {
        font-size: 30px;
        letter-spacing: 5.2px;
        margin-bottom: 15px;
    }
}

.board-section .board-text p {
    font-size: 15.5px;
    color: #fff;
    margin: 0;
    letter-spacing: 1.55px;
    line-height: 21px;
}

@media (max-width: 1024px) {
    .board-section .board-text p {
        font-size: 13.5px;
        letter-spacing: 0.55px;
        line-height: 19px;
    }
}

.board-section .nav-pills .nav-item {
    position: relative;
}

    .board-section .nav-pills .nav-item .card {
        border: 0;
        border-radius: 0;
        background: 0 0;
        cursor: pointer;
        height: 100%;
    }

        .board-section .nav-pills .nav-item .card .card-img {
            max-width: 70%;
            height: auto;
            border-radius: 0;
            border: 0;
            height: 100%;
            transition: linear all 0.2s;
        }

        .board-section .nav-pills .nav-item .card .card-img-overlay {
            padding: 32px 30px 20px;
            display: flex;
            flex-direction: column;
            opacity: 0;
            visibility: hidden;
            background: rgba(24, 67, 92, 0.65);
            transition: linear all 0.2s;
        }

@media (max-width: 1366px) {
    .board-section .nav-pills .nav-item .card .card-img-overlay {
        padding: 22px 20px 20px;
    }
}

@media (max-width: 767px) {
    .board-section .nav-pills .nav-item .card .card-img-overlay {
        padding: 18px 15px 15px;
    }
}

.board-section .nav-pills .nav-item .card .card-img-overlay .card-title {
    font-size: 20.8px;
    text-transform: uppercase;
    line-height: 26px;
    letter-spacing: 4.15px;
    max-width: 170px;
    position: relative;
    left: -30px;
    opacity: 0;
    transition: linear all 0.4s;
}

@media (max-width: 1024px) {
    .board-section .nav-pills .nav-item .card .card-img-overlay .card-title {
        font-size: 16.8px;
        letter-spacing: 2.15px;
        line-height: 21px;
    }
}

.board-section .nav-pills .nav-item .card .card-img-overlay a {
    width: 75px;
    display: block;
    margin-top: auto;
    margin-left: auto;
    position: relative;
    right: -30px;
    opacity: 0;
    transition: linear all 0.4s;
}

@media (max-width: 1024px) {
    .board-section .nav-pills .nav-item .card .card-img-overlay a {
        width: 65px;
    }
}

.board-section .nav-pills .nav-item .card .card-img-overlay a .svg {
    fill: #fff;
}

.board-section .nav-pills .nav-item .card.active .card-img-overlay,
.board-section .nav-pills .nav-item .card:hover .card-img-overlay {
    opacity: 1;
    visibility: visible;
}

    .board-section .nav-pills .nav-item .card.active .card-img-overlay .card-title,
    .board-section .nav-pills .nav-item .card:hover .card-img-overlay .card-title {
        left: 0;
        opacity: 1;
    }

    .board-section .nav-pills .nav-item .card.active .card-img-overlay a,
    .board-section .nav-pills .nav-item .card:hover .card-img-overlay a {
        right: 0;
        opacity: 1;
        -webkit-transform: perspective(1px) translateZ(0);
        transform: perspective(1px) translateZ(0);
    }

        .board-section .nav-pills .nav-item .card.active .card-img-overlay a:active,
        .board-section .nav-pills .nav-item .card.active .card-img-overlay a:hover,
        .board-section .nav-pills .nav-item .card:hover .card-img-overlay a:active,
        .board-section .nav-pills .nav-item .card:hover .card-img-overlay a:hover {
            -webkit-animation-name: bob-float, bob;
            animation-name: bob-float, bob;
            -webkit-animation-duration: 0.3s, 1.5s;
            animation-duration: 0.3s, 1.5s;
            -webkit-animation-delay: 0s, 0.3s;
            animation-delay: 0s, 0.3s;
            -webkit-animation-timing-function: ease-out, ease-in-out;
            animation-timing-function: ease-out, ease-in-out;
            -webkit-animation-iteration-count: 1, infinite;
            animation-iteration-count: 1, infinite;
            -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
            -webkit-animation-direction: normal, alternate;
            animation-direction: normal, alternate;
        }

.board-section .tab-content {
    background: #eff2f4;
    position: relative;
    transition: 0.3s all linear;
}

    .board-section .tab-content .tab-pane {
        padding: 50px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s linear;
    }

@media (max-width: 1024px) {
    .board-section .tab-content .tab-pane {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .board-section .tab-content .tab-pane {
        padding: 40px 20px;
    }
}

.board-section .tab-content .tab-pane h2 {
    font-size: 13.5px;
    letter-spacing: 2.7px;
    color: #95a3ab;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .board-section .tab-content .tab-pane h2 {
        font-size: 11.5px;
        letter-spacing: 1.7px;
    }
}

.board-section .tab-content .tab-pane .logos {
    margin: 40px auto;
}

@media (max-width: 1024px) {
    .board-section .tab-content .tab-pane .logos {
        margin: 30px auto;
    }
}

.board-section .tab-content .tab-pane .logos img {
    max-width: 150px;
    margin: 20px 50px;
    width: 100%;
    height: 100%;
}

@media (max-width: 1440px) {
    .board-section .tab-content .tab-pane .logos img {
        max-width: 130px;
        margin: 20px 35px;
    }
}

@media (max-width: 1024px) {
    .board-section .tab-content .tab-pane .logos img {
        max-width: 110px;
        margin: 10px 25px;
    }
}

@media (max-width: 768px) {
    .board-section .tab-content .tab-pane .logos img {
        max-width: 90px;
        margin: 10px 20px;
    }
}

.board-section .tab-content .tab-pane.active.show {
    opacity: 1;
    visibility: visible;
    -webkit-animation-name: slideInUpNormal;
    animation-name: slideInUpNormal;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    transition: visibility 0s 0.5s, opacity 0.5s linear;
}

.team-box-carousel {
    padding-bottom: 80px;
    margin-top: 70px;
}

@media (max-width: 767px) {
    .team-box-carousel {
        margin-top: 50px;
    }
}

.team-box-carousel .carousel-inner .carousel-item-next,
.team-box-carousel .carousel-inner .carousel-item-prev,
.team-box-carousel .carousel-inner .carousel-item.active {
    display: flex;
}

.team-box-carousel .carousel-inner .carousel-item-next,
.team-box-carousel .carousel-inner .carousel-item-right.active {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
}

@media (max-width: 767px) {
    .team-box-carousel .carousel-inner .carousel-item-next,
    .team-box-carousel .carousel-inner .carousel-item-right.active {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.team-box-carousel .carousel-inner .carousel-item-left.active,
.team-box-carousel .carousel-inner .carousel-item-prev {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (max-width: 767px) {
    .team-box-carousel .carousel-inner .carousel-item-left.active,
    .team-box-carousel .carousel-inner .carousel-item-prev {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.team-box-carousel .carousel-inner .carousel-item-left,
.team-box-carousel .carousel-inner .carousel-item-right {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.team-box-carousel .carousel-item .card {
    padding: 0;
    border-radius: 0;
    border: 0;
    height: 420px;
    max-width: 260px;
    margin: 0 auto;
}

    .team-box-carousel .carousel-item .card .card-img-top {
        width: 100%;
        height: 200px;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: 50% 10px;
        object-position: 50% 10px;
        border: 0;
        border-radius: 0;
        padding: 0 50px;
    }

    .team-box-carousel .carousel-item .card .card-body {
        padding: 20px 15px;
        height: 220px;
    }

        .team-box-carousel .carousel-item .card .card-body .infos h3 {
            font-size: 11.5px;
            letter-spacing: 1px;
            color: #18435c;
            text-transform: uppercase;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .team-box-carousel .carousel-item .card .card-body .infos h2 {
            font-size: 15.8px;
            letter-spacing: 1.5px;
            color: #3d8da5;
            text-transform: uppercase;
            margin: 0;
        }

        .team-box-carousel .carousel-item .card .card-body .jobs {
            margin-top: 15px;
        }

            .team-box-carousel .carousel-item .card .card-body .jobs p {
                color: #839097;
                font-size: 12px;
                letter-spacing: 0.7px;
                line-height: 18px;
                margin-bottom: 0;
            }

        .team-box-carousel .carousel-item .card .card-body .social-member {
            display: inline-block;
            width: 65px;
            margin-top: 15px;
        }

            .team-box-carousel .carousel-item .card .card-body .social-member .svg {
                fill: #18435c;
            }

            .team-box-carousel .carousel-item .card .card-body .social-member:active .svg,
            .team-box-carousel .carousel-item .card .card-body .social-member:focus .svg,
            .team-box-carousel .carousel-item .card .card-body .social-member:hover .svg {
                fill: #3d8da5;
            }

.team-box-carousel .arrow {
    cursor: pointer;
    display: inline-block;
    height: 45px;
    width: 50px;
    text-align: center;
    line-height: 43px;
    background-color: #18435c;
    transition: all 0.3s ease-in-out;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .team-box-carousel .arrow .carousel__icon {
        display: inline-block;
        vertical-align: middle;
        width: 25px;
        fill: #fff;
        stroke: #fff;
        transition: all 0.3s ease-in-out;
    }

    .team-box-carousel .arrow:active,
    .team-box-carousel .arrow:focus,
    .team-box-carousel .arrow:hover {
        background-color: #18435c;
    }

        .team-box-carousel .arrow:active .carousel__icon,
        .team-box-carousel .arrow:focus .carousel__icon,
        .team-box-carousel .arrow:hover .carousel__icon {
            fill: #fff;
            stroke: #fff;
        }

.top-title-section-contact {
    background-image: url(/img/grade-pag@2x.png?v=hcyUTgN-slWr8Wa1VNIw29y15LM);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: top center;
    min-height: 707px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .top-title-section-contact {
        min-height: 675px;
    }
}

@media (max-width: 768px) {
    .top-title-section-contact {
        min-height: 520px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .top-title-section-contact {
        background-size: cover;
    }
}

.top-title-section-contact .title-box {
    margin-top: 35px;
    margin-bottom: 50px;
}

@media (max-width: 1024px) {
    .top-title-section-contact .title-box {
        margin-bottom: 40px;
    }
}

.top-title-section-contact .text-box {
    max-width: 625px;
    margin: 0 auto 100px;
}

@media (max-width: 768px) {
    .top-title-section-contact .text-box {
        margin-bottom: 70px;
    }
}

.top-title-section-contact .text-box p {
    margin: 0;
}

@media (max-width: 767px) {
    .top-title-section-contact .box-infos-contact {
        margin-bottom: 40px;
        padding: 0 20px;
    }
}

.top-title-section-contact .box-infos-contact img {
    max-width: 40px;
}

.top-title-section-contact .box-infos-contact a {
    color: #3D8DA5;
    display: inline-block;
    margin-left: 12px;
    font-size: 16px;
    letter-spacing: 1.04px;
    line-height: 25.8px;
    position: relative;
}

@media (max-width: 1024px) {
    .top-title-section-contact .box-infos-contact a {
        font-size: 18px;
        letter-spacing: 0.9px;
    }
}

@media (max-width: 768px) {
    .top-title-section-contact .box-infos-contact a {
        font-size: 14px;
        letter-spacing: 0.5px;
        line-height: 21.8px;
    }
}

.top-title-section-contact .box-infos-contact a:after {
    content: "";
    display: inline-block;
    height: 8px;
    width: 8px;
    background-color: #18435c;
    border-radius: 100%;
    margin: 0 6px;
    opacity: 0;
    transition: all 0.2s ease-in;
    position: absolute;
    top: 50%;
    -webkit-transform: perspective(1px) translateZ(0) translateY(-50%);
    transform: perspective(1px) translateZ(0) translateY(-50%);
    right: -25px;
}

.top-title-section-contact .box-infos-contact a:active:after,
.top-title-section-contact .box-infos-contact a:focus:after,
.top-title-section-contact .box-infos-contact a:hover:after {
    opacity: 1;
    -webkit-animation-name: bob-float, bob;
    animation-name: bob-float, bob;
    -webkit-animation-duration: 0.3s, 1.5s;
    animation-duration: 0.3s, 1.5s;
    -webkit-animation-delay: 0s, 0.3s;
    animation-delay: 0s, 0.3s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
}

.top-title-section-contact .aditional-links {
    margin: 60px 0;
}

@media (max-width: 767px) {
    .top-title-section-contact .aditional-links {
        margin: 30px 0 60px;
    }
}

.top-title-section-contact .aditional-links .icon {
    margin: 0 25px;
}

    .top-title-section-contact .aditional-links .icon a .svg {
        fill: #18435c;
        width: 85px;
        transition: 0.2s all ease-in-out;
    }

    .top-title-section-contact .aditional-links .icon a:active .svg,
    .top-title-section-contact .aditional-links .icon a:focus .svg,
    .top-title-section-contact .aditional-links .icon a:hover .svg {
        fill: #3d8da5;
    }

.forms-contact-section {
    margin-bottom: 60px;
    background: #eff2f4;
    min-height: 780px;
}

@media (max-width: 1024px) {
    .forms-contact-section {
        min-height: 740px;
    }
}

@media (max-width: 768px) {
    .forms-contact-section {
        min-height: auto;
        padding: 40px 20px;
    }
}

@media (max-width: 767px) {
    .forms-contact-section {
        padding: 30px 0;
    }
}

.forms-contact-section .container-fluid {
    max-width: 1320px;
}

.forms-contact-section .nav-pills {
    margin-top: -180px;
}

@media (max-width: 768px) {
    .forms-contact-section .nav-pills {
        display: none;
    }
}

.forms-contact-section .nav-pills .nav-item {
    height: 370px;
    border: 0;
    border-radius: 0;
}

@media (max-width: 1024px) {
    .forms-contact-section .nav-pills .nav-item {
        height: 330px;
    }
}

.forms-contact-section .nav-pills .nav-item .nav-link {
    height: 100%;
    order: 0;
    border-radius: 0;
    padding: 25px;
    background: #fff;
    box-shadow: 0 0 10px 1.5px rgba(0, 0, 0, 0.1);
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    transition: 0.2s all;
}

@media (max-width: 1024px) {
    .forms-contact-section .nav-pills .nav-item .nav-link {
        padding: 20px;
    }
}

.forms-contact-section .nav-pills .nav-item .nav-link h4 {
    font-family: "Unthrift Second Personal";
    font-size: 47px;
    line-height: 29px;
    color: #3d8da5;
    margin-top: 25px;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .forms-contact-section .nav-pills .nav-item .nav-link h4 {
        font-size: 42px;
        line-height: 24px;
    }
}

.forms-contact-section .nav-pills .nav-item .nav-link h4 span {
    font-size: 20.8px;
    letter-spacing: 3.35px;
    text-transform: uppercase;
    color: #18435c;
    display: block;
    font-family: Circe;
}

@media (max-width: 1024px) {
    .forms-contact-section .nav-pills .nav-item .nav-link h4 span {
        font-size: 15.8px;
        letter-spacing: 2.35px;
    }
}

.forms-contact-section .nav-pills .nav-item .nav-link p {
    font-size: 14.8px;
    letter-spacing: 1.68px;
    line-height: 23px;
    color: #839097;
    margin-bottom: 0;
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .forms-contact-section .nav-pills .nav-item .nav-link p {
        font-size: 14.8px;
        line-height: 21px;
        letter-spacing: 0.65px;
    }
}

.forms-contact-section .nav-pills .nav-item .nav-link .link-text {
    text-align: center;
    display: block;
    text-transform: uppercase;
    color: #18435c;
    font-size: 12.5px;
    letter-spacing: 2.5px;
    margin-top: auto;
    margin-bottom: 5px;
    position: relative;
}

    .forms-contact-section .nav-pills .nav-item .nav-link .link-text:after {
        content: "";
        width: 1px;
        height: 24px;
        display: block;
        background: #3d8da5;
        position: absolute;
        bottom: -30px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

@media (max-width: 1024px) {
    .forms-contact-section .nav-pills .nav-item .nav-link .link-text:after {
        bottom: -25px;
    }
}

.forms-contact-section .nav-pills .nav-item .nav-link.active {
    background: #18435c;
}

    .forms-contact-section .nav-pills .nav-item .nav-link.active h4 span {
        color: #fff;
    }

    .forms-contact-section .nav-pills .nav-item .nav-link.active p {
        color: #fff;
    }

    .forms-contact-section .nav-pills .nav-item .nav-link.active .link-text {
        color: #fff;
    }

.forms-contact-section .nav-pills .nav-item .nav-link:hover {
    -webkit-animation-name: bob-float, bob;
    animation-name: bob-float, bob;
    -webkit-animation-duration: 0.3s, 1.5s;
    animation-duration: 0.3s, 1.5s;
    -webkit-animation-delay: 0s, 0.3s;
    animation-delay: 0s, 0.3s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
}

@media (max-width: 768px) {
    .forms-contact-section .tab-content .tab-pane {
        display: block;
        opacity: 1;
        margin: 0 0 20px;
    }
}

.forms-contact-section .tab-content .card {
    border: 0;
    border-radius: 0;
    background: 0 0;
    max-width: 770px;
    margin: 90px auto;
}

@media (max-width: 768px) {
    .forms-contact-section .tab-content .card {
        margin: 0 auto;
    }
}

.forms-contact-section .tab-content .card .card-header {
    display: none;
    height: 100px;
    padding: 0;
    box-shadow: 0 0 10px 1.5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .forms-contact-section .tab-content .card .card-header {
        display: block;
        cursor: pointer;
    }
}

@media (max-width: 767px) {
    .forms-contact-section .tab-content .card .card-header {
        height: 90px;
    }
}

.forms-contact-section .tab-content .card .card-header .link-contact {
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 15px 25px;
    transition: 0.2s all;
}

@media (max-width: 767px) {
    .forms-contact-section .tab-content .card .card-header .link-contact {
        padding: 15px;
    }
}

.forms-contact-section .tab-content .card .card-header .link-contact h4 {
    font-family: "Unthrift Second Personal";
    font-size: 36px;
    line-height: 23px;
    color: #3d8da5;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .forms-contact-section .tab-content .card .card-header .link-contact h4 {
        font-size: 30px;
        line-height: 18px;
    }
}

.forms-contact-section .tab-content .card .card-header .link-contact h4 span {
    font-size: 18.8px;
    letter-spacing: 3.35px;
    text-transform: uppercase;
    color: #18435c;
    display: block;
    font-family: Circe;
}

@media (max-width: 767px) {
    .forms-contact-section .tab-content .card .card-header .link-contact h4 span {
        font-size: 13.8px;
        letter-spacing: 2.35px;
    }
}

.forms-contact-section
.tab-content
.card
.card-header
.link-contact
.link-text {
    margin-left: auto;
    display: block;
    text-transform: uppercase;
    color: #18435c;
    font-size: 13.5px;
    letter-spacing: 2.8px;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .forms-contact-section
    .tab-content
    .card
    .card-header
    .link-contact
    .link-text {
        font-size: 10.5px;
        letter-spacing: 0.8px;
    }
}

.forms-contact-section
.tab-content
.card
.card-header
.link-contact[aria-expanded="true"] {
    background: #18435c;
}

    .forms-contact-section
    .tab-content
    .card
    .card-header
    .link-contact[aria-expanded="true"]
    h4
    span {
        color: #fff;
    }

    .forms-contact-section
    .tab-content
    .card
    .card-header
    .link-contact[aria-expanded="true"]
    .link-text {
        color: #fff;
    }

.forms-contact-section .tab-content .card .collapse:not(.show) {
    display: block;
}

@media (max-width: 768px) {
    .forms-contact-section .tab-content .card .collapse:not(.show) {
        display: none;
    }
}

@media (max-width: 768px) {
    .forms-contact-section .tab-content .card .card-body {
        margin: 20px 0;
    }
}

@media (max-width: 767px) {
    .forms-contact-section .tab-content .card .card-body {
        margin: 10px 0;
        padding: 10px;
    }
}

.forms-contact-section .tab-content .card .card-body .text-form-mobile {
    margin-bottom: 50px;
}

    .forms-contact-section .tab-content .card .card-body .text-form-mobile p {
        font-size: 16.8px;
        letter-spacing: 1.65px;
        line-height: 23px;
        color: #839097;
    }

@media (max-width: 767px) {
    .forms-contact-section .tab-content .card .card-body .text-form-mobile p {
        font-size: 15.8px;
        letter-spacing: 0.65px;
        line-height: 22px;
    }
}

@media (max-width: 767px) {
    .forms-contact-section .tab-content .card .card-body form .form-row {
        margin-bottom: 30px;
    }
}

.forms-contact-section .tab-content .card .card-body form .form-group {
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .forms-contact-section .tab-content .card .card-body form .form-group {
        margin-bottom: 40px;
    }
}

.forms-contact-section
.tab-content
.card
.card-body
form
.form-group:last-of-type {
    margin-bottom: 10px;
}

.forms-contact-section
.tab-content
.card
.card-body
form
.form-group
.form-control {
    border: 0;
    border-bottom: 2px solid #18435c;
    border-radius: 0;
    font-size: 15.5px;
    color: #3d8da5;
    font-weight: 700;
    letter-spacing: 0.78px;
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 768px) {
    .forms-contact-section
    .tab-content
    .card
    .card-body
    form
    .form-group
    .form-control {
        font-size: 14.5px;
        letter-spacing: 0.68px;
    }
}

.forms-contact-section
.tab-content
.card
.card-body
form
.form-group
.form-control::-webkit-input-placeholder {
    color: #3d8da5;
}

.forms-contact-section
.tab-content
.card
.card-body
form
.form-group
.form-control:focus {
    box-shadow: none;
    border-color: #3d8da5;
}

.forms-contact-section
.tab-content
.card
.card-body
form
.form-group
.label-file,
.forms-contact-section .tab-content .card .card-body form .form-group label {
    font-size: 17px;
    line-height: 19.5px;
    color: #839097;
    letter-spacing: 0.84px;
}

@media (max-width: 768px) {
    .forms-contact-section
    .tab-content
    .card
    .card-body
    form
    .form-group
    .label-file,
    .forms-contact-section .tab-content .card .card-body form .form-group label {
        font-size: 15.5px;
        letter-spacing: 0.68px;
    }
}

.forms-contact-section
.tab-content
.card
.card-body
form
.form-group
.label-file {
    max-width: 155px;
    margin-right: auto;
}

.forms-contact-section
.tab-content
.card
.card-body
form
.form-group
.label-file-bigger {
    max-width: 175px;
}

.forms-contact-section
.tab-content
.card
.card-body
form
.form-group
.bootstrap-filestyle
input {
    display: none;
}

.forms-contact-section
.tab-content
.card
.card-body
form
.form-group
.bootstrap-filestyle
.btn {
    margin: 0;
    font-size: 16.8px;
    text-transform: lowercase;
    letter-spacing: 0.84px;
    background-color: transparent;
    color: #18435c;
    border: 1px solid #18435c;
    text-align: center;
    height: 40px;
    line-height: 40px;
    width: 100px;
    font-weight: 700;
}

    .forms-contact-section
    .tab-content
    .card
    .card-body
    form
    .form-group
    .bootstrap-filestyle
    .btn
    .badge-light {
        color: #3d8da5;
    }

    .forms-contact-section
    .tab-content
    .card
    .card-body
    form
    .form-group
    .bootstrap-filestyle
    .btn:active,
    .forms-contact-section
    .tab-content
    .card
    .card-body
    form
    .form-group
    .bootstrap-filestyle
    .btn:focus,
    .forms-contact-section
    .tab-content
    .card
    .card-body
    form
    .form-group
    .bootstrap-filestyle
    .btn:hover {
        color: #fff;
        background-color: #18435c;
    }

.forms-contact-section .tab-content .card .card-body form .text-form {
    font-size: 15.5px;
    color: #3d8da5;
    letter-spacing: 0.78px;
    font-weight: 700;
    margin-bottom: 20px;
}

    .forms-contact-section .tab-content .card .card-body form .text-form span {
        font-weight: 400;
    }

@media (max-width: 767px) {
    .forms-contact-section .tab-content .card .card-body form .check-group {
        flex-wrap: wrap;
    }
}

.forms-contact-section .tab-content .card .card-body form .check-group label {
    font-size: 18px;
    letter-spacing: 0.9px;
    color: #839097;
}

@media (max-width: 768px) {
    .forms-contact-section .tab-content .card .card-body form .check-group label {
        font-size: 16.5px;
        letter-spacing: 0.68px;
    }
}

@media (max-width: 767px) {
    .forms-contact-section .tab-content .card .card-body form .check-group label {
        font-size: 15.5px;
        letter-spacing: 0.58px;
    }
}

.forms-contact-section
.tab-content
.card
.card-body
form
.check-group
.wpcf7-checkbox,
.forms-contact-section
.tab-content
.card
.card-body
form
.check-group
.wpcf7-form-control-wrap {
    width: 100%;
}

@media (max-width: 767px) {
    .forms-contact-section
    .tab-content
    .card
    .card-body
    form
    .check-group
    .wpcf7-checkbox,
    .forms-contact-section
    .tab-content
    .card
    .card-body
    form
    .check-group
    .wpcf7-form-control-wrap {
        flex-wrap: wrap;
    }
}

.forms-contact-section
.tab-content
.card
.card-body
form
.check-group
.wpcf7-list-item {
    margin: 0;
    min-width: 175px;
}

@media (max-width: 768px) {
    .forms-contact-section
    .tab-content
    .card
    .card-body
    form
    .check-group
    .wpcf7-list-item {
        min-width: 165px;
    }
}

@media (max-width: 767px) {
    .forms-contact-section
    .tab-content
    .card
    .card-body
    form
    .check-group
    .wpcf7-list-item {
        min-width: 50%;
    }
}

.forms-contact-section
.tab-content
.card
.card-body
form
.check-group
.custom-control {
    min-width: 25%;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .forms-contact-section
    .tab-content
    .card
    .card-body
    form
    .check-group
    .custom-control {
        margin-right: 0;
        margin-left: 0;
        min-width: 50%;
    }
}

.forms-contact-section
.tab-content
.card
.card-body
form
.check-group
.custom-control:first-child {
    margin-left: 0;
}

.forms-contact-section
.tab-content
.card
.card-body
form
.check-group
.custom-control.overflow-checkbox
.overflow-control-input {
    display: none;
}

    .forms-contact-section
    .tab-content
    .card
    .card-body
    form
    .check-group
    .custom-control.overflow-checkbox
    .overflow-control-input:checked ~ .overflow-control-indicator::after {
        -webkit-transform: rotateZ(45deg) scale(1);
        transform: rotateZ(45deg) scale(1);
        top: -6px;
        left: 5px;
    }

    .forms-contact-section
    .tab-content
    .card
    .card-body
    form
    .check-group
    .custom-control.overflow-checkbox
    .overflow-control-input:checked ~ .overflow-control-indicator::before {
        opacity: 1;
    }

.forms-contact-section
.tab-content
.card
.card-body
form
.check-group
.custom-control.overflow-checkbox
.overflow-control-indicator {
    border-radius: 0;
    display: inline-block;
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #18435c;
}

    .forms-contact-section
    .tab-content
    .card
    .card-body
    form
    .check-group
    .custom-control.overflow-checkbox
    .overflow-control-indicator::after {
        content: "";
        display: block;
        position: absolute;
        width: 16px;
        height: 16px;
        transition: 0.3s;
        -webkit-transform: rotateZ(90deg) scale(0);
        transform: rotateZ(90deg) scale(0);
        width: 10px;
        border-bottom: 4px solid #18435c;
        border-right: 4px solid #18435c;
        border-radius: 3px;
        top: -2px;
        left: 2px;
    }

    .forms-contact-section
    .tab-content
    .card
    .card-body
    form
    .check-group
    .custom-control.overflow-checkbox
    .overflow-control-indicator::before {
        content: "";
        display: block;
        position: absolute;
        width: 16px;
        height: 16px;
        transition: 0.3s;
        width: 10px;
        border-right: 7px solid #eff2f4;
        border-radius: 3px;
        -webkit-transform: rotateZ(45deg) scale(1);
        transform: rotateZ(45deg) scale(1);
        top: -4px;
        left: 5px;
        opacity: 0;
    }

.forms-contact-section .tab-content .card .card-body form .btn {
    width: 138px;
    height: 50px;
    line-height: 50px;
    text-transform: uppercase;
    font-size: 16.8px;
    letter-spacing: 3.35px;
    padding: 0;
    margin: 40px auto 0;
    display: block;
    background: #18435c;
    border-color: #18435c;
    color: #fff;
    border-radius: 0;
    transition: 0.2s all ease-in;
}

@media (max-width: 767px) {
    .forms-contact-section .tab-content .card .card-body form .btn {
        width: 100%;
        font-size: 13.5px;
        letter-spacing: 2px;
        height: 55px;
        line-height: 55px;
    }
}

.forms-contact-section .tab-content .card .card-body form .btn:active,
.forms-contact-section .tab-content .card .card-body form .btn:focus,
.forms-contact-section .tab-content .card .card-body form .btn:hover {
    background: 0 0;
    color: #18435c;
}

@-webkit-keyframes autofill {
    to {
        color: #3d8da5;
        background: 0 0;
    }
}

.forms-contact-section
.tab-content
.card
.card-body
form
input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

/* adicionado 10/12/18 */
.forms-contact-section
.tab-content
.card
.card-body
form
.form-group
.label-file {
    margin-top: 17px !important;
}
/* adicionado 12/12/18 */
.top-title-section-contact {
    min-height: 450px;
}

@media (max-width: 767px) {
    .top-title-section-contact {
        min-height: auto;
    }
}

.top-title-section-contact2 {
    background-image: none;
    min-height: 0;
    margin-bottom: 60px;
}

#midia-container {
    display: flex;
    margin-bottom: 70px;
    width: 100%;
}

#minha-first-content {
    display: flex;
    flex-direction: column;
    background: #18435c;
    width: 308px;
    height: 182px;
    color: #ffffff;
    justify-content: center;
    padding: 82px 66px;
}

    #minha-first-content > h1 {
        font-family: "Circe";
        font-size: 30px;
        font-weight: 300;
        margin-bottom: 18px;
        line-height: 45px;
    }

    #minha-first-content > p {
        font-family: "Circe";
        font-size: 14px;
        line-height: 20px;
        font-weight: 300;
    }

#logos-content {
    display: flex;
    background: #eff2f4;
    width: calc(100% - 308px);
    justify-content: space-evenly;
    align-items: center;
    padding: 0 30px;
}

    #logos-content > a {
        height: 182px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 17px;
    }

.logos-jornais > img {
    height: 20px;
    filter: grayscale(1);
}

.folha {
    filter: grayscale(1) brightness(3) !important;
}

    .folha:hover {
        filter: grayscale(0) brightness(1) !important;
    }

.logos-jornais > img:hover {
    filter: grayscale(0);
    transition: filter 0.1s;
}

@media screen and (max-width: 1200px) {
    #midia-container {
        padding-left: 0;
        flex-direction: column;
    }

    #minha-first-content {
        width: 100%;
    }

    #logos-content {
        width: 100%;
        flex-direction: column;
        padding: 0;
    }

        #logos-content > a {
            width: 100%;
            height: 96px;
        }

    .logos-jornais > img {
        filter: grayscale(0);
        transition: filter 0.1s;
    }
}

footer {
    margin-top: 0 !important;
}

#atuacao-container {
    display: flex;
    justify-content: center;
    background-image: url("<?php echo esc_url(get_template_directory_uri()); ?>/images/fundo-atuacao.png");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-color: #fbfbfb;
}

.obs-container {
    color: #18435c;
    font-size: 12px;
    font-family: "Segoe UI";
}

.max-width-container {
    width: 100%;
    max-width: 1230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 38px 0 100px;
}

.card-container {
    margin-bottom: 37px;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 12px 12px 15px;
    max-width: 720px;
    width: 100%;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 10px;
    background: #ffffff;
}

.img-card-container {
    width: 223px;
    display: flex;
    align-items: center;
}

.text-card-container {
    width: calc(100% - 223px);
    color: #707070;
    font-size: 12px;
    display: flex;
    align-items: center;
}

    .text-card-container > p {
        margin: 0;
    }

@media screen and (max-width: 730px) {
    #atuacao-container {
        padding: 15px;
    }

    .card-container {
        padding: 15px;
        flex-direction: column;
    }

    .img-card-container {
        padding: 30px;
        justify-content: center;
        align-items: center;
    }

    .text-card-container {
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

#contato, #investimentos, .nav-link {
    scroll-margin-top: 128px;
}