﻿body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

:root {
    --main-color: #EDF8FF;
    --button-color: #1b6eb3;
    --secondary-color: #1d4295;
    --third-color: #2a95ca;
    --buuton2-color: #1b6eb3;
}


.fa-sharp {
    color: var(--button-color);
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.form-control {
    /*  background-color: red;*/
}

.up {
    position: fixed;
    bottom: 50px;
    right: -60px;
    background-color: white;
    color: var(--secondary-color);
    font-weight: bolder;
    font-size: 18px;
    padding-top: 30px;
    padding-left: 15px;
    border: var(--secondary-color) 1px solid;
    border-radius: 50px;
    font-family: Arial, Tahoma;
    cursor: pointer;
    transition: 0.2s;
    height: 100px;
    width: 60px;
    z-index: 10;
}

    .up.show {
        right: 20px;
    }

/*section 1 */





/*spinner-wrapper*/

.spinner-wrapper {
    background-color: var(--main-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1900;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 2s;
}

.spinner-grow {
    margin-left: 10px;
}


/*end spinner */





/*pop up*/



.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 200ms ease-in-out;
    border: 1px solid black;
    z-index: 99999;
    background-color: white;
    width: 500px;
    padding: 20px;
    /* margin-top: 10px; */
}



@media only screen and (max-width: 1444px) {

    .popup {
        width: 500px;
    }
}

/* Media Query for Mobile Devices */
@media (max-width: 480px) {

    .popup {
        width: 250px;
    }
}

/* Media Query for low resolution  Tablets, Ipads */
@media (min-width: 481px) and (max-width: 767px) {

    .popup {
        width: 300px;
    }
}

/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 768px) and (max-width: 1024px) {

    .popup {
        width: 500px;
    }
}

/* Media Query for Laptops and Desktops */
@media (min-width: 1025px) and (max-width: 1280px) {

    .popup {
        width: 600px;
    }
}

/* Media Query for Large screens */
@media (min-width: 1281px) {

    .popup {
        width: 800px;
    }
}


.popup.active {
    transform: translate(-50%, -50%) scale(1);
}

.btn-relative {
    position: relative;
}

    .btn-relative .close-button {
        position: absolute;
        top: -50px;
        right: -50px;
        height: 54px;
        width: 54px;
        border-radius: 100px;
        opacity: 1;
        box-sizing: content-box;
        padding: 0;
        border: 2px solid #ccd5dd;
        transition: all .15s;
        color: var(--secondary-color);
    }


        .btn-relative .close-button:hover {
            border: 2px solid var(--button-color);
            color: var(--button-color);
        }

.popup .title {
    text-align: center;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1.8rem;
}

.popup form {
    width: 100%;
    /* padding-left: 10px; */
}

.popup p {
    /* padding-left: 10px; */
    color: var(--h6-color);
}

i {
    padding: 5px;
    color: var(--secondary-color);
}

.popup form input {
    display: block;
    margin: 20px 0 20px;
    width: 100%;
    padding: 8px;
    border: 1px solid black;
}

.popup form textarea {
    margin: 0 0 20px;
    width: 100%;
    height: 90px;
    padding: 8px;
    border: 1px solid black;
}

.check2 {
    padding: 10px;
    margin: 10px;
}


    .check2 label {
        color: var(--h6-color);
    }

    .check2 .form-check-input:checked {
        background-color: var(--button-color);
    }


.popup .large {
    width: 100%;
    height: 80px;
    background-color: var(--button-color);
    border: var(--button-color);
    position: relative;
    border-radius: 3px;
    /* margin-left: 20px; */
}

    .popup .large:hover {
        background-color: var(--buuton2-color);
    }

    .popup .large i {
        margin-left: 215px;
    }

        .popup .large i::after {
            content: " ";
            position: absolute;
            height: 100%;
            width: 1px;
            background-color: rgba(179, 173, 173, 0.8);
            left: 315px;
            top: 0;
        }


#overlay {
    position: fixed;
    opacity: 0;
    transition: 200ms ease-in-out;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    pointer-events: none;
    z-index: 500;
}

    #overlay.active {
        opacity: 1;
        pointer-events: all;
    }


/* end pop up*/


    .module-title {
        color: var(--secondary-color);
        text-align: center;
        padding: 60px 50px;
        font-weight: bold;
        font-size: 50px;
    }


.module-sub {
    text-align: center;
    padding: 20px 0;
    font-weight: bold;
    font-size: 20px;
}

.module-page .para {
    text-align: center;
    margin: auto;
}




















/*  start slider */

.carousel-item a {
    text-decoration: none;
    color: var(--main-color);
    font-size: 35px;
    background: #00000038;
}

    .carousel-item a:hover {
        text-decoration: none;
        color: var(--main-color);
    }

/*  end slider */





/*fixed scroll*/


/* Style the active class (and li on mouse-over) */

.sec2 .bt {
    outline: none;
    padding-bottom: 11px;
    padding: 10px 16px;
    border-bottom: rgba(255, 253, 253,0) 2px solid;
}

.sec2 .color, .bt {
    outline: none;
    color: var(--buuton2-color);
    border-bottom: 2px solid var(--button-color);
}

.sec2 .bt:hover {
    color: var(--buuton2-color);
    border-bottom: 2px solid var(--buuton2-color);
}


/*button bootstra*/

.sec2 .lar {
    background-color: var(--button-color);
    border: none;
}

    .sec2 .lar:hover {
        background-color: var(--buuton2-color);
        color: white;
        border: none;
    }

/*image in header*/
.sec2 .header {
    width: 100px;
    height: 100px;
}
/* section*/
select:hover {
    outline: 2px var(--button-color) solid;
}



.sec1 .navbar .lar {
    height: 50px;
    width: 180px;
}

.form-control {
    text-align: center;
}

.navbar.container {
    text-align: center;
}

.sec1.fixed {
    background-color: white;
    position: fixed;
    top: -10px;
    left: 0;
    right: 0;
    z-index: 300;
    padding: 10px;
    align-items: center;
    /*  transition: all 0.5s ease-in-out;*/
}
/*
.sec1 .navbar .res{
  position: relative;
  
}


.sec1 .navbar .res:hover .reso{
  display: block;
  
}

.sec1 .navbar .reso{
  position: absolute;
  background-color: #ffffff;
  display: none;
width: 150px;
 padding: 10px;
 margin: 0;
 color: #24262b;
}

.sec1 .navbar .reso li{
  color: black;
  text-align: center;
  padding: 20px;
 
}
.sec1 .navbar .reso li .colr{
  text-decoration: none;
  color: black;
  padding: 20px;
}
.sec1 .navbar .reso li .colr:not(:last-child){
  color: black;
border-bottom: 1px black solid;
}


.sec1 .navbar .reso li .colr:hover{
  color: var(--button-color);
border: none;
}*/

/* Add a box shadow to the navbar */
.sec1.fixed {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

    .sec1.fixed .nav-links li a {
        color: var(--secondary-color);
    }

.sec1 .container {
    text-align: center;
}



.sec1 .navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
}

    .sec1 .navbar h2 {
        display: inline-block;
        margin: 0;
        padding: 0;
        white-space: nowrap;
        color: var(--secondary-color);
    }



    .sec1 .navbar ul {
        display: flex;
        justify-content: space-around;
        list-style: none;
        width: 90%;
        margin-left: 20px;
        align-items: center;
        text-align: center;
        margin-top: 15px;
    }

        .sec1 .navbar ul li a {
            text-decoration: none;
            font-size: 20px;
/*            color: white;*/
        }








/*
.sec1 .navbar ul li:first-child{
  color: rgb(64, 66, 63);
  border-bottom: solid 2px greenyellow;
}

.sec1 .navbar ul li:not(:first-child) a:hover{
  color: greenyellow;
  border-bottom: solid 2px greenyellow;
}

*/
.sec2 .burger {
    display: none;
}


.sec2 {
    /* background-image: url(/image/main.jpg); */
/*    height: 100vh;*/
    width: 100vw;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

    .sec2 .hcent {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        color: white;
        font-size: 80px;
    }

@media only screen and (max-width: 1200px) {
    .sec2 {
        height: 50vh;
        width: 100vw;
    }
}

@media only screen and (max-width: 650px) {
    .sec2 {
        height: 35vh;
        width: 100vw;
    }
}

@media only screen and (max-width: 1444px) {

    body {
        overflow-x: hidden;
    }


    .nav-links {
        position: fixed;
        top: 110px;
        gap: 0;
        flex-direction: column;
        background-color: #fffefe;
        width: 100%;
        text-align: center;
        transform: translatey(-150%);
        z-index: 100;
    }

        .nav-links li {
            margin: 16px 0;
            width: 100%;
        }

    .sec1 .navbar ul {
        width: 100%;
        margin-left: 0;
    }

        .sec1 .navbar ul li {
            border-bottom: rgba(89, 87, 87,0.2) 2px solid;
            padding-bottom: 10px;
            width: 400px;
        }

            .sec1 .navbar ul li a {
                text-decoration: none;
                font-size: 20px;
                color: var(--secondary-color);
            }




    .nav-links.active {
        transform: translatey(0%);
    }

    .nav-links ul {
        opacity: 0;
    }

    .sec2 .burger {
        margin-left: 10px;
        display: block;
        cursor: pointer;
        color: rgb(0, 0, 0);
    }
}


/*interface section */



/*end page 1*/

/*start with section3 page 2*/

.sec3, .sec4, .sec5, .sec6, .sec7, .sec8 {
    background-color: var(--main-color);
    width: 100%;
    position: relative;
    border-bottom: solid rgb(48, 47, 47) 2px;
}



    /*start tooltip*/

    .sec3 .content-sec3, .sec4 .content-sec4, .sec5 .content-sec5, .sec6 .content-sec6, .sec7 .content-sec7, .sec8 .content-sec8, .sec9 .content-sec9 {
        position: relative;
    }

.content-sec3::before, .content-sec4::before, .content-sec5::before, .content-sec6::before, .content-sec7::before, .content-sec8::before, .content-sec9::before {
    position: absolute;
    left: 20px;
    bottom: 90%;
    text-align: center;
    margin-bottom: 5px;
    display: none;
    transition: 0.5s;
    /* word-break: break-all; */
    content: attr(title);
    white-space: wrap;
    background-color: white;
    color: black;
    border-radius: 5px;
    padding: 10px 10px;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.content-sec3:hover::before, .content-sec4:hover::before, .content-sec5:hover::before, .content-sec6:hover::before, .content-sec7:hover::before, .content-sec8:hover::before, .content-sec9:hover::before {
    display: block;
}


/*end tooltip*/





.sec3 h1, .sec4 h1, .sec5 h1, .sec6 h1, .sec7 h1, .sec8 h1 {
    color: var(--secondary-color);
    padding: 80px 10px 0;
}

.sec3 h3, .sec4 h3, .sec5 h3, .sec6 h3, .sec7 h3, .sec8 h3 {
    font-size: 22px;
}


.sec3 p, .sec4 p, .sec5 p, .sec6 p, .sec7 p, .sec8 p {
    text-align: justify;
    padding: 0 10px;
    font-size: larger;
}

.sec3 .content-button, .sec4 .content-button, .sec5 .content-button, .sec6 .content-button, .sec7 .content-button, .sec8 .content-button, .sec9 .content-button {
    /* width: 400px; */
    display: flex;
    align-items: center;
    /* justify-content:center; */
    background-color: white;
    height: 100px;
    box-shadow: 1px 3px 5px lightblue;
    cursor: pointer;
    border-radius: 3px;
    margin: 10px;
    /* padding-left: 0px;
margin: 20px; */
}


    .sec3 .content-button:hover, .sec4 .content-button:hover, .sec5 .content-button:hover, .sec6 .content-button:hover, .sec7 .content-button:hover, .sec8 .content-button:hover, .sec9 .content-button:hover {
        box-shadow: 0px 2px var(--button-color);
    }


/*end section3*/




/*start section 9*/


/*section 9*/
.section9 {
    background-color: var(--third-color);
    padding: 100px 0;
}

    .section9 .container {
        border-bottom: none;
        text-align: center;
    }

    .section9 .text8 h1 {
        color: var(--secondary-color);
    }


    .section9 .large {
        /* width: 400px; */
        height: 80px;
        background-color: var(--main-color);
        color: var(--button-color);
        font-weight: 800;
        border: var(--button-color);
        position: relative;
        border-radius: 3px;
    }

        .section9 .large:hover {
            background-color: var(--buuton2-color);
            color: white;
        }

        .section9 .large i {
            margin-left: 215px;
        }

            .section9 .large i::after {
                content: " ";
                position: absolute;
                height: 100%;
                width: 1px;
                background-color: rgba(179, 173, 173, 0.8);
                left: 315px;
                top: 0;
            }








/*pop up*/


.popup2 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 200ms ease-in-out;
    border: 1px solid black;
    z-index: 9999999999999;
    background-color: white;
    width: 500px;
    padding: 20px;
    margin-top: 10px;
}

    .popup2.active {
        transform: translate(-50%, -50%) scale(1);
    }

.btn-relative2 {
    position: relative;
}

    .btn-relative2 .close-button2 {
        position: absolute;
        top: -50px;
        right: -50px;
        height: 54px;
        width: 54px;
        border-radius: 100px;
        opacity: 1;
        box-sizing: content-box;
        padding: 0;
        border: 2px solid #ccd5dd;
        transition: all .15s;
        color: var(--secondary-color);
    }


        .btn-relative2 .close-button2:hover {
            border: 2px solid var(--button-color);
            color: var(--button-color);
        }

.popup2 .title2 {
    text-align: center;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1.8rem;
}

.popup2 form {
    width: 434px;
    padding-left: 10px;
}

.popup2 p {
    padding-left: 10px;
    color: var(--h6-color);
}

.popup2 form input {
    display: block;
    margin: 10px 10px;
    width: 100%;
    padding: 8px;
}

.popup2 form textarea {
    margin: 10px 10px;
    width: 100%;
    height: 90px;
}


.check3 {
    padding: 10px;
    margin: 10px;
}


    .check3 label {
        color: var(--h6-color);
    }

    .check3 .form-check-input2:checked {
        background-color: var(--button-color);
    }


.popup2 .large {
    width: 400px;
    height: 80px;
    background-color: var(--button-color);
    border: var(--button-color);
    position: relative;
    border-radius: 3px;
    margin-left: 20px;
}

    .popup2 .large:hover {
        background-color: var(--buuton2-color);
    }

    .popup2 .large i {
        margin-left: 215px;
    }

        .popup2 .large i::after {
            content: " ";
            position: absolute;
            height: 100%;
            width: 1px;
            background-color: rgba(179, 173, 173, 0.8);
            left: 315px;
            top: 0;
        }


#overlay2 {
    position: fixed;
    opacity: 0;
    transition: 200ms ease-in-out;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    pointer-events: none;
    z-index: 500;
}

    #overlay2.active {
        opacity: 1;
        pointer-events: all;
    }


/* end pop up*/


/*footer*/

.container2 {
    padding: 20px;
    max-width: 1170px;
    margin: auto;
    margin-top: 50px;
    border-bottom: solid 2px rgb(43, 42, 42);
}

.row {
    display: flex;
    flex-wrap: wrap;
}

ul {
    list-style: none;
}

.footer {
    background-color: white;
    padding: 10px 0 10px;
    position: relative;
}

footer::after {
    content: " ";
    position: absolute;
    background: linear-gradient(to right,#7a64ac,rgb(84 73 158),rgb(44 146 201));
    width: 100%;
    height: 4px;
    left: 0;
    top: 3px;
}

.footer ul {
    padding: 0;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
    margin-left: 50px;
}

.footer-block h4 {
    font-size: 18px;
    color: var(--secondary-color);
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

    .footer-block h4::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        background-color: #e91e63;
        height: 2px;
        box-sizing: border-box;
        width: 50px;
    }

.footer-block ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-block ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    color: #2b2a2a;
    display: block;
    transition: all 0.3s ease;
}

i {
    padding: 5px;
    color: var(--secondary-color);
}

.footer-block .social-links a {
    outline: none;
    border: none;
    text-decoration: none;
    color: black;
    /* display: block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 0px 0px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #2a19e9;
	transition: all 0.5s ease; */
}

    .footer-block .social-links a:hover {
        color: #24262b;
        background-color: #ffffff;
    }



.boot {
    padding-top: 20px;
}

    .boot .container {
        max-width: 1170px;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

.copyrightlogo {
    text-align: right;
}

/*responsive*/
@media(max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }

    footer .boot .boot2 {
        display: block;
        width: 50%;
        margin: 0;
    }

        footer .boot .boot2 .but2 input {
            width: 300px;
        }
}

@media(max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}
