/* ================================================== button ================================================== */

.primery-btn {
    max-width: 155px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-theme);
    background-color: var(--bg-theme);
    border-radius: 0;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.primery-btn a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    font-family: var(--bs-font-rubik);
    color: var(--bs-white);
    letter-spacing: 1px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.primery-btn:hover {
    background-color: var(--bs-black);
    border-color: var(--bs-black);
}

.primery-btn:hover a {
    color: var(--bs-white);
}

@media screen and (min-width: 1201px) {
    .primery-btn.mobile-btn {
        display: none;
    }
}

/* ====================================================== white button ================================================ */

.white-btn {
    max-width: 155px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bs-white);
    background-color: var(--bs-white);
    border-radius: 0;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.white-btn a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    font-family: var(--bs-font-rubik);
    color: var(--bs-black);
    letter-spacing: 1px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.white-btn:hover {
    background-color: transparent;
    border-color: var(--bs-white);
}

.white-btn:hover a {
    color: var(--bs-white);
}

.white-btn-top {
    margin-top: 30px;
}

/* ------------------------------- */

.the-arrow {
    width: 1px;
    transition: all 0.2s;
}

.the-arrow.-left {
    position: absolute;
    top: 50%;
    transform: translate(50%, 50%);
    left: 0;
}

.the-arrow.-left>.shaft {
    width: 0;
    background-color: #2e344c;
}

.the-arrow.-left>.shaft:before,
.the-arrow.-left>.shaft:after {
    width: 0;
    background-color: #4c4c4c;
}

.the-arrow.-left>.shaft:before {
    transform: rotate(0);
}

.the-arrow.-left>.shaft:after {
    transform: rotate(0);
}

.the-arrow.-right {
    top: 0;
    transform: translate(50%, 50%);
}

.the-arrow.-right>.shaft {
    width: 1px;
    transition-delay: 0.2s;
}

.the-arrow.-right>.shaft:before,
.the-arrow.-right>.shaft:after {
    width: 6px;
    transition-delay: 0.3s;
    transition: all 0.5s;
}

.the-arrow.-right>.shaft:before {
    transform: rotate(40deg);
}

.the-arrow.-right>.shaft:after {
    transform: rotate(-40deg);
}

.the-arrow>.shaft {
    background-color: #4c4c4c;
    display: block;
    height: 1px;
    position: relative;
    transition: all 0.2s;
    transition-delay: 0;
    will-change: transform;
}

.the-arrow>.shaft:before,
.the-arrow>.shaft:after {
    background-color: #2e344c;
    content: '';
    display: block;
    height: 1px;
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.2s;
    transition-delay: 0;
}

.the-arrow>.shaft:before {
    transform-origin: top right;
}

.the-arrow>.shaft:after {
    transform-origin: bottom right;
}

.animated-arrow {
    display: inline-block;
    color: #2e344c;
    font-size: 1.25em;
    font-style: italic;
    text-decoration: none;
    position: relative;
    transition: all 0.2s;
}

.animated-arrow:hover {
    color: #2e344c;
}

.animated-arrow:hover>.the-arrow.-left>.shaft {
    width: 40px;
    transition-delay: 0.1s;
    background-color: #2e344c;
}

.animated-arrow:hover>.the-arrow.-left>.shaft:before,
.animated-arrow:hover>.the-arrow.-left>.shaft:after {
    width: 8px;
    transition-delay: 0.1s;
    background-color: #2e344c;
}

.animated-arrow:hover>.the-arrow.-left>.shaft:before {
    transform: rotate(40deg);
}

.animated-arrow:hover>.the-arrow.-left>.shaft:after {
    transform: rotate(-40deg);
}

.animated-arrow:hover>.main-arrow {
    transform: translateX(17px);
    transform: translateX(50px);
}

.animated-arrow:hover>.main-arrow>.the-arrow.-right>.shaft {
    width: 0;
    transform: translateX(200%);
    transition-delay: 0;
}

.animated-arrow:hover>.main-arrow>.the-arrow.-right>.shaft:before,
.animated-arrow:hover>.main-arrow>.the-arrow.-right>.shaft:after {
    width: 0;
    transition-delay: 0;
    transition: all 0.1s;
}

.animated-arrow:hover>.main-arrow>.the-arrow.-right>.shaft:before {
    transform: rotate(0);
}

.animated-arrow:hover>.main-arrow>.the-arrow.-right>.shaft:after {
    transform: rotate(0);
}

.animated-arrow>.main-arrow {
    display: flex;
    align-items: center;
    transition: all 0.2s;
}

.animated-arrow>.main-arrow>.text-btn {
    margin: 0 10px 0 0;
    line-height: 1;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.5px;
    font-family: var(--bs-font-rubik);
    color: #2e344c;
    display: inline-block;
}

.animated-arrow>.main-arrow>.the-arrow {
    position: relative;
}