:root {
    --main-color: #0c0800;
    --second-color: #0044e3;
}

* {
    padding: 0;
    margin: 0;
}

body {
    overflow-x: hidden;
    min-height: 200vh;
}

.spinner {
    width: 100%;
    height: 100%;
    background: #00032b;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sk-cube-grid {
    width: 150px;
    height: 150px;
    margin: 100px auto;
}

.sk-cube-grid .sk-cube {
    width: 33%;
    height: 33%;
    background-color: rgb(255, 255, 255);
    float: left;
    -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
    animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube-grid .sk-cube1 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube2 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube3 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.sk-cube-grid .sk-cube4 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube5 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube6 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube7 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.sk-cube-grid .sk-cube8 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube9 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
    0%,
    70%,
    100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }
    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

@keyframes sk-cubeGridScaleDelay {
    0%,
    70%,
    100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }
    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

header {
    padding: 20px 0px;
    transition: ease-in-out .4s;
    background: white;
    height: 90px;
    z-index: 1;
    position: fixed;
    width: 100%;
}

.header-slide {
    padding: 10px 0px;
    background: white;
    transition: .5s;
    height: 70px;
    box-shadow: 0px 0px 68px -26px black;
}

.container .row-slide {
    background: white;
}

.container .logo1 {
    display: flex;
    transition: ease-in-out .7s;
}

.container .logo2 {
    display: none;
    transition: ease-in-out .7s;
    opacity: 1;
}


/* .container .logo1-change {
    display: flex;
    opacity: 1;
    transition: ease-in-out .7s;
} */


/* .container .logo2-change {
    display: none;
    opacity: 0;
    transition: ease-in-out .7s;
} */

.container .all-div {
    display: inline-block;
}

.container .nav,
.container .logo,
.container .sign-in-nav {
    padding-top: 5px;
    position: fixed;
    transition: ease-in-out .5s;
}

.container .pages li,
.container .sign li {
    list-style: none;
    display: inline-block;
}

.row .c2 .nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 11px;
}

.row .c3 {
    display: flex;
    justify-content: right;
    align-items: right;
}

.row ul li .link {
    text-decoration: none;
    color: rgb(151, 151, 151);
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
    transition: .5s;
    font-family: arial;
}

.row .pages .link {
    margin: 0px 15px;
}

.row ul .link::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 0%;
    bottom: 0;
    left: 0;
    transition: .7s;
    border-bottom: 2px solid var(--second-color);
    transform: scaleX(1);
}

.row ul .link:hover::after {
    width: 100%;
    transform: scaleX(1);
}

.row ul .pages .link:hover {
    color: #326efa;
}

.row ul li .link-color {
    color: rgb(36, 36, 36);
}

.row ul a.active {
    color: var(--second-color);
    font-weight: bold;
}

.row .sign {
    padding-top: 3px;
}

.row ul .sign-link {
    font-weight: 600;
    font-size: 20px;
    background: var(--second-color);
    color: white;
    padding: 7px 30px;
    padding-bottom: 10px;
    border-radius: 15px 15px 15px 0px;
    text-decoration: none;
    border: 2px solid var(--second-color);
    transition: .4s;
}

.row ul .sign-link:hover {
    border-radius: 15px 0px 15px 15px;
    background: white;
    color: var(--second-color);
}

.row .sign-in-nav svg {
    color: var(--main-color);
    width: 30px;
    height: 30px;
    margin-left: 15px;
    transition: .5s;
    cursor: pointer;
    display: none;
}

.row svg:hover {
    color: var(--second-color);
}

.slider {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: rgb(179, 179, 179);
    z-index: 1020;
    overflow-x: hidden;
    transition: .6s;
    overflow-x: hidden;
}

.slider svg {
    color: white;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    transition: .5s;
}

.slider svg:hover {
    color: var(--second-color);
    transform: rotate(360deg);
}

.slider ul {
    margin-top: 100px;
}

.slider ul li {
    list-style: none;
    margin-bottom: 20px;
}

.slider ul .slider-link {
    text-decoration: none;
    color: white;
    font-size: 22px;
    transition: .5s;
    position: relative;
    padding-bottom: 5px;
}

.slider ul li .slider-link::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 0%;
    bottom: 0;
    left: 0;
    transition: .7s;
    border-bottom: 2px solid var(--second-color);
    transform: scaleX(1);
}

.slider ul li .slider-link:hover::after {
    transform: scaleX(1);
    width: 100%;
}

.slider ul li .slider-link:hover {
    color: var(--second-color);
}

.slider ul li .active {
    color: var(--second-color);
}

.navslider li .sign-link {
    font-weight: 600;
    font-size: 20px;
    background: var(--second-color);
    color: white;
    padding: 4px 20px;
    padding-bottom: 8px;
    border-radius: 15px 15px 15px 0px;
    text-decoration: none;
    border: 2px solid var(--second-color);
    transition: .4s;
    margin-top: 40px;
}

.navslider li .sign-link:hover {
    border-radius: 15px 0px 15px 15px;
    background: rgb(179, 179, 179);
    color: var(--second-color);
}

.overlay {
    background: #303030e0;
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    z-index: 100;
    transition: .3s;
}


/* .................................section-1......................................... */

.section-1 {
    background: var(--main-color);
    color: white;
    font-family: "Poppins", sans-serif;
    width: 100%;
    overflow: hidden;
}

.section-1 .sec1-cover {
    padding-top: 230px;
    background: url(../pics/page-header-bg.svg);
    padding-bottom: 150px;
    background-position-x: 100px;
    background-position-y: 150px;
    background-repeat: no-repeat;
}

.section-1 .sec1-h {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-1 .sec1-p {
    font-size: 20px;
    opacity: .7;
    width: 700px;
}


/* ...............................section-2.................................. */

.section-2 {
    padding: 120px 0px;
    background: rgb(240, 240, 240);
    width: 100%;
    overflow: hidden;
}

.section-2 .sec2-intro {
    text-align: center;
}

.section-2 .sec2-intro span {
    color: var(--second-color);
    font-size: 20px;
    font-family: fantasy;
    font-weight: 600;
}

.section-2 .sec2-intro .sec2-h1 {
    font-size: 45px;
    font-weight: bold;
    margin: 0px 0px 20px 0px;
    color: #000f53;
}

.section-2 .sec2-intro .sec2-p1 {
    font-size: 18px;
    opacity: .7;
    font-family: "Poppins", sans-serif;
    width: 600px;
    margin: auto;
}

.section-2 ul {
    padding: 0px;
    margin: 70px 0px;
    display: flex;
    justify-content: center;
}

.section-2 ul li {
    display: inline-block;
    list-style: none;
    margin: 0px 30px;
}

.section-2 ul li .icon-cover {
    padding: 16px 17px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.section-2 ul li svg {
    width: 23px;
    height: 23px;
}

.section-2 ul li .sec2-big {
    font-size: 18px;
    color: #00054e;
    font-weight: 600;
    /* font-family: fantasy; */
}

.section-2 .row .sec2-col {
    padding: 50px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 0.125rem 0.3rem -0.0625rem rgba(12, 8, 0, 0.03), 0 0.275rem 0.75rem -0.0625rem rgba(12, 8, 0, 0.06) !important;
}

.section-2 .row .sec2-col .sec2-span {
    color: var(--second-color);
    font-size: 20px;
    font-weight: bold;
    /* font-family: fantasy; */
}

.section-2 .row .sec2-col .sec2-h3 {
    font-size: 43px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 30px;
}

.section-2 .row .sec2-col .sec2-small {
    font-size: 16px;
    opacity: .7;
}

.section-2 .row .sec2-col .sec2-info {
    margin-top: 30px;
    margin-bottom: 50px;
}

.section-2 .row .sec2-col .sec2-info .sec2-p {
    font-size: 15px;
    opacity: .8;
    position: relative;
    padding-left: 20px;
}

.section-2 .row .sec2-col .sec2-info .sec2-p i {
    color: var(--second-color);
    font-size: 8px;
    position: absolute;
    bottom: 7px;
    left: 0;
}

.section-2 .row .sec2-col .sec2-a {
    padding: 15px 30px;
    text-decoration: none;
    color: white;
    background: var(--second-color);
    border-radius: 5px;
    /* font-family: fantasy; */
    font-size: 14px;
    letter-spacing: .02cm;
    font-weight: 700;
    border: 2px solid var(--second-color);
    transition: .4s;
}

.section-2 .row .sec2-col .sec2-a:hover {
    background: white;
    color: var(--second-color);
}

.section-2 .row .col-active {
    padding: 50px;
    background: #000f53;
    border-radius: 15px;
    color: white;
    padding: 70px 50px;
}

.section-2 .row .col-active .span-active {
    color: orange;
    font-size: 20px;
    font-weight: bold;
    /* font-family: fantasy; */
}

.section-2 .row .col-active .sec2-info .sec2-p .i-active {
    color: orange;
}

.section-2 .row .sec2-col .a-active {
    color: #000f53;
    background: white;
    border: 2px solid white;
    transition: .4s;
}

.section-2 .row .sec2-col .a-active:hover {
    background: #000f53;
    color: white;
}


/* ...................................section-3.................................. */

.section-3 {
    padding: 120px 0px;
    width: 100%;
    overflow: hidden;
}

.section-3 .sec3-intro {
    text-align: center;
    margin-bottom: 50px;
}

.section-3 .sec3-intro span {
    color: var(--second-color);
    font-size: 20px;
    /* font-family: fantasy; */
    font-weight: 600;
}

.section-3 .sec3-intro .sec3-h1 {
    font-size: 45px;
    font-weight: bold;
    margin: 0px 0px 20px 0px;
    color: #000f53;
}

.section-3 .sec3-intro .sec3-p1 {
    font-size: 18px;
    opacity: .7;
    font-family: "Poppins", sans-serif;
    width: 700px;
    margin: auto;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button {
    border: none;
}

.accordion-button {
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    color: var(--second-color);
}

.accordion-collapse {
    border: none;
}

.accordion-item {
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid rgb(207, 207, 207);
}


/* ...................................footer...................................... */

footer {
    background: url(../pics/maps.png);
    background-attachment: fixed;
    width: 100%;
    overflow: hidden;
}

footer .footer-cover {
    background: rgba(0, 0, 0, 0.418);
    padding: 100px 0px;
    color: white;
    text-align: center;
}

footer ul {
    padding-left: 0px;
}

footer .footer-p {
    font-size: 18px;
    opacity: .7;
    width: 600px;
    margin: 30px auto;
}

footer .footer-ul {
    margin-top: 70px;
}

footer .footer-ul .footer-li {
    list-style: none;
    display: inline-block;
    margin: 0px 20px;
}

footer .footer-ul .footer-li .footer-link {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-family: cursive;
    position: relative;
    transition: .3s;
    padding-bottom: 10px;
}

footer .footer-ul .footer-li .footer-link::after {
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    transition: ease-in-out .3s;
    border-bottom: 2px solid var(--second-color);
    bottom: 0;
    left: 0;
}

footer .footer-ul .footer-li .footer-link:hover::after {
    width: 100%;
}

footer .footer-end {
    margin-top: 70px;
}

footer .footer-end .footer-h3 {
    font-size: 30px;
    font-weight: bold;
    font-family: cursive;
}

footer .footer-end .ul-icon {
    margin-top: 60px;
}

footer .footer-end .li-icon {
    list-style: none;
    display: inline-block;
    margin: 0px 5px;
}

footer .footer-end .li-icon a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 50%;
    background: rgba(95, 95, 95, 0.397);
    transition: .4s;
}

footer .footer-end .li-icon i {
    transition: .4s;
}

footer .footer-end .li-icon a:hover {
    background: var(--second-color);
}

footer .footer-end .li-icon a:hover>i {
    transform: rotatey(360deg);
}


/* ...............................End................................... */

.end {
    color: white;
    height: auto;
    background: #00032f;
    width: 100%;
    overflow: hidden;
}

.end .left {
    font-size: 18px;
    padding-top: 20px;
    padding-bottom: 10px;
}

.end .right {
    text-align: right;
    padding-top: 20px;
    padding-bottom: 10px;
}

.end .right a {
    text-decoration: none;
    color: white;
    opacity: .7;
    margin-left: 10px;
    transition: .3s;
}

.end .right a:hover {
    color: #ffca37;
}

@media (max-width: 1199px) {
    .row ul {
        display: none;
    }
    .row .sign-in-nav svg {
        display: flex;
        top: 10px;
    }
    .section-1 .sec1-cover {
        background-position: -200px 100%;
    }
}

@media (min-width: 1200px) {
    .section-2 .animate {
        animation-delay: 2.6s;
    }
    .section-2 .animate-1 {
        animation-delay: 2.3s;
    }
    .section-2 .animate-2 {
        animation-delay: 2s;
    }
}

@media (max-width: 991px) {
    .section-1 .sec1-h {
        font-size: 35px;
    }
    .section-1 .sec1-p {
        font-size: 17px;
        opacity: .7;
        width: 100%;
        padding-right: 20px;
    }
    .section-1 .sec1-cover {
        background-position: -300px 100%;
    }
    footer .footer-p {
        font-size: 16px;
        width: 100%;
        padding: 0px 20px;
    }
    .end {
        text-align: center;
    }
    .end .right {
        text-align: center;
        padding-top: 0px;
        padding-bottom: 20px;
    }
    .section-2 .sec2-intro .sec2-h1 {
        font-size: 35px;
    }
    .section-2 .sec2-intro .sec2-p1 {
        font-size: 16px;
        width: 100%;
        padding: 0px 20px;
    }
    .section-2 ul li {
        margin: 0px 10px;
    }
    .section-2 ul li .sec2-big {
        font-size: 14px;
    }
    .section-3 .sec3-intro .sec3-h1 {
        font-size: 35px;
        ;
    }
    .section-3 .sec3-intro .sec3-p1 {
        font-size: 16px;
        width: 100%;
        padding: 0px 20px;
    }
}

@media (max-width: 767px) {
    .section-1 .sec1-cover {
        background-position: -350px 100%;
    }
    footer .footer-ul {
        margin-top: 30px;
    }
    footer .footer-ul .footer-li {
        display: inline-block;
        margin: 0px 8px;
    }
    footer .footer-ul .footer-li .footer-link {
        font-size: 16px;
    }
    .section-2 .center {
        display: flex;
        justify-content: center;
    }
    .section-2 ul {
        display: block;
        margin: 30px 0px;
    }
    .section-2 ul li {
        display: block;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .section-1 .sec1-cover {
        background-position: -450px 100%;
    }
    footer .footer-ul .footer-li {
        display: block;
        margin-bottom: 30px;
    }
    footer .footer-end {
        margin-top: 30px;
    }
    footer .footer-end .footer-h3 {
        font-size: 25px;
    }
}