/***************************************
*General
****************************************/

body {
    font-family: "Urbanist", sans-serif;
    color: #282828;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.62em;
    position: relative;
    font-optical-sizing: auto;
    font-style: normal;
    overflow-x: hidden;
}

.sect-title {
    position: relative;
}

.sub-title {
    color: #a8daeb;
    font-weight: 400;
    font-size: 27px;
    line-height: 1.2em;
    letter-spacing: normal;
    margin-bottom: 33px;
}

.sect-title h2,
.sect-title .h2,
.bloc-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: #03545f;
    line-height: 1.2em;
    margin-bottom: 28px;
    position: relative;
    letter-spacing: normal;
}

.sect-title h1,
.sect-title .h1,
.page-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 800;
    font-size: 38px;
    color: #03545f;
    line-height: 1.2em;
    margin-bottom: 37px;
    position: relative;
    letter-spacing: normal;
}


/* Preloader */

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/preloader.svg);
    background-size: 140px;
}


/** Animation **/

@-webkit-keyframes moveLeft {
    0% {
        -webkit-transform: translateX(-25px);
        transform: translateX(-25px);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-25px);
        transform: translateX(-25px);
    }
}

@keyframes moveLeft {
    0% {
        -webkit-transform: translateX(-25px);
        transform: translateX(-25px);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-25px);
        transform: translateX(-25px);
    }
}

.infinite-move-left {
    -webkit-animation: moveLeft 5s linear infinite;
    animation: moveLeft 5s linear infinite;
}

@-webkit-keyframes moveBottom {
    0% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }
    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }
}

@keyframes moveBottom {
    0% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }
    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }
}

.infinite-move-bottom {
    -webkit-animation: moveBottom 5s linear infinite;
    animation: moveBottom 5s linear infinite;
}

@-webkit-keyframes cxufadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes cxufadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.cxufadeUp,
.cxufadeUp4,
.cxufadeUp3,
.cxufadeUp2 {
    opacity: 0;
    -webkit-animation-name: cxufadeUp;
    animation-name: cxufadeUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.cxufadeUp2 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.cxufadeUp3 {
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s;
}

.cxufadeUp4 {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        /*-webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);*/
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        /*-webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);*/
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

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

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeOut {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}


/** Slider **/

.slide-controls button,
.slide-controls button.owl-prev,
.slide-controls button.owl-next {
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    position: relative;
    align-items: center;
    justify-content: center;
    background: none;
    min-height: auto;
    height: auto;
    width: auto;
    color: inherit;
    display: inline-flex;
    font: inherit;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.swiper-container {
    position: relative;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

.slide-controls {
    display: flex;
    align-items: center;
    column-gap: 19px;
    -webkit-column-gap: 19px;
}

.slide-controls .swiper-button-prev,
.slide-controls .swiper-button-next {
    width: 72px;
    height: 72px;
    background-color: #03545f;
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    position: relative;
    margin: 0;
    padding: 0;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    border: 2px solid #fff;
    border-radius: 50%;
}

.slide-controls .swiper-button-prev:hover,
.slide-controls .swiper-button-next:hover {
    background-color: #a8daeb;
    border-color: #a8daeb;
}

.slide-controls .swiper-button-prev:hover svg path,
.slide-controls .swiper-button-next:hover svg path {
    color: #03545f;
    fill: #03545f !important;
}

.swiper-pagination-bullets {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 46px;
}

.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    border-radius: 50%;
    background: transparent;
    background-color: #0e4ea7;
    display: inline-block;
    opacity: 1;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ededed;
    width: 11px;
    height: 11px;
}


/** Colors **/

.color--1 {
    color: #fff !important;
}

.color--2 {
    color: #03545f !important;
}

.color--3 {
    color: #a8daeb !important;
}

.color--4 {
    color: #c3dce4 !important;
}

.color--5 {
    color: #000 !important;
}

.color--6 {
    color: #052529 !important;
}


/** Background **/

.background--1 {
    background-color: #fff !important;
}

.background--2 {
    background-color: #03545f !important;
}

.background--3 {
    background-color: #a8daeb !important;
}

.background--4 {
    background-color: #c3dce4 !important;
}

.background--5 {
    background-color: #000 !important;
}

.background--6 {
    background-color: #052529 !important;
}


/** Socials **/

.social-links .social-link {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    position: relative;
}

.social-links {
    display: flex;
    align-items: center;
}

.social-links .social-link:not(:last-child) {
    margin-right: 10px;
}

.social-links .social-link:hover svg path,
.social-links .social-link:focus svg path {
    color: #a7daea;
    fill: #a7daea !important;
}


/** Variables **/

p {
    margin-bottom: 1.62em;
}

section {
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

figure {
    margin: 0;
}

a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
}

.form-group {
    margin-bottom: 25px;
}

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

strong,
b {
    font-weight: 700;
}

iframe {
    width: 100%;
    border: none;
    display: block;
}

.img-resp,
img {
    max-width: 100%;
    height: auto;
}

*::-moz-selection {
    background: #1a1a1a;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #1a1a1a;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #1a1a1a;
    color: #fff;
    text-shadow: none;
}

.form-control,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input,
select {
    font-family: "DM Sans", sans-serif;
    vertical-align: middle;
    width: 100%;
    padding: 17px 20px;
    font-size: 16px;
    font-weight: 300;
    color: #7f7f7f;
    line-height: 1.2em;
    text-transform: inherit;
    outline: none;
    height: 56px;
    border: 0;
    background: #fff;
    margin: 0;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    text-align: left;
    position: relative;
    z-index: 1;
    font-style: normal;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #7f7f7f;
    border: 0;
    background: #fff;
}

input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #7f7f7f !important;
}

input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #7f7f7f !important;
    opacity: 1;
    /* Firefox */
}

input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #7f7f7f !important;
}

textarea::placeholder {
    color: #7f7f7f !important;
}

.btn-2,
.btn-1,
input[type="submit"],
input[type="button"] {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    color: #03545f;
    line-height: 1.2em;
    text-transform: none;
    background: #a8daeb;
    font-size: 22px;
    padding: 15px 35px;
    height: 60px;
    text-align: center;
    position: relative;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    cursor: pointer;
    outline: none !important;
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-shadow: none;
    -webkit-border-radius: 38px;
    -moz-border-radius: 38px;
    border-radius: 38px;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
}

.btn-1,
.btn-2 {
    min-width: 189px;
}

.btn-2 {
    background: #fff;
}

.btn-1 svg {
    margin-right: 25px;
}

.btn-2:before,
.btn-1:before {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    inset-inline-start: 0;
    top: 0;
    background-color: #03545f;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: -1;
}

.btn-2:before {
    background-color: #03545f;
}

.btn-2:hover:before,
.btn-2:focus:before,
.btn-1:hover:before,
.btn-1:focus:before {
    width: 100%;
}

.btn-1:focus,
.btn-1:hover,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="button"]:hover,
input[type="button"]:focus {
    background: #a8daeb;
    color: #fff;
}

.btn-2:focus,
.btn-2:hover {
    background: #fff;
    color: #fff;
}

.text-align-last {
    -moz-text-align-last: center;
    text-align-last: center;
}

.text-hyphens {
    -ms-hyphens: auto;
    hyphens: auto;
}

.overlay {
    content: '';
    background-color: #052529;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.7;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.flex--1 {
    -ms-flex: 1;
    flex: 1;
}

.z-index--1 {
    z-index: 1;
}

.z-index--2 {
    z-index: 2;
}

.z-index--auto {
    z-index: auto;
}

.margin-b-30px {
    margin-bottom: 30px;
}

.margin-l-neg15px {
    margin-left: -15px;
}

.margin-r-neg15px {
    margin-right: -15px;
}

.border-radius-35px {
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
}

.text-normal {
    text-transform: none;
}

.text-underline {
    text-decoration: underline;
}

.text-transform-none {
    text-transform: none;
}

.font-size-30px {
    font-size: 30px;
    line-height: 1.2em;
}

.bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cursor-pointer {
    cursor: pointer;
}

.bg-fixed {
    background-attachment: fixed;
}

.bg-cover {
    background-size: cover;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.padding-r-65px {
    padding-right: 65px;
}

.padding-l-65px {
    padding-left: 65px;
}

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

.top-0 {
    top: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.width-50 {
    width: 50%;
}

.column-gap-30px {
    -moz-column-gap: 30px;
    -webkit-column-gap: 30px;
    column-gap: 30px;
}

.column-count-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}


/** Transition **/

img,
svg,
svg path {
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}


/** Extra Outer **/

body .page {
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

body .site-main {
    background-color: #fff;
}


/***************************************
* Header
****************************************/

.site-header-menu {
    position: relative;
}

.main-header.sticky-head .site-branding .logo-img {
    display: none !important;
}

.main-header.sticky-head .site-branding .logo-img-02 {
    display: flex !important;
}

.main-header {
    z-index: 9999;
    top: 0;
    left: 0;
    position: fixed;
    background-color: transparent;
    width: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-header.sticky-head {
    background-color: #03545f;
}

.main-header__navigation {
    padding: 42px 0;
}

.main-header.sticky-head .main-header__navigation {
    padding: 10px 0;
}

.site-branding {
    text-align: center;
    width: 115px;
    margin: 0 auto;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-header.sticky-head .site-branding {
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-header.sticky-head .main-header__navigation .main-header__navigation__items {
    margin-top: 0;
    padding: 8px 0;
}

.menu-box-visible {
    overflow: hidden;
}

.main-menu-toogle-burger {
    display: flex;
    align-items: center;
}

.main-header__navigation__items {
    margin-top: 5px;
}

.main-header__navigation__items a {
    display: flex;
    align-items: center;
}

.main-header__navigation__items a:not(:last-child) {
    margin-right: 32px;
}

.main-header__navigation__items a.btn-1 {
    background-color: #fff;
    color: #03545f;
}

.main-header__navigation__items a.btn-1:before {
    background-color: #03545f;
}

.main-header__navigation__items a.btn-1:hover {
    background-color: #fff;
    color: #fff;
}

.main-header__navigation__items a:hover svg path {
    color: #a8daeb;
    fill: #a8daeb !important;
}

.main-header__navigation__items a.btn-1:hover svg path {
    color: #fff;
    fill: #fff !important;
}

.main-header__navigation__items a.menu__free-quote-link {
    margin-right: 40px;
}

.main-header__navigation__items a.main-menu-toogle-btn {
    margin-left: 8px;
}

.menu__contact-phone-link {
    min-width: 28px;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    line-height: 1.2em;
}

.menu__contact-phone-link:hover {
    width: 175px;
    color: #a8daeb;
}

.menu__contact-phone-link:hover svg {
    margin-right: 14px;
}

.menu__contact-phone-link span {
    opacity: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
}

.menu__contact-phone-link:hover span {
    opacity: 1;
    width: auto;
}


/** Menu box **/

.menu-box .close-menu-box-btn {
    position: absolute;
    top: 45px;
    right: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #03545f;
    color: #fff;
}

.close-menu-box-btn svg {
    margin-right: 20px;
}

.menu-box .menu-backdrop {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(2, 14, 13, 0.89);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.menu-box-visible .menu-box .menu-backdrop {
    opacity: 1;
    visibility: visible;
}

.menu-box-visible .menu-box {
    opacity: 1;
    visibility: visible;
}

.menu-box {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

.menu-box .site-navigation {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: transparent;
    padding: 0;
    z-index: 5;
    text-align: center;
}

.menu-box .site-navigation__content {
    padding: 55px 0 45px 0;
}

.menu-box .logo-img {
    margin-bottom: 75px;
}

.menu-box .site-navigation .menu li ul.sub-menu {
    display: none;
    padding-top: 38px;
}

.menu-box .site-navigation .menu>li>a {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    position: relative;
    line-height: 1.2em;
    padding: 0;
    text-decoration: none;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-box .site-navigation .menu>li.has-submenu>a:after {
    content: "\f107";
    display: inline-block;
    font-family: "FontAwesome";
    font-size: 30px;
    font-weight: 400;
    font-weight: 500;
    margin-left: 8px;
    text-decoration: none;
    color: #fff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    padding-top: 4px;
    line-height: 10px;
}

.menu-box .site-navigation .menu>li.has-submenu.active>a:after {
    transform: rotate(-180deg);
}

.menu-box .site-navigation .menu>li {
    padding: 20px 0;
    opacity: 0;
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s;
    transform: translateY(20px);
    display: inline-block;
    width: 100%;
}

.menu-box-visible .menu-box .site-navigation .menu>li {
    opacity: 1;
    transform: translateY(0);
}

.menu-box .site-navigation .menu ul li a {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    line-height: 1.2em;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    position: relative;
}

.menu-box .site-navigation .menu li ul.sub-menu>li {
    display: inline-block;
}

.menu-box .site-navigation .menu ul.sub-menu li:not(:last-child) a:after {
    content: '|';
    color: #a8daeb;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    margin: 0 2px 0 5px;
}

.menu-box .site-navigation .menu li ul.sub-menu>li:not(:last-child) {
    margin-bottom: 18px;
}

.menu-box .site-navigation .menu>li.active>a,
.menu-box .site-navigation .menu>li:hover>a {
    color: #a8daeb;
}

.menu-box .site-navigation .menu ul li.active>a,
.menu-box .site-navigation .menu ul li:hover>a,
.menu-box .site-navigation .menu ul li.hover>a {
    color: #a8daeb;
}

.menu-box .site-navigation .menu__free-quote-link {
    opacity: 0;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    transform: translateY(20px);
    font-size: 30px;
    line-height: 1.2em;
    color: #fff;
    font-weight: 700;
    margin: 25px 0;
    height: 70px;
    min-height: 70px;
    padding: 15px 30px;
}

.menu-box-visible .menu-box .site-navigation .menu__free-quote-link {
    opacity: 1;
    transform: translateY(0);
}

.menu-box .menu-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.menu-box .blk-copyright {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    margin-top: 50px;
}


/***************************************
* Footer
****************************************/

.footer {
    position: relative;
}

.footer-title {
    font-family: "Bricolage Grotesque", sans-serif;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2em;
    margin-bottom: 27px;
    position: relative;
}


/***************************************
* Bloc text / image
****************************************/

.bloc-text {
    font-family: "Urbanist", sans-serif;
    color: #282828;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.62em;
    position: relative;
}

.bloc-text p:last-of-type {
    margin-bottom: 0;
}

.bloc-text h2,
.bloc-text .h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: #03545f;
    line-height: 1.2em;
    margin-bottom: 17px;
    padding-top: 28px;
}

.bloc-text p img,
.bloc-text h2 img {
    display: none;
}

.line-height-169 {
    line-height: 1.69em;
}

.intern .slide-controls .swiper-button-prev,
.intern .slide-controls .swiper-button-next {
    border: 2px solid #03545f;
    background-color: transparent;
}

.intern .slide-controls .swiper-button-prev:hover,
.intern .slide-controls .swiper-button-next:hover {
    background-color: #03545f;
}

.intern .slide-controls .swiper-button-prev svg path,
.intern .slide-controls .swiper-button-next svg path {
    fill: #03545f !important;
}

.intern .slide-controls .swiper-button-prev:hover svg path,
.intern .slide-controls .swiper-button-next:hover svg path {
    fill: #fff !important;
}