/* Start Main Rules */

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

:root {
    --bg: #04293A;
    --primary: #041C32;
    --sec: #064663;
    --gold: #f5ba14;
    --text-color: white;
}

.block {
    display: block !important;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary);
    position: relative;
    color: var(--text-color);
}

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


/* End Main Rules */



/* Start Header */

header {
    border-bottom: 1px solid white;
    /* padding-top: 10px;
    padding-bottom: 10px; */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo b {
    font-size: 50px;
    text-shadow: 0px 0 14px #c2d7eb;
}

header .logo img {
    width: 90px;
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
}

header .links {
    width: 50%;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

header .links a:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 0%;
    background-color: white;
    height: 2px;
    bottom: -4px;
    left: 0;
    transition: 0.5s;
    border-radius: 11px;
    -webkit-border-radius: 11px;
    -moz-border-radius: 11px;
    -ms-border-radius: 11px;
    -o-border-radius: 11px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}


header .links a {
    position: relative;
    text-decoration: none;
    color: var(--text-color);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

header .links a:hover {
    color: rgb(178, 174, 174);
}

header .links a:hover::after {
    width: 100%;
}

header .links li {
    font-size: 18px;
}

header .lang-btn {
    background: #064663;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 6px 0px #a0a7aa;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

header .lang-btn:hover {
    box-shadow: 0 0 6px 2px #a0a7aa;
    background: #0e6892;
}

header .menu-icon {
    display: none;
    cursor: pointer;
}

header .menu-icon i {
    font-size: 30px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

header .menu-icon:hover i {
    filter: drop-shadow(2px 4px 6px #f5ba14);
    color: #f5ba14;
}

/* End Header */


/* Start Hero */

section.hero {
    min-height: 80vh;
    padding-top: 70px;
    background-color: var(--gold);
    position: relative;
}

section.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


section.hero .image img {
    max-width: 100%;
    /*filter: drop-shadow(0px 0px 2px var(--primary));
    -webkit-filter: drop-shadow(0px 0px 2px var(--primary));
    */
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    animation: hero_pic 1s linear 0s infinite alternate-reverse;
    -webkit-animation: hero_pic 1s linear 0s infinite alternate-reverse;
}

section.hero .image {
    position: relative;
    z-index: 111;
    width: 40%;
}


section.hero .info {
    position: relative;
    z-index: 111;
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
}

section.hero .info p {
    font-size: 20px;
    width: 80%;
    padding-top: 15px;
    font-weight: bold;
    color: var(--primary);
}

section.hero .info button {
    background: #064663;
    color: white;
    font-size: 18px;
    font-weight: bold;
    width: 200px;
    position: relative;
    z-index: 222;
    padding-block: 10px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    animation: hero_btn 1s linear 0s infinite alternate-reverse;
    -webkit-animation: hero_btn 1s linear 0s infinite alternate-reverse;
}

section.hero .info button::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    transition: 0.5s;
    z-index: -1;
    background-color: white;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

section.hero .info button:hover::after {
    width: 100%;
}

section.hero .info button:hover {
    color: var(--primary);
    box-shadow: 0 0 5px 1px #d6d6e2;
}

section.hero .arrow {
    margin-top: 80px;
    position: relative;
    z-index: 4155;
}

section.hero .arrow .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

section.hero .arrow .container i {
    cursor: pointer;
    color: var(--sec);
    font-size: 37px;
    text-shadow: 0 0 4px #064663;
    position: relative;
    animation: arrow 1s linear 0s infinite alternate-reverse;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-animation: arrow 1s linear 0s infinite alternate-reverse;
}

section.hero .arrow .container i:hover {
    color: var(--primary);
    text-shadow: 2px 0 4px var(--primary);
}


/* section.hero .hero-logo {
    position: absolute;
    right: 180px;
    top: 70px;
    z-index: 1;
    width: 150px;
    transform: scale(3) rotate(45deg);
    filter: drop-shadow(0px 0px 5px black);
    -webkit-filter: drop-shadow(0px 0px 5px black);
    } */
section.hero .hero-logo {
    position: absolute;
    right: 237px;
    top: 21px;
    z-index: 1;
    width: 150px;
    transform: scale(3);
    filter: drop-shadow(0px 0px 5px black);
    -webkit-filter: drop-shadow(0px 0px 5px black);
}

/* End Hero */

/* Start Who Us */

section.who-us {}

section.who-us .container {
    padding-top: 50px;
    position: relative;
}

section.who-us .container>h1 {
    text-align: center;
    text-shadow: 1px 1px 8px #f5ba14;
    font-weight: bold;
    letter-spacing: 2px;
    word-spacing: 5px;
    font-size: 50px;
}

section.who-us .container>h1::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 3px;
    border-radius: 7px;
    /* left: 465px; */
    left: calc(50% - 100px);
    top: 125px;
    background: var(--gold);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

section.who-us .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    position: relative;
}

section.who-us .info .image {
    width: 50%;
}

section.who-us .info .image img {
    position: absolute;
    top: -50px;
    right: -40px;
    transform: scale(2);
    width: 40%;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    animation: hero_pic 1s linear 0s infinite alternate-reverse;
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    filter: drop-shadow(0px 0px 5px black);
    -webkit-filter: drop-shadow(0px 0px 5px black);
    -webkit-animation: hero_pic 1s linear 0s infinite alternate-reverse;
}

section.who-us .info .text {
    width: 60%;
}

section.who-us .info .text p {
    letter-spacing: 1px;
    line-height: 1.6;
    word-wrap: break-word;
    word-spacing: 1px;
}

/* End Who Us */

/* Start Footer */
footer {
    margin-top: 50px;
    padding-block: 10px;
    background-color: var(--gold);
    color: var(--primary);
}

footer p {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* End Footer */