.contentWrapper {
    position: relative;
    margin-top: 200px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.contentWrapper .loader {
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translate(550px, -40px);
    opacity: 0;
    transition-duration: .6s;
}
.contentWrapper .loader.active {
    transition-delay: 1.1s;
    opacity: 1;
    transform: translate(510px, -40px);
}
.contentWrapper .imgWrapper {
    width: 500px;
    height: 840px;
    margin-right: 66px;
}
.contentWrapper .imgWrapper img {
    position: absolute;
    width: 500px;
    border-radius: 16px;
    opacity: 0;
}
.contentWrapper .imgWrapper.active img {
    animation: fade 6s infinite;
}
.contentWrapper .imgWrapper.active img:nth-child(1) {
    animation-delay: .9s;
}
.contentWrapper .imgWrapper.active img:nth-child(2) {
    animation-delay: 3.9s;
}

.contentWrapper .textWrapper {
    width: 500px;
}
.contentWrapper .textWrapper h1 {
    font-size: 61px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 36px;
    margin-left: -8px;
    opacity: 0;
    transition-duration: .6s;
    transform: translateX(40px);
}
.contentWrapper .textWrapper.active h1 {
    transition-delay: 1.2s;
    opacity: 1;
    transform: translateX(0px);
}
.contentWrapper .textWrapper p:nth-child(2) {
    font-size: 26px;
    font-weight: 400;
    color: #231f20;
    line-height: 32px;
    margin-bottom: 38px;
    opacity: 0;
    transition-duration: .6s;
    transform: translateX(40px);
}
.contentWrapper .textWrapper.active p:nth-child(2) {
    transition-delay: 1.3s;
    opacity: 1;
    transform: translateX(0px);
}
.contentWrapper .textWrapper p:nth-child(3) {
    font-size: 17px;
    font-weight: 300;
    color: #7c7c7c;
    text-align: justify;
    line-height: 31px;
    opacity: 0;
    transition-duration: .6s;
    transform: translateX(40px);
}
.contentWrapper .textWrapper.active p:nth-child(3) {
    transition-delay: 1.4s;
    opacity: 1;
    transform: translateX(0px);
}
.contentWrapper > img {
    position: absolute;
    top: 103%;
    width: 161px;
    left: 50%;
    transform: translateX(380px);
    opacity: 0;
    transition-duration: .6s;
}
.contentWrapper > img.active {
    transition-delay: .3s;
    opacity: 1;
}


/**** Responsive CSS Code ****/
/* 0~767 768~1279 1280~1980*/

/** 0~768 **/
@media (max-width: 768px) {
  
}
/** 768~1280 **/
@media (min-width: 768px) and (max-width: 1279px) {
.contentWrapper .imgWrapper {
    width: 300px;
    height: 840px;
    margin-right: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.contentWrapper .imgWrapper img {
    left: 50%;
    transform: translateX(-50%);
}
.contentWrapper .textWrapper {
    width: 400px;
}
.contentWrapper .textWrapper h1 {
    font-size: 48px;
    margin-bottom: 30px;
}
.contentWrapper .textWrapper p:nth-child(2) {
    font-size: 19px;
    margin-bottom: 23px;
}
.contentWrapper .textWrapper p:nth-child(3) {
    font-size: 16px;
    line-height: 28px;
}
.contentWrapper > img {
    transform: translateX(237px);
    width: 130px;
}
.contentWrapper .loader {
    transform: translate(340px, -40px);
}
.contentWrapper .loader.active {
    transform: translate(300px, -40px);
}


}