:root {
    --black: #1B1B1B;
    --black-75: rgba(27, 27, 27, .75);
    --black-50: rgba(27, 27, 27, .5);
    --black-25: rgba(27, 27, 27, .25);
    --black-10: rgba(27, 27, 27, .1);
    --black-05: rgba(27, 27, 27, .05);
}

html {
    overflow-x: hidden
}

a,
a:hover {
    text-decoration: none;
}


img {
    opacity: 1;
    transition: opacity 0.3s
}

img[data-src] {
    opacity: 0
}

.aspect-ratio-4-3-wrapper {
    aspect-ratio: 4/3;
}

.aspect-ratio-2-1-wrapper {
    aspect-ratio: 2/1;
}

.aspect-ratio-4-3-wrapper img,
.aspect-ratio-2-1-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}


.revealOnScroll {
    opacity: 0;
}

.bg {
    height: 100%;
    min-height: 350px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.center-middle {
    position: absolute;
    top: 50%;
    right: 50%;
    left: unset;
    transform: translate(50%, -50%)
}

.breadcrump {
    font-size: 14px
}

.breadcrump a {
    color: gray
}

#back-top {
    display: inline-block;
    position: fixed;
    bottom: 30px;
    right: 30px;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 800;
    color: white;
    cursor: pointer;
    background-color: #484E53;
    border-color: #484E53;
    border-radius: 0;
}

#back-top.bottom {
    bottom: 60px;
}

@media screen and (min-width:1368px) {
    #back-top:hover {
        opacity: 0.5;
    }
}

#back-top i {
    line-height: 30px
}

#back-top.show {
    opacity: 1;
    visibility: visible
}

@media screen and (max-width:768px) {
    #back-top {
        right: 15px;
        width: 40px;
        height: 40px;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 13px;
    }
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left
}

/* Cookies Start */

.cookies-overflow-hidden {
    overflow: hidden;
}

@media screen and (min-width:1368px) {
    .cookies-overflow-hidden {
        padding-right: 17px;
    }
}

#cookieAlert .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    padding: 0 10px
}

.cookie {
    background: #fff;
    color: #424242;
    position: fixed;
    z-index: 2147483647;
    display: none;
    border-radius: 32px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .07);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .07);
    color: #1B1B1BBF;
    height: auto;
    left: 50%;
    letter-spacing: .1px;
    line-height: 24px;
    max-height: calc(100% - 16px);
    overflow: hidden;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-transition-property: width, max-width, top, bottom, left, opacity;
    -o-transition-property: width, max-width, top, bottom, left, opacity;
    transition-property: width, max-width, top, bottom, left, opacity;
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
}

.cookie-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background-color: #9B9B9B33;
    z-index: 2147483646;
    display: none;
}

@media screen and (min-width:601px) {
    .cookie {
        max-width: 900px;
    }
}

.cookie .accordion-tab {
    background-color: #F9F9F9;
    padding: 20px;
    border-radius: 20px;
}

.cookie .accordion-tab:not(:last-child) {
    margin-bottom: 10px;
}

.cookie .accordion-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* margin-bottom: 16px; */
}

.cookie .accordion-tab-plus-min {
    width: 24px;
    height: 24px;
    position: relative;
    margin-right: 16px;
}

.cookie .accordion-tab-plus-min span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cookie .accordion-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.33;
    color: #424242;
}

.cookie .accordion-active-always {
    font-size: 12px;
    color: rgba(27, 27, 27, 0.65);
    line-height: 1.33;
    font-weight: 600;
}

.cookie .accordion-tab span {
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.cookie .accordion-tab.open span:first-child {
    opacity: 0;
}

.cookie .cookies-header {
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.33%;
    font-size: 18px;
    margin-bottom: 24px;
    color: #1B1B1BBF;
}

.cookie .accordion-header-trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: auto;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

@media screen and (min-width:1368px) {
    .cookie .accordion-header-trigger:hover {
        opacity: 0.7;
    }
}

.cookie .accordion-body {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.65;
    text-align: justify;
    letter-spacing: 0.02px;
    display: none;
    padding-top: 16px;
}

.cookie .cookies-header svg {
    margin-right: 15px;
}

.cookie .cookies-tabs {
    padding: 5px;
    border-radius: 10px;
    background: #1B1B1B0D;
    margin-bottom: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cookie .cookie-tab {
    width: 200px;
    padding: 6px 28px;
    color: rgba(27, 27, 27, 0.65);
    font-weight: 700;
    border-radius: 10px;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cookie .accordion-switch {
    position: relative;
}

.cookie .accordion-switch.accordion-switch-not-allowed,
.cookie .accordion-switch.accordion-switch-not-allowed label {
    cursor: not-allowed;
}

.cookie .accordion-switch input {
    height: 0;
    width: 0;
    visibility: hidden;
}

.cookie .accordion-switch label {
    cursor: pointer;
    text-indent: -9999px;
    width: 45px;
    height: 24px;
    background: #1B1B1B40;
    display: block;
    border-radius: 100px;
    position: relative;
    margin-bottom: 0;
    -webkit-transition: background-color 0.4s;
    -o-transition: background-color 0.4s;
    transition: background-color 0.4s;
}

.cookie .accordion-switch label::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 90px;
    -webkit-transition: left 0.4s, -webkit-transform 0.4s;
    transition: left 0.4s, -webkit-transform 0.4s;
    -o-transition: left 0.4s, transform 0.4s;
    transition: left 0.4s, transform 0.4s;
    transition: left 0.4s, transform 0.4s, -webkit-transform 0.4s;
}

.cookie .accordion-switch input:checked+label {
    background: #1B1B1BBF;
}

.cookie .accordion-switch input:checked+label:after {
    left: calc(100% - 5px);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.cookie .accordion-switch label:active:after {
    /* width: 130px; */
}

.cookie .cookie-tab.active {
    background-color: #fff;
    color: #1b1b1b;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .07);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .07);
}

@media screen and (min-width:1368px) {
    .cookie .cookie-tab:hover:not(.active) {
        background: #ffffff80;
        -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .07);
        box-shadow: 0 6px 12px rgba(0, 0, 0, .07);
    }
}

.cookie .cookie__message {
    padding: 2px 0;
    margin: 0;
    display: inline-block;
    color: inherit;
    font-size: 15px
}

.cookie .cookie__decline,
.cookie .cookie__selection {
    margin-right: 30px;
}



.cookie .cookie__accept,
.cookie .cookie__decline,
.cookie .cookie__selection,
.cookie .cookie__link {
    border: 0;
    -webkit-transition: all 150ms ease;
    -o-transition: all 150ms ease;
    transition: all 150ms ease;
    text-decoration: none;
    cursor: pointer;
    font-size: 15px;
    display: inline-block
}

.cookie .cookie__selection {
    display: none;
}

.cookie .cookie__accept:focus,
.cookie .cookie__decline:focus,
.cookie .cookie__link:focus,
.cookie .cookie__selection:focus {
    outline: none
}

.cookie .cookie__accept,
.cookie .cookie__decline,
.cookie .cookie__selection {
    padding: 10px 61px;
    color: #fff;
    border: 2px solid #535353;
    border-radius: 40px;
    font-weight: 600;
    line-height: 1;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cookie .cookie__accept,
.cookie .cookie__selection {
    background-color: #535353;
}

.cookie .cookie__decline {
    background-color: transparent;
    color: #535353;
}

@media screen and (min-width:1368px) {

    .cookie .cookie__accept:hover,
    .cookie .cookie__accept:focus,
    .cookie .cookie__accept:active,
    .cookie .cookie__selection:hover,
    .cookie .cookie__selection:focus,
    .cookie .cookie__selection:active,
    .cookie .cookie__decline:hover,
    .cookie .cookie__decline:focus,
    .cookie .cookie__decline:active {
        background: #3a3838;
        border-color: #3a3838;
        color: white
    }
}

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

    .cookie .cookie__accept:hover,
    .cookie .cookie__accept:active,
    .cookie .cookie__accept:focus,
    .cookie .cookie__selection:hover,
    .cookie .cookie__selection:focus,
    .cookie .cookie__selection:active {
        background-color: #535353;
        color: #fff;
        border: 2px solid #535353;
    }

    .cookie .cookie__decline:hover,
    .cookie .cookie__decline:active,
    .cookie .cookie__decline:focus {
        background-color: transparent;
        color: #535353;
        border: 2px solid #535353;
    }
}

.cookie .cookies__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cookie .cookie__customize {
    margin-top: 24px;
    color: #1B1B1BBF;
    text-decoration: underline;
    cursor: pointer;
    text-align: center;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 15px;
}

@media screen and (min-width:1368px) {
    .cookie .cookie__customize:hover {
        color: #3a3838;
    }
}

@media screen and (max-width:1367px) {
    .cookie .cookie__customize:hover {
        color: #1B1B1BBF;
    }
}

.row.row--cookies-tab-contect {
    max-height: 500px;
    overflow-y: auto;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
.cookies .container {
    display: block;
}

.cookies .d-none {
    display: none !important;
}

.cookies .row {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.cookies .row .col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
}

.row.row--cookies-tab-contect {
    scrollbar-width: thin;
    scrollbar-color: #919191 transparent;
    margin-bottom: 24px;
}

/* Chrome, Edge, and Safari */
.row.row--cookies-tab-contect .col,
.row.row--cookies-tab-contect .tab-content {
    height: 100%;
}

.row.row--cookies-tab-contect {
    scrollbar-width: 3px;
}

.row.row--cookies-tab-contect::-webkit-scrollbar {
    width: 3px;
}

.row.row--cookies-tab-contect::-webkit-scrollbar-track {
    background: transparent;
}

.row.row--cookies-tab-contect::-webkit-scrollbar-thumb {
    background-color: #919191;
    border-radius: 00px;
    border: 3px solid #fff;
}

.cookie .cookie__link {
    color: #fff;
    background: none;
    padding: 2px 3px;
    margin: 0;
    text-decoration: underline
}

.cookie .show-options.container {
    max-width: 100%;
    margin-inline: auto;
}

.cookie .show-options {
    /* display: none; */
    color: #424242;
    padding: 28px 32px;
}

.cookie .show-options .opt-title,
.cookie .show-options .c-title {
    font-size: 18px;
    font-weight: 600;
}

.cookie .opt-text .cookie__decline,
.cookie .opt-text .cookie__decline:hover {
    font-size: inherit;
    padding: 0;
    margin: 0;
    border: 0;
    background-color: transparent;
    color: #424242;
}

.cookie .show-options .opt-text {
    padding-top: 15px;
    /* padding-bottom: 15px; */
    text-align: justify;
    font-size: 14px;
    /* margin-bottom: 15px */
}

.cookie .show-options .c-options .c-option {
    background-color: #eeeeee;
    text-align: left
}

.cookie .show-options .c-options .c-option:first-child {
    padding-top: 10px
}

.cookie .show-options .c-options .c-option:last-child {
    padding-bottom: 10px
}

.cookie .show-options .c-options .c-option .c-option-icon {
    display: inline-block;
    width: 85px
}

.cookie .show-options .c-options .c-option .c-option-icon i {
    padding: 20px;
    font-size: 40px;
    color: #343434
}

.cookie .show-options .c-options .c-option .c-option-title {
    display: inline-block;
    margin-top: 28px
}

.cookie .show-options .c-options .c-option .c-option-title {
    color: #444444;
    vertical-align: top
}

.cookie .show-options .c-options .c-option .c-option-title input[type='checkbox'] {
    -webkit-appearance: none;
    width: 25px;
    height: 25px;
    background: white;
    border-radius: 5px;
    border: 2px solid #555;
    vertical-align: middle;
    cursor: pointer
}

.cookie .show-options .c-options .c-option .c-option-title input[type='checkbox']:checked {
    background: #007bff;
    border-color: #007bff;
    text-align: center
}

.cookie .show-options .c-options .c-option .c-option-title input[type='checkbox']:checked:before {
    content: '\2713';
    color: white;
    font-size: 16px;
    line-height: 20px
}

.cookie .show-options .c-options .c-option .c-option-title input[type='checkbox']:disabled {
    cursor: not-allowed
}

.cookie .show-options .c-options .c-option .c-option-title span {
    margin-left: 5px;
    line-height: 25px;
    vertical-align: middle;
    font-weight: 600;
    font-size: 15px
}

.cookie ul.all-activated,
.cookie ul.all-de-activated {
    padding-left: 0px;
    margin-bottom: 0
}

.cookie .show-options .c-active {
    padding-bottom: 5px;
    border-bottom: 1px solid #919191
}

.cookie .show-options .de-active {
    padding-top: 5px
}

.cookie .show-options li.c-activated,
.cookie .show-options li.de-activated {
    padding-top: 5px;
    padding-bottom: 5px;
    list-style: none;
    font-size: 14px
}

.cookie .show-options li.c-activated i,
.cookie .show-options li.de-activated i {
    font-size: 15px;
    margin-right: 5px
}

.cookie .show-options li.c-activated i {
    color: green
}

.cookie .show-options li.de-activated i {
    color: red
}

.cookie .show-options .active-de-active {
    font-size: 12px;
    margin-top: 20px;
    line-height: 20px
}

.cookie .show-options .all-de-activated {
    display: none
}

.cookie .show-options .button {
    position: relative;
    padding: 5px 25px;
    overflow: hidden;
    margin-bottom: 0;
    border: none;
    background: #087dc4;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14.4px;
    font-size: 14.4px;
    font-size: 9px;
    color: white;
    line-height: 1.5;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.cookie .show-options .buttons {
    text-align: right;
    margin-top: 15px
}

.cookie .show-options .btn-cookie-ghost,
.cookie .show-options .btn-cookie {
    padding: 5px 25px;
    -webkit-transition: all .35 ease-in-out;
    -o-transition: all .35 ease-in-out;
    transition: all .35 ease-in-out;
    cursor: pointer;
    border-radius: .1rem;
    -webkit-transition: all 150ms ease;
    -o-transition: all 150ms ease;
    transition: all 150ms ease;
    border: 1px solid transparent
}

.cookie .show-options .btn-cookie-ghost:hover,
.cookie .show-options .btn-cookie-ghost:active,
.cookie .show-options .btn-cookie:hover,
.cookie .show-options .btn-cookie:active {
    background-color: #444444;
    color: #fff
}

.cookie .show-options .btn-cookie-ghost {
    margin-right: 10px;
    background: #6c757d;
    color: white
}

.cookie .show-options .btn-cookie {
    background-color: #007bff;
    color: #fff
}

.m-cookie {
    position: absolute;
    top: 0;
    bottom: unset
}

@media (max-width: 640px) {
    .cookie .cookie__link {
        margin: 5px 0
    }
}

.cookie .cookie__link:hover,
.cookie .cookie__link:focus {
    text-decoration: underline
}

.cookie__link.learn_more {
    text-decoration: underline;
    margin: 0 10px
}

.cookie__link.learn_more:hover {
    color: #007bff
}

@media (max-width: 320px) {
    .cookie .cookie__link {
        width: 100%;
        text-align: center
    }
}

@media only screen and (max-width: 768px) {
    .cookie .show-options .c-active .c-title {
        margin-top: 15px
    }
}

@media only screen and (max-width: 768px) {
    .cookie .show-options .buttons {
        text-align: center
    }

    .cookie .col.c-options {
        max-width: 100%;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        margin-bottom: 20px
    }
}

@media (max-width: 640px) {
    .cookie .cookie__message {
        width: 100%;
        text-align: center
    }

    .cookie .show-options .c-options .c-option .c-option-icon {
        width: 55px
    }

    .cookie .show-options .c-options .c-option .c-option-icon i {
        font-size: 22px
    }

    .cookie .show-options .c-options .c-option .c-option-title {
        margin-top: 18px
    }
}

@media (max-width: 320px) {

    .cookie .cookie__accept,
    .cookie .cookie__selection .cookie .cookie__decline,
    .cookie .cookie__link {
        width: 100%;
        margin-left: 0;
        margin-right: 0
    }
}

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

    .row.row--cookies-tab-contect {
        max-height: 250px;
    }

    .cookie .cookie__accept,
    .cookie .cookie__selection .cookie .cookie__decline,
    .cookie .cookie__link {
        margin: 5px 00px 5px 0
    }

    .cookie .cookies__buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .cookie .cookie__decline,
    .cookie .cookie__selection {
        margin-right: 0;
    }

    .cookie__decline,
    .cookie__selection {
        margin-bottom: 10px;
    }

    .cookie .show-options {
        padding: 28px 16px;
    }

    .cookie {
        border-radius: 12px;
    }

    .cookie .cookie__customize {
        margin-top: 10px;
    }

    .cookie .show-options .opt-title,
    .cookie .show-options .c-title {
        font-size: 16px;
    }

    .cookie .accordion-tab {
        padding: 20px 10px;
    }

    .cookie .accordion-tab-plus-min {
        margin-right: 8px;
        width: 17px;
        height: 17px;
    }

    .cookie .accordion-tab {
        border-radius: 10px;
    }

    .cookie .accordion-switch label {
        width: 40px;
    }

    .cookie__accept {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .cookie__selection {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .cookie__decline {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

@media screen and (max-width:768px) {
    .cookie .cookie-tab {
        font-size: 13px;
        width: 33.33%;
        padding: 6px;
    }

    .cookie .cookie__selection {
        white-space: nowrap;
    }

    .cookie .cookie__accept,
    .cookie .cookie__decline,
    .cookie .cookie__selection {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: 100%;
    }
}

/* Cookies End */

.er-404 {
    text-align: center
}

.er-404 .er-404-title {
    padding: 3rem 0
}

.er-404 .er-404-title h2 {
    font-size: 3.6rem
}

.er-404 .er-404-title p {
    font-size: 2rem
}

.er-404 .er-404-img img {
    width: 100%;
    max-height: 650px
}

.er-404 .er-404-btn {
    padding: 3rem 0
}

.er-404 .er-404-btn .er-404-btn-a {
    padding: 15px 20px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: .3rem;
    transition: all 150ms ease;
    border: 1px solid transparent
}

.er-404 .er-404-btn .er-404-btn-a:hover {
    background-color: black
}

@media only screen and (max-width: 1370px) {
    .er-404 .er-404-img img {
        max-height: 450px
    }
}

.under-construction .top-line img,
.company-logo img {
    margin: auto
}

.under-construction p {
    color: #354A53;
    font-size: 17px
}

.under-construction .contact-info .container.company .row {
    padding: 25px 0
}

@media (min-width: 1200px) {

    .under-construction .contact-info .container,
    .under-construction .container {
        width: 840px !important
    }
}

.under-construction .company-inner {
    max-width: 230px;
    margin: auto
}

.under-construction .contact-info.row {
    background-color: #e8e6e6;
    padding: 20px 20px;
    margin-bottom: 30px;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.2)
}

.under-construction .company .icon {
    display: inline-block
}

.under-construction .company .icon :last-child .fa {
    padding-right: 0
}

.under-construction .company .icon .fa,
.under-construction .company .icon .fab {
    color: #354A53;
    font-size: 30px
}

.under-construction .top-line {
    position: relative
}

.under-construction .text-top {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    width: 100%;
    font-size: 45px;
    font-weight: 600
}

@media only screen and (max-width: 480px) {
    .under-construction .text-top {
        font-size: 22px
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    .under-construction .text-top {
        font-size: 30px
    }
}

.under-construction .under-web-experts img {
    height: 8rem
}

.under-construction under-web-experts p {
    font-size: 15px;
    font-weight: 600
}

@media only screen and (max-width: 767px) {
    .under-construction .contact-info div[class^="col-sm"]:last-child {
        line-height: 3rem
    }
}

@media only screen and (min-width: 768px) {
    .under-construction .contact-info div[class^="col-sm"]:last-child {
        line-height: 5rem
    }
}

@media only screen and (max-width: 768px) {
    .under-construction .contact-info .social-icons {
        padding-bottom: 1rem
    }
}

.under-construction .web h1 {
    display: inline-block;
    padding-top: 1rem;
    padding-bottom: 5px;
    color: #354A53;
    border-bottom: 2px solid #dc001a;
    font-size: 22px;
    font-weight: 700
}

.under-construction .web p {
    font-size: 15px;
    padding-top: 10px;
    color: #354A53
}

.under-construction img {
    margin-left: auto;
    margin-right: auto
}

.under-construction .under-web-experts {
    margin-top: 3rem
}

.under-construction .under-web-experts p {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    color: #354A53
}

.under-construction .under-web-experts a {
    display: block;
    width: 100%;
    height: 100%
}

.under-construction .logo-client {
    position: absolute;
    transform: translate(-50%, -50%)
}

@media only screen and (max-width: 768px) {
    .under-construction .logo-client {
        top: 65%;
        left: 49.2%;
        max-width: 25%
    }

    .under-construction .gr {
        margin-bottom: 1rem
    }
}

@media only screen and (min-width: 768px) {
    .under-construction .logo-client {
        top: 66%;
        left: 49.5%;
        max-width: 165px
    }
}

.under-construction .under-div {
    margin-top: 1rem
}

.carousel-item {
    height: 40rem
}

.featurette-divider {
    margin: 5rem 0
}

.featurette-heading {
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.05rem
}

@media (min-width: 40em) {
    .carousel-caption p {
        margin-bottom: 1.25rem;
        font-size: 1.25rem;
        line-height: 1.4
    }

    .featurette-heading {
        font-size: 50px
    }
}

@media (min-width: 62em) {
    .featurette-heading {
        margin-top: 7rem
    }
}

.flex-equal>* {
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1
}

@media (min-width: 768px) {
    .flex-md-equal>* {
        -ms-flex: 1;
        -webkit-box-flex: 1;
        flex: 1
    }
}


/* Bootstrap Prefixes Start*/

/* @media (min-width: 576px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 100%;
    }
} */

@media (min-width: 576px) {

    .container {
        max-width: 100%;
    }
}

@media (min-width: 768px) {

    .container {
        max-width: 95%;
    }
}

@media only screen and (min-width: 991px) {
    .container {
        max-width: 1100px;
    }
}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1250px;
        margin-inline: auto;
    }
}


@media only screen and (min-width: 1480px) {
    .container {
        max-width: 1480px;
        margin-inline: auto;
    }
}

/* Bootstrap Prefixes Start*/


/* Buttons start */



.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.btn:hover {
    color: #212529;
    text-decoration: none
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.btn.disabled,
.btn:disabled {
    opacity: .65
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc
}

.btn-primary.focus,
.btn-primary:focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5)
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5)
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62
}

.btn-secondary.focus,
.btn-secondary:focus {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
    box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5)
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5)
}

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-outline-primary.focus,
.btn-outline-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: #007bff;
    background-color: transparent
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-outline-secondary.focus,
.btn-outline-secondary:focus {
    box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent
}

.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show>.btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
}


/* Buttons start */