*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
   
}
:root {
    --color-1: #cf9a61;
    --color-2: #14131b;
    --color-4: #ffffff;
    --color-5: #F5F7F9;
    --color-6: #747474;

    --gradient: linear-gradient(45deg, rgb(201, 154, 73) 0%, rgb(31, 30, 30)  100%);
    --width: 80vw;
    --padding: 70px;
    --border-radius: 5px;

}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;500;600;700900&display=swap');

h1{
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    margin: 1em 0;
    color: var(--color-1);
}
h2, h3, h4, h5, h6{
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: var(--color-2);
}

p, a, li, b{
    font-family: 'Roboto', sans-serif;

    font-weight: 300;
    font-size: 1.2em;
    color: var(--color-2);
    list-style-image: url('img/tooth.png');
}
a{
    text-decoration: none;
}
span{
    color: var(--color-1);
}
.button1{
    color: var(--color-4);
    background: var(--color-1);
    padding: 1em 2em;
    border-radius: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: .5s;
}
.title h1{
    font-size: 50px;
}
.button1 p{
    color: var(--color-4);
}
.button1:hover{
    color: var(--color-1);
    background: var(--color-2);
}

.button2 {
    color: var(--color-2);
    background: var(--color-1);
    padding: 1em 2em;
    border-radius: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: .5s;
}
.button2:hover{
    color: var(--color-1);
    background: var(--color-2);
}
nav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    gap:2em;
    width: 100vw;
    background-color: rgb(255 255 255 / 9);
    backdrop-filter: blur(4px);
    z-index: 100;
}
nav .logo img{

    width: 50px;
    height: 50px;
    margin: .2em 2em;
    z-index: 102;
}
nav .menubtn img{
    margin: 0 2em;
    z-index: 102;
}
.menu{
    display: none;
    position: fixed;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: auto;
    margin: auto;
    background: var(--color-4);
    z-index: 99;
    padding-top:4em;
}
.menu .menubtnclose{
    margin: 1em;
}
.menu a {
    text-decoration: none;
}
.menu a h2{
    margin: .5em 1em;
}

header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    min-height: 100vh;
    margin: auto;
    gap:2em;
    width:100%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    z-index: 1;
}
header .left{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2em;
    margin: 3em;
    position: relative;
    z-index: 2;
    align-items: flex-start;
}
header .left img{
    display: none;
}
header .right{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 3em;
    position: relative;
    z-index: 2;
}
header .right img{
    width: 50vw;
}
header h1{

    font-size: 50px;
    font-weight: 400;
}
header h3{
    font-weight: 400;
}
.gradient{
    width: 40vw;
    height: 60vh;
    background: var(--gradient);
    border-top-left-radius:var(--border-radius);
    border-bottom-left-radius:var(--border-radius);
    position: absolute;
    z-index: 1;
    right: 0;
    top:25vh
}
.perevagy{
    margin: 0;
    padding: 100px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 4em;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
   
}
.perevegy .left img{
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    width: 800px;
    height: 800px;
    object-fit: cover;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.perevegy .right{

    margin-right: 5em;
}
.perevagy2{
    padding: 100px 4em;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 2em;
    flex-wrap: wrap;
    background-size: cover;
    background-repeat: no-repeat;
}
.perevagy2 .block{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--color-4);
    border-radius: var(--border-radius);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.perevagy2 .block .top{
    padding: 1em;
    border-top-right-radius: var(--border-radius);
    border-top-left-radius: var(--border-radius);
    text-align: center;
    min-height: 3.5em;
    background-color: var(--color-1);
}
.perevagy2 .block .top h2{
    color: var(--color-4);
}
.perevagy2 .block .bottom{
    padding: 1em;
}
.perevagy3{
    padding: 0px 4em;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 2em;
    
}
.perevagy3 .block{
    flex: 1;
    display: flex;
    padding: 2em;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--border-radius);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: var(--color-4);
   
}
.present{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    min-height: 100vh;
    margin: auto;
    gap:2em;

    padding: 3em;
    background:url('img/dots.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    
}
.present .background{
    position: absolute;
    width: 40vw;
    height: 60vh;
    background: var(--gradient);
    z-index: 1;
    left: 0;
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}
.present .left{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;   
    z-index: 2;
}
.present .left video{
    margin: auto;
    width:400px;
    height: 800px;
    border-radius: var(--border-radius);
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}
.present .right{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap:2em;
    width: auto;
    position: relative;
    z-index: 2;
}
.price{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.price h1, .price h2, .price p{
    color: var(--color-4);
}
.price h1{
    font-weight: 400;
    font-size: 40px;
}
.price h2{
    font-size: 30px;
}
.price span{
    font-size: 30px;
    font-weight: 900;
    color: var(--color-4);
}

.price .wrap{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 2em;
    margin: 0 5em;
    min-height: 600px;
    background: var(--gradient);
    border-radius: var(--border-radius);
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;

}

.verticalline{
    border-left: solid 1px white;
    height: 400px;
}


.perevagy{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 2em;
}
.perevagy .left img{
    display: flex;
    flex-direction: column;
    gap: 2em;
    width: 50vw;

    padding: 2em 0;
    border-radius: var(--border-radius);

}

.doit{
    display: flex;
    flex-direction: row;
    margin: 150px 0 ;
    gap: 2em;
    padding: 2em;
    background: var(--gradient);
    align-items: center;
    
}
.doit h1{
    color: var(--color-4);
  
}
.doit div{
    margin: 30px ;
}

.techdesc{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding:  4em;
    gap: 2em;
    background-color: var(--color-2);
}
.techdesc .block{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--border-radius);

    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: var(--color-4); */
}
.techdesc .block p {
    color: var(--color-4);
}
.techdesc .boxs{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2em;
    margin: 4em 0;
}
.techdesc .box{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.techdesc .box h1, .techdesc .block h1{
    color: var(--color-1);
    margin-bottom: 2em;
}
.techdesc .box li, .techdesc .box p{
    color: var(--color-4);
}
.techdesc .box img{
    width: 35vw;
    border-radius: var(--border-radius);
}
.techdesc .pluses{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 5em;
}
.techdesc .pluses .plus{
    background-color: var(--color-4);
    width: 350px;
    padding: 2em;
    border-radius: var(--border-radius);
}

.vidguky {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2em;
}
.vidguk{

    display: flex;
    flex-direction: column;
    gap: 2em;
    width: 270px;
    padding: 2em 3em;
    border-radius: var(--border-radius);
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
.vidguk .ava img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.vidguk p{
    color: #747474;
}
.stars{
    display: flex;
    flex-direction: row;
}
.stars img{
    width: 20px;
    height: 20px;
}
.zayavka{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 5em 1em 1em 1em;
    gap: 2em;
    align-items: stretch;
	align-content: stretch;
}
.zayavka .left{
    flex:1;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 3em;
    gap: 1em;
    padding: 1em;

}

.zayavka .right{
    flex:1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1em;
    width: 100%;
    height: 100%;
    margin: 3em;
    align-self: center;
}
input{
    border: 0;
    padding: 1em 2em;
    border-bottom: solid 1px var(--color-2);
}
.miniblocks{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1em;
    padding: 2em 4em;
    background-color: var(--color-2);
}
.miniblocks p, .miniblocks a,.miniblocks b{
    color: var(--color-4);
}

@media only screen and (max-width: 700px){
    p, a,li{
        font-size: .9em;
    }
    .title h1{
        margin: 1em 1em .5em 1em;
        font-size: 30px;
    }
    nav .logo img{
        width: 30px;
        height: 30px;
    }
    header, .present, .doit, .zayavka{
        flex-direction: column;
    }
    header{
        height: auto;
        
    }
    header .left{
        flex-wrap: wrap;
        margin: 1em;
    }
    header .left img{
        display: flex;
        width: 90%;
        height: auto;
    }
    header .right, header .right img{
        display: none;
    }
    .gradient{
        display: none;
    }
    .perevagy{
        flex-direction: column;
        padding: 1em;
        gap:0
    }
    .perevagy .left img {
        width: 100%;
    }
    .perevegy .right{
        margin: auto;

    }
    .perevagy2{
        flex-direction: row;
        flex-wrap: wrap;
        padding: .5em 1em;
        gap: .5em; 

    }
    .perevagy2 .block{
        width: calc(100%/2 - 2em);
        justify-content: flex-start;
    }
    .perevagy2 .block .top,  .perevagy2 .block .bottom{
        padding: .5em;
    }
    .present .left{
        margin-top: 2em;
    }
    .present .right{
        margin: 2em;
    }
    .price{
        display: flex;
        flex-direction: row;
        justify-content: center;
        min-width: none;

    }
    .price div{
        gap: 0;
    }
    .price .wrap{
        flex-direction: column;
        align-items: flex-start;
        margin: 1em;
        gap:0;
    }
    .price .wrap div {
        margin: 1em;
    }
    .verticalline{
        border-bottom: solid 1px var(--color-4);
        width: 50px;
        margin: 0;
        padding: 0;
        height: 0;
    }
    .perevagy div{
        width: auto;
        margin: 1em;
    }
    .perevagy3 .block{
        flex: 1;
        display: flex;
        padding: 0;
        flex-direction: column;
        justify-content: space-between;
        border-radius: var(--border-radius);
        box-shadow: none;
        background-color:none;
    }
    .present{
        padding: 0;
    }
   
    .present .left video{
        margin: auto;
        width:auto;
        height: 600px;
        border-radius: var(--border-radius);
        box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
    }
    .techdesc{
        padding: 2em;
    }
    .techdesc .boxs{
        flex-direction: column;
    }
    .techdesc .pluses{
        gap:.5em
    }
    .vidguky{
        margin: 1em;
    }
    .vidguk{
        padding: 1em;
    }
    .zayavka .left{
        margin: 0;
    }
    .zayavka .right{
        width: auto;
        margin: 1em;
    }

}