*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: 0.35s;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

ul,
ol,
li {
    list-style: none;
    margin-bottom: 0 !important;
    padding-left: 0 !important;
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none !important;
    color: #fff !important;
}

p {
    color: #fff;
    margin-bottom: 0 !important;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff !important;
}

html {
    scroll-behavior: smooth;
}

body {
    height: 100%;
    line-height: 1;
    font-size: 16px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.85) !important;
    color: #fff;
}

button,
a {
    align-items: center;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    position: relative;
    text-decoration: none;
    z-index: 1;

    &:before,
    &:after {
        border-radius: 10px;
        content: "";
        display: block;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        transition: clip-path 275ms ease-in-out;
    }

    &.dramatic:before,
    &.dramatic:after {
        transition: none;
    }

    &:before {
        background: rgb(51, 56, 59);
        background: linear-gradient(60deg,
                rgba(46, 51, 66, 1) 0%,
                rgba(96, 103, 136, 1) 100%);
        /* box-shadow: -1px 1px 1px 0px rgba(128, 141, 203, 1) inset, */
        /* 0px 0px 0px 4px rgba(14, 16, 20, 0.7); */
    }

    &:after {
        background: rgb(165, 58, 180);
        background: linear-gradient(90deg,
                rgba(165, 58, 180, 1) 0%,
                rgba(244, 87, 87, 1) 100%);
        /* box-shadow: -1px 1px 1px 0px rgba(247, 147, 147, 1) inset, */
        /* 0px 0px 0px 4px rgba(14, 16, 20, 0.7); */
    }

    &.left-to-right:after {
        clip-path: inset(0 100% 0 0);
    }

    &.left-to-right:hover:after {
        clip-path: inset(0 0 0 0);
    }

    &.bottom-to-top:after {
        clip-path: inset(100% 0 0 0);
    }

    &.bottom-to-top:hover:after {
        clip-path: inset(0 0 0 0);
    }
}


.nav_list-a {
    padding: 5px 15px;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 35px;
    z-index: 99;
    padding: 13px 18px;
    font-size: 18px;
}

.btn-to-top {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: capitalize;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    outline: none;
}

.btn-to-top i {
    display: flex;
}

.toolbar-flex_menu {
    display: flex;
    background: rgb(86 85 85 / 27%);
    color: #fff;
    align-items: center;
    backdrop-filter: blur(5px);
}

.top-grid {
    position: absolute;
    top: 0;
    z-index: 10;
    width: 100%;
    background: transparent;
    transition: all 0.3 ease-out;
}

.top-grid.sticky {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 20px 0.1px rgba(255, 255, 255, 0.5);
    transition: all 0.3 ease-out;

}

.top-grid_fixed {
    position: fixed;
    left: 0;
    top: 0;
}

.tabs__content {
    display: none;
    /* по умолчанию прячем все блоки */
}

.tabs__content.active {
    display: block;
    /* по умолчанию показываем нужный блок */
}


.center-toolbar_menu {
    width: 16% !important;
}


.section {
    width: 90%;
    margin: 0 auto;
}

.main_banner-img {
    background-size: cover;
    background-image: url('../media/img/main_banner.jpg');
    width: 100%;
    height: 100vh;
    position: relative;
}

.top-header {
    text-align: center;
    margin: 3em 0;
}

/**************** TOP MODAL ****************/

.main_banner-content {
    display: flex;
    align-items: center;
    padding: 10em 2em 0 2em;
    justify-content: space-around;
    position: absolute;
    width: 100%;
}

.main_banner-header_text {
    width: 55em;
    padding-right: 1em;
}

.main_banner-header_text p{
    margin-top: 2em;
}

.main_banner-title {
    margin-bottom: 1em;
}


.top_modal-box {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
    background: rgba(96, 103, 136, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 5px;
    min-height: 250px;
}

.top_modal-box_items {
    padding: 5px 0;
    text-align: center;
}

.top_modal-box_items i {
    margin-right: 5px;
}

.top_modal-box_items a {
    padding: 0 5px;
}

/**************** MENU BURGER ****************/

.hamburger-menu {
    display: none;
}


#myHeader.sticky .brand {
    max-width: 250px;
    width: 13%;
}

#myHeader.sticky .brand a img {
    width: 100%;
}

#myHeader.sticky .brand a img.logo-black {
    display: block !important;
}

#myHeader.sticky .brand a img.logo-white {
    display: none !important;
}

#myHeader.sticky .nav-link {
    font-size: 1.5rem;
}

.nav-item {
    background: #ECEFF1;
}


.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/**************** CONTENT SECTOR ****************/

.toolbar_ul {
    display: flex;
    justify-content: space-evenly;
}

.section_second {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.image-box {
    height: auto;
    overflow: hidden;
    margin-top: 3em;
}

.img {
    width: 100%;
    height: 100%;
}

.content-box_left {
    padding-left: 3em;
    margin-top: 3em;
}

.content-box_right {
    padding-right: 3em;
    margin-top: 3em;
}

.content-box_ul {
    display: flex;
    justify-content: space-between;
}

.content-box_li {
    line-height: 3em;
}

.title {
    font-size: 32px;
    max-width: max-content;
    margin-block-end: 0.25em;
}

.text {
    opacity: 0.8;
    line-height: 1.5;
}

.content_icons {
    width: 2em;
    margin-right: 5px;
}

[data-reveal="left"] {
    clip-path: inset(0 100% 0 0);
}

[data-reveal="left"].revealed {
    animation: reveal-left 1.2s cubic-bezier(0.17, 0.97, 0.38, 1) forwards 300ms;
}


[data-reveal="right"] {
    clip-path: inset(0 0 0 100%);
}

[data-reveal="right"].revealed {
    animation: reveal-right 1.2s cubic-bezier(0.17, 0.97, 0.38, 1) forwards 300ms;
}


.image-box .img {
    transition: 1.2s cubic-bezier(0.17, 0.97, 0.38, 1);
}

/**************** BOTTOM SECTION ****************/

.bottom_section {
    margin: 4em 0;
}

.call-to-action_box {
    padding: 0 4em;
}

.call-to-action_content {
    display: flex;
}

.action_content-left {
    max-width: 50%;
}

.mg{
    margin-top: 3em;
}


/**************** HOVER CLIP PATH TOP UL ****************/

@import url("https://fonts.googleapis.com/css2?family=PT+Mono&family=Poppins:wght@400;600&display=swap");


.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.box {
    background-color: rgb(46, 51, 66);
    border-radius: 6px;
    margin: 10px;
    padding: 10px 30px;
}


/**************** FOOTER ****************/

.footer_box {
    border-top: 5px dotted darkslategray;
}

.footer_content {
    padding: 1em 0;
}

.footer-p {
    text-align: center;
}

/**************** BREAKPORINTS ****************/

@media only screen and (max-width: 768px) {

    .center-toolbar_menu{
        width: 22% !important;
    }
    .section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .title {
        font-size: 3em;
        padding-bottom: 1em;
        max-width: none;
    }

    .content-box {
        padding: 2em;
    }

    .action_content-left {
        max-width: none;
        margin-bottom: 2em;
    }

    .bottom_section {
        margin: 0em 0;
    }

    .call-to-action_box {
        padding: 0 2em 2em 2em;
    }

    .action_content-left h3{
        text-align: center;
    }
}

@media only screen and (max-width: 425px) {
    .title {
        font-size: 2em;
    }

    .text {
        font-size: 0.8em;
    }

    .top_modal-box{
        min-height: 0;
    }

    .content-box_ul{
        flex-direction: column;
    }
}

@media only screen and (max-width: 360px) {

    .top-header{
        margin: 2em 0;
    }

    .content-box_left {
        margin-top: 2em;
    }

    .content-box_right {
        margin-top: 2em;
    }

    .text{
        margin-top: none;
    }
}

@media screen and (max-width: 979.99px) {
    #myHeader .header-content .nav-list {
        gap: 1em;
    }

    #myHeader .header-content .nav-list .nav-item .nav-link {
        font-size: 1rem;
    }

    #menu__toggle {
        opacity: 0;
    }

    #menu__toggle:checked+.menu__btn>span {
        transform: rotate(45deg);
    }

    #menu__toggle:checked+.menu__btn>span::before {
        top: 0;
        transform: rotate(0deg);
    }

    #menu__toggle:checked+.menu__btn>span::after {
        top: 0;
        transform: rotate(90deg);
    }

    #menu__toggle:checked~.menu__box {
        left: 0 !important;
    }

    .menu__btn {
        position: absolute;
        top: 50%;
        right: 6%;
        width: 26px;
        height: 26px;
        cursor: pointer;
        z-index: 1;
    }

    .menu__btn>span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #616161;
        transition-duration: 0.25s;
    }

    .menu__btn>span::before {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #616161;
        transition-duration: 0.25s;
        content: "";
        top: -8px;
    }

    .menu__btn>span::after {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #616161;
        transition-duration: 0.25s;
        content: "";
        top: 8px;
    }

    .menu__box {
        transition-timing-function: ease-in-out;
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100%;
        margin: 0;
        padding: 5rem 0 0 1rem;
        list-style: none;
        background-color: #ECEFF1;
        box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
        transition-duration: 0.25s;
    }

    .menu__item {
        display: block;
        padding: 12px 24px;
        color: #262D33;
        font-size: 20px;
        font-weight: 600;
        text-decoration: none;
        transition-duration: 0.25s;
    }
}

@media screen and (max-width: 767.99px) {

    #myBtn {
        font-size: calc(10px + (18 - 10) * ((100vw - 320px) / (1600 - 320)));
    }

    #myHeader .header-content .hamburger-menu {
        display: block;
    }

    #menu__toggle {
        opacity: 0;
    }

    #menu__toggle:checked+.menu__btn>span {
        transform: rotate(45deg);
    }

    #menu__toggle:checked+.menu__btn>span::before {
        top: 0;
        transform: rotate(0deg);
    }

    #menu__toggle:checked+.menu__btn>span::after {
        top: 0;
        transform: rotate(90deg);
    }

    #menu__toggle:checked~.menu__box {
        left: 0 !important;
    }

    .menu__btn {
        position: absolute;
        top: 50%;
        right: 6%;
        width: 26px;
        height: 26px;
        cursor: pointer;
        z-index: 1;
    }

    .menu__btn>span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #616161;
        transition-duration: 0.25s;
    }

    .menu__btn>span::before {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #616161;
        transition-duration: 0.25s;
        content: "";
        top: -8px;
    }

    .menu__btn>span::after {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #616161;
        transition-duration: 0.25s;
        content: "";
        top: 8px;
    }

    .menu__box {
        transition-timing-function: ease-in-out;
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100%;
        margin: 0;
        list-style: none;
        background-color: #ECEFF1;
        box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
        transition-duration: 0.25s;
    }

    .menu__box .menu__item {
        display: block;
        padding: 12px 24px;
        color: #333;
        font-size: 20px;
        font-weight: 600;
        text-decoration: none;
        transition-duration: 0.25s;
    }

    .toolbar-flex_menu {
        justify-content: center;
    }

    .center-toolbar_menu {
        padding: 0;
        margin: 5px;
    }

    .left-toolbar_menu {
        display: none;
    }

    .right-toolbar_menu {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .main_banner-content {
        padding: 7em 2em 0 2em;
    }

    .content-box_ul li {
        text-align: start;
    }

    .content-box_left {
        padding-left: 0;
    }

    .content-box_right {
        padding-right: 0;
    }

    .call-to-action_content {
        flex-direction: column;
    }
}

@media screen and (max-width: 424.99px) {

    .center-toolbar_menu{
        width: 40% !important;
    }

    .main_banner-content {
        flex-direction: column;
        padding: 4em 2em 0 2em;
    }

    .main_banner-header_text {
        width: 100%;
        text-align: center;
        margin-bottom: 1em;
    }

    .text {
        margin-top: 1em;
        line-height: 1.3;
    }

    #myBtn {
        bottom: 20px;
        right: 15px;
        padding: 10px 15px;
    }
}

@media screen and (max-width: 1024px) {

    li {
        font-size: calc(12px + (16 - 12) * ((100vw - 320px) / (1600 - 320)));
    }

    p {
        font-size: calc(12px + (16 - 12) * ((100vw - 320px) / (1600 - 320)));
    }

    .title {
        font-size: calc(20px + (32 - 20) * ((100vw - 320px) / (1600 - 320)));
    }
}

@media screen and (min-width: 1366px) {
    li {
        font-size: calc(12px + (16 - 12) * ((100vw - 320px) / (1600 - 320)));
    }

    p {
        font-size: calc(12px + (16 - 12) * ((100vw - 320px) / (1600 - 320)));
    }

    .title {
        font-size: calc(20px + (32 - 20) * ((100vw - 320px) / (1600 - 320)));
    }
}

/**************** KEYFRAMES ****************/


@keyframes topToBottom {
    0% {
        clip-path: inset(0 0 100% 0);
    }

    20% {
        clip-path: inset(0 0 0 0);
    }

    50% {
        clip-path: inset(0 0 50% 0);
    }

    60% {
        clip-path: inset(0 0 0 0);
    }

    75% {
        clip-path: inset(0 0 30% 0);
    }

    85% {
        clip-path: inset(0 0 0 0);
    }

    90% {
        clip-path: inset(0 0 20% 0);
    }

    94% {
        clip-path: inset(0 0 0 0);
    }

    96% {
        clip-path: inset(0 0 10% 0);
    }

    98% {
        clip-path: inset(0 0 0 0);
    }

    99% {
        clip-path: inset(0 0 3% 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes leftToRight {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    20% {
        clip-path: inset(0 0 0 0);
    }

    50% {
        clip-path: inset(0 50% 0 0);
    }

    60% {
        clip-path: inset(0 0 0 0);
    }

    75% {
        clip-path: inset(0 30% 0 0);
    }

    85% {
        clip-path: inset(0 0 0 0);
    }

    90% {
        clip-path: inset(0 20% 0 0);
    }

    94% {
        clip-path: inset(0 0 0 0);
    }

    96% {
        clip-path: inset(0 10% 0 0);
    }

    98% {
        clip-path: inset(0 0 0 0);
    }

    99% {
        clip-path: inset(0 3% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes reveal-right {
    0% {
        clip-path: inset(0 0 0 100%);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes reveal-left {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}


/**************** SCROLLER ****************/


::-webkit-scrollbar {
    width: 7px;
    height: 8px;
    background-color: #d1d5da
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
            rgba(165, 58, 180, 1) 0%,
            rgba(244, 87, 87, 1) 100%);
    border-radius: 9em;
    -webkit-border-radius: 9em;
    -moz-border-radius: 9em;
    -ms-border-radius: 9em;
    -o-border-radius: 9em;
}