.page-template-template-start-page{
    overflow: hidden;
}

.start-page-wrap{
    width: 100%;
    height: 100vh;
    background: radial-gradient(36.72% 94% at 50% 36.33%, #595959 0%, #1E1E1E 100%);
}

.start-page-content-wrap{
    display: flex;
    justify-content: center;
}

.img-wrap{
    margin-top: 5%;
    margin-left: 5%;
    position: relative;
}

.img-wrap svg{
   height: 80vh;
}

.second-img-wrap{
    display: none;
}

.second-img-wrap.zoom svg{
    transform: scale(2);
    -webkit-transform: scale(2);
    margin-top: 140%;
    margin-left: 10%;
    transition: transform 1s, margin-top 1s, margin-left 1s;
    -webkit-transition: transform 1s, margin-top 1s, margin-left 1s;
}

/* circle block */
.circle-bg-block{
    position: absolute;
    top: 25%;
    left: 35%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    transition: transform 3s;
}

.circle-bg-block.zoom-end{
    background: #fff;
    transform: scale(100);
    z-index: 997;
}

/* circle block logos */
.circle-logos-wrap{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 998;
    transition: top .4s;
}

.circle-logo-1{
    opacity: 0;
    transition: opacity .4s, transform .4s;
}

.circle-logo-2{
    position: absolute;
    left: 0;
    bottom: -100%;
    opacity: 0;
    transition: opacity .4s;
}

/* start menu */
.start-page-menu{
    display: none;
}

/* start page header */
.start-page-header{
    max-width: 1730px;
    padding: 10px 15px;
    margin: 0 auto;
}

.start-menu-logo{
    width: 150px;
    height: 155px;
    margin-left: -200px;
    opacity: 0;
    transition: opacity 1s, margin-left 1s;
}

.start-menu-logo.show-logo{
    margin-left: 0;
    opacity: 1;
}

.start-menu-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* start page content */
.start-page-menu-container{
    width: 100%;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}

/* menu */
.start-menu-wrap{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.start-menu-item{
    text-align: center;
}

.start-menu-item:not(:last-child){
    margin-right: 20px;
}

.start-menu-item a{
    color: #777777;
    transition: color .3s;
}

.start-menu-item img{
    margin-bottom: 30px;
    width: 70%;
    transition: opacity .3s;
}

.start-menu-item-title{
    text-align: center;
    height: 56px;
}

.start-menu-item-title h3{
    margin-top: 0;
    font-weight: normal;
    font-size: 26px;
    position: relative;
}

.start-menu-item-title h3::before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 98px;
    height: 2px;
    background: #777777;
    transition: background .3s;
}

.start-menu-item-title h3::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 42px;
    height: 2px;
    background: #777777;
    transition: background .3s;
}

.start-menu-item:hover > a{
    color: #FB0000;
}

.start-menu-item:hover h3::after,
.start-menu-item:hover h3::before{
    background: #FB0000;
}

.start-menu-item:hover img{
    opacity: .7;
}

@media(max-width: 1300px){
    /* start animation */
    .second-img-wrap.zoom svg{
        margin-top: 90%;
    }

    /* start menu */
    .start-menu-item img{
        width: 65%;
    }
}

@media(max-width: 1300px){
    /* start animation */
    .circle-bg-block{
        top: 35%;
        left: 40%;
    }

    /* start menu */
    .start-menu-item img{
        width: 60%;
    }

    .start-menu-item-title h3{
        font-size: 18px;
    }

    .start-menu-logo{
        width: 100px;
        height: 105px;
    }
}

@media(max-width: 900px){
     /* start animation */
     .second-img-wrap.zoom svg{
        margin-top: 120%;
    }

     .circle-bg-block{
        top: 30%;
        left: 40%;
    }

    .start-page-header{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .start-menu-logo{
        width: 100px;
        height: 105px;
    }

    .start-menu-item-title h3 {
        font-size: 13px;
    }

    .start-menu-item:not(:last-child){
        margin-right: 0;
    }

    .start-menu-item-title h3::before{
        width: 33px;
    }

    .start-menu-item-title h3::after{
        width: 15px;
    }
}

@media(max-width: 400px){
    /* start animation */
    .second-img-wrap.zoom svg{
        margin-top: 100%;
    }
    
    .circle-bg-block{
        top: 20%;
        left: 45%;
    }

    /* circle text logos */
    .circle-logos-wrap{
        width: 100%;
    }

    .start-menu-item img {
        width: 50%;
    }

    .start-menu-item:not(:last-child) {
        margin-right: 5px;
    }

    .start-menu-item-title h3 {
        font-size: 10px;
    }

    .start-menu-item-title h3::before {
        width: 20px;
    }

    .start-menu-item-title h3::after {
        width: 10px;
    }

    .second-img-wrap.zoom svg{
        -webkit-transition: -webkit-transform 1s;
    }
}