html {
    direction: ltr !important;
    font-weight: 800;
    font-style: bold;
}

body {
    font-family: var(--body-font);
    direction: ltr !important;
}
/*..................*/
#hero {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80vh;
    box-sizing: border-box;
}
.slider {
    position: absolute;
    z-index: 3;
    right: 20%;
    margin-top: 50px;
}
@media only screen and (max-width: 768px) {
    .slider {
        position: relative;
        margin: 0 auto;
        width: 100%;
        display: block;
        right: 0;
    }
}

/*.......Slider...........*/

.sb-box {
    position: absolute;
    bottom: -4vh;
    height: 14%;
    width: 27%;
    left: 1vw;
    z-index: 999;
    background-color: var(--main-color);
}

@media only screen and (max-width: 768px) {
    .sb-box {
        bottom: 3vh;
        left: 14vw;
    }
}

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
}

.carousel-control-next,
.carousel-control-prev {
    width: 40%;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon {
    opacity: 1;
    height: 100px;
    background-repeat: no-repeat;
    float: left;
}

.carousel-control-next-icon {
    opacity: 1;
    height: 100px;
    background-repeat: no-repeat;
    float: right;
}

/*.......Sec Two...........*/
.lrb {
    position: absolute;
    width: 2.5vw;
    height: 80vh;
    background-color: var(--main-color);
    left: 0;
}

.lgb {
    position: absolute;
    width: 2.5vw;
    background-color: var(--secondary-color) !important;
    left: 0;
    height: 10vw;
}

.red-sec {
    position: absolute;
    height: 80vh;
    background-color: var(--main-color);
    width: 30%;
    z-index: 2;
    right: 0;
}

.grey-sec {
    position: absolute;
    height: 80vw;
    background-color: #f4f4f4;
    width: 60%;
    z-index: 2;
    right: 40%;
}

@media only screen and (max-width: 768px) {
    .grey-sec {
        width: 100% !important;
        display: block;
        width: 100%;
        right: 0;
        left: 0;
        height: 100vh;
    }
}
.rbg {
    background-image: url(http://lp3.1a5.myftpupload.com/wp-content/uploads/2019/02/memphis-bg.jpg);
    background-repeat: no-repeat;
    background-position: cover;
    z-index: -1;
}

/*.......Intro Text...........*/

.intro-box {
    right: 58%;
    position: absolute;
    text-align: left;
    z-index: 999;
    margin-top: 50px;
    padding-left: 3rem !important;
    margin-left: 3rem !important;
}

.in-txt {
    font-size: 46px;
    letter-spacing: -0.01em;
    font-weight: 800;
    line-height: 3.4rem;
    color: var(--secondary-color);
    width: 70%;
}
.in-title {
    margin-bottom: 2vh;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 18px;
}
.in-title:after {
    position: absolute;
    content: "";
    background: var(--main-color);
    height: 3px;
    width: 10%;
    display: block;
    opacity: 0.8;
}

.in-b-txt {
    margin-bottom: 6vh;
    font-weight: 400;
    color: var(--secondary-color);
    font-size: 16px;
    width: 60%;
}

/*.........right Text...............*/

.l-box {
    right: 12vw;
    position: absolute;
    height: 100%;
    width: 20%;
    text-align: right;
    z-index: 999;
}


.s-down {
    position: absolute;
    text-align: left;
    top: 50%;
    right: -3.5vw;
    width: 100%;
    line-height: 1;
    z-index: 5;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    transform: rotate(-90deg);
}

.s-down a {
    color: #f4f4f4 !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 100;
    line-height: 1.4rem;
    text-decoration: none;
    display: block;
    position: relative;
    padding-bottom: 0.8rem;
    overflow: hidden;
}

.s-down a:hover {
    font-size: 1.0rem;
}

.s-down a:before {
    position: absolute;
    /* top: 25%; */
    right: 11vw;
    width: 40%;
    height: 1px;
    background: #f4f4f4;
    /* content: " "; */
    transform: rotate(-90deg);
}


/*.......btn..........*/

.button-block {
    position: absolute;
    right: 30%;
    margin-top: 10px;
    z-index: 7;
    transition: all 0.25s ease-out;
}

.button-block {
    display: inline-block;
    padding: 1em 1.3em 1em;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: cubic-bezier(0.22, 0.61, 0.36, 1);
    text-decoration: none;
}

.button-block--brand {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: 2px 2px 0;
}

.button-block--brand:hover {
    border: 2px solid var(--main-color);
    color: var(--main-color);
    box-shadow: -2px -2px 0;
    -webkit-transition: color 0.15s ease-out;
    -moz-transition: color 0.15s ease-out;
    transition: color 0.15s ease-out;
    transition: all 0.4s;
    text-decoration: none !important;
}

.button-block--brand:hover:after {
    content: "";
    position: absolute;
    right: 14%;
    /* bottom: 13px; */
    width: 80%;
    background: url(https://promo-theme.com/rolly/wp-content/themes/rolly/images/nav-hover.png) 50% repeat;
    background-size: 12px auto;
    height: 12px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: -1;
}
.animated-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/Front/Img/icons/bg-org-blue-opt.svg');
    background-size: cover;
    animation: fadeInOut 15s linear infinite;
    transform: scaleX(-1);
}
.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/Front/Img/icons/bg-org-blue-opt.svg');
    background-size: cover;
    transform: scaleX(-1);
}
/* .statistics-section{
    background: left;
    background-color: var(--main-color);
    background-image: url(/Front/Img/icons/18-1.png);
    background-size: cover;
    background-repeat:repeat-x;
} */
/*text animation */
.text-hero {
    font-size: 24px;
    overflow: hidden;
    white-space: nowrap;
    border-right: .15em solid var(--main-color);
    border-bottom: .15em solid var(--secondary-color);
    animation: typing 15s steps(20, end) infinite;
}
@keyframes typing {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
    90%, 100% {
        visibility: visible;
    }
    100%, 110% {
        visibility: hidden;
    }
}
/* responsive */
@media (max-width: 768px) {
    .button-block {
        display: inline-block;
        position: relative;
        margin: 1.5em 0px;
        right: 0%;
    }
}

