:root{

    --main-font: 'STIX Two Text', serif;

    --black: #0F0F0F;

    --white: #ffffff;

    --main-color: #1602FF;

    --gray: #D4D4D4;

    --dark-gray: #909090;

    --bg-color: #F7F7F7;

    --border-color: #C9C9C9;

    --box-shadow: 2px 2px 25px rgba(0, 0, 0, 0.25);

    --section-padding: 60px;

    --size-1: 10px;

    --size-2: 30px;

    --size-3: 60px;

    --square-border-radius: 20px;

    --img-border-radius: 20px

}

@font-face {

    font-family: 'STIX Two Text';

    src: url('../fonts/STIX Two Text/STIXTwoText-Regular.woff2') format('woff2');

    font-weight: 400;

    font-style: normal

}

@font-face {

    font-family: 'STIX Two Text';

    src: url('../fonts/STIX Two Text/STIXTwoText-SemiBold.woff2') format('woff2');

    font-weight: 600;

    font-style: normal

}

@font-face {

    font-family: 'STIX Two Text';

    src: url('../fonts/STIX Two Text/STIXTwoText-Bold.woff2') format('woff2');

    font-weight: 700;

    font-style: normal

}





/* common styles */

#wpadminbar{

    display: none

}

html{

    margin-top: 0!important

}

*{

    margin: 0;

    padding: 0;

    box-sizing: border-box

}

html{

    font-size: 10px

}

body{

    font-size: 1.8rem;

    line-height: 1.4;

    font-family: var(--main-font);

    font-weight: 400;

    color: var(--black);

    overflow-x: hidden

}

address{

    font-style: normal

}

.container{

    width: 100%;

    max-width: 1140px;

    padding: 0 20px;

    margin: 0 auto

}

a{

    text-decoration: none;

    color: var(--main-color)

}



header a{

    color: var(--black)

}



h1{

    font-size: 5rem;

    font-weight: 700

}



h2{

    font-size: 4.2rem;

    font-weight: 700

}



h3, .accordion-header span:first-child, .footer-top .title{

    font-size: 2.6rem;

    font-weight: 600;

    text-transform: uppercase

}

h3 a{

    color: var(--black)

}

h3 a:hover{

    color: var(--main-color)

}

h4, .title-2{

    font-size: 2.2rem!important;

    font-weight: 600

}

.title-2{

    margin-top: var(--size-2)

}

ul li{

    list-style: none

}

ul li:not(nav ul li){

    padding-left: 20px;

    position: relative

}

ul li:not(nav ul li):before{

    content: '✦';

    position: absolute;

    left: 0;

    top: 0;

    color: var(--main-color)

}

ul li:not(nav ul li):not(:first-child), ol li:not(:first-child){

    margin-top: 8px

}



ol{

    counter-reset: item

}

ol li{

    list-style: none;

    padding-left: 27px;

    position: relative;

    counter-increment: item

}

ol li:before{

    content: counter(item)'.';

    color: var(--main-color);

    position: absolute;

    left: 0;

    font-weight: 600

}

p:not(:first-child){

    margin-top: var(--size-1)

}

iframe{

    width: 100%

}

section{

    width: 100dvw;

    overflow-x: hidden

}



/* end of common styles */







/* common class styles */

::-webkit-scrollbar {

    width: 0

}

/* buttons */

.btn{

    /*padding: 20px 68px 20px 35px;*/

    padding: 15px 35px 15px 15px;

    font-weight: 400;

    font-size: 1.6rem;

    text-transform: uppercase;

    /*line-height: 1;*/

    line-height: 1.6;

    padding-bottom: 10px;

    color: var(--main-color);

    border: 1px solid var(--main-color);

    border-radius: 10px;

    background-color: transparent;

    text-align: center;

    display: inline-block;

    width: fit-content;

    transition: 0.3s;

    position: relative;

    transition: background-color .3s cubic-bezier(0.545,0.005,0.12,1)

}

.btn:after{

    content: '';

    width: 15px;

    height: 11px;

    background: url(../img/icons/arrow-right-blue.svg) center no-repeat;

    background-size: 100%;

    /* transform: translateY(3.5px); */

    display: inline-block;

    position: absolute;

    top: 6px;

    right: 16px



}

/*.btn:hover{*/

/*    background-color: var(--main-color);*/

/*    color: var(--white);*/

/*    transition: background-color .3s cubic-bezier(0.545,0.005,0.12,1);*/

/*    -webkit-tap-highlight-color: transparent; !* прибирає спалах при натисканні *!*/

/*    touch-action: manipulation*/

/*}*/

.btn {

    background-color: transparent;

    color: var(--main-color);

    border: 1px solid var(--main-color);

    border-radius: 10px;

    cursor: pointer;

    text-transform: uppercase;

    text-align: center;

    display: inline-flex;

    width: fit-content;

    position: relative;

    padding: 15px 35px 10px 15px;

    font-size: 1.6rem;

    line-height: 1.6;

    outline: none;

    /*-webkit-tap-highlight-color: rgba(0,0,0,0.01);*/

    /*will-change: background-color, color;*/

    transition: color 0.3s cubic-bezier(0.545, 0.005, 0.12, 1)

}





.btn:hover,

.btn:focus-visible,

.btn:active {

    /*background-color: var(--main-color);*/

    color: var(--white);

}





.btn:before{

    bottom: -0.7px;

    content: "";

    left: -0.7px;

    position: absolute;

    right: -0.7px;

    top: -0.7px;

    transform: scale(0);

    z-index: -1;

    border-radius: 10px;

    transition: transform .3s cubic-bezier(0.545,0.005,0.12,1), background-color .3s cubic-bezier(0.545,0.005,0.12,1)

}

.btn:hover:before{

    background-color: var(--main-color);

    transform: scale(1);

}

.btn:hover:after{

    content: '';

    width: 15px;

    height: 11px;

    background: url(../img/icons/arrow-right-white.svg) center no-repeat;

    background-size: 100%

}

/* === Safari (iOS + macOS): вимикаємо hover === */

@supports (-webkit-touch-callout: none) {

    .btn:hover,

    .btn:hover:before,

    .btn:hover:after {

        background: none !important;

        color: var(--main-color) !important;

        transform: none !important;

    }



    /* замість hover працює active */

    .btn:active {

        background-color: var(--main-color);

        color: var(--white);

        transition: background-color .3s cubic-bezier(0.545,0.005,0.12,1);

    }

    .btn:active:before {

        background-color: var(--main-color);

        transform: scale(1);

    }

    .btn:active:after {

        background: url(../img/icons/arrow-right-white.svg) center no-repeat;

        background-size: 100%;

    }

}



/* end of buttons */

.grid-2{

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: var(--size-3)

}

.grid-2 >div{

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start

}

.grid-2-1{

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 120px

}

.grid-1-2{

    display: grid;

    grid-template-columns: 1fr 2fr;

    gap: 120px

}

.grid-3{

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: var(--size-2)

}





.none{

    display: none!important

}





.img-container{

    display: flex;

    justify-content: center;

    align-items: center

}

.img-container img, .video-wrapper video{

    object-fit: cover;

    width: 100%;

    height: 100%

}

.video-wrapper{

    position: relative

}

.video-wrapper:hover .play-pause{

    opacity: 1!important;

    transition: 0.3s!important

}

.play-pause {

    width: 80px;

    height: 80px;

    background-color: #ffffff65;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-40px, -40px);

    cursor: pointer;

    padding-left: 6px;

    z-index: 10;

}

.play-pause:after{

    content: url('../img/icons/play.svg');

    position: absolute;

    top: calc(50% - 15px);

    left: calc(50% - 11px)

}

.play-pause.pause:after{

    content: url('../img/icons/pause.svg');

    position: absolute;

    top: calc(50% - 15px);

    left: calc(50% - 11px)

}

.square-img{

    border-radius: var(--square-border-radius);

    overflow: hidden

}

.section-bg{

  background-color: var(--bg-color);

  padding: var(--section-padding) 0

}

/*.media.before{*/

/*  position: relative;*/

/*  padding-right: 20px;*/

/*  padding-bottom: 12px;*/

/*  height: fit-content;*/

/*  margin: auto 0 auto*/

/*}*/

/*.media.before:before{*/

/*  content: '';*/

/*  position: absolute;*/

/*  top: 12px;*/

/*  right: 0;*/

/*  width: calc(100% - 20px);*/

/*  height: calc(100% - 12px);*/

/*  border: 1px solid var(--black);*/

/*  border-radius: var(--square-border-radius)*/

/*}*/



/* end of common class styles */





/* social */



.social{

    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap

}

.footer-top .social{

    margin-top: 15px

}

/*.social a{*/

/*    position: relative;*/

/*    color: var(--black);*/

/*    padding-left: 50px*/

/*}*/

/*.social a:before{*/

/*    width: 40px;*/

/*    height: 40px;*/

/*    position: absolute;*/

/*    left: 0;*/

/*    top: -9px*/

/*}*/

.location:before{

    content: '';

    width: 40px;

    height: 30px;

    background: url("../img/icons/ua.svg");

    background-position: center center;

    background-repeat: no-repeat;

    background-size: 100%;

    border-radius: 4px

}

.work-schedule{

    position: relative;

    padding-left: 50px;

    display: flex;

    flex-direction: column;

    margin-top: 15px;

    gap: 6px

}

.work-schedule span{

    line-height: 1

}

.work-schedule span:first-child{

    font-weight: 600

}

.work-schedule:before{

    content: '';

    width: 40px;

    height: 40px;

    background: url("../img/icons/clock.png");

    background-position: 55% 37%;

    background-repeat: no-repeat;

    background-size: 100%;

    position: absolute;

    left: 0;

    top: 0

}

.wa:before{

    content: '';

    background: var(--main-color) url("../img/icons/wa-white.svg");

    background-position: center center;

    background-repeat: no-repeat;

    background-size: 37%;

    border-radius: 50%

}

.v:before{

    content: '';

    background: var(--main-color) url("../img/icons/v-white.svg");

    background-position: center center;

    background-repeat: no-repeat;

    background-size: 37%;

    border-radius: 50%

}

.tg:before{

    content: '';

    background: var(--main-color) url("../img/icons/tg-white.svg");

    background-position: center center;

    background-repeat: no-repeat;

    background-size: 37%;

    border-radius: 50%

}

.location a:hover, .work-schedule a:hover{

    color: var(--main-color);

    text-decoration: underline

}





/* end of social */



/* header */

header{

    position: fixed;

    top: 0;

    width: 100dvw;

    background-color: var(--white);

    z-index: 11;

    transition: 0.7s

}

.header{

    padding-top: 10px;

    padding-bottom: 10px;

    border-bottom: 1px solid var(--border-color);

    transition: 0.7s

    

}

header.hidden {

  top: -100px;

  transition: 0.7s

}

.header .container{

    display: flex;

    justify-content: space-between;

    align-items: center;

    max-width: 100%

}

.header .logo{

    display: flex;

    align-items: center;

    gap: 15px

}

.header .logo .img-container{

    width: 55px;

    height: 55px;

    border-radius: 50%;

      overflow: hidden

}

.header .logo{

    color: var(--black);

    font-size: 2rem;

    font-weight: 700

}

.header .logo{

    color: var(--black)

}

.header .logo:hover{

    color: var(--main-color)

}



.main-menu a{

    text-transform: uppercase;

    color: var(--black)

}

.main-menu a{

    font-size: 1.4rem;

    padding: 10px 0;

    transition: 0.3s

}

.main-menu ul li{

    cursor: pointer;

    position: relative

}

.main-menu >nav >ul{

    display: flex;

    align-items: center;

    gap: 25px

}

.main-menu ul li:hover a{

    color: var(--main-color);

    text-decoration: underline;

    text-decoration-thickness: from-font;

    cursor: pointer

}



.main-menu li.current-menu-item >a{

    color: var(--main-color)

}



#header .container{

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 60px

}



/* end of header */



.owl-nav:not(.disabled){

    position: absolute;

    margin-top: 0!important;

    width: 100%;

    top: calc(50% - 24px);

    display: flex!important;

    align-items: center;

    justify-content: space-between;

    color: var(--white);

    height: 48px

}

.owl-nav button{

    margin: 0px 0 0!important;

    transition: 0.3s

}

.slider-nav{

    display: flex;

    gap: var(--size-1);

    justify-content: center

}

.slider-nav .next, .slider-nav .prev{

    width: 55px;

    height: 55px;

    background: url('../img/icons/arrow-right-blue.svg');

    background-position: center center, center center;

    background-repeat: no-repeat, no-repeat;

    border: 1px solid var(--main-color);

    border-radius: 20px;

    cursor: pointer;

    transition: 0.3s

}

.slider-nav .next:hover, .slider-nav .prev:hover{

    background: url('../img/icons/arrow-right-white.svg'), var(--main-color);

    background-position: center center, center center;

    background-repeat: no-repeat, no-repeat;

    border: 1px solid var(--main-color);

    transition: 0.3s

}

.slider-nav .prev{

    transform: rotate(180deg)

}

.overlay-after{

    position: relative

}

.overlay-after:after{

    content: '';

    position: absolute;

    width: 100%;

    height: 100%;

    background: #00000054;

    top: 0;

    left: 0

}

.owl-carousel .owl-dots{

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: var(--size-2)

}

.owl-carousel button.owl-dot{

    border: 1px solid var(--main-color);

    width: 10px;

    height: 10px;

    border-radius: 50%

}

.owl-carousel button.owl-dot.active{

    background: var(--main-color)

}





/* footer */



.footer-top{

    padding-top: var(--section-padding)

}

.footer-top__items{

    padding: var(--section-padding) 0;

    border-top: 1px solid var(--border-color)

}

.footer-top .description{

    text-align: center

}



.footer-top .title:not(.description .title){

    display: block;

    margin-bottom: var(--size-2)

}

.footer-top .description .title{

    font-size: 4.5rem;

    text-transform: none;

    text-decoration: underline;

    display: inline-block;

    margin-top: -10px

}

.footer-top .description .title + p{

    text-transform: uppercase;

    font-size: 1.6rem

}



.footer-top .map iframe{

    height: 220px;

    border-radius: var(--img-border-radius);

    overflow: hidden

}

footer address >a:not(:first-child){

    margin-top: 4px

}

footer address{

    margin-top: 15px

}

address >a{

    padding-left: 50px;

    position: relative;

    color: var(--black);

    display: block

}

address >a:hover{

    color: var(--main-color)

}

address >a:before{

    position: absolute;

    line-height: 0;

    left: 0;

    top: -2px

}



.footer-bottom{

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 20px 0

}

.footer-bottom{

    border-top: 1px solid var(--border-color)

}

.footer-bottom p{

    text-align: center

}



/* end of footer */