@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Parkinsans:wght@300..800&display=swap');

/*

Чорний: #222
Білий: #fff

Другий віддтінок білого (фон): #e9e9e9 + #f3f3f3 (для блоку на цьому фоні)
Другий відтінок чорного (фон + текст): #b3b3b3

Обводка + лінії: #bbb6b6
*/

/* default */
:root {
    --main-theme-color: #0070ff;
    --white-color: #fff;
    --black-color: #222;
    --main-border: #bbb6b6;
}
body{
    font-family: 'Parkinsans', sans-serif!important;
}
*{
    transition:0.3s linear;
}
:hover{
    transition:0.3s linear;
}
ul, ol{
    padding: 0;
    list-style: none;
    margin: 0;
}
section{
    position: relative;
    margin: auto;
    width: 100%;
    display: flex;
    padding: 60px 0;
    z-index: 3;
    overflow: hidden;
}
a{
    text-decoration: none;
}
button{
    box-shadow: none;
    outline: none;
    border: 0;
}
.container{
        max-width: 1680px;
}

/* main button */
.mainButton{
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    padding: 12px 20px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    display: flex;
    width: max-content;
    position: relative;
    z-index: 2;
    background: var(--main-theme-color);
    transition: color .9s ease;
    overflow: hidden;
}
.mainButtonTwo{
    background: #fff;
    color: var(--main-theme-color);
}
.mainButton::after{
    content: '';

    position: absolute;

    width: 0;
    height: 0;

    background: #fff;
    border-radius: 50%;

    left: var(--x);
    top: var(--y);

    transform: translate(-50%, -50%);
    transition:
        width .9s ease,
        height .9s ease;

    z-index: -1;
}
.mainButtonTwo::after{
    background: #3a86e7;
}
.mainButton:hover{
    color: #222;
}
.mainButtonTwo:hover{
    color: #fff;
}

.mainButton:hover::after{
    width: 500px;
    height: 500px;
}

.mainButton:hover{
    
}
.paddingForHeader{
    padding-top: 80px;
}

/* others styles */
.sectionHeading{
    padding-bottom: 40px;
}
.sectionHeading h2{
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    width: 100%;
    max-width: 900px;
}

/* header */

header{
    position: fixed;
    width: 100%;
    padding: 10px 0;
    height: 80px;
    top: 0;
    left: 0;
    z-index: 999;
    background: #fff;
        display: flex;
    align-items: center;
}
.headerWrap{
    display: flex;
    justify-content: space-between;
    grid-gap: 20px;
    align-items: center;
}
.headerLogo img{
    width: 100%;
    height: 60px;
}
.headerLogo span{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 30px;
    line-height: 30px;
    color: #222;
    display: flex;
    align-items: flex-start;
}
.headerLogo span span{
    color: var(--main-theme-color);
    padding-left: 5px;
    font-size: 16px;
    line-height: 16px;
}

.headerNav{
    
}
.headerNav nav{
    
}
.headerNav ul{
        padding: 0;
    list-style: none;
    margin: 0;
    grid-gap: 20px;
    display: flex;
}
.headerNav ul li{
    
}
.headerNav ul li a{
        font-size: 16px;
    color: #222;
    font-weight: 600;
    text-transform: uppercase;
}
.headerNav ul li a:hover{
    
} 

.headerLang{
        display: flex;
    grid-gap: 5px;
}
.headerLang li:not(:first-child):before{
    content: "•";
    margin-right: 5px;
}

.headerLang a{
        color: #222;
    font-size: 18px;
    text-transform: uppercase;
}
.headerLang a:hover{
    
}
/* footer */


/* home banner */
.homeBanner{
    background: url(/assets/img/homeBanner.jpg) no-repeat;
    background-size: cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.homeBanner:after{
    content: "";
    position: absolute;
    z-index: 1;
    background: #000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.6;
}
.homeBContent{
    position: relative;
    z-index: 10;
}
.homeBContent h1{
    color: #fff;
    font-size: 56px;
    width: 100%;
    max-width: 900px;
    line-height: 56px;
    margin-bottom: 30px;
}
.homeBContent p{
    color: #c7c7c7;
    font-size: 24px;
    width: 100%;
    max-width: 700px;
    margin-bottom: 60px;
}
.homeBCBtns{
        display: flex;
    grid-gap: 10px 20px;
    flex-wrap: wrap;
}

/* home direction */

.homeDirection{
    
}
.homeDir{
    
}
.homeDTop{
    
}
.homeDTop h4{
    
}
.homeDTop a{
    
}