/*---------------------fonts------------------------*/  
h1{
    font-size: 32px;
    line-height: 110%;
    color:#545454;
    margin: 0;
}

h1, h3, h4, button, .Pet p{
    font-family: Georgia, Verdana sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.06em
}
a, p {
    font-family: Arial;
    font-style: normal;
    font-weight: 400;
}
.Pet p{
    font-size: 20px;
    line-height: 23px;
    color: #545454;
    margin: 30px auto 30px;
    text-align: center;
}
.header p{
    font-size: 13px;
    line-height: 15px;
    color: #292929;
    letter-spacing: 0.1em;
}

a{
    font-size: 15px;
    line-height: 160%; 
    color: #545454;
    
    text-decoration: none;
}

h3{
    font-size: 35px;
    line-height: 45px;
    color: #545454;
    margin: 0;
}

.footer h3{
    color: #FFFFFF;
}

h4{
    font-size: 20px;
    line-height: 115%;
    color: #F1CDB3;
    margin: 0;
}

.contacts a{
    color: #F1CDB3;
    font-family: 'Georgia';
    font-size: 20px;
    line-height: 115%;
    letter-spacing: 0.06em;
}

/*--------------------frame-------------------------*/   

html{
    margin: 0;
    padding: 0;
    scroll-behavior: auto;
}

body{
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.wrapper{
    padding: 0 40px;

   /* max-width: 1280px;
    margin-left: auto;
    margin-right: auto;*/
}
.wrapper__gray{
    background-color:#F6F6F6;
}

button{
    font-size: 17px;
    line-height: 130%;
    color: #292929;

    padding: 15px 45px;
    border-radius: 100px;
    cursor: pointer;
}

.light_color{
    background-color: #F1CDB3;
    border: none;
}

.transparent{
    background-color: #FAFAFA;
    border: 2px solid #F1CDB3;
}
.transparent:hover{
    background-color: #FDDCC4;;
}
.previous {
    cursor:disabled;
}

.btn_circle{
    padding: 1px 6px;
    border-radius: 100px;
    width: 52px;
    height: 52px;
    box-sizing: border-box;
}

 /*--------------------header-------------------------*/ 
 .nav-container .checkbox{
    position: absolute;
    display: none;
    height: 50px;/*20*/
    width: 50px;/*22*/
    top: 50px;
    right: 50px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
}
.header{
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    background-color:#FFFFFF;

    position: sticky;
    top: 0px;
 }

 .navigation a.active {
    border-bottom: solid 3px #F1CDB3;
  }

 .navigation{
     display: flex;
 }

 li{
     list-style: none;
     padding-left: 35px;
     padding-bottom: 17px;
 }

/*--------------------Our_friends-------------------------*/          
.Our_friends{
    padding: 80px 0 100px;        
}

.header_Our_friends {
    max-width: 400px;
    text-align: center;  
    margin: 0 auto 15px; 
}

.container_Pets{
   display: flex;
}

.Pets{
    width:100%;
    display: flex;       
    flex-wrap: wrap;
    align-items:center;
    justify-content: space-around;
   /* justify-content: space-between; */
}

.Pet{
   background: #FAFAFA; 
   margin-top: 30px;
}

.Pet button{
    margin: 0 auto 30px;
    display: block;
}

.Pets__arrow{
    margin: 60px auto 0;
    text-align: center; 
    
}

/*--------------------footer-------------------------*/ 

footer{
    background-size:cover;
    background-image: url("../../assets/images/start-screen-gradient-background.png");
}

.contacts{
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.colomn{
    display: block;
    padding-top: 16px;
    max-width: 310px;
}

.email{
    padding: 43px 0;
}
.address-1{
    padding: 33px 0 38px;
}

.contacts_img{
    max-width: 300px;
}

.address-1, .address-2, .email, .tel{
    display: inline-flex; 
    align-items: center;
    justify-content: center;
}




/* 992px - 1200px */
@media screen and (max-width: 1200px) {
    /*--------------------footer-------------------------*/ 
.contacts{
    justify-content: space-around;
}
}


/* 768px - 992px */
@media screen and (max-width: 992px) {
/*--------------------header-------------------------*/ 
.wrapper{
    padding: 0 30px;
}
}


/* 576px - 768px */
@media (max-width: 768px) {
    .wrapper{
        padding: 0 20px;
    }
 /*--------------------header-------------------------*/ 
    .header{
        display: block;
    }
    .navigation{
        display: block;
        margin: 0;
        visibility: hidden; /* hidden menu*/
    }
     li{
         padding-bottom: 43px;
     }
     
     .nav-container .checkbox{
        position: absolute;
        display: block;
        height: 50px;/*20*/
        width: 50px;/*22*/
        top: 38px;
        right: 48px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }
    .nav-container .ham-lines{
        height: 50px;/*20*/
        width: 50px;/*22*/
        position: absolute;
        top: 40px;
        right: 50px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .nav-container .ham-lines .line{
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #545454;
    }
    .nav-container .ham-lines .line1{
        transform-origin: 0% 0%;
        transition: transform 0.4s ease-in-out;
    }
    .nav-container .ham-lines .line2{
        transition: transform 0.2s ease-in-out;
    }
    .nav-container .ham-lines .line3{
        transform-origin: 0% 100%;
        transition: transform 0.4s ease-in-out;
    }
    
    .nav-container .navigation{
        box-sizing: border-box;
        position: absolute;
        top: 136px;
        padding: 50px 0 ;
        width: 100%;
        /*transform: translate(130%);/*прячет за грань -150%*/
        left:-100%;/*замена пред строке*/
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.5s ease-in-out;
        background-color: #F6F6F6;
        background-size:100%;
    }
    .navigation li{
        text-align: center;
    }
    .navigation li a{
        font-size: 32px;
        color:#545454;
        font-family: Arial, Helvetica, sans-serif;
        font-style: normal;
        font-weight: 400;
    }
    
    
    .nav-container input[type="checkbox"]:checked ~ .navigation{
        /*transform: translateX(0);*/
        left: 0;/*замена пред строке*/
        visibility: visible; /*show menu*/
    }
    .nav-container input[type="checkbox"]:checked ~ .ham-lines .line1{
        transform: rotate(45deg);
        width: 69px;
    }
    .nav-container input[type="checkbox"]:checked ~ .ham-lines .line2{
        transform: scaleY(0);
    }
    .nav-container input[type="checkbox"]:checked ~ .ham-lines .line3{
        transform: rotate(-45deg);
        width: 69px;
    }
    
.Our_friends{
    padding: 42px 0;
}
}



/* 320px - 576px */
@media screen and (max-width: 576px) {
    .wrapper{
        padding: 0 10px;
    }
    h3{
        font-size: 25px;
    }
}