@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


*{
    font-family: "Open Sans" !important;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Cormorant" !important;
}


body{
    background-color: #1D2F30;
    color: white;
}

header{
    max-width: 1440px;
    margin: 0 auto;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav{
    display: flex;
    gap: 50px;
}

nav a{
    color: white;
    text-decoration: none;
    font-size: 24px;
    line-height: 1.5;
    
}

nav a:hover{
    color: #BAE249;
}

nav a:focus{
    outline: 2px solid #83A440;
}

.header-btns{
    display: flex;
    margin: 0 30px;
    gap: 10px;
}

.header-btns h3{
    font-family: "Open Sans" !important;
    color: #BAE249;
    font-size: 20px;
}


main{
    margin: 0 auto;
    max-width: 1440px;
}

.hero{
    height: 750px;
    background: linear-gradient(rgba(29, 48, 48, 0.2), rgba(29, 48, 48, 0.2)), url(../images/retriever.jpg);
    padding: 30px ;
    display: flex;
    align-items: center;
}

.hero-content h1{
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    max-width: 688px;

}

.hero-content p{
    font-size: 22px;
    font-weight: 400;
    line-height: 150%;
    text-decoration: underline;
    max-width: 650px;
    margin: 30px 0px 24px;
}

.figures figure{
    width: 200px;
    border: 1px solid #0B1919;
}

.figures .figure-image{
    height: 180px;
    background: #0B1919;
    display: flex;
    align-items: center;
    justify-content: center;
}

.figures figcaption{
     padding: 16px 16px 24px;
}


.figures h3{
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
}

.figures p{
    font-size: 16px;
    line-height: 150%;
    color: #899D9D;
    margin: 8px 0px 16px;
    height: 169px;
    overflow: hidden;
}

.figures details{
    padding: 10px; 
    border: 1px solid #BAE249;
    border-radius: 3px;
    cursor: pointer;
}

.figures summary{
    color:#BAE249 ;
}

.figures button{
    width: 145px;
    height: 45px;
    line-height: 150%;
    border: 1px solid #BAE249;
    color: #BAE249;
    background: transparent;
}

.figures{
    padding: 30px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

footer{

    background-color: #1D2F30;
}

footer .blok{
    display: flex;
    justify-content: space-between;
}
/* footer .sem1{
    margin-top: 20px;
} */
    /* max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px 30px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer h2{
    font-size: 36px;
    font-weight: 700;
    line-height: 150%;
}

.pos{
    display: flex;
    gap: 60px;
   
}
.contact{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0 auto;
    max-width: 443px;
    box-sizing: border-box;
}

.seti{
    margin-top: 20px;
}

.seti img{
    height: 50px;
    width: 50px;
}

.place{
    margin-top: 30px;
    
} */

.burger-btn{
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

   

@media screen and (max-width: 850px){
    
    header .logo{
        display: none;
    }

    nav{
        padding: 24px 24px;
        position: absolute;
        background: rgba(1, 38, 39, 0.925);
        flex-direction: column;
        gap: 13px;
        top: 0;
        left: 0;
        transition: 1s;
        transform: scale(0);
        transform-origin: left top;
        box-shadow: 4px 4px 8px rgba(0, 0, 0, .25);
        
    }

    nav a{
        font-size: 14px;
    }

    .burger-btn{
        display: block;
    }
    .figures{
        display: block;
    }
    .hero{
        height: 400px;
        padding: 32px;
    }
    .hero h1{
        font-size: 30px;
    }

    .hero p{
        font-size: 16px;
    }

    .pos{
        display: block;
    }

    .place{
        display: none;
    }
    
}