  .custom-page {
    margin-top: 132px;
}

.c-btn {
    background-color: white;
    padding: 18px 32px;
    border-radius: 4px;
    font-weight: 700;
    color: #2c3d4f;
    font-size: 18px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: block;
    max-width: max-content;
}

.c-btn span {
    position: relative;
    z-index: 3;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.c-btn span svg {
    margin-left: 10px;
}

.c-btn:hover {
    color: white;
    text-decoration: none;
}

.c-btn::after {
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: #2c3d4f;
    content: "";
    position: absolute;
    z-index: 2;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 3px;
}

.c-btn:hover::after {
    width: 100%;
}

.c-btn:hover span svg path {
    stroke: #2c3d4f;
}

.c-btn-reverse {
    background: #2c3d4f;
    color: white;
}

.c-btn-reverse::after {
    background: #ffcd05;
}

.c-btn-reverse:hover span {
    color: #2c3d4f;
}

.c-btn-block {
    width: 100%;
    max-width: 100%;
}

@media screen and (max-width: 1200px) {
    .custom-page {
        margin-top: 53px;
    }
}

@media screen and (max-width: 768px) {
    .custom-page {
        margin-top: 46px;
    }
}

.text-center .c-btn {
    margin: 0 auto;
}

body.overflow-hidden {
    overflow: hidden;
}
