.cgu{flex:1;background:#f5f5f5;padding:100px 20px;}
.cgu-content{margin:0 auto;max-width:1000px;padding:60px 40px;background:white;box-shadow:0 0 30px 0 rgba(0, 0, 0, 0.1);min-height:2000px;}
.cgu-content{font:400 14px/20px Ubuntu, sans-serif;color:#333;}
.cgu-content h1{font:700 32px/1 'DM Sans', sans-serif;text-transform:uppercase;color:#3F4865;text-align:center;}
.cgu-content h3{font:700 18px/1 'DM Sans', sans-serif;text-transform:uppercase;color:var(--main);margin-top:45px;}
.cgu-content h4{font:700 14px/1 'DM Sans', sans-serif;text-transform:uppercase;color:var(--main);margin-top:25px;}
.cgu-content div{text-align:center;margin:30px auto 0;max-width:600px;}
.cgu-content p{margin-top:15px;text-align: left;}
.cgu-content ul{margin-top:15px;padding:10px 15px;background:#F5F5F5;display:block;text-align: left;}
.cgu-content li{padding-left:15px;}
.cgu-content li + li{margin-top:5px;}
.cgu-content li::before{position:absolute;left:0;top:10px;width:5px;height:5px;background:#222;content:'';}
.cgu-content a:hover{color:var(--main);}
.cgu-content code{background:rgba(0, 0, 0, 0.05);padding:3px 6px;border-radius:4px;font-size:12px;}
.cgu-content blockquote{padding:0;margin:0;font-style:italic;opacity:0.8;}


body{
    padding-top: 112px;
}
.header{
    position: fixed;
    width: 100%;
    top: 0;
}
.burgerMenu {
    /*max-width: 500px;*/
    /*margin-left: auto;*/
}
.header-logo{
    margin-right: 50px;
}
input[type="checkbox"]{
    display: none;
}
/*.burgerMenu span{
    display: none;
}*/
.burgerMenuToggle{
    margin-left:auto;
    right: 30px;
    position: fixed;
}
.requestCoordinatesForm{
    width: 50%;
    min-width: 250px;
    margin: 0 auto;
}
.requestDataReview {
    flex: 1;
    min-width: 200px;
}
.steps-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
.steps-back {
    display: flex;
    border: 1px solid #ecedf0;
    border-radius: 16px;
    color: var(--main);
    padding: 7px 10px 7px 16px;
    margin-right: 30px;
    margin-bottom: 20px;
}
.steps-timeline {
    flex: 1;
    display: flex;
    margin: 0 0 7px;
    gap: 5px;
    border-bottom: 2px solid var(--light);
}
.footer {
    background: var(--main);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: auto;
    flex-wrap: wrap;
    gap: 20px;
}
@media screen and (max-width: 400px) {
    .steps-timeline{
        display: none;
    }
}
@media screen and (max-width:900px ) {
    .burgerMenu{
        position: fixed;
        top: 112px;
        right: 0px;
        left: 0px;
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        background: white;
        transition:0.5s;
        bottom: 0;
        max-width: none;
    }
    .burgerMenu .header-link, .burgerMenu .header-btn {
        color: #3E4968;
        font: 400 16px/1.2 var(--font1);
        padding: 20px 0;
        margin: 0 30px;
        border-bottom: 1px solid rgba(62, 73, 104, 0.2) ;
	    height: auto;
		background: none;
    }
    .burgerMenu .header-link:hover, .burgerMenu .header-btn:hover{
        font-weight: 700;
    }
    .header-pipe{
        display: none;
    }
    .burgerMenuToggle input{
        display: block;
        width: 40px;
        height: 30px;
        position: absolute;
        top: -7px;
        right: -5px;
        cursor: pointer;
        opacity: 0;
        z-index: 2;

    }
    .burgerMenuToggle span{
        display: block;
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
        position: relative;
        border-radius: 3px;
        background: black;
        z-index: 1;
        transition:0.2s;
    }
    .burgerMenuToggle span:first-child{
        transform-origin: 0% 0%;
    }
    .burgerMenuToggle span:last-child{
        transform-origin: 0% 100%;
    }
    input[type="checkbox"]:checked ~ .burgerMenuToggle label span:first-child{
        transform: rotate(45deg) translate(-3px, -3px);
    }
    input[type="checkbox"]:checked ~ .burgerMenuToggle label span:nth-child(2){
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
    }
    input[type="checkbox"]:checked ~ .burgerMenuToggle label span:last-child{
        transform: rotate(-45deg) translate(1px, 0px);
    }
    input[type="checkbox"]:checked ~ .burgerMenu {
        transform: translateX(0%);
    }
}
