/* Font */
.roboto-700 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "width" 100;
}

.roboto-500 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.fugaz-one-regular {
  font-family: "Fugaz One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.space-grotesk-regular {
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.space-grotesk-semibold {
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

/* Font */
/* General */

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100vw;
    overflow-x: hidden;
}

body {
    background: #D8DBE2;
    width: 100%;
    height: fit-content;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

section {
    width: 100%;
    height: auto;
    text-align: center;
    margin: 0;
}

/* General */
/* Main container */

.mainContainer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: auto;
}

.mainContainer video {
    width: 100%;
    margin: 0;
    padding: 0;
    align-self: center;
}

.landing {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    place-items: center;
}

.landing div {
    padding: 0;
    margin: 0;
    background-color: rgba(0,0,0,0.2);
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    text-align: center;
    align-items: center;
    align-self: center;
    align-content: center;
    font-size: 7em;
    text-transform: uppercase;
    color: #D8DBE2;
    text-shadow: 1px 1px 0px rgba(51, 65, 85, 1), 2px 2px 0px rgba(51, 65, 85, 1), 3px 3px 0px rgba(51, 65, 85, 1), 4px 4px 0px rgba(20, 52, 97, 1);
}

@media (max-width: 768px) {
    .landing div {
        font-size: 2.5em;
    }
}

@media (min-width: 769px) 
{
    .landing div {
        font-size: 7em;
    }
}

.landing div button {
    position: absolute;
    z-index: 10;
    outline: none;
    font-size: 0.4em;
    background-color: rgb(21, 30, 99, 1);
    color: #D8DBE2;
    border: none;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 20px;
}

@media (max-width: 768px) {
    .landing div button {
        left: 34vw;
    }
}

@media (min-width: 769px) 
{
    .landing div button {
        left: 40vw;
    }
}

.landing video {
    width: 100vw;
    height: auto;
    object-fit: fill;
    max-height: 100vh;
    grid-area: 1 / 1;
}

@media (max-width: 768px) {
    .landing video {
        height: 934px;
    }
}

.advantageContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: 1fr min-content;
    gap: 15px;
    justify-items: center;
    align-items: center;
    height: auto;
    padding-top: 24px;
    padding-bottom: 24px;
}

.title {
    display: block;
    text-align: center;
    height: auto;
    width: 100%;
    text-transform: uppercase;
    font-size: 3em;
    margin: 0;
    border-top: 5px solid#151e63;
    padding-top: 16px;
    color: #151e63;
    letter-spacing: 5px;
}

@keyframes advantageDivAppear {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.5);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.advantage div {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
    padding: 8px;
    font-weight: 500;
    height: 50vh;
}

.advantage div svg {
    align-self: center;
}

.advantage div p:first-of-type{
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #151e63;
}

.advantage div p:last-of-type {
    font-size: 1.2rem;
    color: #496097;
}

.advantage svg {
    width: auto;
    align-self: first baseline;
}


.advertiseContainer {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    background: linear-gradient(180deg,rgba(22, 36, 101, 1) 0%, rgba(21, 30, 99, 1) 30%);
    color: #D8DBE2;
    margin-top: -1px;
    margin-bottom: -1px;
    height: fit-content;
    gap: 16px;
    width: 100%;
}

.title-1 {
    display: block;
    height: auto;
    text-align: center;
    font-size: 3em;
    margin: 0;
    color: #4BB3FD;
    text-transform: uppercase;
    padding-bottom: 16px;
    padding-top: 24px;
    letter-spacing: 5px;
    text-shadow: 1px 1px 4px #4ba9d8;
}

.singleAdvertiseContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 16px;
    justify-content: center;
    margin-left: 24px;
    margin-right: 24px;
    padding: 16px;
}

.singleAdvertise {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
    flex-direction: column;
    height: fit-content;
    border-radius: 24px;
    box-shadow:0px 10px 3px 0.5px #1233ac4c;
}

.singleAdvertise div:first-of-type {
    align-self: center;
    font-family: Helvetica, Verdana, sans-serif;
    font-size: 1.9em;
    text-transform: uppercase;
    color: #e8d5b5;
    text-shadow: 1px 1px 1px #4ba9d8;
    width: 100%;
}

.singleAdvertise div:last-of-type {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
    flex-direction: column;
    text-transform: capitalize;
    width: 100%;
    font-family: Helvetica, Verdana, sans-serif;
    font-size: 1.4em;
    color: #79b5ba;
    text-shadow: 0px 1px 1px #4ba9d8;
}

.FAQ {
    display: grid;
    grid-template-columns: repeat(1fr, 1fr);
    gap: 15px;
    justify-content: center;
}

.FAQ p:first-of-type {
    font-size: 2em;
    color: #151e63;
}

.singleFAQ {
    width: 70vw;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
    flex-direction: column;
    border-bottom: 3px solid #151e63;
}

.singleFAQ p:first-child {
    font-size: 1.7em;
    font-weight: bold;
    color: #151e63;
}

.singleFAQ p:last-child {
    font-size: 1.4em;
    color: #496097;
} 

.singleFAQ:last-of-type{
    border-bottom: none;
}

.contactForm {
    display: grid;
    grid-template-columns: repeat(1fr, 1fr);
    gap: 15px;
    justify-content: center;
    background-color: #151e63;
    padding-top: 50px;
    padding-bottom: 50px;
}

.contactForm p {
    color: #4ba9d8;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.contactForm form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    gap: 24px;
}

.contactForm input {
    text-align: center;
    background-color: #4bb3fd4a;
    color: #D8DBE2;
    width: 50%;
    height: 48px;
    border: 1px inset#496097;
    border-radius: 8px;
    font-size: 1.8rem;
    margin: 0;
}

@keyframes scale-up {
    from {
        scale: 1;
    }

    to {
        scale: 1.1;
    }
}

.contactForm input:focus {
    background-color: #4bb3fd6d;
    border: 1px solid #4ba9d8;
    outline: none;
    animation: scale-up 0.5s forwards;
}

.contactForm button {
    text-align: center;
    background-color: #1f6da5ed;
    color: #D8DBE2;
    width: 35%;
    height: 48px;
    border: 2px solid #D8DBE2;
    border-radius: 8px;
    font-size: 1.5rem;
    margin: 0;
    animation: none;
 }

.contactForm input::placeholder {
    color: #d8dbe274;
    font-size: 1.4rem;
}

/* Main container */
/* Footer */

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    gap: 15px;
    color: #151e63;
    height: fit-content;
}

.footerIcons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding-bottom: 20px;
}

.lsIcon {
    width: 19vw;
    height: auto;
}

.footerInfoDivContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    padding-right: 30px;
}

.footerInfoDiv {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: first baseline;
    align-content: center;
}

.footerInfoDiv p {
    text-transform: uppercase;
    font-weight: bold;
}

footer a {
    width: 20%;
    height: auto;
    align-self: center;
}
