@font-face {
    font-family: 'roboto';
    src: url('/wp-content/themes/profiles/fonts/roboto-regular.woff2') format('woff2'),
        url('/wp-content/themes/profiles/fonts/roboto-regular.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}


/* header */
* {
    border: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* universal classes */
.full-width {
    width: 100%;
    overflow: hidden;
}

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

body::-webkit-scrollbar-thumb {
    border-radius: 8px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #ecc0a0c9;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    background-color: #ececec;
}

body::-webkit-scrollbar {
    width: 8px;
    background-color: #ffffff;
}

.wrapper {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* animations */

.alternate-reverse div {
    -webkit-animation: shake 3s linear alternate-reverse infinite;
    animation: shake 3s linear alternate-reverse infinite;
}

@-webkit-keyframes shake {
    100% {
        -webkit-transform: translateX(-30px);
    }
}

@keyframes shake {
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

#container {
    width: 300px;
    height: 300px;
}

/* menu-box START */

header .menu-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    z-index: 2;
}


.menu-box.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    z-index: 7;
}

.menu-btn {
    left: 95%;
    top: 20px;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    cursor: pointer;
}

.menu-btn span {
    width: 30px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #222222;
    -webkit-transform: translate(-50%, 0%) rotate(45deg);
    -ms-transform: translate(-50%, 0%) rotate(45deg);
    transform: translate(-50%, 0%) rotate(45deg);
}

.menu-btn span:nth-of-type(3) {
    -webkit-transform: translate(-50%, 0%) rotate(-45deg);
    -ms-transform: translate(-50%, 0%) rotate(-45deg);
    transform: translate(-50%, 0%) rotate(-45deg);
}

@media(min-width:200px) {
    .tabs .tab-content hr{
        display: none;
    }
    .menu-box-row {
        height: 622px;
    }

    .menu-box-col-1 {
        display: none;
        background: rgba(36, 36, 36, 0.65);
    }

    .menu-box-col-2 {
        position: relative;
        width: 100%;
        padding: 0 1em;
        background: rgb(247 246 246 / 99%);
        overflow-y: scroll;
    }

    .menu-box-body {
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 20px 0;
    }

    .menu-box-logo {
        margin: 0 auto;
    }

    .content-row {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
        flex-direction: column;
    }

    .content-col {
        padding: 5px 10px;
    }

    .menu-box-actions-row {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin: -27px 0 0px 0;
    }

    .menu-box-actions-row div {
        margin: 22px 0;
    }

    .tabs .tab-content {
        min-height: 272px;
        max-height: 360px;
        margin-top: 30px;
        background-color: rgba(225, 203, 187, 0.781);
        border-radius: 8px;
        padding: 20px;
        overflow-y: scroll;
    }
 
    .menu-box-actions-row div button {
        width: 100%;
        font-family: 'roboto', sans-serif;
        font-size: 18px;
        line-height: 18px;
        text-align: center;
        color: #22372B;
        padding: 1em 1.1em;
        border-radius: 8px;
        background-color: rgba(34, 55, 43, 0);
        cursor: pointer;
    }
    .menu-box-actions-row div a {
        width: 100%;
        font-family: 'roboto', sans-serif;
        font-size: 18px;
        line-height: 18px;
        text-align: center;
        color: #22372B;
        padding: 1em 1.1em;
        border-radius: 8px;
        background-color: rgba(34, 55, 43, 0);
        cursor: pointer;
        text-decoration: none;
    }


    .menu-box-actions-row div button.menu-box-actions-active {
        width: 100%;
        font-family: 'roboto', sans-serif;
        font-size: 18px;
        line-height: 18px;
        text-align: center;
        color: #ffffff;
        padding: 1em 2.5em;
        border-radius: 8px;
        background-color: rgba(34, 55, 43, 1);
        cursor: pointer;
    }
    .menu-box-actions-row div a.menu-box-actions-active {
        width: 100%;
        font-family: 'roboto', sans-serif;
        font-size: 18px;
        line-height: 18px;
        text-align: center;
        color: #ffffff;
        padding: 1em 2.5em;
        border-radius: 8px;
        background-color: rgba(34, 55, 43, 1);
        cursor: pointer;
    }
}


@media(min-width:720px) {
    .menu-box-row {
        height: auto;
    }
}

@media(max-width:1024px) {
    .menu-box-actions-row {
        flex-direction: column;
        margin-top: 9px;
    }

    /* .menu-box-actions-row div {
        display: contents;
    } */

    .menu-box-actions-text {
        font-size: 18px;
    }

    .content-col-title {
        border-bottom: 1px solid #D0BEB2;
        padding-bottom: 7px;
    }

    .content-col {
        width: 100%;
    }
  
    .content-col-item {
        padding: 5px 0;
    }

    .arr-1,
    .arr-2,
    .arr-3,
    .arr-4,
    .arr-5,
    .arr-6,
    .arr-7,
    .arr-8 {
        float: right;
        transform: rotate(180deg);
        zoom: 1.4;
    }

    /* .arr-1.active,
    .arr-2.active,
    .arr-3.active,
    .arr-4.active,
    .arr-5.active,
    .arr-6.active,
    .arr-7.active,
    .arr-7.active  {
        transform: rotate(0deg);
    } */
}

@media(min-width:1025px) {
    .tabs .tab-content hr{
        display: block;
        height: 1px; 
        width: 100%;
        background-color: #D0BEB2; 
    }
    .menu-box-actions-row {
        flex-direction: row;
        margin-top: 9px;
        justify-content: end;
    }

    .menu-box-actions-text {
        font-size: 14px;
    }

    .menu-box-actions-row div button {
        font-size: 14px;
        padding: 1.7em 2.5em;
    }
    .menu-box-actions-row div a {
        font-size: 14px;
        padding: 1.7em 2.5em;
    }

    .menu-box-actions-row div button.menu-box-actions-active {
        font-size: 14px;
        padding: 1.7em 2.5em;
    }
    .menu-box-actions-row div a.menu-box-actions-active {
        font-size: 14px;
        padding: 1.7em 2.5em;
    }

    .content-col-title {
        border-bottom: none;
        padding: 0;
    }

    .content-col {
        width: 260px;
    }

    ul li label svg {
        display: none;
    }
    .content-row {
        flex-direction: row;
    }
}

@media(min-width:1200px) {
    .menu-box-col-1 {
        display: block;
        width: 42vw;
    }

    .menu-box-col-2 {
        position: relative;
        width: 100%;
        padding: 0 2em;
    }

    .tabs .tab-content{
        height: auto;
    }

}

.menu-box-row {
    height: 100vh;
    display: flex;
    justify-content: space-between;
}

.menu-box-col-1 img {
    opacity: 0;
    width: 100%;
    height: 800px;
    -o-object-fit: cover;
    object-fit: cover;
}


.menu-box-logo a img {
    height: 78px;
    margin: -30px 0 30px 0;
}

.menu-box-actions-text {
    font-family: 'roboto', sans-serif;
    /* font-size: 14px; */
    line-height: 150%;
    text-align: center;
    color: #22372B;
    /* padding-left: 43px; */
}



.menu-box-actions-row div button:hover {
    -webkit-box-shadow: -7px 7px 10px 0px rgba(227, 227, 227, 1);
    box-shadow: -7px 7px 10px 0px rgba(227, 227, 227, 1);
    border-radius: 8px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s
}

.menu-box-actions-row div a:hover {
    -webkit-box-shadow: -7px 7px 10px 0px rgba(227, 227, 227, 1);
    box-shadow: -7px 7px 10px 0px rgba(227, 227, 227, 1);
    border-radius: 8px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s
}

.menu-box-actions-active {
    background: #22372B;
    border-radius: 8px;
    color: #FFF;
}

/* tabs START */

.menu-box-tabs-block {
    width: 100%;
}

.menu-box-tabs-block span{
    font-weight: inherit;
}

.menu-box-tabs-block {
    margin-bottom: 45px;
}

.tabs {
    width: 100%;
}

.tabs input[name=tab-control] {
    display: none;
}

.tabs .tab-content section h2,
.tabs ul li label {
    font-weight: bold;
    font-size: 18px;
}

.tabs ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

.tabs ul li {
    box-sizing: border-box;
    flex: 1;
    padding: 0 10px;
    text-align: left;
    margin-bottom: 0;
}

.tabs ul li label,
.tabs ul li label a {
    font-family: 'roboto', sans-serif;
    font-size: 13px;
    line-height: 150%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #929daf;
    padding: 5px auto;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
}

.tabs ul li label br {
    display: none;
}

.tabs ul li label:hover,
.tabs ul li label:focus,
.tabs ul li label:active {
    outline: 0;
    color: #bec5cf;
}

.tabs .tab-content{
    font-family: 'roboto', sans-serif;
    margin-top: 30px;
    background-color: rgba(225, 203, 187, 0.7);
    border-radius: 8px;
    padding: 20px;
    overflow-y: scroll;
}

.tabs .tab-content::-webkit-scrollbar-thumb {
    border-radius: 8px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #ecc0a0c9;

}

.tabs .tab-content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    background-color: #ececec;
   
}

.tabs .tab-content::-webkit-scrollbar {
    width: 8px;
    background-color: #ffffff;
  
}

.tabs .tab-content section {
    display: none;
    -webkit-animation-name: content;
    animation-name: content;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    line-height: 1.4;
}

.tabs .tab-content section span {
    display: none;
    /* color: #428BFF; */
}

.tabs .tab-content section span::after {
    content: "";
    position: relative;
    display: block;
    width: 30px;
    height: 3px;
    /* background: #428BFF; */
    margin-top: 5px;
    left: 1px;
}

.tabs input[name=tab-control]:nth-of-type(1):checked~ul>li:nth-child(1)>label {
    cursor: default;
    color: #22372B;
    transform: scale(1.1);
    transition: .4s;
}

.tabs input[name=tab-control]:nth-of-type(1):checked~.slider {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.tabs input[name=tab-control]:nth-of-type(1):checked~.tab-content>section:nth-child(1) {
    display: block;
}

.tabs input[name=tab-control]:nth-of-type(2):checked~ul>li:nth-child(2)>label {
    cursor: default;
    color: #22372B;
    transform: scale(1.1);
    transition: .4s;
}

.tabs input[name=tab-control]:nth-of-type(2):checked~.slider {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.tabs input[name=tab-control]:nth-of-type(2):checked~.tab-content>section:nth-child(2) {
    display: block;
}

.tabs input[name=tab-control]:nth-of-type(3):checked~ul>li:nth-child(3)>label {
    cursor: default;
    color: #22372B;
    transform: scale(1.1);
    transition: .4s;
}

.tabs input[name=tab-control]:nth-of-type(3):checked~.slider {
    -webkit-transform: translateX(200%);
    -ms-transform: translateX(200%);
    transform: translateX(200%);
}

.tabs input[name=tab-control]:nth-of-type(3):checked~.tab-content>section:nth-child(3) {
    display: block;
}

.tabs input[name=tab-control]:nth-of-type(4):checked~ul>li:nth-child(4)>label {
    cursor: default;
    color: #22372B;
    transform: scale(1.1);
    transition: .4s;
}

.tabs input[name=tab-control]:nth-of-type(4):checked~.slider {
    -webkit-transform: translateX(300%);
    -ms-transform: translateX(300%);
    transform: translateX(300%);
}

.tabs input[name=tab-control]:nth-of-type(4):checked~.tab-content>section:nth-child(4) {
    display: block;
}

/* 5 */
.tabs input[name=tab-control]:nth-of-type(5):checked~ul>li:nth-child(5)>label {
    cursor: default;
    color: #22372B;
    transform: scale(1.1);
    transition: .4s;
}

.tabs input[name=tab-control]:nth-of-type(5):checked~.slider {
    -webkit-transform: translateX(300%);
    -ms-transform: translateX(300%);
    transform: translateX(300%);
}

.tabs input[name=tab-control]:nth-of-type(5):checked~.tab-content>section:nth-child(5) {
    display: block;
}

/* 6 */
.tabs input[name=tab-control]:nth-of-type(6):checked~ul>li:nth-child(6)>label {
    cursor: default;
    color: #22372B;
    transform: scale(1.1);
    transition: .4s;
}

.tabs input[name=tab-control]:nth-of-type(6):checked~.slider {
    -webkit-transform: translateX(300%);
    -ms-transform: translateX(300%);
    transform: translateX(300%);
}

.tabs input[name=tab-control]:nth-of-type(6):checked~.tab-content>section:nth-child(6) {
    display: block;
}

/* 7 */
.tabs input[name=tab-control]:nth-of-type(7):checked~ul>li:nth-child(7)>label {
    cursor: default;
    color: #22372B;
    transform: scale(1.1);
    transition: .4s;
}

.tabs input[name=tab-control]:nth-of-type(7):checked~.slider {
    -webkit-transform: translateX(300%);
    -ms-transform: translateX(300%);
    transform: translateX(300%);
}

.tabs input[name=tab-control]:nth-of-type(7):checked~.tab-content>section:nth-child(7) {
    display: block;
}
/* 8 */
.tabs input[name=tab-control]:nth-of-type(8):checked~ul>li:nth-child(8)>label {
    cursor: default;
    color: #22372B;
    transform: scale(1.1);
    transition: .4s;
}

.tabs input[name=tab-control]:nth-of-type(8):checked~.slider {
    -webkit-transform: translateX(300%);
    -ms-transform: translateX(300%);
    transform: translateX(300%);
}

.tabs input[name=tab-control]:nth-of-type(8):checked~.tab-content>section:nth-child(8) {
    display: block;
}

@-webkit-keyframes content {
    from {
        opacity: 0;
        -webkit-transform: translateY(5%);
        transform: translateY(5%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes content {
    from {
        opacity: 0;
        -webkit-transform: translateY(5%);
        transform: translateY(5%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}


.content-col-title>a {
    font-weight: 600;
    font-family: 'roboto', sans-serif;
    font-size: 14px;
    line-height: 125%;
    color: #22372B;
    text-decoration: none;
}

.content-col-title a:hover {
    text-decoration: underline;
}
.content-col-title>p {
    font-weight: 600;
    font-family: 'roboto', sans-serif;
    font-size: 14px;
    line-height: 125%;
    color: #22372B;
}
.content-col-item a {
    font-family: 'roboto', sans-serif;
    font-size: 14px;
    line-height: 125%;
    color: #22372B;
    text-decoration: none;
}

.content-col-item a:hover {
    text-decoration: underline;
}


.content-row-social-block {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}
.menu-box-social{
    position: relative;
}
.content-row-social-block::before {
    content: "";
    position: absolute;
    top: 9px;
    right: 0;
    width: 215px;
    height: 1px;
}

.content-row-social-block a {
    padding: 6px;
    margin: 0 5px;
}

.content-row-social-block a svg {
    width: 20px;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
}

.content-row-social-block a svg:hover {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

@media (max-width:1024px) {
    .menu-box-col-2 {
        position: relative;
        width: 100%;
        padding: 0 2em;
        background: rgb(247 246 246 / 99%);
        /* overflow-y: scroll; */
    }

    .menu-box-logo a img {
        height: 52px;
        margin: -20px 0 0px 0;
    }

    .tabs ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .tabs ul li {
        width: 100%;
        border-bottom: 1px solid rgba(34, 55, 43, 0.26);
        padding: 0;
        margin-bottom: 0;
    }

    .tabs ul li label,
    .tabs ul li label a {
        width: 100%;
        font-size: 18px;
        line-height: 150%;
        font-weight: 400;
        color: #22372B;
        padding: 13px 0;
        text-decoration: none;
    }

    .tabs input[name=tab-control]:nth-of-type(1):checked~ul>li:nth-child(1)>label,
    .tabs input[name=tab-control]:nth-of-type(2):checked~ul>li:nth-child(2)>label,
    .tabs input[name=tab-control]:nth-of-type(3):checked~ul>li:nth-child(3)>label,
    .tabs input[name=tab-control]:nth-of-type(4):checked~ul>li:nth-child(4)>label,
    .tabs input[name=tab-control]:nth-of-type(5):checked~ul>li:nth-child(5)>label,
    .tabs input[name=tab-control]:nth-of-type(6):checked~ul>li:nth-child(6)>label,
    .tabs input[name=tab-control]:nth-of-type(7):checked~ul>li:nth-child(7)>label,
    .tabs input[name=tab-control]:nth-of-type(8):checked~ul>li:nth-child(8)>label {
        cursor: default;
        transform: scale(1);
    }

    .tab-content{
        display: none;
        position: absolute;
        background-color: rgba(225, 203, 187, 1);
    }

    .tabs input[name=tab-control]:nth-of-type(1):checked~.tab-content.active {
        display: block;
        position: relative;
        margin: -336px 0 0 -4px;
        background-color: rgba(225, 203, 187, 1);
    }

    .tabs input[name=tab-control]:nth-of-type(2):checked~.tab-content.active {
        display: block;
        position: relative;
        margin: -282px 0px 0 -4px;
        background-color: rgba(225, 203, 187, 1);
    }

    .tabs input[name=tab-control]:nth-of-type(3):checked~.tab-content.active {
        display: block;
        position: relative;
        margin: -228px 0 0 -4px;
        background-color: rgba(225, 203, 187, 1);
    }

    .tabs input[name=tab-control]:nth-of-type(4):checked~.tab-content.active {
        display: block;
        position: relative;
        margin: -174px 0 0 -4px;
     background-color: rgba(225, 203, 187, 1);
    }

    .tabs input[name=tab-control]:nth-of-type(5):checked~.tab-content.active {
        display: block;
        position: relative;
        margin: -120px 0 0 -4px;
        background-color: rgba(225, 203, 187, 1);
    }

    .tabs input[name=tab-control]:nth-of-type(6):checked~.tab-content.active {
        display: block;
    
        position: relative;
        margin: -66px 0 0 -4px;
        background-color: rgba(225, 203, 187, 1);
    }

    .tabs input[name=tab-control]:nth-of-type(7):checked~.tab-content.active {
        /* display: block; */
            display: none;
        position: relative;
        margin: -66px 0 0 -4px;
        background-color: rgba(225, 203, 187, 1);
    }
    /* .tabs input[name=tab-control]:nth-of-type(8):checked~.tab-content.active {
        display: block;
        position: relative;
        margin: -13px 0 0 -4px;
        background-color: rgba(225, 203, 187, 1);
    } */
}

@media (min-width: 675px) and (max-width: 1024px) {
    .tabs input[name=tab-control]:nth-of-type(2):checked~.tab-content.activeХ {
        width: 98vw;
    }
}

/* tabs END */
/* menu-box END */

/* header */
@media (min-width:200px) {
    .header-menu-desktop {
        display: none;
        backdrop-filter: blur(5px)
    }

    .header-menu-desktop img {
        width: 163px;
    }

    .header-menu-desktop>nav {
        width: 300px;
    }

    .header-menu-desktop>nav>ul {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        height: 30px;
        margin: 0;
    padding: 0;
    }
    .header-menu-desktop>nav>ul>li{
        margin: 0;
    }
    .header-menu-desktop>nav>ul>li>a {
        font-family: 'roboto', sans-serif;
        line-height: 15px;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: #ffffff;
        text-decoration: none;
    }

    .header-menu-mob {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background-color: rgba(217, 200, 188, 0.9);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 4;
        backdrop-filter: blur(5px)
    }

    .header-menu-mob .logo {
        height: 50px;
        text-align: center;
    }

    .header-menu-mob .logo img {
        height: 52px;
    }

    .header-menu-mob .horizont-line {
        width: 90%;
        border-top: 1px solid rgba(19, 22, 24, 0.09);
    }

    .header-menu-mob .vertical-line-nav {
        display: none;
        border-left: 1px solid rgba(19, 22, 24, 0.09)
    }

    .header-menu-mob>nav {
        width: 100%;
        height: 50px;
    }

    .header-menu-mob .display-mobile {
        display: none;
    }

    .header-menu-mob .menu-nav ul {
        display: flex;
        justify-content: space-around;
        padding: 7px 0 0px 0;
        margin: 0;
    }

    .header-menu-mob .menu-nav ul li {
        list-style: none;
        margin-bottom: 0;
    }

    .header-menu-mob .menu-nav ul li a {
        font-family: 'roboto', sans-serif;
        font-size: 12px;
        line-height: 14px;
        text-align: center;
        letter-spacing: 0.085em;
        text-transform: uppercase;
        color: rgba(19, 22, 24, 0.9);
        text-decoration: none;
    }

    .header-menu-mob .menu-nav ul li a div img {
        width: 20px;
    }

    .header-menu-descktop {
        display: none;
    }

    .menu-btn-1 {
        font-family: 'roboto', sans-serif;
        line-height: 15px;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: #ffffff;
        text-decoration: none;
        cursor: pointer;
        display: flex;
        z-index: 10000000;
    }

    .header-banner {
        height: 475px;
        position: relative;
        z-index: -1;
        background-attachment: fixed;
        background-position: center center;
        background-size: cover;
        top: 99px;
        margin-bottom: 120px;
    }

    .header-banner picture {
        width: 100%;
    }

    .header-banner picture img {
        width: 100%;
        height: 475px;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .header-banner-text {
        position: absolute;
        text-align: center;
        top: 50%;
        width: 90%;
        left: 5%;
        z-index: 1;
        background: rgba(34,55,43,.8);
    }

    .header-sup-title p {
        font-family: 'roboto', sans-serif;
        font-size: 20px;
        line-height: 116%;
        letter-spacing: 6px;
        color: #E1CBBB;
        padding: 15px 0 0 0;
        
    }

    .header-title h1 {
        font-family: 'roboto', sans-serif;
        font-size: 26px;
        line-height: 130%;
        font-weight: 400;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #E1CBBB;
        padding: 15px 0;
    }

    .header-llinks-box {
        margin: -38px 0 0px 0;
        padding: 10px 0 0px 60px;
        color: rgba(225, 203, 187, 0.7);
    }

    .header-llinks-box p a {
        font-family: 'roboto', sans-serif;
        font-size: 14px;
        line-height: 27px;
        letter-spacing: 0.035em;
        color: rgba(225, 203, 187, 0.7);
        padding: 0 4px;
    }
}

@media (min-width:391px) {
    .header-menu-mob {
        height: 80px;
        flex-direction: row;
        align-items: center;
        padding: 0;
    }
    .header-banner {
        top: 79px;
    }

    .header-banner picture {
        height: 880px;
    }


    .header-menu-mob .logo {
        text-align: center;
        margin-left: 6%;
    }

    .header-menu-mob .horizont-line {
        display: none;
    }

    .header-menu-mob nav {
        width: 100%;
        padding: 0 0 0 6%;
    }

    .header-menu-mob .logo img {
        height: 44px;
    }

    .header-menu-mob .menu-nav ul {
        display: flex;
        justify-content: space-around;
        padding: 0;
    }
}

@media (min-width:540px) {
    .header-menu-mob .display-mobile {
        display: block;
    }

    .header-banner {
    
        height: 880px;
    }

    .header-banner picture img {
        width: 100%;
        height: 880px;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .header-menu-mob .vertical-line-nav {
        display: block;
    }

    .header-sup-title p {
        font-size: 24px;
    }

    .header-title h1 {
        font-size: 42px;
		letter-spacing: 5px;
    }
}

@media (min-width:768px) {
    .header-banner{
        top: 93px;
    }
    .header-menu-desktop {
        height: 94px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: rgba(225, 203, 187, 0.7);
        max-width: 1920px;
        position: fixed;
        width: 100%;
        z-index: 2;
        backdrop-filter: blur(5px);
        margin:0;
        top: 0;
    }

    .header-menu-mob {
        display: none;
    }

    .header-menu-desktop img {
        height: 94px;
        width: 236px;
    }

    .header-menu-desktop .logo {
        padding-left: 60px;
    }
    .header-menu-desktop .logo-arabic{
        padding-left: 0;
        padding-right: 60px;
    }
    .header-menu-desktop>.menu-nav {
        padding-right: 60px;
        height: 30px;
    }
    .header-menu-desktop>.menu-nav-arabic {
        padding-right: 0;
        padding-left: 60px;
    }

    .header-menu-desktop>.menu-nav ul li a {
        font-size: 24px;
        color: #131618;
    }

    .header-menu-desktop>.menu-nav ul li a:hover {
        text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
        transition: 0.2s;
    }

    .menu-btn-1 {
        font-size: 24px;
        color: #131618;
    }
    .menu-btn-1 div{
        font-weight: 300;
    }
    .menu-btn-1:hover {
        text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
        transition: 0.2s;
    }

}

@media (min-width:1024px) {
    .header-sup-title p {
        font-size: 38px;
        color: #E1CBBB;
    }

    .header-sup-title p {
        font-size: 38px;
        padding: 50px 0 0 0;
        margin: 0 0 -23px 0;
    }
    .header-banner-text {
        top: 40%;
        left: 10%;
        width: 80%;
        text-align: center;
        background: rgba(34, 55, 43, 0.8);
        padding: 0;
    }
    .header-title h1 {
        font-size: 60px;
        padding: 50px;
    }

}
@media (min-width:1200px){
    .header-title h1 {
        font-size: 60px;
        letter-spacing: 5px;
    }
}
@media (min-width:1440px) {
    .header-banner {
        height: 880px;
    }

    .header-banner picture img {
        height: 880px;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .header-title h1 {
        font-size: 97px;
        line-height: 116%;
    }
}



@media(min-width:1200px){
    h1.single-post-title{
        font-size: 47px;
    }
}
@media(min-width:1025px){
    h1.single-post-title{
        font-size: 47px;
    }
}

@media(max-width:1024px){
    h1.single-post-title{
        font-size: 47px;
    }
}

@media(max-width:540px){
    h1.single-post-title{
        font-size: 24px;
    }
}
@media(max-width:440px){
    h1.single-post-title{
        font-size: 18px;
    }
}
.hide-box {
	display: none;
}

.form {
	background: #fff;
	overflow: hidden;
}

.form h5,
.form .form-subtitle {
	font-family: 'roboto', sans-serif;
	font-weight: 300;
	font-size: 35px;
	line-height: 40px;
	margin: 15px 5%;
	padding-bottom: 10px;
	margin-bottom: 25px;
	border-bottom: 1px #000 solid;
}

#appointment h5 {
	text-align: center;
}

.form form {
	width: 90%;
	display: block;
	margin: 0 auto;
}

.form form input {
	width: 96%;
	margin: 2% 0;
	padding: 2%;
	font-size: 14px;
	font-family: 'roboto', sans-serif;
	box-shadow: 0 0 3px 1px #bfbfbf;
	color: #9c9c9c;
	line-height: normal;
	border-radius: 3px;
	border: none;
}

.form form select {
	width: 100%;
	margin: 2% 0;
	padding: 2%;
	font-size: 14px;
	font-family: 'roboto', sans-serif;
	box-shadow: 0 0 3px 1px #bfbfbf;
	color: #9c9c9c;
	line-height: normal;
	border-radius: 3px;
	border: none;
	background: #ffffff !important;
}

.form form textarea {
	border: none;
	height: 100px;
	line-height: normal;
	box-shadow: 0 0 3px 1px #bfbfbf;
	width: 96%;
	font-size: 14px;
	font-family: 'roboto', sans-serif;
	color: #9c9c9c;
	background: #fff;
	overflow: hidden;
	outline: none;
	padding: 2%;
	margin: 2% 0;
	border-radius: 3px;
}

.form form input#submit {
	float: right;
	width: 110px;
	cursor: pointer;
	background: #1e5487;
	font-size: 16px;
	font-family: 'roboto', sans-serif;
	font-weight: 300;
	color: #ffffff;
	border: 1px #1e5487 solid;
	transition: 1s;
}

.form form input[type="checkbox"] {
	width: auto;
	box-shadow: none;
}

.form form input#submit:hover {
	background: transparent;
	transition: 1s;
	color: #1e5487;
}

.formcheckbox {
	margin-bottom: 15px;
	margin-top: 10px;
}

.formfingers img {
	display: block;
	box-shadow: 0 0 3px 1px #bfbfbf;
	margin: 2% 0;
	width: 100%;
	height: auto;
}

.formcheckbox div {
	float: left;
	margin: 3px 10px 20px 0;
}

.form form p {
	float: left;
	color: #141414;
	font-size: 14px;
	font-family: 'roboto', sans-serif;
	margin-top: 10px;
}

.form form .formcheckbox p {
	float: none;
	margin: 0;
}

.modalbox img {
	width: 20%;
	max-width: 147px;
	display: block;
	position: fixed;
	bottom: 85px;
	right: 2%;
	z-index: 99;
}
.subscription-form {
	display: none;
	position: fixed;
	bottom: 0px;
	left: 0px;
	box-shadow: 0px 0px 10px #000;
	width: 735px;
	z-index: 999;
}

.subscription-form .closesub {
	position: absolute;
	top: -12px;
	right: -12px;
	background: #fff;
	border: 1px #000 solid;
	border-radius: 20px;
	text-align: center;
	width: 28px;
	height: 28px;
	font-size: 20px;
	line-height: 20px;
	font-family: 'Arial';
	padding: 3px;
}

.subscription-form .closesub a {
	color: #000000;
	text-decoration: none;
	cursor: pointer;
}

#subscr {
	max-width: 735px;
	background: #fff;
	overflow: hidden;
	padding: 30px 0;
	box-sizing: border-box;
}

#subscr h2,
#subscr .subscr-title {
	font-family: 'roboto', sans-serif;
	font-weight: 300;
	font-size: 25px;
	color: #030102;
	text-align: center;
	margin-bottom: 30px;
}

#subscr form {
	display: block;
	width: 90%;
	margin: 0 auto;
	border: 1px #030102 solid;
	box-sizing: border-box;
	overflow: hidden;
}

#subscr input {
	width: 70%;
	margin: 0;
	padding: 10px 2%;
	font-size: 22px;
	font-family: 'roboto', sans-serif;
	box-shadow: none;
	color: #9c9c9c;
	line-height: normal;
	border-radius: 3px;
	border: none;
	box-sizing: border-box;
	float: left;
}

#subscr input#submit,
#subscr input.submit {
	display: block;
	float: right;
	width: 30%;
	cursor: pointer;
	background: #b9011d;
	font-size: 22px;
	padding: 10px 2%;
	text-align: center;
	font-family: 'roboto', sans-serif;
	font-weight: 300;
	color: #ffffff;
	border: 1px #b9011d solid;
	transition: 1s;
	box-sizing: border-box;
	float: left;
	text-transform: uppercase;
}
@media(max-width:440px){
	.subscription-form {
		width: 90%;
	}
	#subscr h2, #subscr .subscr-title {
		font-family: 'roboto', sans-serif;
		font-weight: 300;
		font-size: 20px;
		color: #030102;
		text-align: center;
		margin-bottom: 15px;
	}
	#subscr input#submit, #subscr input.submit {
		font-size: 13px;
	}
	#subscr input {
		font-size: 14px;
	}
	#subscr {
    padding: 14px 0;
}
}
.arrow-down {
	position: fixed;
	width: 50px;
	height: 50px;
	background: #fff;
	bottom: 20px;
	left: 50%;
	font-size: 30px;
	text-align: center;
	line-height: 50px;
	border-radius: 50%;
	color: #fff;
	/*border: 1px solid #fff;*/
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	z-index: 9999;
	margin-left: -25px;
	opacity: 0.8;
	transition: all 0.3s ease;
	cursor: pointer;
}

.arrow-down.hide {
	display: none;
}

.arrow-down i {
	display: inline-block;
	animation-name: arrow-down-flying;
	animation-duration: .8s;
	animation-iteration-count: infinite;
}
@keyframes arrow-up-flying {
	0% {
		padding: 11px 0 5px;
	}

	50% {
		padding: 5px 0 11px;
	}

	100% {
		padding: 11px 0 5px;
	}
}

.arrow-up {
	display: none;
	position: fixed;
	width: 50px;
	height: 50px;
	background: #fff;
	bottom: 160px;
	right: 21px;
	font-size: 30px;
	text-align: center;
	line-height: 50px;
	border-radius: 50%;
	color: #fff;
	/* border: 1px solid #fff; */
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	z-index: 9999;
	/* margin-left: -25px; */
	opacity: 0.8;
	transition: all 0.3s ease;
	cursor: pointer;
}

.arrow-up.hide {
	display: none;
}

.arrow-up svg {
	display: inline-block;
	animation-name: arrow-down-flying;
	animation-duration: .8s;
	animation-iteration-count: infinite;
}
.appform form input {
	margin-bottom: 5px;
}

.appform form input#datetime3 {
	margin-bottom: 25px;
}

.appform form textarea {
	height: 50px;
}

.appform form input[type="submit"] {
	width: 100%;
	cursor: pointer;
	background: #1e5487;
	font-size: 16px;
	font-family: 'roboto', sans-serif;
	font-weight: 300;
	color: #ffffff;
	border: 1px #1e5487 solid;
	margin: 0 0 30px;
}

.appform form p {
	text-align: center;
	font-size: 20px;
	margin-bottom: 10px;
	float: none;
}
body #fancybox-overlay {
	background-color: rgb(21, 20, 20, 0.3) !important;
}

body #fancybox-bg-e {
	display: none;
}
/* header */
/* universal classes */
.full-width {
    width: 100%;
    overflow: hidden;
}

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

body::-webkit-scrollbar-thumb {
    border-radius: 8px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #ecc0a0c9;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    background-color: #ececec;
}

body::-webkit-scrollbar {
    width: 8px;
    background-color: #ffffff;
}


/* animations */

.alternate-reverse div {
    -webkit-animation: shake 3s linear alternate-reverse infinite;
    animation: shake 3s linear alternate-reverse infinite;
}

@-webkit-keyframes shake {
    100% {
        -webkit-transform: translateX(-30px);
    }
}

@keyframes shake {
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

#container {
    width: 300px;
    height: 300px;
}

/* Custom Fields - TITLE BANNER START */
.top-banner-new-design {
    position: relative;
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;

}

.top-banner-new-design picture {
    display: block;
    overflow: hidden;
    height: 655px;
}

.top-banner-new-design picture img {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    display: block;
}

.top-banner-new-design .banner-info {
    max-width: 1440px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: end;
    flex-direction: column;
    margin: auto;
    padding-bottom: 50px;
}

.top-banner-new-design .row {
    height: auto;
}

.top-banner-new-design .banner-title {
    font-family: 'roboto';
    font-size: 80px;
    color: #22372B;
    line-height: 116%;
    margin: 0 0 10px 0;
    font-weight: normal;
    padding: 0 15px;
    text-transform: capitalize;
    text-shadow: 1px 1px 2px black;
}

.top-banner-new-design .banner-desc {
    color: #22372B;
    font-family: 'roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.035em;
    padding: 0 15px;
}

.top-banner-new-design .crumb-link-row {
    display: flex;
    color: rgba(225, 203, 187, 1);
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.top-banner-new-design .crumb-link-row p {
    padding: 0 4px;
}

.top-banner-new-design .crumb-link {
    font-family: 'roboto';
    font-size: 14px;
    line-height: 27px;
    letter-spacing: 0.035em;
    color: rgba(225, 203, 187, 1);
    padding: 0;
}

.top-banner-new-design .breadcrumbs,
.top-banner-new-design .breadcrumbs a {
    font-family: 'roboto';
    font-size: 14px;
    letter-spacing: 0.035em;
    color: rgba(225, 203, 187, 1);
    padding: 0;
}

.aioseo-breadcrumbs {
    display: inline;
}

.top-banner-new-design .button a {
    font-family: 'roboto';
    font-weight: 300;
    color: rgba(225, 203, 187, 0.7);
    text-align: center;
    text-decoration: none;
    display: block;
    padding: 10px 30px;
    border: 2px solid rgba(225, 203, 187, 0.7);
    border-radius: 15px;
    text-transform: uppercase;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
}

.top-banner-new-design .button a:hover {
    transition: 1s;
    color: #22372B;
    background: rgba(225, 203, 187, 0.7);
}

@media screen and (max-width: 1903px) {
    .top-banner-new-design picture {
        height: 655px;
    }

    .top-banner-new-design picture img {
        display: block;
        object-fit: cover;
        height: 655px;
    }
}

@media screen and (max-width: 1024px) {
    .top-banner-new-design .banner-title {
        font-size: 50px;
        line-height: 100%;
    }

    .top-banner-new-design .banner-desc {
        font-weight: 300;
        font-size: 16px;
        line-height: 130%;
        margin-bottom: 25px;
        letter-spacing: 0.035em;
    }

    .top-banner-new-design .button {
        margin-top: 25px;
    }

    .top-banner-new-design .crumb-link-row {
        flex-direction: column;
        align-items: baseline;
    }

    #fancybox-content {
        height: auto !important;
    }

    #fancybox-content .form form input,
    #fancybox-content .form form textarea {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .top-banner-new-design picture {
        height: 475px;
    }

    .top-banner-new-design picture img {
        display: block;
        object-fit: cover;
        height: 475px;
    }
}

@media screen and (max-width: 440px) {
    .top-banner-new-design .banner-info {
        background-color: rgba(0, 0, 0, .5);
        padding-bottom: 25px;
        justify-content: end;
    }

    .top-banner-new-design .banner-desc {
        margin-bottom: 0;
        color: rgba(225, 203, 187, 1);
    }

    .top-banner-new-design .banner-title {
        color: rgba(225, 203, 187, 1);
    }

    .top-banner-new-design .breadcrumbs,
    .top-banner-new-design .breadcrumbs a {
        color: rgba(225, 203, 187, 1);
    }
}

/* Custom Fields - BANNER END */

/* all sections */
@media (min-width:200px) {

    /* section-1 */
    .section-1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 16px;
        margin-bottom: 45px;
    }

    .section-1-img {
        padding: 0;
        text-align: center;
    }

    .section-1-img img {
        width: 60%;
        text-align: center;
        margin: 30px auto;
    }

    .section-1-title {
        font-family: 'roboto';
        font-size: 32px;
        line-height: 96%;
        text-align: center;
        letter-spacing: 6px;
        color: #22372B;
        padding: 0 0 80px 0;
    }

    .section-1-title img {
        width: 114px;
        margin: 0px 0 -26px 0;
    }

    .section-1-text {
        font-family: 'roboto';
        font-size: 16px;
        line-height: 27px;
        letter-spacing: 0.035em;
        color: #131618;
        padding-bottom: 40px;

    }

    .section-1-text p {
        padding-bottom: 25px;
        line-height: 27px;
    }

    /* .section-1-btn {
        margin: 0 0 0 -55px;
    } */

    .section-1-btn>a {
        font-family: 'roboto';
        font-size: 18px;
        line-height: 27px;
        letter-spacing: 0.05em;
        color: #22372B;
        padding: 11px 55px 11px 0;
        text-decoration: none;
        -moz-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        -webkit-transition: all .4s ease-out;
    }

    /* section-2 */
    .section-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .section-2-bg {
        width: 100%;
        height: 572px;
        background-attachment: fixed;
        background-position: center center;
        background-size: cover;
    }

    .section-2-body {
        width: 100%;
        position: absolute;
        top: 2px;
        height: 230px;
        background-color: rgba(36, 36, 36, 0.8);
        margin-top: 340px;
    }

    .section-2-bg img {
        width: 100%;
        height: 572px;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .section-2-text {
        font-family: 'roboto';
        font-size: 32px;
        line-height: 96%;
        text-align: center;
        letter-spacing: 6px;
        color: #FFFFFF;
        padding: 60px 20px 20px 20px;
    }

    .section-2-link {
        text-align: center;
    }

    .section-2-link a {
        font-family: 'roboto';
        font-size: 18px;
        line-height: 27px;
        text-align: center;
        letter-spacing: 0.05em;
        color: #FFFFFF;
        text-decoration: none;
        -moz-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        -webkit-transition: all .4s ease-out;
    }

    .section-2-link a:hover {
        transition: .4s;
        letter-spacing: 0.3em;
    }

    /* section-3 */
    .section-3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }

    .section-3-img-box {
        display: flex;
    }

    .section-3-img {
        position: relative;
        /* height: 300px; */
        margin-bottom: 40px;
    }

    .section-3-img picture img {
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .section-3-img-title {
        position: absolute;
        top: 8%;
        left: 3%;
        font-family: 'roboto';
        text-transform: lowercase;
        font-size: 18px;
        line-height: 116%;
        letter-spacing: 6px;
        color: #131618;
        padding: 134px 10px 0 80px;
    }


    .section-3-title {
        margin-bottom: 35px;
    }

    .section-3-title h2 {
        font-family: 'roboto';
        font-size: 32px;
        line-height: 96%;
        letter-spacing: 6px;
        color: #22372B;
    }

    .section-3-text div {
        margin-bottom: 45px;
    }

    .section-3-text div h3 {
        font-family: 'roboto';
        font-size: 24px;
        line-height: 32px;
        color: #22372B;
        margin-bottom: 25px;
    }

    .section-3-text div p {
        font-family: 'roboto';
        font-size: 16px;
        line-height: 27px;
        letter-spacing: 0.035em;
        color: #131618;

    }

    /* section-4 */
    .section-4-title {
        font-family: 'roboto';
        font-size: 32px;
        line-height: 96%;
        text-align: center;
        letter-spacing: 6px;
        color: #22372B;
        margin: 50px 0;
    }

    .section-4-body-row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-4-body-col {
        margin-bottom: 50px;
        padding: 0 15px;
    }

    .section-4-img {
        max-height: 825px;
        height: 100%;
        margin-bottom: 25px;
        overflow: hidden;
    }

    .section-4-img img {
        height: 100%;
        width: 100%;
        -moz-transition: all 5s ease-out;
        -o-transition: all 5s ease-out;
        -webkit-transition: all 5s ease-out;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .section-4-dr-name {
        font-family: 'roboto';
        font-size: 24px;
        line-height: 32px;
        color: #22372B;
        padding: 0 15px;
        margin-bottom: 25px;
    }

    .section-4-dr-desc {
        font-family: 'roboto';
        font-size: 20px;
        line-height: 28px;
        color: #22372B;
        padding: 0 15px;
        margin-bottom: 25px;
    }

    .section-4-dr-text {
        font-family: 'roboto';
        font-size: 16px;
        line-height: 27px;
        letter-spacing: 0.035em;
        color: #131618;
        padding: 0 15px;
        margin-bottom: 25px;
    }

    .section-4-dr-link {
        padding: 0 15px;
    }

    .section-4-dr-link a {
        font-family: 'roboto';
        font-size: 18px;
        line-height: 27px;
        letter-spacing: 0.05em;
        color: #22372B;
        text-decoration: none;
        padding: 11px 55px 11px 0;
        -moz-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        -webkit-transition: all .4s ease-out;
    }

    /* section-5 */

    .section-5 {
        max-width: 1920px;
        width: 100%;
        margin: 0 auto;
        /* overflow-y: scroll; */
        overflow-x: hidden;
    }

    .section-5-img {
        height: 429px;
        position: relative;
        margin-bottom: 50px;
        background-attachment: fixed;
        background-position: center center;
        background-size: cover;
    }

    .section-5-img picture img {
        height: 429px;
        position: absolute;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        z-index: 0;
    }

    .section-5-img h3 {
        position: absolute;
        font-family: 'roboto';
        font-size: 32px;
        line-height: 96%;
        letter-spacing: 6px;
        font-weight: 400;
        color: #FFFFFF;
        padding: 170px 0 0 60px;
        z-index: 1;
    }

    .section-5-img h3 img {
        width: 126px;
        margin: 0px 0 -39px 0;
    }

    .section-5-body-row {
        display: flex;
        flex-direction: column;
    }

    .section-5-body-info-block {
        padding: 0 15px;
    }

    .section-5-body-text {
        padding-bottom: 25px;

    }


    .section-5-body-text div h2,
    .section-5-body-text div h2 a {
        font-family: 'roboto';
        font-size: 24px;
        line-height: 32px;
        display: flex;
        color: #22372B;
        margin-bottom: 25px;
    }

    .section-5-body-text div p {
        font-family: 'roboto';
        font-size: 16px;
        line-height: 27px;
        letter-spacing: 0.035em;
        color: #131618;
        margin-bottom: 25px;
    }

    .section-5-body-text span {
        padding: 0 5px;
        line-height: 32px;
        margin-bottom: 25px;
    }

    .section-5-text-link {
        text-decoration: none;
    }

    .section-5-text-link:hover {
        text-decoration: underline;
    }

    .section-5-body-links {
        margin-bottom: 50px;
    }

    .section-5-body-links h2 {
        font-family: 'roboto';
        font-size: 24px;
        line-height: 26px;
        color: #22372B;
        margin-bottom: 25px;
    }

    .section-5-body-links-row {
        display: flex;
        justify-content: space-between
    }

    .section-5-body-links-col {
        display: flex;
        justify-content: start;
        flex-wrap: wrap;
    }

    .section-5-body-links-col>div {
        padding: 0 10px;
    }

    .section-5-proc-tab {
        font-family: 'roboto';
        font-size: 18px;
        line-height: 43px;
        letter-spacing: 0.035em;
        text-decoration-line: underline;
        text-transform: capitalize;
        color: #22372B;
        cursor: pointer;
    }

    /* .section-5-body-links-row a {
        font-family: 'roboto';
        font-size: 18px;
        line-height: 43px;
        letter-spacing: 0.035em;
        text-decoration-line: underline;
        text-transform: capitalize;
        color: #22372B;
    } */
    .info .hide {
        display: none;
    }

    .info .show {
        display: flex;
    }

    .section-5-body-btn-block {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        padding: 0 15px;
        margin-bottom: 50px;
    }

    .section-5-body-btn-block a {
        font-family: 'roboto';
        font-size: 24px;
        line-height: 24px;
        text-align: center;
        color: #22372B;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 8px;
        padding: 20px 60px;
        margin: 20px 0;
        text-decoration: none;
        border: 3px solid #22372B;
        border-radius: 8px;
        -moz-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        -webkit-transition: all .4s ease-out;
    }


    .section-5-body-btn-block .green {
        font-family: 'roboto';
        font-size: 24px;
        line-height: 24px;
        text-align: center;
        color: #FFFFFF;
        border: 3px solid #22372B;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 8px;
        padding: 20px 60px;
        margin: 20px 0;
        text-decoration: none;
        background: #22372B;
    }


    /* section-6 */
    .section-6 {
        max-width: 1920px;
        margin: 50px 0 auto;
    }
    .section-6-img {
        margin-bottom: 0;
    }

    .section-6-img picture img {
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .section-6-title {
        padding: 0 15px;
        margin-bottom: 50px;
    }

    .section-6-title h2 {
        font-family: 'roboto';
        font-size: 48px;
        line-height: 96%;
        text-align: center;
        letter-spacing: 6px;
        color: #22372B;
        font-weight: 400;
    }

    .section-6-body-row {
        display: flex;
        flex-direction: column;
        padding: 0 15px;
    }


    .section-6-body-col h3 {
        font-family: 'roboto';
        font-size: 24px;
        line-height: 32px;
        color: #22372B;
        margin-bottom: 25px;
    }

    .section-6-body-col p {
        font-family: 'roboto';
        font-size: 16px;
        line-height: 27px;
        letter-spacing: 0.035em;
        color: #131618;
        margin-bottom: 25px;
    }
    .section-6-body-col .button a{
        font-family: 'roboto', sans-serif;
        color: #22372B;
        text-align: center;
        text-decoration: none;
        padding: 10px 30px;
        background-color: rgba(225, 203, 187, 0.7);
        border-radius: 15px;
        -moz-transition: all 1s ease-out;
        -o-transition: all 1s ease-out;
        -webkit-transition: all 1s ease-out;
    }
    .section-6-body-col .button a:hover{
        transition: 1s;
	background: rgba(225, 203, 187, 1);
    text-decoration: underline;
    }
    /* section-7  */
    .section-7-body {
        position: relative;
        height: 560px;
        margin-bottom: 50px;
    }

    .section-7-body picture img {
        width: 100%;
        position: absolute;
        height: 560px;
        -o-object-fit: cover;
        object-fit: cover;
        z-index: 0;
    }

    .section-7-info {
        position: absolute;
        width: 100%;
    }

    .section-7-right-content {
        padding-left: 15px;
    }

    .section-7-body-title h2 {
        font-family: 'roboto';
        font-size: 32px;
        line-height: 96%;
        text-align: center;
        letter-spacing: 6px;
        color: #FFFFFF;
        padding: 50px 0 60px;
        font-weight: 400;
    }

    .section-7-body-content {
        padding: 0 15px;
    }

    .section-7-logo {
        margin-bottom: 45px;
    }

    .section-7-logo img {
        width: 187px;
    }

    .section-7-desc-1 {
        width: 210px;
        font-family: 'roboto';
        font-size: 24px;
        line-height: 32px;
        text-transform: uppercase;
        color: #FFFFFF;
        margin-bottom: 45px;
    }

    .section-7-desc-2 {
        margin-bottom: 45px;
    }

    .section-7-desc-2 div {
        font-family: 'roboto';
        font-size: 24px;
        line-height: 32px;
        text-transform: uppercase;
        color: #FFFFFF;
        margin-bottom: 7px;
    }

    .section-7-desc-2 p {
        font-family: 'roboto';
        font-size: 16px;
        line-height: 27px;
        letter-spacing: 0.035em;
        color: #FFFFFF;
    }

    .section-7-body div a {
        font-family: 'roboto';
        font-size: 18px;
        line-height: 27px;
        letter-spacing: 0.05em;
        text-decoration: none;
        color: #FFFFFF;
    }

    .section-7 .arrow-hover {
        cursor: pointer;
        position: relative;
        width: 115px;
        height: 50px;
        margin: 0 0 0 0;
    }

    .section-7 .arrow-hover div {
        position: relative;
        top: 20px;
        width: 115px;
        height: 2px;
        background: #FFFFFF;
        -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        left: 0;
        display: block;
    }

    .section-7 .arrow-hover div::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 2px;
        top: -3px;
        right: -3px;
        background: #FFFFFF;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .section-7 .arrow-hover div::before {
        content: '';
        position: absolute;
        width: 10px;
        height: 2px;
        top: 3px;
        right: -3px;
        background: #FFFFFF;
        -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    /* section-8 */
    .section-8 {
        padding: 0 15px;
        margin-bottom: 50px;
    }

    .section-8-img {
        position: relative;
        height: 324px;
        z-index: 0;
        margin-bottom: 50px;
    }

    .section-8-img picture img {
        position: absolute;
        height: 324px;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        z-index: 0;
    }

    .section-8-title {
        width: 100%;
        position: absolute;
        padding-top: 220px;
        z-index: 1;
    }

    .section-8-title h2 {
        font-family: 'roboto';
        font-size: 32px;
        line-height: 96%;
        text-align: center;
        letter-spacing: 6px;
        color: #FFFFFF;
    }

    .section-8-body-row {
        display: flex;
        flex-direction: column;
    }

    .section-8-body-col-1,
    .section-8-body-col-2 {
        flex: 50%;
        margin-bottom: 25px;
        font-family: 'roboto';
        font-size: 24px;
        line-height: 32px;
        color: #22372B;
    }

    .section-8-body-col-1 img {
        width: 100%;
        object-fit: cover;
    }

    .section-8-body-col-2 h3 {
        font-family: 'roboto';
        font-size: 35px;
        line-height: 46px;
        font-style: normal;
        font-weight: 400;
    }

    .section-8-body-col-2 p {
        font-family: 'roboto';
        font-size: 18px;
        margin-bottom: 25px;
        letter-spacing: 0.035em;
        line-height: 27px;
    }

    .section-8-body-col-2 a {
        font-family: 'roboto';
        font-size: 18px;
        line-height: 27px;
        letter-spacing: 0.05em;
        color: #22372B;
        text-decoration: none;
        padding: 11px 55px 11px 0;
        -moz-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        -webkit-transition: all .4s ease-out;
    }

    .section-8-body-col-2 a.simple-link {
        font-family: 'roboto';
        font-size: 18px;
        line-height: 27px;
        letter-spacing: 0.05em;
        color: #22372B;
        text-decoration: underline;
        padding: 0;
        -moz-transition: none;
        -o-transition: none;
        -webkit-transition: none;
    }

    .section-8-body-col-2 a.simple-link:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
        border-radius: none;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        padding: 0;

    }

    /* section-9 */
    .section-9 {
        display: flex;
        flex-direction: column;
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .section-9-body {
        display: flex;
        flex-direction: column;
    }

    .section-9-img {
        text-align: center;
        margin-bottom: 45px;
    }

    
    .section-9-img img {
        width: 100%;
        max-width: 230px;
    }

    .section-9-question {
        margin-bottom: 45px;
    }

    .section-9-profiles {
        text-align: center;
        margin-top: 20px;
    }

    .section-9-profiles img {
        width: 150px;
    }

    .section-9-question p {
        font-family: 'roboto';
        font-size: 24px;
        line-height: 110%;
        text-transform: uppercase;
        color: #22372B;
        text-align: center;
    }

    .section-9-chat {
        /* padding: 20px 50px; */
        text-align: center;
    }

    .section-9-chat a {
        display: flex;
        justify-content: center;
        font-family: 'roboto';
        font-size: 24px;
        line-height: 30px;
        text-align: center;
        color: #22372B;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 8px;
        padding: 20px 0 40px 0;
        margin: 20px 0;
        text-decoration: none;
        background: rgba(0, 0, 0, 0);
        -moz-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        -webkit-transition: all .4s ease-out;
    }

    .section-9-chat-text {
        color: #ffffff;
        padding-left: 10px;
    }

    .section-9-form-submit-arrow div {
        position: relative;
        top: 20px;
        width: 100%;
        height: 2px;
        background: #22372B;
        -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        left: 0;
        display: block;
        -moz-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        -webkit-transition: all .4s ease-out;
    }

    .section-9-form-submit-arrow div::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 2px;
        top: -3px;
        right: -3px;
        background: #22372B;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .section-9-form-submit-arrow div::before {
        content: '';
        position: absolute;
        width: 10px;
        height: 2px;
        top: 3px;
        right: -3px;
        background: #22372B;
        -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }


    /* section-10-form */
    .section-10-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
        padding: 100px 15px;
    }

    .section-10-form-title {
        margin-bottom: 40px;
    }

    .section-10-form-title h2 {
        font-family: 'roboto';
        font-size: 32px;
        line-height: 96%;
        text-align: center;
        letter-spacing: 6px;
        color: #FFFFFF;
    }

    .section-10-form-box {
        width: 100%;
        display: flex;
    }

    .section-10-form-box form {
        font-family: 'roboto';
        font-size: 18px;
        line-height: 24px;
        color: #FFFFFF;
        width: 100%;
    }

    .section-10-form-body-row {
        width: 100%;
        display: flex;
        justify-content: space-around;
        flex-direction: column;
        align-items: center;
    }

    .section-10-form-body-col-1 {
        width: 100%;
    }

    .section-10-form-body-col-2 {
        width: 100%;
    }

    .section-10-form-group-1 {
        display: flex;
        flex-direction: column;
        margin-bottom: 40px;
    }

    .section-10-form-group-1 div {
        margin: 7px 0;
    }

    .section-10-form-group-2 {
        display: flex;
        flex-direction: column;
        border: 1px solid #FFFFFF;
        padding: 20px;
        margin-bottom: 25px;
    }

    .section-10-form-group-1 input {
        width: 100%;
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid rgba(252, 252, 252, 1);
        background: rgba(255, 255, 255, 0);
        padding: 0.5em 0;
        color: white;
        font-size: 18px;
    }

    .section-10-form-group-2 input {
        background: rgba(255, 255, 255, 0);
    }

    .section-10-form-group-1 input::-webkit-input-placeholder {
        font-family: 'roboto';
        font-size: 18px;
        line-height: 24px;
        color: #FFFFFF;
    }

    .section-10-form-group-1 input::-moz-placeholder {
        font-family: 'roboto';
        font-size: 18px;
        line-height: 24px;
        color: #FFFFFF;
    }

    .section-10-form-group-1 input:-moz-placeholder {
        font-family: 'roboto';
        font-size: 18px;
        line-height: 24px;
        color: #FFFFFF;
    }

    .section-10-form-group-1 input:-ms-input-placeholder {
        font-family: 'roboto';
        font-size: 18px;
        line-height: 24px;
        color: #FFFFFF;
    }

    .section-10-form-group-2-title {
        text-align: center;
        font-weight: 700;
        margin-bottom: 20px;
        font-family: 'roboto';
        font-size: 18px;
        line-height: 24px;
        color: #FFFFFF;
    }

    .section-10-form-group-2-row {
        display: flex;
        flex-direction: column;
        font-family: 'roboto';
        font-size: 18px;
        line-height: 24px;
        color: #FFFFFF;
        /* align-items: center; */
    }

    .section-10-form-group-2-col div {
        margin-bottom: 15px;
    }

    .section-10-form-group-2-row input:checked,
    .section-10-form-group-2-row input:not(:checked) {
        position: absolute;
        left: -9999px;
    }

    .section-10-form-group-2-row input:checked+label,
    .section-10-form-group-2-row input:not(:checked)+label {
        display: inline-block;
        position: relative;
        padding-left: 39px;
        line-height: 20px;
        cursor: pointer;
    }

    .section-10-form-group-2-row input:checked+label:before,
    .section-10-form-group-2-row input:not(:checked)+label:before {
        content: "";
        position: absolute;
        left: 0px;
        top: 0px;
        width: 18px;
        height: 18px;
        border: 1px solid #dddddd;
        background: rgba(255, 255, 255, 0);
    }

    .section-10-form-group-2-row input:checked+label:after,
    .section-10-form-group-2-row input:not(:checked)+label:after {
        content: "";
        position: absolute;
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
        left: 3px;
        top: 3px;
        width: 10px;
        height: 8px;
        border-radius: 1px;
        border-left: 4px solid #d3d3d3;
        border-bottom: 4px solid #d3d3d3;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .section-10-form-group-2-row input:not(:checked)+label:after {
        opacity: 0;
    }

    .section-10-form-group-2-row input:checked+label:after {
        opacity: 1;
    }

    .section-10-form-submit {
        text-align: center;
    }

    .section-10-form-submit a {
        width: 100%;
        border: none;
        font-size: 24px;
        line-height: 110%;
        text-align: center;
        background: rgba(255, 255, 255, 0);
        color: #FFFFFF;
        text-decoration: none;
    }

    .section-5-body-btn-block .white {
        font-family: 'roboto';
        font-size: 24px;
        line-height: 30px;
        text-align: center;
        color: #FFFFFF;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 8px;
        padding: 20px 60px 40px 60px;
        margin: 20px 0;
        text-decoration: none;
        background: rgba(0, 0, 0, 0);
        -moz-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        -webkit-transition: all .4s ease-out;
    }

    .section-10-form-body-col-2 .section-10-form-submit-arrow div {
        position: relative;
        top: 20px;
        width: 100%;
        height: 2px;
        background: #FFFFFF;
        -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        left: 0;
        display: block;
        -moz-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        -webkit-transition: all .4s ease-out;
    }

    .section-10-form-body-col-2 .section-10-form-submit-arrow div::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 2px;
        top: -3px;
        right: -3px;
        background: #FFFFFF;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .section-10-form-body-col-2 .section-10-form-submit-arrow div::before {
        content: '';
        position: absolute;
        width: 10px;
        height: 2px;
        top: 3px;
        right: -3px;
        background: #FFFFFF;
        -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

}

@media (min-width:540px) {
    .section-1-img-lottie {
        width: 400px;
    }

    .section-4-body-row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .section-5-body-links-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}

@media (min-width:720px) {

    /* section-3 */
    .section-3-img {
        -webkit-box-flex: 40%;
        -ms-flex: 40%;
        flex: 40%;
    }

    .section-3 {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
        padding: 50px 15px;
        min-height: 999px;
    }

    .section-3-img-box {
        display: contents;
    }

    .section-3-body {
        padding-right: 15px;
    }

    .section-3-img picture img {
        width: 100%;
        max-height: 999px;
        height: auto;
    }

    .section-3-body {
        flex: 60%;
    }

    .section-3-img-title {
        top: 161%;
        left: -3%;
    }

    /* section-5 */
    .section-5-img {
        height: 429px;
        margin-bottom: 50px;
    }

    .section-5-body-links-row {
        flex-direction: column;
    }

    .section-5-body-links-col {
        flex-direction: row;
        justify-content: start;
        margin-left: -10px;
    }

    .section-5-body-links-col div {
        padding-right: 0.7em;
        -moz-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        -webkit-transition: all .4s ease-out;

    }

    .section-5-body-links-col div:hover {
        letter-spacing: 0.08em;
        transition: .4s;

    }
}

@media (min-width:768px) {
    .section-7-body-content {
        padding-left: 4%;
    }

    .section-7-right-content {
        margin: 0 0 0 78%;
    }

    .section-7-desc-1 {
        width: 300px;
        font-size: 40px;
        line-height: 42px;
        margin-bottom: 26px;
    }

    .section-8-img {
        display: none;
    }

    .section-8-img picture img {
        height: 811px;
    }

    .section-8-title {
        padding-top: 631px;
    }

    .section-9-body {
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
    }

    .section-10-form {
        padding: 100px 40px;
    }

    .section-10-form-group-2-row {
        flex-direction: row;
        justify-content: space-around;
    }

    .section-10-form-group-2 {
        padding: 50px 20px;
    }

    .section-10-form-group-2-title {
        text-align: left;
        margin-left: 35px;
    }

    .section-10-form-group-2-row div {
        padding-bottom: 25px;
    }

}

@media (min-width:1025px) {
    .section-1 {
        flex-direction: row;
        justify-content: space-around;
        padding: 50px 50px;
        margin-bottom: 0;
    }

    .mt-180px {
        margin-top: -100px;
    }

    .section-1-img {
        width: 45%;
    }

    .section-1-img img {
        width: 100%;
    }

    .section-1-img-lottie {
        width: 737px;
        margin: 0px 0 0 -147px;
    }

    .section-1-body {
        width: 55%;
        padding-left: 5vw;
        align-self: flex-start;
    }

    .section-1-title h2{
        font-size: 60px;
        line-height: 95%;
        font-family: 'roboto';
        text-align: left;
        font-weight: 400;
    }

    .section-1-title img {
        width: 200px;
        margin: 0px 0 -54px 0;
    }

    .section-2-body {
        background-color: rgba(36, 36, 36, 0);
        margin-top: 805px;
        width: 100%;
        padding: 0 15px;
        text-align: center;
    }

    .section-2-text {
        text-align: center;
        font-size: 90px;
    }

    .section-2-link {
        text-align: center;
    }

    .section-2-bg {
        height: 1165px;
    }

    .section-2-bg img {
        height: 1165px;
    }

    .section-3-title {
        margin-bottom: 90px;
    }

    .section-3-title h2 {
        font-size: 90px;
    }

    .section-3-text div h3 {
        font-size: 35px;
    }

    .section-3-text div p {
        font-size: 18px;
    }

    .section-4-title {
        font-size: 90px;
    }

    .section-5-img h3 {
        font-size: 90px;
        padding-top: 100px;
    }

    .section-5-img h3 img {
        width: 209px;
        margin: 0px 0 -68px 13px;
    }

    .section-5-body-row {
        flex-direction: row;
    }

    .section-5-body-info-block {
        padding: 0 40px;
        width: 75%;
    }


    .section-5-body-btn-block .white {
        text-align: left;
    }

    .section-5-body-btn-block a {
        padding: 1.5em;
    }

    .section-5-body-btn-block {
        padding: 0 40px;
    }


    .section-5-body-btn-block .green {
        padding: 1.5em;
    }

    .section-6-img {
        height: 897px;
    }

    .section-6-img picture img {
        height: 897px;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .section-6-title h2 {
        font-size: 90px;
    }

    .section-6-body-col h3 {
        font-size: 35px;
    }

    .section-6-body-row {
        flex-direction: row;
    }

    .section-6-body-col {
        flex: 50%;
        padding: 50px;
    }

    .section-7 {
        height: 811px;
        margin-bottom: 100px;
    }

    .section-7-body {
        height: 811px;
    }

    .section-7-body picture img {
        height: 811px;
    }

    .section-7-body-title h2 {
        font-size: 90px;
        font-weight: 400;
    }

    .section-7-body-content {
        margin: 181px 0 0 0;
    }

    .section-7-right-content {
        margin: -126px 0 0 78%;
    }

    .section-8-body-row {
        flex-direction: row;
        align-items: center;
    }

    .section-8-body-col-2 h3 {
        font-size: 35px;
    }

    .section-8-body-col-2 {
        padding: 0 1em;
    }

    .section-8-title h2 {
        font-size: 90px;
    }

    .section-9 {
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
    }

    .section-9-body {
        flex: 50%;
    }

    .section-9-img img {
        width: 250px;
        zoom: 0;
    }

    .section-9-profiles img {
        width: 200px;
    }

    .section-9-chat {
        flex: 50%;
        text-align: left;
    }

    .section-9-form-submit-arrow div {
        left: 0;
        max-width: 390px;
    }

    .section-10-form-title h2 {
        font-size: 90px;
        font-weight: 400;
    }

    .section-10-form-body-col-2 .section-10-form-submit-arrow div {
        left: 0;
    }

    .section-10-form {
        padding-bottom: 50px;
        max-width: 1920px;
        margin: 0 auto;
    }

    .section-10-form-title h2 {
        font-size: 90px;
    }

    .section-10-form-body-row {
        flex-direction: row;
    }

    .section-10-form-group-1 {
        margin-bottom: 70px;
    }

    .section-10-form-group-2 {
        padding: 50px 5px 20px;
    }

    .section-10-form-submit>a {
        background: #cfcfcf;
        width: 530px;
        padding: 40px 60px;
        border: 1px solid #f51717;
    }

    .section-10-form-submit>a .section-10-form-submit-arrow div {
        width: 277px;
    }

    .section-10-form-submit {
        padding-left: 0;
    }

}

@media (min-width:1200px) {
    .section-1-btn>a:hover {
        -webkit-box-shadow: -75px 177px 77px rgba(43, 54, 48, 0.01), -42px 100px 65px rgba(43, 54, 48, 0.05), -19px 44px 48px rgba(43, 54, 48, 0.09), -5px 11px 26px rgba(43, 54, 48, 0.1), 0px 0px 0px rgba(43, 54, 48, 0.1);
        box-shadow: -75px 177px 77px rgba(43, 54, 48, 0.01), -42px 100px 65px rgba(43, 54, 48, 0.05), -19px 44px 48px rgba(43, 54, 48, 0.09), -5px 11px 26px rgba(43, 54, 48, 0.1), 0px 0px 0px rgba(43, 54, 48, 0.1);
        border-radius: 8px;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
        padding-left: 55px;
    }

    .section-3-body {
        padding: 40px 5%;
    }

    .section-3-img-title {
        top: -20%;
        left: -5%;
    }

    .section-3-title h2 {
        font-size: 90px;
        width: 612px;
    }

    .section-4-text-wrap {
        padding: 0 55px;
    }

    .section-4-dr-link a:hover {
        -webkit-box-shadow: -75px 177px 77px rgba(43, 54, 48, 0.01), -42px 100px 65px rgba(43, 54, 48, 0.05), -19px 44px 48px rgba(43, 54, 48, 0.09), -5px 11px 26px rgba(43, 54, 48, 0.1), 0px 0px 0px rgba(43, 54, 48, 0.1);
        box-shadow: -75px 177px 77px rgba(43, 54, 48, 0.01), -42px 100px 65px rgba(43, 54, 48, 0.05), -19px 44px 48px rgba(43, 54, 48, 0.09), -5px 11px 26px rgba(43, 54, 48, 0.1), 0px 0px 0px rgba(43, 54, 48, 0.1);
        border-radius: 8px;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
        padding-left: 55px;
    }

    .section-5-img picture img {
        height: 660px;
    }

    .section-4-title {
        font-size: 90px;
    }

    .section-4-img img:hover {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-transition: 5s;
        -o-transition: 5s;
        transition: 5s;
    }

    .section-5-img {
        height: 660px;
    }

    .section-5-img h3 {
        padding: 223px 0 0 170px;
    }

    .section-5-img h3 {
        font-size: 90px;

    }

    .section-5-body-row {
        flex-direction: row;
        padding: 80px;
    }

    .section-5-body-text {
        padding: 25px 150px 25px 0;
        min-height: 450px;
    }

    .section-5-body-btn-block .white:hover .section-10-form-submit-arrow div {
        width: 80%;
        transition: .4s;
    }

    .section-5-body-btn-block a:hover {
        border-radius: 8px;
        border-color: rgba(19, 22, 24, 0);
        transition: .4s;
        transition-duration: .4s;
        -webkit-box-shadow: -75px 177px 77px rgb(43 54 48 / 1%), -42px 100px 65px rgb(43 54 48 / 5%), -19px 44px 48px rgb(43 54 48 / 9%), -5px 11px 26px rgb(43 54 48 / 10%), 0px 0px 0px rgb(43 54 48 / 10%);
        box-shadow: -75px 177px 77px rgb(43 54 48 / 1%), -42px 100px 65px rgb(43 54 48 / 5%), -19px 44px 48px rgb(43 54 48 / 9%), -5px 11px 26px rgb(43 54 48 / 10%), 0px 0px 0px rgb(43 54 48 / 10%);
    }

    .section-5-body-btn-block .bs:hover {
        box-shadow: -75px 90px 77px rgba(43, 54, 48, 0.01), -42px 100px 65px rgba(43, 54, 48, 0.05), -19px 44px 48px rgba(43, 54, 48, 0.09), -5px 11px 26px rgba(43, 54, 48, 0.1), 0px 0px 0px rgba(43, 54, 48, 0.1);
        border-radius: 8px;
        border-color: rgba(19, 22, 24, 0);
        transition: .4s;
        transition-duration: .4s;
    }


    .section-5-body-btn-block .green:hover {
        background: radial-gradient(85.12% 324.63% at 107.24% -7.85%, #315440 0%, #22372B 100%);
        -webkit-transition: .4s;
        -o-transition: .4s;
        transition: .4s;
    }

    .section-6-title {
        padding: 0 100px;
        margin-bottom: 50px;
    }

    .section-7-body-content {
        padding-left: 7%;
    }

    .section-7-right-content {
        margin: -197px 0 0 78%;
    }

    .section-7-desc-1 {
        width: 660px;
        font-size: 84px;
        line-height: 92px;
        margin-bottom: 26px;
    }

    .section-8-body-col-2 {
        padding: 0 4em;
    }

    .section-7-body-title h2 {
        font-size: 90px;
    }

    .section-8-body-col-2 a:hover {
        -webkit-box-shadow: -75px 177px 77px rgba(43, 54, 48, 0.01), -42px 100px 65px rgba(43, 54, 48, 0.05), -19px 44px 48px rgba(43, 54, 48, 0.09), -5px 11px 26px rgba(43, 54, 48, 0.1), 0px 0px 0px rgba(43, 54, 48, 0.1);
        box-shadow: -75px 177px 77px rgba(43, 54, 48, 0.01), -42px 100px 65px rgba(43, 54, 48, 0.05), -19px 44px 48px rgba(43, 54, 48, 0.09), -5px 11px 26px rgba(43, 54, 48, 0.1), 0px 0px 0px rgba(43, 54, 48, 0.1);
        border-radius: 8px;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
        padding-left: 55px;
    }

    .section-9-chat .white:hover .section-9-form-submit-arrow div,
    .section-9-chat .white:hover .section-9-form-submit-arrow div::before,
    .section-9-chat .white:hover .section-9-form-submit-arrow div::after {
        background: #355F47;
    }

    .section-9-chat:hover .section-9-form-submit-arrow div {
        width: 80%;
        transition: .4s;
    }

    .section-10-form-title h2 {
        font-size: 90px;
    }

}

@media (min-width:1440px) {
    .section-1 {
        padding: 50px 150px;
    }

    .mt-180px {
        margin-top: -180px;
    }

    .section-1-title img {
        width: 250px;
    }

    .section-1-img-lottie {
        width: 737px;
        margin: 0px 0 0 -49px;
    }

    .section-3-img {
        flex: 0 0 40%;
    }

    .section-4-text-wrap {
        padding: 0 110px;
    }

    .section-5-img h3 img {
        width: 357px;
        margin: 0 0 -119px 0;
    }

    .section-6-title h2 {
        font-size: 90px;
    }

    .section-6-body-row {
        padding: 0 100px;
    }

    .section-9-profiles {
        text-align: center;
        margin-top: -14px;
    }

    .section-9-profiles img {
        width: 266px;
    }

    .section-9-question p {
        font-size: 36px;
        line-height: 370%;
    }

    .section-10-form-title h2 {
        max-width: 1490px;
        width: 100%;
    }

    .section-10-form-body-row {
        max-width: 1490px;
        width: 100%;
        margin: 0 auto;
    }
}

.nose-block img {
    width: 100%;
    margin-bottom: 25px;
}

.nose-block .link-arrow {
    cursor: pointer;
    position: relative;
    width: 115px;
    height: 50px;
    margin: -14px 0 0 0;
    -moz-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    -webkit-transition: all .4s ease-out;
}


.nose-block .link-arrow div {
    position: relative;
    top: 20px;
    width: 100%;
    height: 1px;
    background: #000000;
    -webkit-box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
    box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
    left: 0;
    display: block;
}

.nose-block .link-arrow:hover {
    width: 140px;
    transition: .4s;
}

.nose-block .link-arrow div::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 1px;
    top: 3px;
    right: -3px;
    background: #000000;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.nose-block .link-arrow div::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 1px;
    top: -3px;
    right: -3px;
    background: #000000;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nose-block .nose-card {
    max-width: 540px;
    width: 100%;
    padding: 15px;
}

@media (max-width:1200px) {
    .nose-block .nose-card {
        max-width: 478px;
    }
}

@media (max-width:991px) {
    .nose-block .nose-card {
        max-width: 360px;
    }
}

@media (max-width:768px) {
    .nose-block .nose-card {
        max-width: inherit;
        ;
    }
}

.nose-block .nose-title {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 33px;
    letter-spacing: 0.035em;
    color: #000000;
    margin-bottom: 25px;
}

.nose-block .nose-desc {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.035em;
    color: #000000;
    text-decoration: none;
    margin-bottom: 25px;
}

.blog-post-section {
    max-width: 1920px;
    margin: 100px auto;
    display: flex;
    justify-content: flex-end;
}

.blog-post-box {
    display: flex;
    flex-direction: column;
    padding-left: 30px;
}

@media(max-width:1024px) {
    .blog-post-box {
        padding-left: 0;
    }
}

.blog-post-item {
    padding: 0 15px;
}

.blog-post-item div {
    margin-bottom: 45px;
}

.blog-post-item-img {
    text-align: center;
}

.blog-post-item-img img {
    width: 50%;
}

.blog-post-item-posted p {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 33px;
    letter-spacing: 0.035em;
    color: #000000;
}

.blog-post-item-title h3 {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 33px;
    letter-spacing: 0.035em;
    color: #000000;
}

.blog-post-item-desc h2 {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 33px;
    letter-spacing: 0.035em;
    color: #000000;
    padding-bottom: 22px;
}

.blog-post-item-desc ul li {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.035em;
    color: #000000;
    margin-bottom: 30px;
    list-style-type: disc;
}

.blog-post-item-desc ul {
    margin-left: 30px;
}

.blog-post-item-desc p {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.035em;
    color: #000000;
    margin-bottom: 30px;
}

.blog-post-item-link a {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.035em;
    color: #000000;
    text-decoration: none;
}

.blog-post-prew-next {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}

.blog-post-prew-next button {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 110%;
    text-align: center;
    color: #FFFFFF;
    background: #22372B;
    border-radius: 8px;
    padding: 0.7em;
    cursor: pointer;
    border: 1px solid #FFFFFF;
    margin: 0 15px;
}

.blog-post-prew-next button:hover {
    color: #22372B;
    background: #FFFFFF;
    border: 1px solid #22372B;
    transition: .4s;
}

.blog-post-prew-next button:active {
    background: #58856b;
    box-shadow:
        12px 12px 16px 0 rgba(255, 255, 255, 0.3) inset,
        -8px -8px 12px 0 rgba(0, 0, 0, .25) inset;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
}

.blog-post-prew-next a {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 110%;
    text-align: center;
    color: #FFFFFF;
    background: #22372B;
    border-radius: 8px;
    padding: 0.7em;
    cursor: pointer;
    border: 1px solid #FFFFFF;
    margin: 0 15px;
    text-decoration: none;
}

.blog-post-prew-next a:hover {
    color: #22372B;
    background: #FFFFFF;
    border: 1px solid #22372B;
    transition: .4s;
}

.blog-post-prew-next a:active {
    background: #58856b;
    box-shadow:
        12px 12px 16px 0 rgba(255, 255, 255, 0.3) inset,
        -8px -8px 12px 0 rgba(0, 0, 0, .25) inset;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
}

.header-title h1.single-post-title {
    font-size: 50px;
    color: #E1CBBB;
    text-transform: none;
}

@media(max-width:1024px) {
    .blog-post-section {
        margin: 50px auto;
    }

    .blog-post-item {
        flex: 100%;
        padding: 0 15px;
    }

    .blog-post-links-box {
        padding: 0 15px;
        min-width: 226px;
    }

    .blog-post-box {
        padding-left: 0;
    }

    .blog-post-links-items {
        padding: 50px 15px;
    }

    .blog-post-item div {
        margin-bottom: 25px;
    }
}

@media(max-width:575px) {
    .blog-post-section {
        flex-direction: column;
    }

    .blog-post-item-img img {
        width: 100%;
    }

    .blog-links-box {
        max-width: 540px;
    }

    .header-title h1.single-post-title {
        font-family: 'roboto';
        font-size: 26px;
        line-height: 100%;
        font-weight: 400;
        padding: 0 15px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }
}

.blog-post-row {
    padding: 0 60px;
}

.blog-post-row-title {
    margin-bottom: 65px;
}

.blog-post-row-title h3 {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 27px;
    letter-spacing: 0.035em;
    color: #000000;
    border-bottom: 1px solid rgba(104, 104, 104, 1);
    padding-bottom: 65px;
}

.blog-post-row-items {
    display: flex;
    justify-content: space-between;
}

.blog-post-row-item {
    max-width: 580px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: inherit;
    flex: 1;
}

.blog-post-row-item div {
    margin-bottom: 45px;
}

.blog-post-row-item-img {}

.blog-post-row-item-img img {
    width: 100%;
}

.blog-post-row-item-title {}

.blog-post-row-item-title h4 {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 38px;
    letter-spacing: 0.035em;
    color: #000000;
}

.blog-post-row-item-desc {}

.blog-post-row-item-desc p {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0.035em;
    color: #000000;
}

@media(max-width:1024px) {
    .blog-post-row {
        padding: 0 15px;
    }

    .blog-post-prew-next {
        margin-top: 0;
    }

}

@media(max-width:991px) {
    .blog-post-row-items {
        flex-direction: column;
        align-items: center;
    }

    .blog-post-row-title h3 {
        padding-bottom: 25px;
        text-align: center;
    }

    .blog-post-row-title {
        margin-bottom: 25px;
    }

    .blog-post-row-item {
        padding: 0;
    }

    .blog-post-row-item div {
        margin-bottom: 25px;
    }

    .blog-post-row-item-title h4 {
        font-size: 24px;
    }
}

.blog-section {
    max-width: 1920px;
    margin: 100px auto;
    display: flex;
}

.blog-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 30px;
}

.blog-item {
    /*flex: 44%;*/
    padding: 0 15px;
	width:50%;
}

.blog-item div {
    margin-bottom: 45px;
}

.blog-item-img img {
    width: 100%;
}

.blog-item-posted p {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 33px;
    letter-spacing: 0.035em;
    color: #000000;
}

.blog-item-title h3 {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 33px;
    letter-spacing: 0.035em;
    color: #000000;
}

.blog-item-desc p {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.035em;
    color: #000000;
}

.blog-item-link a {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.035em;
    color: #000000;
    text-decoration: none;
}

.blog-item-link-arrow {
    position: relative;
    top: -52px;
}

.blog-item-link-arrow div {
    position: relative;
    top: 16px;
    width: 103px;
    height: 1px;
    background: rgba(34, 55, 43, 1);
    -webkit-box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
    box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
    left: 0;
    display: block;
    -moz-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    -webkit-transition: all .4s ease-out;
}

.blog-item-link a:hover .blog-item-link-arrow div {
    transition: .4s;
    width: 123px;
}

.blog-item-link-arrow div::before {
    content: '';
    position: absolute;
    width: 7px;
    height: 1px;
    top: 2px;
    right: -2px;
    background: rgba(34, 55, 43, 1);
    -webkit-box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
    box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.blog-item-link-arrow div::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 1px;
    top: -2px;
    right: -2px;
    background: rgba(34, 55, 43, 1);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.blog-paging {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    margin: 50px 0;
}

.blog-paging button {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 37px;
    line-height: 33px;
    color: #fff;
    background: #CCCCCC;
    padding: 0.5em 0.6em;
    border: none;
}

.blog-paging button:hover {
    background: #22372B;
    transition: .4s;
}

.blog-paging a {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 37px;
    line-height: 33px;
    color: #fff;
    background: #CCCCCC;
    padding: 5px 10px 11px 10px;
    border: none;
    text-decoration: none;
    margin: 10px 5px;
}

.blog-paging .current {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 37px;
    line-height: 33px;
    color: #fff;
    background: #7e7d7d;
    padding: 5px 10px 11px 10px;
    border: none;
    text-decoration: none;
    position: relative;
    top: -2px;
    margin: 0 5px;
}

.blog-paging a:hover {
    background: #22372B;
    transition: .4s;
}

.blog-links-box {
    display: flex;
    flex-direction: column;
    max-width: 410px;
    min-width: 300px;
    width: 100%;
    padding: 0 30px;
    margin-right: 30px;
}

.blog-links-items {
    padding: 50px 30px;
    background: #F5F5F5;
    margin-bottom: 60px;
}

.blog-links-items h3 {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 33px;
    letter-spacing: 0.035em;
    color: #000000;
    padding-bottom: 20px;
    border-bottom: 1px solid;
    margin-bottom: 20px;
}

.blog-links-items ul {
    margin-left: 32px;
}

.blog-links-items ul li {
    list-style: none;
    margin-bottom: 0;
}

.blog-links-items ul li::before {
    content: "";
    display: block;
    position: relative;
    top: 22px;
    left: -31px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
}

.blog-links-items ul li a {
    text-decoration: none;
    font-family: 'roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 0.035em;
    color: #000000;
}

.blog-links-items ul li a:hover {
    text-shadow: 0px 0px 1px rgb(0 0 0 / 50%);
    transition: 0.4s;
    text-decoration: underline;
}

@media(max-width:1024px) {
    .blog-item {
        flex: 100%;
        padding: 0 15px;
    }

    .blog-links-box {
        padding: 0 15px;
        min-width: 226px;
        margin-right: 0;
    }

    .blog-box {
        padding-left: 0;
    }

    .blog-links-items {
        padding: 50px 15px;
        margin-bottom: 0;
    }

    .blog-item div {
        margin-bottom: 25px;
    }

    .blog-item-link-arrow div {
        top: 35px;
    }
}

@media(max-width:575px) {
    .blog-section {
        flex-direction: column;
    }

    .blog-links-box {
        max-width: 540px;
    }
}

@media(max-width:699px) {
    .section-6 .section-6-body-row .section-6-img .display-min-700px {
        display: none;
    }

    .section-6 .section-6-body-row .section-6-img .hide-max-699px {
        display: block;
        height: 116vw;
        background-color: transparent;

    }
}

@media(min-width:700px) {
    .section-6 .section-6-body-row .section-6-img .display-min-700px {
        display: block;
    }

    .section-6 .section-6-body-row .section-6-img .hide-max-699px {
        display: none;
    }
}
.advice-block {
    width: 100%;
    height: inherit;
}

.advice-block-body {
    display: flex;
    justify-content: flex-end;
    max-width: 1920px;
    margin: 0 auto;
    height: inherit;
}

.advice-block-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    background: rgba(34, 55, 43, 0.94);
    padding: 0 80px;
    flex: 60%;
}

.advice-block-img {display: flex; flex: 40%}

.advice-block-title h3 {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 35px;
    line-height: 46px;
    color: #FFFFFF;
    margin-bottom: 25px;
}

.advice-block-text {
    margin-bottom: 80px;
}

.advice-block-text p {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.035em;
    color: #FFFFFF;
}

.advice-block-link {}

.advice-block-link a {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 35px;
    line-height: 110%;
    text-decoration: none;
    color: #FFFFFF;
}

@media (max-width:1024px) {
    .advice-block-info {
        padding: 15px;
        min-height: 210px;
    }

    .advice-block-title h3 {
        font-size: 24px;
        line-height: 27px;
    }

    .advice-block-link a {
        font-size: 24px;
    }

}

@media (max-width:700px) {
    .advice-block-body {
        flex-direction: column;
    }
}

/* link-arrow START*/
.advice-block-link-arrow div {
    position: relative;
    top: 20px;
    width: 80%;
    height: 2px;
    background: #ffffff;
    -webkit-box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
    box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
    left: 0;
    display: block;
    -moz-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    -webkit-transition: all .4s ease-out;
}

@media (max-width: 600px) {
    .advice-block-link-arrow div {
        width: 100%;
    }
}

.advice-block-link-arrow div::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    top: 3px;
    right: -3px;
    background: #ffffff;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.advice-block-link-arrow div::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    top: -3px;
    right: -3px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (min-width: 1025px) {
    .advice-block-link:hover .advice-block-link-arrow div {
        width: 60%;
        transition: .4s;
    }
}

/* link-arrow END*/
.mistakes-block {
    margin: 100px 0;
}

.mistakes-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mistakes-banner h2 {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 90px;
    line-height: 95%;
    letter-spacing: 6px;
    color: #ffffff;
    text-align: center;
    padding: 100px 60px;
}

.mistakes-accordion {
    font-family: 'roboto';
    max-width: 1500px;
    width: 100%;
    margin-top: 100px;
    padding: 0 15px;
}

.mistakes-accordion .mistakes-accordion-item {
    font-family: 'roboto';
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #363B3F;
    color: #FFFFFF;
    cursor: pointer;
    padding: 18px 60px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    margin-bottom: 16px;
    box-shadow: -75px 177px 77px rgba(43, 54, 48, 0.01), -42px 100px 65px rgba(43, 54, 48, 0.05), -19px 44px 48px rgba(43, 54, 48, 0.06), -5px 11px 26px rgba(43, 54, 48, 0.03), 0px 0px 0px rgba(43, 54, 48, 0.04);
    border-radius: 5px;
}

.mistakes-accordion .mistakes-accordion-item span {
    text-transform: uppercase;
    padding-left: 15px;
}

.mistakes-accordion .active,
.mistakes-accordion .mistakes-accordion-item:hover {
    background-color: #22372B;
    font-family: 'roboto';
}

.mistakes-accordion .panel {
    font-family: 'roboto';
    display: flex;
    flex-direction: column;
    padding: 0;
    background-color: #ffffff;
    max-height: 0;
    overflow: hidden;
    color: #22372B;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.035em;
    margin: -16px 10px 11px 10px;
    box-shadow: -75px 177px 77px rgb(43 54 48 / 1%), -42px 100px 65px rgb(43 54 48 / 5%), -19px 44px 48px rgb(43 54 48 / 6%), -5px 11px 26px rgb(43 54 48 / 3%), 0px 0px 0px rgb(43 54 48 / 4%);
    border-radius: 5px;
    transition: .3s;
    transform: scaleY(100%);
}

.mistakes-accordion .panel p {
    padding: 16px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'roboto';
    color: #22372B;
}
.mistakes-accordion .panel a {
    font-size: 16px;
    font-weight: 400;
    font-family: 'roboto';
    color: #22372B;
}
.mistakes-accordion ul {
    margin-left: 40px;
}
.mistakes-accordion ul li{
    font-size: 16px;
    font-family: 'roboto';
        font-weight: 400;
        list-style: square;
        color: #22372B;
        margin: 0;
}
.mistakes-accordion .panel img {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    padding: 15px;
}
.mistakes-accordion h3 {
    font-size: 20px;
    font-family: 'roboto';
        font-weight: 400;
}
.mistakes-accordion .panel span {
    display: flex;
    justify-content: center;
}

.mistakes-accordion .panel span img {
    margin: 0;
    padding: 15px 0;
    width: 100%;
    max-width: 190px;
}

@media (max-width: 1024px) {
    .mistakes-block {
        margin: 0;
    }

    .mistakes-banner h2 {
        font-size: 35px;
        padding: 50px 10px;
    }

    .faqs-accordion {
        margin: 70px 0;
    }

    .mistakes-accordion {
        margin-top: 25px;
    }

    .faqs {
        padding: 40px 0;
    }

    .faqs-text a,
    .faqs-text p {
        font-size: 18px;
    }
}
.section-15 {
    max-width: 1440px;
    width: 100%;
    margin: 70px auto;
}

.section-15-body {
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

.section-15-body-left {
    max-width: 680px;
    display: flex;
    width: 100%;
    padding: 25px 50px;
    border: 1px solid #22372B;
    border-radius: 8px;
    flex-direction: column;
}

.section-15-body-title {
    margin-bottom: 25px;
}

.section-15-body-title h3 {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 35px;
    line-height: 46px;
    color: #2B2D2C;
}

.section-15-body-desc {}

.section-15-body-desc div p {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.035em;
    color: #131618;
    margin-bottom: 25px;
}

.section-15-body-desc div ul {
    margin-left: 18px;
}

.section-15-body-desc div ul li {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.035em;
    color: #2B2D2C;
    margin-bottom: 25px;
    padding-left: 20px;

}

.section-15-body-desc div ul li::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    position: relative;
    background: #000;
    top: 18px;
    left: -36px;
}

.section-15-body-right {
    max-width: 680px;
    width: 100%;
    padding: 0px 50px 0;
}

@media (max-width: 1024px) {
    .section-15 {
        margin: 50px auto 0;
    }

    .section-15-body {
        flex-direction: column;
    }

    .section-15-body-left,
    .section-15-body-right {
        max-width: inherit;
        padding: 15px;
    }
}
@media (max-width: 500px) {
    .top-banner-new-design .banner-title {
        font-size: 26px;
        font-weight: 600;
        line-height: 100%;
    }

    .mistakes-accordion .mistakes-accordion-item {
        padding: 15px 10px;
    }

    .mistakes-accordion .mistakes-accordion-item svg {
        margin: 4px 0 0 5px;
    }
}
.section-16 {
    display: flex;
    margin: 50px 0;
    justify-content: space-between;
    background: rgba(225, 203, 187, 0.7);
}

.section-16-body {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    flex: 60%;
}

.section-16-title {
    margin-bottom: 90px;
}

.section-16-title h2 {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 90px;
    line-height: 95%;
    letter-spacing: 6px;
    color: #22372B;
}

.section-16-headline {
    margin-bottom: 25px;
}

.section-16-headline h3 {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 35px;
    line-height: 46px;
    color: #2B2D2C;
}

.section-16-desc {
    margin-bottom: 45px;
}

.section-16-desc p,
.section-16-desc ul li {
    font-family: 'roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.035em;
    color: #131618;
}

.section-16-desc ul {
    margin-left: 40px;
    display: flex;
    flex-direction: column;
}

.section-16-desc ul li::before {
    content: "";
    display: block;
    position: relative;
    width: 12px;
    height: 12px;
    background: #000;
    top: 18px;
    left: -36px;
}

.section-16-img {
    flex: 40%;
}

.section-16-img img {
    max-width: 824px;
    width: 100%;
    height: 1000px;
    object-fit: cover;
}

@media (max-width: 1400px) {

    .section-16-img {
        display: none;
    }
}

@media (max-width: 1024px) {
    .section-16 {
        margin: 50px 0 0;
    }

    .section-16-title h2 {
        font-size: 33px;
    }

    .section-16-body {
        padding: 50px 15px;
    }

    .section-16-title {
        margin-bottom: 30px;
    }
}
@media (max-width: 440px){
	.section-16-title h2 {
		font-size: 40px;
	}
}

/* footer*/
@media (min-width:200px) {
    footer {
        background: rgba(19, 22, 24, 1);
        color: #FCFCFC;
    }

    footer a {
        font-family: 'Sofia Pro Regular', sans-serif;
        color: #FCFCFC;
        font-size: 16px;
        line-height: 20px;
        text-decoration: none;
    }

    footer a:hover {
        text-decoration: underline;
    }

    footer a svg {
        -moz-transition: all 2s ease-out;
        -o-transition: all 2s ease-out;
        -webkit-transition: all 2s ease-out;
    }

    footer a svg:hover {
        -webkit-transform: scale(1.3);
        -ms-transform: scale(1.3);
        transform: scale(1.3);
        -webkit-transition: .4s;
        -o-transition: .4s;
        transition: .4s;
    }

    .footer-box {
        padding: 15px;
    }

    .footer-row-1 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 25px 0;
    }

    .footer-row-1 .footer-col {
        margin-bottom: 40px;
    }

    .footer-col {
        padding: 0 5px;
        min-width: 145px;
    }

    .footer-col div {
        padding: 5px;
    }

    .footer-form-box {
        display: flex;
        justify-content: start;
        align-items: baseline;
    }

    .footer-row-6-col-send-btn>form {
        display: flex;
        justify-content: space-between;
        max-width: 500px;
        margin: 0 auto;
        align-items: center;
        background: rgba(43, 45, 44, 1);
    }

    .footer-row-6-col-send-btn>form input {
        background: rgba(255, 255, 255, 0);
        padding: 0.5em;
        color: white;
        font-size: 18px;
        width: 100%;
    }

    .footer-col span {
        font-family: 'Sofia Pro Regular', sans-serif;
        color: #FCFCFC;
        font-size: 16px;
        line-height: 20px;
    }

    .footer-row-title a {
        font-weight: 600;
    }
    .footer-row-title p {
        font-weight: 600;
        font-family: 'Sofia Pro Regular', sans-serif;
        color: #FCFCFC;
        font-size: 16px;
        line-height: 20px;
        text-decoration: none;
    }
    .footer-row-6-col-send-btn button {
        text-align: right;
        font-family: 'Sofia Pro Bold', sans-serif;
        /* width: 100%; */
        background: rgba(43, 45, 44, 1);
        font-size: 18px;
        line-height: 27px;
        letter-spacing: 0.05em;
        color: #FFFFFF;
        padding: 9px 4%;
        cursor: pointer;
    }

    .footer-row-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 25px 0;
        font-family: 'Sofia Pro Regular', sans-serif;
        color: #FCFCFC;
        font-size: 16px;
        line-height: 20px;

    }

    .footer-col-min-1440px {
        text-align: center;
        width: 100%;
        margin-bottom: 45px;
        padding-bottom: 35px;
    }

    .footer-row-2-box {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }

    .footer-row-2-box-item-title {
        font-family: 'Sofia Pro Regular', sans-serif;
        text-align: center;
        margin-bottom: 10px;
        font-weight: 600;
        letter-spacing: 0.68px;
    }

    .footer-row-2-box-item-text {
        font-family: 'Sofia Pro Regular', sans-serif;
        text-align: center;
        padding: 0 44px;
        margin-bottom: 25px;
    }

    .footer-row-3 {
        padding-bottom: 80px;
    }

    .footer-row-3-social {
        display: flex;
        justify-content: center;
        margin: 0 0 25px 0;
    }

    .footer-row-3-social div {
        padding: .5em;
        margin: 0 5px;
    }

    .footer-row-3-spec {
        font-family: 'Sofia Pro Light', sans-serif;
        padding: 8px 2em;
        font-size: 12px;
        line-height: 20px;
        text-align: center;
        color: #FCFCFC;
        background: rgba(43, 45, 44, 1);
        margin-bottom: 25px;
    }

    .footer-row-3-sub,
    .footer-row-3-sub-policy a,
    .footer-row-3-sub-accessibility a {
        font-family: 'Sofia Pro Light', sans-serif;
        font-size: 12px;
        line-height: 20px;
        text-align: center;
        color: #FCFCFC;
    }

    .footer-row-3-sub-right {
        display: flex;
        justify-content: space-around;
        margin: 25px 0;
    }

    .footer-row-3-bottom {
        font-family: 'Sofia Pro Light', sans-serif;
        font-size: 12px;
        line-height: 20px;
        text-align: center;
        color: #FCFCFC;
    }
}

@media (min-width:540px) {
    .footer-row-6-col-send-btn button {
        max-width: 500px;
    }
}
@media (min-width:1440px) {
    .footer-row-1,
    .footer-row-2,
    .footer-row-3 {
        max-width: 1490px;
        width: 100%;
        margin: 0 auto;
    }

    .footer-col-min-1440px {
        width: 333px;
    }

    .footer-row-6-col-send-btn button {
        padding: 2% 4%;
    }

}
/* Bootstrap Grid v4.0.0 */
@-ms-viewport {
    width: device-width;
}

html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

*,
::after,
::before {
    box-sizing: inherit
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px
    }
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.no-gutters {
    margin-right: 0;
    margin-left: 0
}

.no-gutters>.col,
.no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none
}

.col-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%
}

.col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%
}

.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%
}

.col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%
}

.col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%
}

.col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%
}

.col-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%
}

.col-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%
}

.order-first {
    order: -1
}

.order-last {
    order: 13
}

.order-0 {
    order: 0
}

.order-1 {
    order: 1
}

.order-2 {
    order: 2
}

.order-3 {
    order: 3
}

.order-4 {
    order: 4
}

.order-5 {
    order: 5
}

.order-6 {
    order: 6
}

.order-7 {
    order: 7
}

.order-8 {
    order: 8
}

.order-9 {
    order: 9
}

.order-10 {
    order: 10
}

.order-11 {
    order: 11
}

.order-12 {
    order: 12
}

.offset-1 {
    margin-left: 8.333333%
}

.offset-2 {
    margin-left: 16.666667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.333333%
}

.offset-5 {
    margin-left: 41.666667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.333333%
}

.offset-8 {
    margin-left: 66.666667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.333333%
}

.offset-11 {
    margin-left: 91.666667%
}

@media (min-width:576px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }

    .col-sm-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-sm-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-sm-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-sm-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-sm-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-sm-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-sm-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-sm-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

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

    .order-sm-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }

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

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

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

    .order-sm-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .order-sm-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .order-sm-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .order-sm-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .order-sm-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .order-sm-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .order-sm-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .order-sm-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .order-sm-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .order-sm-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.333333%
    }

    .offset-sm-2 {
        margin-left: 16.666667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.333333%
    }

    .offset-sm-5 {
        margin-left: 41.666667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.333333%
    }

    .offset-sm-8 {
        margin-left: 66.666667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.333333%
    }

    .offset-sm-11 {
        margin-left: 91.666667%
    }
}

@media (min-width:768px) {
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .col-md-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }

    .col-md-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-md-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-md-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-md-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-md-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-md-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-md-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-md-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-md-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-md-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .col-md-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

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

    .order-md-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }

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

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

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

    .order-md-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .order-md-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .order-md-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .order-md-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .order-md-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .order-md-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .order-md-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .order-md-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .order-md-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .order-md-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.333333%
    }

    .offset-md-2 {
        margin-left: 16.666667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.333333%
    }

    .offset-md-5 {
        margin-left: 41.666667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.333333%
    }

    .offset-md-8 {
        margin-left: 66.666667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.333333%
    }

    .offset-md-11 {
        margin-left: 91.666667%
    }
}

@media (min-width:992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .col-lg-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }

    .col-lg-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-lg-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-lg-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-lg-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-lg-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-lg-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-lg-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .col-lg-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

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

    .order-lg-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }

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

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

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

    .order-lg-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .order-lg-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .order-lg-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .order-lg-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .order-lg-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .order-lg-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .order-lg-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .order-lg-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .order-lg-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .order-lg-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.333333%
    }

    .offset-lg-2 {
        margin-left: 16.666667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.333333%
    }

    .offset-lg-5 {
        margin-left: 41.666667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.333333%
    }

    .offset-lg-8 {
        margin-left: 66.666667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.333333%
    }

    .offset-lg-11 {
        margin-left: 91.666667%
    }
}

@media (min-width:1200px) {
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .col-xl-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }

    .col-xl-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-xl-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-xl-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-xl-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-xl-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-xl-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-xl-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-xl-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-xl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-xl-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-xl-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .col-xl-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

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

    .order-xl-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }

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

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

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

    .order-xl-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .order-xl-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .order-xl-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .order-xl-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .order-xl-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .order-xl-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .order-xl-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .order-xl-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .order-xl-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .order-xl-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.333333%
    }

    .offset-xl-2 {
        margin-left: 16.666667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.333333%
    }

    .offset-xl-5 {
        margin-left: 41.666667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.333333%
    }

    .offset-xl-8 {
        margin-left: 66.666667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.333333%
    }

    .offset-xl-11 {
        margin-left: 91.666667%
    }
}

.d-none {
    display: none !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
}

.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
}

@media (min-width:576px) {
    .d-sm-none {
        display: none !important
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-sm-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:768px) {
    .d-md-none {
        display: none !important
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-md-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:992px) {
    .d-lg-none {
        display: none !important
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-lg-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width:1200px) {
    .d-xl-none {
        display: none !important
    }

    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-xl-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media print {
    .d-print-none {
        display: none !important
    }

    .d-print-inline {
        display: inline !important
    }

    .d-print-inline-block {
        display: inline-block !important
    }

    .d-print-block {
        display: block !important
    }

    .d-print-table {
        display: table !important
    }

    .d-print-table-row {
        display: table-row !important
    }

    .d-print-table-cell {
        display: table-cell !important
    }

    .d-print-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-print-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important
}

.flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important
}

.justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important
}

.align-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important
}

.align-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important
}

.align-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important
}

.align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important
}

@media (min-width:576px) {
    .flex-sm-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-sm-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .justify-content-sm-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-sm-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-sm-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-sm-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-sm-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-sm-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width:768px) {
    .flex-md-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-md-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .justify-content-md-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-md-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-md-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-md-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-md-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-md-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-md-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width:992px) {
    .flex-lg-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-lg-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .justify-content-lg-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-lg-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-lg-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-lg-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-lg-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-lg-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width:1200px) {
    .flex-xl-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-xl-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .justify-content-xl-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-xl-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-xl-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-xl-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-xl-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-xl-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}