* {
    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: #c4c3ca;
    background-color: #1f2029;
    overflow-x: hidden;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.showcase .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);
    }
}

.showcase {
    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;
    }
}

.showcase .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;
}

/*Contact page*/
.CTcont {
    width: 100%;
    background-color: rgba(38, 38, 38, 255);
}

.contactcontent {
    width: 100%;
    background: rgba(38, 38, 38, 255);
    opacity: 1;
}

.cont {
    margin-top: -4.5%;
    width: 90%;
    position: relative;
    background: rgba(38, 38, 38, 255);
    margin-left: 100px;
}

#initials1 {
    font-size: 22px;
    font-weight: 400;
    text-align: left;
    color: #c4c3ca;
    padding-bottom: 5px;
    padding-top: 5px;
    display: block;
}

#initials2 {
    font-size: 22px;
    font-weight: 400;
    text-align: right;
    color: #c4c3ca;
    padding-top: 5px;
    padding-bottom: 5px;
    display: block;
}

.cont h2 {
    color: #c4c3ca;
    font-size: 22px;
    padding-bottom: 7px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 8px;
    text-align: center;
}
.cont h3 {
    color: #c4c3ca;
    font-weight: 400;
}

.cont img {
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    border-radius: 10px;
    align-items: center;
    position: relative;
}

.rowC {
    margin-top: 5%;
    display: flex;
    justify-content: space-evenly;
}

.double {
    flex-basis: 22%;
    border-radius: 5px;
    margin-bottom: 5%;
    margin-top: 5%;
    text-align: center;
    display: inline-block;
    border: 2px solid #f74843;
    box-shadow: 0 0 20px 0px rgba(247, 72, 67, 0.6);
    padding: 20px 12px;
    transition: 0.5s;
}

.double a {
    margin-top: 5px;
    line-height: 30px;
    padding-left: 4px;
    color: #c4c3ca;
    font-size: 17px;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
}

.double a:hover {
    color: #fff;
    transition: 0.3s;
}

.double .fa-phone {
    color: #fff;
}

.double .fa-envelope {
    color: #fff;
}

#diamond1 {
    text-align: left;
    color: #c4c3ca;
    display: block;
    padding-left: 2px;
    padding-top: 3px;
    font-size: 20px;
}

#diamond2 {
    text-align: right;
    color: #c4c3ca;
    display: block;
    padding-right: 2px;
    padding-top: 3px;
    font-size: 20px;
}

.txtdiv {
    width: 100%;
    text-align: center;
    color: #fff;
    padding-bottom: 5%;
    line-height: 25px;
    padding-top: 5%;
    text-decoration: 2px solid #f74843 underline;
}

.txtdiv .fa-map-marker {
    width: 20px;
    color: #f74843;
    padding-right: 5px;
    position: relative;
}

.txtdiv .fa-id-badge {
    width: 20px;
    color: #f74843;
    padding-right: 5px;
    position: relative;
}

.txtdiv .fa-envelope {
    width: 20px;
    color: #f74843;
    padding-right: 5px;
    position: relative;
}

.txtdiv a {
    margin-top: 5px;
    line-height: 30px;
    padding-left: 4px;
    color: #fff;
    font-size: 17px;
    text-decoration: 2px solid #f74843 underline;
    transition: 0.3s;
    position: relative;
}

.txtdiv a:hover {
    color: #f74843;
    transition: 0.3s;
}

@media(max-width: 767px) {
    body .contactcontent {
        width: 100%;
        background: rgba(38, 38, 38, 255);
        padding-right: 0;
    }

    body .cont {
        width: 68%;
        padding-top: 25%;
        margin-top: 0;
        position: relative;
        background: rgba(38, 38, 38, 255);
    }

    body .rowC {
        flex-direction: column;
    }

    body .double {
        position: relative;
        flex-basis: 22%;
        font-size: 1em;
        border-radius: 5px;
        margin-bottom: 5%;
        margin-top: 5%;
        margin-left: -28%;
        text-align: center;
        display: inline-block;
        border: 2px solid #f74843;
        box-shadow: 0 0 20px 0px rgba(247, 72, 67, 0.6);
        padding: 20px 12px;
        transition: 0.5s;
    }

    body .double a {
        font-size: 1.1em;
    }

    body .cont img {
        padding-top: 20px;
        padding-bottom: 20px;
        margin-left: 0;
        width: 80%;
        border-radius: 10px;
        align-items: center;
        position: relative;
    }

    body .txtdiv {
        width: 100%;
        text-align: center;
        color: #fff;
        margin-left: -15%;
        padding-bottom: 20%;
        line-height: 25px;
        padding-top: 20%;
        text-decoration: 2px solid #f74843 underline;
    }
}

@media only screen and (orientation: landscape) and (min-width: 375px) and (max-width: 918px) {
    body .showcase {
        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;
    }
}

@media (max-width: 991px) {

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

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

    .text h3 {
        font-size: 2em;
    }
}