* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    background-color: #1f2029;
    overflow-x: hidden;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.showcaseP .loader {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #f74843;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.showcaseP {
    position: relative;
    right: 0;
    width: 100%;
    height: 72vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    animation: fadeInBackground 2s ease forwards;
    background-repeat: no-repeat;
    border-bottom: 1px solid #f74843;
    background-position: center;
    background-color: #000;
    background-size: cover;
    text-align: center;
    transition: 0.5s;
    z-index: 2;
}

@keyframes fadeInBackground {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.showcaseP .text>* {
    opacity: 0;
    animation: fadeInText 2s 0.3s ease forwards;
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        font-size: 15px;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;

        transform: translateX(0);
    }
}

.redline {
    height: 1px;
    width: 100%;
    background: #f74843;
}

.text {
    position: relative;
    z-index: 10;
}

.text h2 {
    padding-top: 40vh;
    font-size: 3em;
    font-weight: 800;
    color: #f74843;
    line-height: 1em;
}

/*About us page && privacy policy*/
#aboutprivacy {
    padding-bottom: 5%;
}

.aboutsection {
    width: 100%;
    background-color: rgba(38, 38, 38, 255);
    padding-top: 5%;
}

.aboutcont {
    width: 60%;
    background-color: rgba(38, 38, 38, 255);
    margin-left: 18%;
    padding-bottom: 3%;
}

.aboutcont h1 {
    text-align: center;
    font-size: 2em;
    font-weight: 500;
    margin-top: 5%;
    color: #ddddddcc;
}

.aboutcont p {
    text-align: left;
    font-size: 1.2em;
    margin-left: 3%;
    padding-top: 2%;
    color: #ddddddcc;
}

.aboutcont a {
    color: #f74843;
}

.aboutcont img {
    width: 20%;
    border-radius: 50%;
    margin-left: 20%;
    margin-top: 8%;
    border: 2px solid #f74843;
    margin-bottom: 15%;
}

@media(max-width: 767px) {
    body .text h2 {
        padding-top: 40vh;
        font-size: 2.5em;
        font-weight: 800;
        color: #f74843;
        line-height: 1em;
    }

    body .aboutsection {
        width: 100%;
        background-color: rgba(38, 38, 38, 255);
        padding-top: 5%;
    }

    body .aboutcont {
        width: 80%;
        background-color: rgba(38, 38, 38, 255);
        margin-left: 10%;
    }

    body .aboutcont h1 {
        text-align: center;
        font-size: 2em;
        font-weight: 500;
        margin-top: 5%;
        color: #ddddddcc;
    }

    body .aboutcont p {
        text-align: left;
        font-size: 1.2em;
        margin-left: 3%;
        padding-top: 5%;
        margin-bottom: 10%;
        color: #ddddddcc;
    }

    body .aboutcont img {
        width: 80%;
        border-radius: 50%;
        margin-left: 10%;
        margin-top: 10%;
        border: 2px solid #f74843;
        margin-bottom: 25%;
    }
}

@media (max-width: 991px) {

    .showcaseP,
    .showcaseP header {
        padding: 40px;
    }

    .text h2 {
        font-size: 3em;
    }
}

@media only screen and (orientation: landscape) and (min-width: 375px) and (max-width: 918px) {
    body .showcaseP {
        position: relative;
        right: 0;
        width: 100%;
        height: 100vh;
        padding: 100px;
        display: flex;
        justify-content: space-between;
        animation: fadeInBackground 2s ease forwards;
        background-repeat: no-repeat;
        border-bottom: 1px solid #f74843;
        background-position: center;
        background-color: #000;
        background-size: cover;
        text-align: center;
        transition: 0.5s;
        z-index: 2;
    }
}