@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
    font-family: "Raleway", sans-serif;
    scroll-behavior: smooth;
}

:root {
    --teamColor: #304996;
    --backgroundColor: #F7F7F7;
    --headingColor: #0E1F51;
}

p {
    line-height: 30px !important;
    text-align: justify;
}

/* Navbar section */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding: 6px 100px;
    z-index: 1000;
    background-color: #fff;
}

.contact-btn {
    margin-top: 16px;
}

.contact-btn button {
    background-color: var(--teamColor);
    padding: 6px 20px !important;
    height: 40px;
    color: #fff;
    border: 1px solid var(--teamColor);
    border-radius: 5px;
    transition: 0.3s;
}

.contact-btn button:hover {
    color: var(--teamColor);
    background-color: #fff;
    border: 1px solid var(--teamColor);
    transform: 0.3s;
}

header.sticky {
    padding: 10px 80px 1px 80px;
    background: #fff;
    box-shadow: 3px 4px 4px 0px rgba(214, 214, 214, 0.50);
}

header .logo {
    position: relative;
    color: var(--textColor);
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.6s;
}

.logo img {
    height: 55px;
}

.nav__list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav__item {
    position: relative;
    list-style: none;
    margin-top: 15px;
}

.nav__item a {
    position: relative;
    margin: 0 20px;
    text-decoration: none;
    color: var(--textColor);
    font-weight: 500;
    transition: 0.6s;
}

.nav__link {
    padding: 10px;
    color: #eeee;
    font-weight: 600;
}

.nav__link:hover {
    color: var(--teamColor);
}

.header__close,
.header__toggle {
    display: none;
}

header.sticky .logo,
header.sticky ul li a {
    color: var(--textColor);
}

.nav__list a {
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.nav__list a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: var(--teamColor);
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

.nav__list a:hover:after {
    width: 100%;
    left: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    border-radius: 8px;
    min-width: 230px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 20px 0px 5px 10px;
}

.dropdown-content a {
    color: #000000 !important;
    font-weight: 500;
    margin: 10px 0px 0px 0px;
}

.dropdown-content a:hover {
    color: #000000 !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* banner section css */

.banner-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.banner-bg-round {
    position: absolute;
    top: 200px;
    z-index: -10;
}

.banner-data {
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-section h1 {
    color: var(--teamColor);
    font-weight: 700;
}

/* top  button css */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #304996;
    color: rgb(255, 255, 255);
    cursor: pointer;
    height: 70px;
    width: 70px;
    border-radius: 50px;
    font-size: 30px;
}

/* Open positions css */

.position-section {
    margin-top: 0px;
    background-color: var(--backgroundColor);
    padding: 100px 0px;
}

.position-section h2 {
    font-weight: 700;
    color: var(--teamColor);
    text-align: center;
}

.job-positions {
    display: flex;
    justify-content: space-between;
}

.job-positions h5 {
    color: var(--teamColor);
}

.main-head {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    font-family: sans-serif;
}

.location-div {
    width: 30%;
    display: flex;
}

.readMore-btn {
    width: 30%;
    display: flex;
    justify-content: end;
}

.readMore-btn button {
    padding: 8px 30px;
    border: 1px solid var(--teamColor);
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
    background-color: var(--teamColor);
    transition: 0.3s;
}

.readMore-btn button:hover {
    color: var(--teamColor);
    border: 1px solid var(--teamColor);
    background-color: #fff;
    transform: 0.3s;
}

.hideAndShow-content {
    display: none;
}

.hideAndShow-content h5 {
    color: var(--teamColor);
}

/* why-choose-section css */

.why-choose-section {
    margin-top: 100px;
}

.why-choose-section h2 {
    font-weight: 700;
    color: var(--teamColor);
}

.why-choose-data {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-data img {
    height: 48vh;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* contact-form css */

.contact-form {
    margin-top: 100px;
    text-align: center;
}

.contact-form .container {
    background-color: #F7F7FB;
    border-radius: 10px;
    padding: 100px 50px;
}

.contact-form .container h2 {
    font-weight: 700;
}

.contact-form .container h2 span {
    color: var(--teamColor);
}

.contact-form .container p {
    color: #323433;
    text-align: center;
}

.contact-form .card {
    border: 0px;
    text-align: left !important;
}

.contact-form .card p {
    color: #92929D;
    font-weight: 600;
    font-family: sans-serif;
}

.contact-form .card h6 {
    font-family: sans-serif;
    font-weight: 600;
}

.icon-bg {
    background-color: var(--teamColor);
    border-radius: 10px;
    padding: 10px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-bg i {
    color: #fff;
    font-size: 24px;
}

.contact-form input {
    padding: 10px 20px;
    width: 100%;
    border: 1px solid #e9e9e9 !important;
    border-radius: 5px;
    font-family: sans-serif;
}

textarea {
    font-family: sans-serif;
    border: 1px solid #e9e9e9 !important;
}

::placeholder {
    color: #92929D !important;
}

.submit-btn button {
    border: 0px;
    background-color: var(--teamColor);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
}

.submit-btn {
    display: flex;
    justify-content: right;
}

.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn {
    background-color: transparent !important;
    border: 1px solid #304996 !important;
    color: #000 !important;
    padding: 10px 20px;
    cursor: pointer;
}

.upload-btn-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.card-show {
    display: none;
}

/* footer-section css */

.footer-section {
    margin-top: 100px;
    background-color: var(--backgroundColor);
    padding: 30px 0px 10px 0px;
}

.footer-section .container {
    margin-top: 30px;
}

.footer-logo img {
    height: 60px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-weight: 500;
    color: #6F6C90;
}

.social-media-icons {
    display: flex;
}

.social-media-icons i {
    font-size: 18px;
    color: var(--teamColor);
}

.footer-section .container h5 {
    margin-top: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--headingColor);
}

.footer-section a {
    text-decoration: none;
    color: #6F6C90;
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 13px 0px 0px 0px;
}

.footer-nav-container {
    margin-top: 80px !important;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.footer-nav a {
    color: #1E60DF !important;
    text-decoration: underline;
}

.footer-nav p {
    color: #6F6C90;
    font-weight: 500;
}

/* media query starting */

@media all and (min-width:1400px) {

    /* banner section css */

    .banner-section h1 {
        color: var(--teamColor);
        font-weight: 700;
        font-size: 55px;
    }
}

@media all and (max-width:900px) {

    /* navbar css */
    body {
        overflow-x: hidden;
    }

    body.overflow-hidden {
        overflow: hidden;
    }

    header {
        height: 48px;
        justify-content: space-between;
        padding: 0 28px;
    }

    .logo a {
        font-size: 0.9rem;
    }

    .header__toggle {
        display: inline;
        color: #000000ee;
        font-size: 24px;
    }

    .header__close {
        position: absolute;
        right: 24px;
        display: block;
        font-size: 24px;
        border-radius: 50%;
        z-index: 1000;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: var(--headingColor);
        color: #eeee;
        width: 40%;
        height: 100vh;
        padding: 24px 0;
        z-index: 1000;
        transition: 0.5s;
        border-radius: 0 0 0 50%;
        z-index: 1000;
    }

    header.sticky {
        padding: 10px 60px 10px 60px;
        background: #fff;
        box-shadow: 3px 4px 4px 0px rgba(214, 214, 214, 0.50);
    }

    header .logo {
        position: relative;
        color: var(--textColor);
        text-decoration: none;
        text-transform: uppercase;
        transition: 0.6s;
    }

    .logo img {
        height: 40px;
    }

    .nav__list {
        display: flex;
        flex-direction: column;
    }

    .show {
        right: 0;

    }

    .nav__item {
        margin: 2rem 0;
    }

    .contact-btn {
        display: none;
    }

    /* banner section css */

    .banner-section {
        height: 80vh;
        display: flex;
        align-items: center;
        position: relative;
    }

    .banner-bg-round {
        position: absolute;
        top: 100px;
        z-index: -10;
    }

    /* position section */

    .main-head {
        width: auto;
        display: block;
        font-family: sans-serif;
    }

    .location-div {
        width: auto;
        display: flex;
    }

    .readMore-btn {
        width: auto;
        display: block;
        justify-content: end;
    }

    /* contact section */

    .card-hide {
        display: none;
    }

    .card-show {
        display: block;
    }

    /* footer section */

    .footer-nav {
        display: flex;
        justify-content: center;
    }
}

@media all and (max-width:700px) {

    /* navbar css */

    body {
        overflow-x: hidden;
    }

    body.overflow-hidden {
        overflow: hidden;
    }

    .logo img {
        height: 40px;
    }

    header {
        height: auto;
        justify-content: space-between;
        padding: 8px 20px 8px 20px;
    }

    .logo a {
        font-size: 0.9rem;
    }

    .header__toggle {
        display: inline;
        color: #000000ee;
        font-size: 26px;
    }

    .header__close {
        position: absolute;
        right: 24px;
        display: block;
        font-size: 24px;
        border-radius: 50%;
        z-index: 1000;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: var(--headingColor);
        color: #eeee;
        width: 100%;
        height: 100vh;
        padding: 24px 0;
        z-index: 1000;
        transition: 0.5s;
        border-radius: 0 0 0 0%;
        z-index: 1000;
    }

    .nav__list {
        display: flex;
        flex-direction: column;
        margin-left: 22%;
    }

    .show {
        right: 0;
    }

    .nav__item {
        margin: 1.5rem 0;
    }

    header.sticky {
        padding: 8px 25px 8px 25px;
        background: #fff;
        box-shadow: 3px 4px 4px 0px rgba(214, 214, 214, 0.50);
    }

    br {
        display: none !important;
    }

    /* banner section css */

    .banner-section {
        height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
    }

    .banner-bg-round {
        position: absolute;
        top: 100px;
        z-index: -10;
    }

    /* Open positions css */

    .position-section {
        margin-top: 0px;
        background-color: var(--backgroundColor);
        padding: 50px 0px;
        overflow: hidden;
    }

    .job-positions {
        display: block;
        justify-content: space-between;
    }

    .job-positions h5 {
        color: var(--teamColor);
    }

    .readMore-btn button {
        padding: 5px 20px;
        border: 1px solid var(--teamColor);
        border-radius: 6px;
        cursor: pointer;
        color: #fff;
        background-color: var(--teamColor);
        transition: 0.3s;
    }

    /* why-choose-section css */

    .why-choose-section {
        margin-top: 70px;
    }

    .why-choose-data img {
        height: 100%;
        width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    /* contact-form css */

    .contact-form {
        margin-top: 70px;
        text-align: center;
        overflow: hidden;
    }

    .contact-form .container {
        background-color: #F7F7FB;
        border-radius: 10px;
        padding: 50px 10px;
    }

    .submit-btn button {
        border: 0px;
        background-color: var(--teamColor);
        color: #fff;
        padding: 10px 15px;
        border-radius: 5px;
    }

    .submit-btn {
        display: flex;
        justify-content: center;
    }

    /* footer-section css */

    .footer-section {
        margin-top: 70px;
        background-color: var(--backgroundColor);
        padding: 30px 0px 10px 0px;
    }

    .footer-section .container {
        margin-top: 0px;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-section .container h5 {
        margin-top: 0px;
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--headingColor);
    }

    .footer-section ul li {
        margin: 13px 0px 0px 0px;
    }

    .footer-nav-container {
        margin-top: 40px !important;
    }
}