/* Start Main Rules */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #04293A;
    --primary: #041C32;
    --secondry: #ECB365;
    --third: #064663;
}

.block {
    display: block !important;
}

html {
    scroll-behavior: smooth;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}


/* Medium */

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}


/* Large */

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

body {
    font-family: 'Open Sans', sans-serif;
}


/* End Main Rules */


/* Start Landing */

section.landing {
    height: 100vh;
    background-color: var(--bg);
    position: relative;
}

.landing nav {
    position: relative;
    z-index: 1000;
}

section.landing nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    /* z-index: 100; */
}

section.landing nav .logo {
    height: 100px;
}

section.landing nav .links {
    position: relative;
}

section.landing nav .links ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    background-color: var(--bg);
    position: absolute;
    right: 0;
    min-width: 200px;
    top: calc(100% + 15px);
    display: none;
    z-index: 1111;
}

.landing nav .links ul li.active {
    background-color: var(--third);
}

section.landing nav .links ul::before {
    content: "";
    border-width: 10px;
    border-style: solid;
    border-color: var(--secondry) transparent transparent transparent;
    position: absolute;
    right: 0;
    top: -10px;
}

section.landing nav .links ul li a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: var(--secondry);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

section.landing nav .links ul li a:hover {
    padding-left: 25px;
    background-color: #9b94bf4d;
}

section.landing nav .links ul li:not(:last-child) a {
    border-bottom: 1px solid var(--secondry);
}

section.landing nav .links:hover ul {
    /* display: block; */
}

section.landing nav .links .icon {
    width: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    cursor: pointer;
}

section.landing nav .links .icon span {
    height: 2.5px;
    width: 100%;
    margin-bottom: 5px;
    background-color: var(--secondry);
    transition: 0.7s;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
}

section.landing nav .links .icon span:nth-child(2) {
    width: 75%;
}

section.landing nav .links .icon:hover span:nth-child(2) {
    width: 100%;
}

section.landing nav .links .icon:hover span:nth-child(3) {
    width: 75%;
}

section.landing nav .links .icon:hover span:nth-child(1) {
    width: 75%;
}




.landing main .text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 1000;
}

.landing main .text h1,
.landing main .text h2 {}

.landing main .text h1 {
    font-size: 80px;
    color: var(--secondry);
}

.landing main .text h2 {
    color: var(--secondry);
    font-size: 30px;
    margin-top: 20px;
}

.landing main .text button {
    border: none;
    margin-top: 90px;
    background-color: var(--secondry);
    padding: 18px 32px;
    color: var(--bg);
    width: fit-content;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    font-size: 16pt;
    font-weight: 800;
    cursor: pointer;
}

.landing main .text button:hover {
    border: 1px solid #707070;
    background: var(--bg);
    color: var(--secondry);
}

.landing main .img {
    flex-grow: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing main {
    max-height: 100vh;
}

.landing main .img img {
    position: relative;
    height: 200px;
    z-index: 20;
    left: 50px;
}


/* .landing main:hover:before {
    height: 0;
} */

/* .landing main::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: var(--box-h, 0);
    background-color: var(--primary);
    transform-origin: top;
    transform: skewX(-25deg);
    -webkit-transform: skewX(-25deg);
    -moz-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    -o-transform: skewX(-25deg);
    z-index: 1;
    border: 1px solid #707070;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
} */

.landing main video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    pointer-events: none;
}

.landing footer {
    position: absolute;
    bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 111;
}

.landing footer .text {
    color: var(--secondry);
    background: #064663;
    padding: 10px;
    border: none;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.landing footer .text span {
    cursor: pointer;
}


/* End Landing */

@media (max-width: 1115px) {
    .landing main::before {
        all: unset !important;
    }
    .landing main .text {
        z-index: 800;
    }
    .landing main .text button {
        margin-top: 60px !important;
    }
}

@media (max-width: 995px) {
    /* TIGERS */
}

@media (max-width: 771px) {
    .landing main .text h1 {
        font-size: 60px;
    }
    .landing main .text h2 {
        font-size: 26px;
    }
    .landing main .text button {
        margin-top: 60px;
        padding: 15px 20px;
    }
}

@media (max-width: 635px) {
    main {
        margin-top: 0 !important;
    }
    main .container {
        flex-direction: column-reverse !important;
        text-align: center !important;
        justify-content: center !important;
    }
    .landing main .text h1 {
        margin: 0 !important;
    }
    .landing main .text a {
        margin: 0 !important;
    }
    .landing main .img img {
        left: unset !important;
    }
}



/* FrameWork */

.form-group{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.form-group.inline{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}


.form-group label{
    color: white;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select{
    padding: 5px;
    padding-left: 15px;
    border-radius: 2px;
    border: none;
    background: #DDD;
    min-width: 400px;
    transition: 0.5s;
}


input:focus::placeholder,
textarea:focus::placeholder {
    padding-left: 5px;
    color: whitesmoke;
}

input:focus,
textarea:focus{
    background-color:#dddddd96;
    color: var(--bg);
}

form.contact-us{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.btn{
    border: none;
    cursor: pointer;
    background: var(--primary);
    color: white;
    padding: 10px;
    border-radius: 4px;
    transition: 0.5s;
}

.btn:hover{
    background-color: var(--third);
}

.w-400{
    width: 400px;
}
