* {
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
}

body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

header {
    height: 100%;
}

.logo-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logotype {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    background-color: yellow;
    border-radius: 50%;
}

.services-container {
    max-width: 767px;
    padding: 30px 20px;
    margin: 0 auto;
}

.services-container-title {
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #006837;
    text-align: center;
    color: #ffffff;
    border-radius: 5px;
    text-transform: uppercase;
}

.services-block {
    padding-top: 10px;
    padding-bottom: 20px;
    margin-bottom: 50px;
    border-top: 5px solid #EB5B27;
}

.services-block-title {
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 30px;
    padding: 0 15px;
    text-align: center;
    font-size: 20px;
    border-left: 5px solid #EB5B27;
    border-right: 5px solid #EB5B27;
    text-transform: uppercase;
}

.services-block-img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

footer {
    background-color: #0071bc;
}

.footer-block {
    padding: 40px 20px;
}

.telephone {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 25px;
    text-decoration: none;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    border: 3px solid #ffffff;
}

.telephone:hover {
    color: #d6d6d6;
}

.address {
    margin: 0 auto;
    padding: 10px;
    font-size: 20px;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    border: 3px solid #ffffff;
}

.address span {
    font-size: 12px;
}

.cls-1 {
    fill: #003d7c;
}

.cls-2 {
    fill: #006139;
}

.cls-3 {
    fill: #c1272d;
}

.cls-4 {
    fill: none;
    stroke: #006837;
    stroke-miterlimit: 10;
    stroke-width: 3.46px;
}

.cls-5 {
    fill: #dd4f37;
}

.logotype-border {
   -webkit-animation-name: rotation;
   -webkit-animation-duration: 55s;
   -webkit-animation-iteration-count: infinite;
   -webkit-animation-timing-function: linear;
   -moz-animation-name: rotation;
   -moz-animation-duration: 55s;
   -moz-animation-iteration-count: infinite;
   -moz-animation-timing-function: linear;
   -o-animation-name: rotation;
   -o-animation-duration: 55s;
   -o-animation-iteration-count: infinite;
   -o-animation-timing-function: linear;
   animation-name: rotation;
   animation-duration: 55s;
   animation-iteration-count: infinite;
   animation-timing-function: linear;
   transform-origin: 50% 50%;
}
 
@-webkit-keyframes rotation {
    0% {-webkit-transform:rotate(0deg);
        -moz-transform:rotate(0deg);
        -o-transform:rotate(0deg);
        transform:rotate(0deg);}
    100% {-webkit-transform:rotate(360deg);
        -moz-transform:rotate(360deg);
        -o-transform:rotate(360deg);
        transform:rotate(360deg);}
}
@-moz-keyframes rotation {
    0% {-webkit-transform:rotate(0deg);
        -moz-transform:rotate(0deg);
        -o-transform:rotate(0deg);
        transform:rotate(0deg);}
    100% {-webkit-transform:rotate(360deg);
        -moz-transform:rotate(360deg);
        -o-transform:rotate(360deg);
        transform:rotate(360deg);}
}
@-o-keyframes rotation {
    0% {-webkit-transform:rotate(0deg);
        -moz-transform:rotate(0deg);
        -o-transform:rotate(0deg);
        transform:rotate(0deg);}
    100% {-webkit-transform:rotate(360deg);
        -moz-transform:rotate(360deg);
        -o-transform:rotate(360deg);
        transform:rotate(360deg);}
}
@keyframes rotation {
    0% {-webkit-transform:rotate(0deg);
        -moz-transform:rotate(0deg);
        -o-transform:rotate(0deg);
        transform:rotate(0deg);}
    100% {-webkit-transform:rotate(360deg);
        -moz-transform:rotate(360deg);
        -o-transform:rotate(360deg);
        transform:rotate(360deg);}
}