*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    /* border: none; */
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    /* font-family: 'Playfair Display', serif; */
    font-family: Arial, Helvetica, sans-serif;
}

html {
    font-size: 65.5%;   
}

:root {
    --main-color: #d30d0d;
    --secondary-color: #3c8cb1;
    --text-color: #141622;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #5295b4;
    z-index: 100000;
    display: grid;
    place-content: center;
    justify-items: center;
    transition: 500ms ease;
}

.circle {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    border: 3px solid #d30d0d;
    border-block-start-color: #fff;
    margin-block-end: 45px;
    animation: rotate360 1s linear infinite;
}

@keyframes rotate360 {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(1turn);
    }
}

#preloader .text {
    background-image: linear-gradient(90deg, transparent 0% 30.66%, var(--main-color) 50.33% 50%,  transparent 66.66% 75%);
    background-size: 500%;
    font-size: calc(1rem + 2rem);
    font-weight: 900;
    line-height: 1rem;
    text-transform: uppercase;
    letter-spacing: 16px;
    padding-inline-start: 16px;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-stroke: 1px #fff;
    animation: loadingText linear 2s infinite;
    text-align: center;
    /* font-family: Arial, Helvetica, sans-serif; */
    font-family: 'futura';
}

@keyframes loadingText {
    0% {
        background-position: 100%;
    }
    100% {
        background-position: 0%;
    }
}

#preloader iframe {
    display: none;
}

/* Top Header Section */

.top-header .out-box {
    width: 100%;
    background: var(--secondary-color);
}

.top-header .out-box .inside-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #01567d;
    padding: 1rem 0;
    clip-path: polygon(8% 0%, 92% 0%, 96% 100%, 5% 100%);
}

.out-box .inside-box .col-1 {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    margin-left: 13rem;
}

.out-box .inside-box .col-1 span {
    font-size: 1.5rem;
}

.out-box .inside-box .col-1 span i {
    color: var(--secondary-color);
    padding-right: 0.5rem;
    font-size: 1.8rem;
}

.out-box .inside-box .col-2 {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    margin-right: 13rem;
}

.out-box .inside-box .col-2 a,
.out-box .inside-box .col-2 span,
.out-box .inside-box .col-2 .social i {
    color: #fff;
    font-size: 1.5rem;
    transition: 0.4s;
}

.out-box .inside-box .col-2 .social {
    display: flex;
    gap: 0.9rem;
}

.out-box .inside-box .col-2 a i {
    padding-right: 0.5rem;
}

.out-box .inside-box .col-2 .social i:hover,
.out-box .inside-box .col-2 a:hover {
    color: var(--main-color);
}

/* Responsive */
@media(max-width:1150px){
    .out-box .inside-box .col-1{
        margin-left: 8rem;
    }

    .out-box .inside-box .col-2 {
        margin-right: 8rem;
    }
}

@media(max-width:1015px){
    .top-header {
        display: none;
    }
}

/* Navbar */
.header {
    width: 100%;
    position: sticky;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 9.5%;
    background: #f6f6f6;
    box-shadow: 0 0 5px rgba(190, 190, 190, 0.5),
    0 0 10px rgba(190, 190, 190, 0.5);
    z-index: 111;
    transition: 0.4s ease;
}

.header.sticky{
    padding: 0 9.5%;
}

.header .logo img {
    height: 100px;

}

.header nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

nav .navbar ul li{
    padding: 2.5rem 0.5rem;
}

nav .navbar .navLink {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
}

nav .navbar .navLink li a {
    color: var(--text-color);
    font-size: 1.7rem;
    font-weight: 600;
    position: relative;
}

nav .others {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

nav .others i {
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
}

nav .others .addBtn {
    position: relative;
    background: var(--secondary-color);
    padding: 1.5rem 1.7rem;
    font-size: 1.6rem;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    transition: 0.7s;
}

nav .others .addBtn:hover {
    background: var(--main-color);
    color: #fff;
}

nav .others .addBtn i {
    color: #f6f6f6;
    padding-right: 0.5rem;
}

#search {
    font-size: 3rem;
}

#menuBtn {
    font-size: 3.5rem;
}

nav .navbar ul li:hover,
 nav .others i:hover{
    color: var(--main-color);   
}

nav .navbar ul li a:hover,
nav .navbar ul li a .active {
    color: var(--main-color);
    transition: 0.3s ease-in;
}

nav .navbar ul li .drop-down {
    position: absolute;
    top: 7rem;
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    width: 180px;
    background: #f6f6f6;
    box-shadow: 0 0 5px rgba(190, 190, 190, 0.5);
    padding: 1rem 0 0;
    display: none;
}

nav .navbar ul li:hover .drop-down {
    display: flex;
    transition: 0.6s ease-in;
}

nav .navbar ul li .drop-down li {
    border-bottom: 1px solid rgba(190, 190, 190, 0.5);
    padding-bottom: 1rem;
    padding-top: 0.5rem;
    padding-left: 1rem;
    z-index: 100;
    overflow: hidden;
}

nav .navbar ul li .drop-down li a {
    font-size: 1.5rem;
    transition: 0.4s ease;
}

nav .navbar ul li .drop-down li:hover a{
    font-size: 1.6rem;
    padding-left: 0.5rem;
}

/* Responsive */
@media(max-width:1370px) {
    nav .navbar ul li {
        padding: 2.5rem 0;
    }

    nav .others {
        gap: 1rem;
    }

    nav .navabar .navLink {
        gap: 0.5rem;
    }
}

@media(max-width:1190px) {
    nav .others .addBtn {
        display: none;
    }
}

@media(max-width:991px) {
    nav .navbar .navLink {
        position: absolute;
        display: block;
        top: 11rem;
        width: 100%;
        left: 0px;
        background: #f6f6f6;
        box-shadow: 0 0 5px rgba(190, 190, 190, 0.5),
        0 0 10px rgba(190, 190, 190, 0.5);
        padding-left: 30px;
        transition: 0.5s ease-in-out;
        display: none;
    }

    nav .navbar .navLink.active {
        display: block ;
    }

    .header.sticky {
        padding: 0.6rem 9.5%;
    }

    nav .navabar ul li {
        padding: 1rem 0;
    }

    nav .navbar ul li .drop-down {
        position: sticky;
        display: none;
    }
}

@media(max-width:420px) {
    .header .logo img {
        width: 120px;
    }

    nav .navbar .navLink {
        top: 11rem;   
    }
}

/* Registration Form */
.container {
    height: 82.5vh;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.8), rgb(69, 67, 149)), url(Images/2\ \(1\).png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.container .apply-box {
    height: 100%;
    /* margin-top: 200px; */
    padding-top: 100px;
    width: 100%;
    /* background-color: blue; */
    text-align: center;
}

.container .apply-box .box {
    background: #3c8cb1;
    opacity: .9;
    width: 600px;
    height: auto;
    margin-left: 550px;
    border-radius: 20px;
}

.container .apply-box h1 {
    font-size: 25px;
    color: #fff;
    /* background-color: #01567d; */
    padding: 2rem 2rem;
    font-weight: 700;
    margin-top: 2rem;
}

.form-container .form-control {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 1rem;
}

.form-control label {
    font-size: 20px;
    padding: 1rem;
    color: #fff;
}

.form-control input {
    margin-right: 12rem;
    /* margin-top: 1rem; */
    font-size: 15px;
    border: 2px solid #3c8cb1;
}

.button-container {
    /* padding: 1rem 2rem; */
    margin-top: 2rem;
    /* background-color: #01567d; */
    /* color: #fff; */
}

.button-container .btn {
    font-size: 20px;
    padding: 1rem 2rem;
    color: #fff;
    background-color: #d30d0d;
    margin-bottom: 2rem;
    border-radius: 10px;
    border: none;
}

.button-container .btn:hover {
    color: #fff;
    background-color: #01567d;
    cursor: pointer;
}



