body {
	margin: 0;
    line-height: 1.5;
    /*font-family: meno-banner, serif;*/ 
    font-weight: normal;
    color: #1F2122;
}

.slider-main {
	padding: 24px 48px; 
    background-color: #fcfbf9;
    height: 620px;
}
@media screen and (max-width:768px) {
    .slider-main {
        height: auto;
    }
}
.swiper-hero-slider {
	width: 100%;
    height: 100%; 
}
.animated {
    animation: right_to_left 1s ease;
}
.animated_img {
    animation-name: bottomtoupslide;
    animation-duration: 0.6s;
    animation-delay: 1s;
    animation-fill-mode: backwards;
}

@keyframes bottomtoupslide {
  0% {
    transform: translateY(100%);
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
  } 
  100% {
    transform: translateY(0%);
    border-top-left-radius: 0%;
    border-top-right-radius: 0%;
  }
}

@keyframes right_to_left {
    from {
        margin-left: 20%;
    }
    to {
        margin-left: 0;
    }
}

@keyframes fillBottomToTop {
    0% {
        padding-top: 100%;
        border-top-left-radius: 100%;
        border-top-right-radius: 100%;
        width: 20%; 
        margin-left: 30%;
    }
    10% {
        padding-top: 80%;
        border-top-left-radius: 100%;
        border-top-right-radius: 100%;
        width: 20%;
        margin-left: 30%; 
    }
    25% {
        padding-top: 70%;
        border-top-left-radius: 80%;
        border-top-right-radius: 80%;
        width: 40%;
        margin-left: 25%;
    }
    40% {
        padding-top: 60%; 
        border-top-left-radius: 75%;
        border-top-right-radius: 75%;
        width: 50%; 
        margin-left: 20%;
    }
    50% {
        padding-top: 40%;
        border-top-left-radius: 75%;
        border-top-right-radius: 75%;
        width: 70%;
        margin-left: 15%;
    }
    75% {
        padding-top: 20%;
        border-top-left-radius: 50%;
        border-top-right-radius: 50%;
        width: 80%;
        margin-left: 10%;
    }
    85% {
        padding-top: 10%;
        border-top-left-radius: 40%;
        border-top-right-radius: 40%;
        width: 90%;
        margin-left: 5%;
    }
    100% {
        padding-top: 0;
        border-top-left-radius: 0%;
        border-top-right-radius: 0%;
        width: 100%;
        margin-left: 0%;
    }
}
@media screen and (max-width:768px) {
    @keyframes fillBottomToTop {
        0% {
            padding-top: 90%;
            border-radius: 100%;
            width: 50%; 
            margin-left: 30%;
        }
        10% {
            padding-top: 70%;
            border-radius: 100%;
            width: 50%; 
            margin-left: 30%; 
        }
        25% {
            padding-top: 70%;
            border-radius: 100%;
            width: 50%; 
            margin-left: 25%;
        }
        35% {
            padding-top: 60%; 
            border-top-left-radius: 75%;
            border-top-right-radius: 75%;
            width: 60%; 
            margin-left: 20%;
        }
        50% {
            padding-top: 40%;
            border-top-left-radius: 75%;
            border-top-right-radius: 75%;
            width: 70%;
            margin-left: 15%;
        }
        75% {
            padding-top: 20%;
            border-top-left-radius: 50%;
            border-top-right-radius: 50%;
            width: 80%;
            margin-left: 10%;
        }
        100% {
            padding-top: 0;
            border-top-left-radius: 0%;
            border-top-right-radius: 0%;
            width: 100%;
            margin-left: 0%;
        }
    }

}
.slider-inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: 46px;
    padding: .5rem;
}
.slide-txt {
    width: 55%;
    max-width: 696px;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    justify-content: center;
    row-gap: 4px;
}
.slide-txt .title {
    font-size: 70px;
    line-height: 1.1;
    font-family: sans-serif;
    font-weight: 600;
    color: #1F2122;
    margin: 0;
}
.slide-txt .title .other-letter {
    margin-left: 14px;
}
.slide-txt .txt-space {
    padding: 2.6rem 0 0 3.3rem;
    max-width: 550px;
}
.slide-txt h2 {
    font-family: meno-banner, serif;
    font-weight: normal;
    font-size: 36px;
    line-height: 1.25;
    color: #1F2122;
    margin: 0 0 2.6rem;
}
.slide-txt h4 {
    font-size: 20px;
    font-family: meno-banner, serif;
    font-weight: normal;
    color: #1F2122;
    margin: 2rem 0 0;
}
.btn {
    font-size: 20px;
    font-family: sans-serif;
    font-weight: normal;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all .4s ease-in-out;
}
.btn:is(:hover, :focus, :focus-visible, :focus-within, :active) {
    border-radius: 0px;
}
.btn-primary {
    color: #ffffff;
    background-color: #222222;
    border-color: #222222;
}
.btn-primary:is(:hover, :focus, :focus-visible, :focus-within, :active) {
    color: #ffffff;
    background-color: #222222;
    border-color: #222222;
}
.slide-img {
    width: 45%;
    max-height: 600px;
    height: 600px;
}

@media screen and (max-width:768px) {
    .slide-img {
        max-height: 400px;
        height: 400px;
    }
}

.slide-pos-img { 
    left: 50%;
    transform: translateX(-50%);
}

.slide-img img {
    width: 100%; /* or any custom size */
   /* height: 100% !important; 
    object-position: center;
    object-fit: cover;*/
}

/*responsive-start*/ 
@media screen and (max-width:768px) {
    .slider-main {padding: 20px 24px;}
    .slide-txt {width: 100%;}
    .slide-img {width: 100%;}
    /*.slide-img img {aspect-ratio: 1/1;}*/
	
	
	
	
    .slide-txt .title {font-size: 30px;}
    .slide-txt .txt-space {padding: 24px 0 0 0;}
    .slide-txt .title~.title {padding-left: 2.6rem;}
    .slide-txt h2 {font-size: 20px;margin-bottom: 24px;}
    .slide-txt .txt-space .btn {font-size: 16px;display: table;margin: 0 auto;}
    .slide-txt h4 {font-size: 16px;text-align: center;margin-top: 15px;}
}
/*responsive-end*/