.wrapper{
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 13px;
    padding-right: 13px;
}
.wrapper2{
    max-width: 1575px;
    margin-left: auto;
    margin-right: auto;
    
}
h1{
    font-size: 56px;
    font-weight: 700;
    line-height: 58px;
    color: var(--primary--color);
}
h2{
    font-size: 40px;
    font-weight: 700;
    line-height: 58px;
    color: var(--primary--color);
}
h3{
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: var(--primary--color);
}
h4{
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
}
h5{
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
}
h6{
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
}
p{
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}
.generic-btn a{
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    padding: 21px 41px;
    border-radius: 29px;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    min-width: 191px;
    text-align: center;
    position: relative;
    overflow: hidden;    
}
.dark-pink-btn a{
    color: var(--white-color);
    background: var(--pink-color);
}
.padding-top{
    padding-top: 150px;
}
.padding-bottom{
    padding-bottom: 150px;
}
.yellow-btn a{
    color: var(--black-color);
    background: var(--accent);
}
.blue-btn a{
    color: var(--white-color);
    background: var(--blue-color);
}
.header-btn a:after,
.generic-btn a:after,
.price-btn a:after,
.domain-input button:after,
.help-link .get-started-btn:after,
.submit-btn button:after{
    background: #fff;
    content: "";
    height: 20rem;
    opacity: 0;
    top: -50px;
    left: -100%;
    position: absolute;
    transform: rotate(35deg);
    transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.header-btn a::before,
.generic-btn a::before,
.price-btn a::before,
.domain-input button:before,
.help-link .get-started-btn:before,
.submit-btn button:before{
    background: #fff;
    content: "";
    height: 155px;
    opacity: 0;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    width: 50px;
    left: -50%;
    transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1);
}
 .header-btn a:hover,
 .generic-btn a:hover,
 .price-btn a:hover,
 .domain-input button:hover,
 .help-link .get-started-btn:hover,
 .submit-btn button:hover,
 .help-link a:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / 20%);
}
.header-btn a:hover::before,
.generic-btn a:hover::before,
.price-btn a:hover::before,
.domain-input button:hover:before,
.help-link .get-started-btn:hover:before,
.submit-btn button:hover:before{
    left: 120%;
    opacity: 0.5;
}
.header-btn a:hover::after,
.generic-btn a:hover::after,
.price-btn a:hover::after,
.domain-input button:hover:after,
.help-link .get-started-btn:hover:after,
.submit-btn button:hover:after{
    left: 200%;
    opacity: 0.6;
}

