/* Common Styles */
@font-face {
    font-family: Impact;
    src: url(../fonts/Impact.eot);
    src: url(../fonts/Impact.eot?#iefix) format("embedded-opentype"), url(../fonts/Impact.woff2) format("woff2"), url(../fonts/Impact.woff) format("woff"), url(../fonts/Impact.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    list-style-type: none;
    font-family: Impact, Arial, sans-serif;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

.bg-Color {
    background: radial-gradient(at 57% 4%, rgb(64, 16, 96), rgb(22, 22, 31));
}

.section-heading {
    width: 50rem;
    font-family: Impact, Arial, sans-serif;
    font-size: 10rem;
    font-weight: 300;
    color: #ddd;
    margin-right: 4rem;
}

.section-heading-line {
    width: 15rem;
    height: 0.2rem;
    background-color: #ddd;
}

/* End of Common Styles */

.av-navbar {
    padding: 5px !important;
}

.av-navbar_brand {
    width: 100% !important;
}

.av-navbar_brand img {
    height: 75px;
}

.av-navbar__language-switcher__dropdown-languages {
    padding-right: 15px;
}

.menuOpen {
    padding: 0 !important;
}

/* Section 1 */
.section-1 {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 2rem;
}

.home{
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner {
    width: 35%;
}

.banner-heading {
    width: 100%;
    perspective: 50rem;
}

.bannerPic {
    width: 55%;
    opacity: 0;
    animation: fadeAnimation 1s 0.5s forwards;
}

.bannerPic img {
    width: 100%;
}

@keyframes fadeAnimation {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

.banner-heading span {
    display: block;
    text-align: left;
    font-family: Impact, Arial, sans-serif;
    font-size: 6rem;
    font-weight: 400;
    color: #fed201;
    text-shadow: 0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.5);
    width: 100%;
    justify-content: center;
    opacity: 0;
    letter-spacing: 0.7rem;
    animation: fadeAnimation 1s 0.5s forwards;
}

.banner-paragraph {
    font-size: 2.2rem;
    font-weight: 100;
    color: #fff;
    text-align: left;
    padding: 1rem 0.5rem;
    /*box-shadow: 1rem 1rem 5rem rgba(0, 0, 0, 0.5);*/
    opacity: 0;
    animation: fadeAnimation 1s 1s forwards;
    margin-bottom: 0;
}

.bannerBtn {
    display: flex;
    align-items: center;
    justify-content: start;
}

.banner-btn {
    width: 20rem;
    height: 6rem;
    background: #000000;
    /*background: linear-gradient(to right, #351250, #2b1340);*/
    color: #fff;
    font-size: 2rem;
    text-transform: uppercase;
    border-radius: 1.3rem;
    border: 0.1rem solid #000000;
    box-shadow: 1rem 2rem 3rem rgba(0, 0, 0, 0.5);
    text-shadow: 0.6rem 0.3rem 0.2rem rgba(0, 0, 0, 0.4);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    animation: fadeAnimation 1s 1.5s forwards;
    position: relative;
    overflow: hidden;
    float: left;
    margin-top: 2rem;
    clear: both;
}

.banner-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, #fff, transparent);
    position: absolute;
    top: 0;
    left: -100%;
    transform: skewX(-30deg);
    transition: left 0.5s;
}

.banner-btn:hover::before {
    left: 100%;
}

.banner-btn:last-child {
    margin-left: 3rem;
}

/* End of Section 1 */

/* Section 2 */
.section-2 {
    width: 100%;
    height: 50vh;
    /*background-color: #222020;*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10rem;
    position: relative;
}

.img-wrapper {
    display: flex;
    align-items: center;
    width: 100rem;
    height: 50rem;
    position: absolute;
    top: 5rem;
    right: 15rem;
    box-shadow: 3rem 3rem 3rem rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
}

.section-2-paragraph {
    width: 100rem;
    right: 15rem;
    font-size: 2.5rem;
    color: #ddd;
    border-top: 0.3rem double #aaa;
    border-bottom: 0.3rem double #aaa;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    text-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0.7);
    line-height: 1.5;
}

.fa-quote-left {
    align-self: flex-start;
    font-size: 5rem;
    margin-bottom: 2rem;
}

.fa-quote-right {
    align-self: flex-end;
    font-size: 5rem;
}

/* End of Section 2 */

/* Section 4 */
.section-3 {
    width: 100%;
    height: 50vh;
    /*background-color: #171718;*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10rem;
}

.contact-wrapper {
    width: 100rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    right: 15rem;
}

.contact-details {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.contact-details div {
    width: 40rem;
    text-align: center;
    margin: 4rem;
}

.contact-details i {
    font-size: 5rem;
    color: #7a1010;
}

.contact-details h3 {
    font-family: "MADE Soulmaze", sans-serif;
    font-size: 4rem;
    margin: 2rem 0;
    color: #ccc;
}

.contact-details p {
    font-size: 3rem;
    color: #aaa;
}

/* End of Section 4 */

/* Footer */
.footer {
    width: 100%;
    height: 2rem;
    z-index: 0;
    /*background-color: #202122;*/
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10rem;
}

.footer-nav a {
    font-family: "MADE Soulmaze", sans-serif;
    font-size: 2rem;
    color: #ccc;
    margin-right: 3rem;
    letter-spacing: 0.1rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #862323;
}

.copyright {
    font-size: 1rem;
    color: #ddd;
}

/* End of Footer */

/* Responsive */
@media (max-width: 1800px) {
    .img-wrapper {
        width: 90rem;
        height: 45rem;
        right: 10rem;
    }

    .section-2-paragraph {
        width: 80rem;
        right: 10rem;
    }

    .contact-wrapper {
        width: 80rem;
        right: 10rem;
    }
}

@media (max-width: 1650px) {
    html {
        font-size: 57%;
    }

    .img-wrapper {
        width: 85rem;
        height: 40rem;
        right: 5rem;
    }

    .section-2-paragraph {
        width: 75rem;
        right: 5rem;
    }

    .contact-wrapper {
        width: 75rem;
        right: 5rem;
    }

    .contact-details h3 {
        font-size: 3rem;
    }

    .contact-details p {
        font-size: 2rem;
    }
}

@media (max-width: 1500px) {
    .section-heading-line {
        display: none;
    }
}

@media (max-width: 1400px) {
    html {
        font-size: 45%;
    }

    .section-2,
    .section-3 {
        flex-direction: column;
        justify-content: center;
    }

    .section-2 {
        justify-content: center;
    }

    .img-wrapper {
        top: 20%;
        left: 50%;
        transform: translateX(-50%);
        width: 80rem;
    }

    .section-heading {
        width: auto;
        height: 25rem;
    }

    .section-2-paragraph {
        position: relative;
        width: 80rem;
        right: 0;
    }

    .contact-wrapper {
        position: relative;
        width: 80rem;
        right: 0;
    }

    .section-3 {
        padding: 5rem 0;
    }
}

@media (max-width: 900px) {
    html {
        font-size: 40%;
    }

    .footer {
        padding: 0 5rem;
    }

    .footer-nav a {
        font-size: 1.8rem;
    }
}

@media (max-width: 700px) {
    html {
        font-size: 35%;
    }

    .av-navbar_brand img {
        height: 10rem !important;
    }

    .contact-details div {
        margin: 3rem 2rem;
    }

    .footer {
        flex-direction: column;
        justify-content: center;
    }

    .footer-nav {
        margin-bottom: 2rem;
    }

    .contact-details {
        display: block;
        margin: auto;
    }

    .contact-details div {
        width: auto;
    }

    .contact-details h3 {
        font-size: 5rem;
    }

    .contact-details p {
        font-size: 4rem;
    }
}

@media (max-width: 500px) {
    html {
        font-size: 30%;
    }

    .home{
        flex-wrap: wrap;
    }

    .banner {
        width: 60rem;
    }

    .bannerPic {
        width: 100%;
    }

    .img-wrapper {
        width: 60rem;
    }

    .section-2-paragraph {
        width: 60rem;
    }

    .contact-form {
        width: 60rem;
    }
}

/* End of Responsive */
