@keyframes ripple {

    0% {
        box-shadow: 0 0 0 0 rgba(255,255,255, 0.2),
            0 0 0 14vw rgba(255,255,255, 0.2),
            0 0 0 28vw rgba(255,255,255, 0.2),
            0 0 0 70vw rgba(255,255,255, 0.2);
    }

    100% {
        box-shadow: 0 0 0 14vw rgba(255,255,255, 0.2),
            0 0 0 28vw rgba(255,255,255, 0.2),
            0 0 0 70vw rgba(255,255,255, 0.2),
            0 0 0 112vw rgba(255,255,255, 0);
    }

}

body {
    margin: 0;
    padding: 0;

    font-family: "Gilroy", "Arial", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;

    color: #FFFFFF;
    background: url('../img/ben-allan-BIeC4YK2MTA-unsplash 1.jpg') top center no-repeat;

    position: relative;

    height: 100vh;
    /* width: 100%; */
}

a {
    text-decoration: none;
    color: #FFFFFF;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

.visually-hidden:not(:focus):not(:active), input[type=checkbox].visually-hidden, input[type=radio].visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden
}

header {
    background: rgba(0, 0, 0, 0.6);
}

.contacts {
    min-height: 80px;
    align-items: center;
}

.contacts__list {
    display: flex;
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contacts__item svg{
    margin-right: 8px;
}

.contacts__link:hover, .contacts__link:focus {
    color: #f2992f;
    text-decoration: none;
}

.contacts__link:hover svg path, .contacts__link:focus svg path {
    fill: #f2992f;
}

.contacts__link svg {
    margin-right: 8px;
}

.logo {
    display: block;
    color: #FFFFFF;
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    text-decoration: none;
}

.logo:hover, .logo:focus {
    text-decoration: none;
    color: inherit;
}

.logo .w-box {
    color:#000;
    position: relative;
    z-index: 999999;
    margin-left: 10px;
}

.logo .w-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -5px;
    width: 108px;
    height: 27px;
    background: #FFFFFF;
    z-index: -1;
}


.logo {
    padding-left: 15px;
}

.first {
    font-size: 16px;
    text-decoration: underline;
    text-transform: uppercase;

    
}

.second {
    text-transform: uppercase;
    font-size: 46px;
    font-weight: normal;
    display: block;
    line-height: 83px;
    /* margin-top: 20px; */
}

.circle {
    position: absolute;
    top: 30vh;

    left: 50%;
    transform: translateX(-50%);

    width: 316px;
    height: 316px;
    border-radius: 50%;

    animation: ripple 4s linear infinite;
    animation-delay: 0s;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (min-width: 1920px) {
    body {
        background-size: cover;
    }
    
}

@media screen and (max-width: 522px) {
    .contacts__item:not(:last-child) {
        margin-bottom: 10px;
    }
    .contacts {
        padding: 10px 0;
    }
}

@media screen and (max-width: 404px) {
    .logo .w-box::before {
        width: 85px;
    }
    .logo {
        padding-left: 5px;
    }
    
}