@import url(fonts.css);
header{
    position: relative;
    z-index: 10;
}
header a{
    text-decoration: none;
    color: #fff;
}
.box {
    min-height: calc(100vh - 63.2px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    font-family: 'Inter';
    text-align: center;
    color: #333333;
    position: relative;
}
.box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.8;
    z-index: 2;
}
/* .box.right::before{
    opacity: 0.95;
} */
.box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/left-bg.webp') center center / cover no-repeat;
    opacity: 0;
    z-index: 1;
}
.box.right::after{
    background: url('../img/ryt-bg.webp');
    background-position: center;
}
.box:hover::after {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}
.box.right,
.box.right::before{
    background-color: #333333;
}
.box .split-landing-page-content {
    position: relative;
    z-index: 3;
    padding: 20px;
}
.box h1 {
    font-size: 64px;
    font-weight: 900;
    color: #FF4A00;
}
.box h1 span {
    color: #333333;
}
.box.right{
    color: #fff;
}
.box.right h1 span{
    color: #fff;
}
.box p {
    font-size: 22px;
    font-weight: 400;
}
.stroked-button {
    display: inline-block;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    border: 2px solid #333333;
    border-radius: 76px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    position: relative;
    padding-right: 60px;
}
.stroked-button.dark:hover{
    background-color: #333333;
    color: #fff;
}
.stroked-button.light:hover{
    background-color: #fff;
    color: #333333;
}
.stroked-button::before,
.stroked-button::after {
  content: "->";
  display: block;
  font-family: Inter;
  font-size: inherit;
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translate(0%, -50%);
  transition: all 0.5s cubic-bezier(0.25, 0.25, 0.08, 1.08);
}
.stroked-button.font-reg::before,
.stroked-button.font-reg::after {
  font-weight: 300;
}
.stroked-button::before {
  opacity: 0;
  transform: translate(-100%, -50%);
}
.stroked-button:hover::before {
  opacity: 1;
  transform: translate(0, -50%);
}
.stroked-button:hover::after {
  opacity: 0;
  transform: translate(100%, -50%);
}
.stroked-button span{
    margin-left: 5px;
    transform: translate(0%, -50%);
  transition: all 0.5s cubic-bezier(0.25, 0.25, 0.08, 1.08);
}
.stroked-button:hover span{
}
.stroked-button.light{
    border-color: #fff;
    color: #fff;
}

/*----------------------------------
    MEDIUM LAYOUT: 1280px
-----------------------------------*/


@media only screen and (min-width: 1024px) and (max-width: 1200px) {

}

/*----------------------------------
    TABLET LAYOUT: 768px
------------------------------------*/

@media (min-width: 768px) and (max-width: 1023px) {
    .box {
        min-height: calc(100vh - 623.2px);
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .box {
        min-height: calc(50vh - 30px);
        padding: 20px;
    }
    .box h1 {
        font-size: 36px;
    }
    .box .split-landing-page-content{
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
} 

/*----------------------------------
    MOBILE LAYOUT: 320px
-----------------------------------*/

@media only screen and (max-width: 767px) {
    .box{
        padding: 8px;
    }
    .box p {
    font-size: 14px;
    }
}
