@charset "UTF-8";
*::before,
*::after {
    box-sizing: border-box;
}
* {
    outline: none;
    box-sizing: border-box;
}
p{
    padding: 0;
    margin: 0;
}
html,
body {
    width: 100%;
    height: 100%;
}

body {
    min-height: 100%;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    margin: 0;
}
.logo  {
    display: flex;
    justify-content: center;
}
.logo img{
    width: 300px;
}

.container{
    width: 100%;
    padding-right: 60px;
    padding-left: 60px;
    margin-right: auto;
    margin-left: auto;
}
.center{
    text-align: center;
}
main{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.owl-carousel .item{

    display: flex;
    align-items: center;
}
.owl-carousel .item img{
    width: 150px;
height: 150px;
display: flex;
align-items: center;
object-fit: contain;
}
.carousel-shadow{
    -webkit-box-shadow: 0px 0px 4px 2px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 4px 2px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 4px 2px rgba(34, 60, 80, 0.2);
    margin: 10px;
    display: flex;
    justify-content: center;
    width: 255px;
    transition: all .5s ease-in-out;
}
.carousel-shadow:hover{
    -webkit-box-shadow: 0px 0px 4px 2px rgba(222, 25, 216, 0.2);
    -moz-box-shadow: 0px 0px 4px 2px rgba(222, 25, 216, 0.2);
    box-shadow: 0px 0px 4px 2px rgba(222, 25, 216, 0.2);
}
.footer-map{
    position: relative;
    width: 100%;
    height: 400px;
}
.ymap-wrap {
    width: 100%;
    height: 100%;
}
.ymap-wrap > * {width: 100%;height: 100%;}
.contacts{
    padding-bottom: 20px;
}
.info-box{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}
.info-box__item{
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.info-box__icons{
    margin-right: 20px;
}
.info-box__item .icon{
    width: 50px;
    height: 50px;
    background-color: #ccc;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.info-box__item .icon svg{
    width: 20px;
    height: 20px;
}
.caption{
    font-size: 18px;
    font-weight: bold;
}
@media (max-width: 768px) {
    h1{
        font-size: 24px;
    }
    .info-box{
        justify-content: flex-start;
    }
    .footer-map{
        padding-right: 0px;
    padding-left: 0px;
    }
}
.instagram {
    display: flex;
    justify-content: center;
    position: relative;
    transition: all .5s ease-in-out;
}
.instagram:hover 
{
    transform: scale(1.2);
}
.inst-logo{
    display: flex;
    margin-right: 10px;
}
.inst-logo img{
    object-fit: cover;
    width: 32px;
    height: 32px;
}
