@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    outline: none;
}

body {
    background: #fff;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 900;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container {
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
}

video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 700;
}

.overlay {
    position: absolute;
    opacity: 0.7;
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #03a9f4;
    mix-blend-mode: overlay;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    z-index: 800;
}

.overlay {
    position: absolute;
}


/* HEADER */
.toggle {
    position: relative;
    width: 65px;
    height: 65px;
    background: url(https://i.ibb.co/HrfVRcx/menu.png);
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: center;

    background-color: rgb(31, 162, 238);
    border-radius: 50%;

    cursor: pointer;
    transition: 0.2s;
    filter: invert(0);
}

.toggle.hover {
    background-color: rgb(31, 162, 238);
    border-radius: 50px;
}

.toggle.active {
    background: url(https://i.ibb.co/rt3HybH/close.png);
    background-repeat: no-repeat;
    background-size: 25px;
    background-color: rgb(31, 162, 238);
    border-radius: 50px;
    background-position: center;
    cursor: pointer;
}

.showcase {
    position: relative;
    right: 0;
    width: 100%;
    min-height: 90vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    background-color: rgba(0, 0, 0, 0.02);
    transition: 0.5s;
    z-index: 900;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.showcase.active {
    right: 300px;
}

.showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    position: relative;
    z-index: 900;
}

.logo-text h2 {
    font-size: 6em;
    font-weight: 800;
    color: #fff;
    line-height: 1em;
    text-transform: uppercase;
}

.logo-text img {
    display: flex;
    max-width: 60%;
    height: auto;
    align-items: center;
}

.logo-text h3 {
    font-size: 4em;
    font-weight: 500;
    color: #fff;
    line-height: 1em;
    text-transform: uppercase;
}

.logo-text p {
    font-size: 1.2em;
    color: #000;
    margin: 20px 0;
    font-weight: 400;
    max-width: 700px;
}

.social {
    position: absolute;
    z-index: 900;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social li {
    list-style: none;
}

.social li a {
    display: inline-block;
    margin-right: 20px;
    filter: invert(1);
    transform: scale(0.5);
    transition: 0.5s;
}

.social li a:hover {
    transform: scale(0.5) translateY(-15px);
}

.menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    display: flex;
    justify-content: center;
    background-position: center;
    background-size: cover;
    align-items: center;
}

.menu ul {
    position: relative;
}

.menu ul li {
    padding-bottom: 30px;
    list-style: none;
}

.menu ul li a {
    text-decoration: none;
    font-size: 30px;
    color: #111;
}

.menu ul li a:hover {
    color: #03a9f4;
}

/* SECTIONS 1 */
.about {
    min-height: 80vh;
    display: flex;
    position: relative;
}

.about1 {
    background-color: rgb(244, 244, 244);
}

.parent {
    display: flex;
}

.item {
    width: 50%;
    padding: 2em;
    min-height: 500px;
}

.last {
    /* margin: 50px 50px 0 0; */
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;

    text-align: justify;
    text-justify: inter-word;
    position: relative;
    color: #222;
}

.title {
    padding: 20px 20px 20px 0;
    font-size: 1.8em;
    font-weight: bolder;
    color: #1fa2ee;
    -webkit-font-smoothing: antialiased;
}

.title-body {
    font-size: 20px;
    line-height: 36px;
    letter-spacing: .03em;
    -webkit-font-smoothing: antialiased;
}

.illustration {
    margin-left: 50px;
    max-width: 100%;
    height: auto;
}

.illustration1 {
    background: url('../img/illustrations/Us.png') left bottom no-repeat;
}

.illustration2 {
    background: url('../img/illustrations/Ours.png') left bottom no-repeat;
}

.sectionHighlight {
    position: absolute;
    top: -30px;
    left: 10px;
    color: rgba(194, 194, 194, 0.692);
    font-size: 10em;
    font-weight: bolder;
}

/* LINKS */
.links {
    display: inline-block;
    font-size: 1.0em;
    background: #fff;
    padding: 13px 30px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    color: #111;
    margin-top: 20px;
    letter-spacing: 1px;
    transition: 0.2s;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
        0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.links:hover {
    background: rgb(240, 240, 240);
    letter-spacing: 3px;
}

.links:active {
    letter-spacing: 4px;
    color: white;
    background: rgb(219, 219, 219);
}

.companyLogo {
    width: 40%;
    height: auto;
    padding: 20px 20px 20px 0;
    -webkit-smoothing: antialiased;
}

/* RESPONSIVENESS */
@media screen and (max-width: 1300px) {
    .about {
        height: auto;
        padding: 10px;
    }

    .parent {
        flex-direction: column-reverse;
    }

    .last {
        position: relative;
        padding-top: min(150px, 50%);
    }

    .item {
        width: auto;
        min-height: 200px;
    }

    .illustration {
        margin: 0;
    }

    .sectionHighlight {
        opacity: 0.5;
    }

    .social li a {
        display: inline-block;
        margin-right: 20px;
        filter: invert(1);
        transform: scale(0.7);
        transition: 0.5s;
    }

    .social li a:active {
        transform: scale(0.9) translateY(-15px);
    }

    .companyLogo {
        width: 250px;
        height: auto;
    }
}

@media (max-width: 991px) {

    .about-us {
        width: 100%;
    }

    /*.showcase {
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }

    .overlay {
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    } */

    .about {
        flex-direction: row;
    }

    .showcase,
    .showcase header {
        padding: 40px;
    }

    .text h2 {
        font-size: 3em;
    }

    .text h3 {
        font-size: 2em;
    }

    .logo-text img {
        display: flex;
        max-width: 100%;
        height: auto;
        align-items: center;
    }
}

@media screen and (max-width: 900px) {
    .title {
        text-align: left;
    }

    .illustration {
        width: 100%;
        display: none;
    }

    .last1 {
        position: relative;
        /* padding-top: min(150px, 50%); */
    }
}

@media screen and (max-width: 768px) {
    .links {
        left: 50%;
        border-radius: 25px;
    }

    button {
        border-radius: 25px;
    }
}

@media screen and (max-width: 600px) {
    .about {
        height: auto;
    }

    .parent {
        flex-direction: column-reverse;
    }

    .item {
        width: auto;
        min-height: 200px;
    }
}

/* CONTACT */
.section5 {
    background: url('../img/Images/pexels-mia-von-steinkirch-3689659.jpg');
    display: flex;
    flex-direction: column;
}

.form {
    width: 540px;
    height: 550px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 40px -10px #000;
    margin: calc(50vh - 220px) auto;
    /* margin-left: 100px;
    margin-top: 100px; */
    padding: 20px 30px;
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
    position: relative
}

.contactText {
    margin: 10px 0;
    padding-bottom: 10px;
    width: 200px;
    color: rgb(31, 162, 238);
    /* border-bottom: 3px solid #000000; */
    font-size: 1.8em;
}

input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background: none;
    font-size: 16px;
    outline: none;
    resize: none;
    border: 0;
    transition: all .5s;
    border-bottom: 1px solid #000000
}

input:focus {
    border-bottom: 1px solid rgb(31, 162, 238);
}

.formP:before {
    content: attr(type);
    display: block;
    margin: 28px 0 0;
    font-size: 20px;
    color: #000000
}

.g-recaptcha {
    padding-top: 20px;
}

#g-recaptcha-response {
    display: block !important;
    position: absolute;
    margin: -50px 0 0 0 !important;
    z-index: -999999;
    opacity: 0;
}

button {
    float: left;
    font-size: 1.0em;
    background: #fff;
    padding: 13px 30px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    color: #111;
    margin-top: 20px;
    letter-spacing: 1px;
    transition: 0.2s;
    cursor: pointer;
    border: 0px solid #000000;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
        0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: all .3s
}

button:hover {
    background: rgb(240, 240, 240);
    letter-spacing: 3px;
}

button:active {
    animation: buttonStatus 2s ease forwards;
}

#buttonStatus.success {
    letter-spacing: 4px;
    background: rgb(211, 250, 153);
}

#buttonStatus.error {
    background-color: rgb(251, 92, 78);
    color: white;
    animation: buttonStatus 3s ease forwards;
}

@keyframes buttonStatus {
    0% {
        opacity: 1;
        pointer-events: all;
    }

    90% {
        opacity: 1;
        background-color: rgb(211, 250, 153);
        pointer-events: all;
    }

    100% {
        color: black;
        background: rgb(255, 255, 255);
        pointer-events: all;
    }
}

.contactBox {
    text-align: center;
    content: 'Hi';
    position: absolute;
    bottom: -15px;
    right: -20px;
    background: rgb(31, 162, 238);
    color: #fff;
    /* width: 320px; */
    width: 250px;
    padding: 16px 4px 16px 0;
    border-radius: 6px;
    font-size: 13px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
        0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

span {
    margin: 0 5px 0 15px
}

/* FOOTER */
.footer2 {
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F2F2F2;
}

/* .contact h2 {
    position: relative;
    top: -400px;
    left: 0px;
    z-index: 2000;
} */

.footer-distributed {
    background-color: #1FA2EE;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: normal 16px sans-serif;
    padding: 30px 30px;
}

.footer-distributed .footer-left p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.footer-distributed .footer-right {
    float: right;
    margin-top: 9px;
    max-width: 180px;
}

.footer-distributed .footer-right a {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 2px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
    margin-left: 3px;
    transition: all .25s;
    transform: scale(0.5);
}

.footerSocial {
    position: relative;
    bottom: 20px;
    display: flex;
    justify-content: right;
    align-items: right;
}

.footerSocial li {
    list-style: none;
}

.footerSocial li a {
    display: inline-block;
    margin-right: 20px;
    filter: invert(1);
    transform: scale(0.5);
    transition: 0.5s;
}

.footerSocial li a:hover {
    transform: scale(0.5) translateY(-15px);
}