@charset "utf-8";
/* CSS Document */
body {
  font-family: 'Lato', Verdana;
  font-size: 100%;
  background: #0f1ec1;
}
a {
    background-color: transparent;
    text-decoration: none;
    transition: all 200ms ease-out;
}

.header-top a {
    color: #fff;
}
.header-messengers a:first-of-type {
    margin-left: 20px;
}

.header-phone a:first-of-type {
    margin-left: 10px;
}

.header-phone img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
}
.header-phone{
    font-size: 24px;
    font-weight: 600;
	display: inline-flex;
}
.header-contacts .col2{
    padding-left: 55%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    min-width: 20%;
}
.header-messengers a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    margin-left: 6px;
    border-radius: 50%;
}
.header-messengers a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.header-messengers a:hover {
    box-shadow: 0 0 0 3px rgb(255 255 255 / 80%);
}
.header-messengers a:first-of-type{
    margin-left: 20px;
}

@media(max-width:1199px){
    .header-phone{
        font-size: 24px;
    }
   
    .header-messengers a{
        margin-left: 3px;
        width: 32px;
        height: 32px;
    }
    .header-messengers a:first-of-type{
        margin-left: 15px;
    }
 
 .header-contacts .col2{
    padding-left: 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 20%;
}
}

@media (max-width: 767px){
 .header-contacts .col2 {
    text-align: left;
    justify-content: flex-start;
    padding-top: 15px;
}
.header-contacts .col2{
    padding-left: 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 20%;
}
 .header-phone{
        font-size: 18px;
    }
    
      .header-contacts .col2{
        width: 330px;
   
}
}

