body{
    margin: 0;
    padding: 0;
    color: white;
    font-family: 'Poppins', sans-serif;
}
body p{
    font-size: 20px;
    margin:0;
}
.main{
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
    background: -webkit-linear-gradient(0deg, #237ece, #051b88 100%);
    position: relative;
    background-image: linear-gradient(to right, #237ece 0%, #051b88 100%);
}
.title{
    z-index: 3000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

}
.title p{
    z-index: 5000;
}
.title h2{
    margin: 0;
    line-height: 52px;
    font-size: 50px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}
.title p{
    font-size: 20px;
}
.title p{
    font-size: 20px;
}

.shape-3{
    position: absolute;
    top: 160px;
    width: 100%;
    height: 135px;
    background-repeat: no-repeat;
    animation: slideInRight 70s linear infinite;
    -webkit-animation: slideInRight 70s linear infinite;
}
.shape-4{
    position: absolute;
    top: 250px;
    width: 100%;
    height: 102px;
    background-repeat: no-repeat;
    animation: slideInRight 50s linear infinite;
    -webkit-animation: slideInRight 50s linear infinite;
}
@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.menu {
    margin-top: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.textAreaCustom {
    margin-top: 5px;
    width: 100%;
    max-width: 600px;
    min-height: 200px;
    border-radius: 10px;
    resize: vertical;
    padding: 10px ;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.textAreaCustom:focus{
    outline: none;
}
.wrapperMain {
    padding-top: 90px;
    position: relative;
    padding-bottom: 90px;
}
.desc {
    position: absolute;
    bottom: 10px;
    left: 20px;
}
.desc h3{
    font-size: 24px;
    opacity: .4;
}
.menu button{
    margin-top: 15px;
    /*width: 180px;*/
    height: 40px;
    background-color: transparent;
    border: 1px solid cyan;
    border-radius: 6px;
    color: cyan;
    font-size: 18px;
    font-weight: 700;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    font-family: 'Poppins', sans-serif;
}
.menu button:hover{
    cursor: pointer;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    color: cyan;
    border: 1px solid cyan;
    background-color: rgba(255, 255, 255, .1);
}
.pass {
    position: absolute;
    width: 150px;
    bottom: 0;
    left: 0;
    z-index: 5;
    -webkit-animation-name: kostul;
    animation-name: kostul;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: .7s;
    animation-duration: .7s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    display: none;
}
@-webkit-keyframes kostul {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    50% {
        left: 50%;
        bottom: 50%;
        -webkit-transform: rotate(180deg) scale(5);
        transform: rotate(180deg) scale(5);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes kostul {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    50% {
        left: 50%;
        bottom: 50%;
        -webkit-transform: rotate(180deg) scale(5);
        transform: rotate(180deg) scale(5);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


.linkBlock {
    position: relative;
    border-radius: 6px;
    min-height: 40px;
    max-width: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(255,255,255, 0.6);
    padding: 8px;
    color: black;
    font-size: 14px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.linkBlock p{
    width: 90%;
    word-break: break-all;
}
.linkBlock button{
    position: absolute;
    background-color: white;
    min-height: 40px;
    border: none;
    height: 100%;
    border-radius: 0 6px 6px 0 ;
    right: 0;
    top: -15px;
    width: 50px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}
.linkBlock button:hover svg path{
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    stroke: cyan;
}
.linkBlock button:hover{
    border: none;
    background-color: white;
}

.customBtn {
    width: auto!important;
}