@font-face {
    font-family: sans;
    src: url(../fonts/PublicSans-Regular.ttf);
}

@font-face {
    font-family: inter;
    src: url(../fonts/Inter-Regular.ttf);
}

body {
    font-family: sans;
}

a,
button,
input,
::after,
::before,
.project .bg,
.services-slider .slide .img img,
.trans {
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

img {
    max-width: 100%;
}

ul,
p {
    padding: 0;
    margin: 0;
}

.pageContainer {
    overflow: hidden;
    padding-top: 100px;
}

a:hover {
    text-decoration: none;
}


/* The Loader */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    overflow: hidden;
}

.no-js #loader-wrapper {
    display: none;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #2C368A;
    -webkit-animation: spin 1.7s linear infinite;
    animation: spin 1.7s linear infinite;
    z-index: 11;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #00ADEA;
    -webkit-animation: spin-reverse 0.6s linear infinite;
    animation: spin-reverse 0.6s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #2C368A;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin-reverse {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes spin-reverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #fff;
    z-index: 10;
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
}

/*nav*/

.nav-bar {
    padding: 15px 0;
    background-color: #fff;
    position: fixed;
    z-index: 10;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
}

.nav-bar.shrunk {
    padding: 5px 0 !important;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
}

.nav-bar ul li {
    margin: 0 10px;
    position: relative;
}

.nav-bar ul li a {
    /* padding-bottom: 10px; */
    display: block;
    position: relative;
    z-index: 1;
    /* overflow: hidden; */
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    /* line-height: 16px; */
    text-transform: uppercase;
    color: #1F1F1F;
}

.nav-bar ul li a::before {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    background: #1F1F1F;
    z-index: -1;
    opacity: 0;
    height: 3px;
    border-radius: 3px;
    width: 100%;
    visibility: hidden;
    transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform-origin: center;
}

.nav-bar.shrunk ul li a::before {
    bottom: -30px;
}

.nav-bar ul li a:hover::before,
.nav-bar ul li.active a::before {
    opacity: 1;
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    visibility: visible;
}

.nav-bar ul li.active a::after {
    opacity: 1 !important;
    transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    -webkit-transform: scale(1) !important;
    visibility: visible !important;
}

/* .nav-bar ul li.active a,
.nav-bar ul li a:hover {
    color: #000;
} */
.nav-links ul li.drop {
    padding-right: 20px;
}

.nav-links ul li.drop ul {
    position: absolute;
    width: 175px;
    left: 0;
    top: 100%;
    background-color: #fff;
    padding: 55px 0 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    border-radius: 5px;
    z-index: 1;
    transition: all .3s ease-in-out;
}

.nav-links ul li.drop:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
}

.nav-links ul li.drop ul li a::before {
    display: none;
}

/* .nav-links ul li.drop ul li {
    margin: 10px 0;
} */

.nav-links ul li.drop ul li a {
    text-transform: capitalize;
    padding: 5px;
}

.nav-links ul li.drop .icofont-rounded-down {
    position: absolute;
    color: #1F1F1F;
    right: 0;
    top: 2px;
    font-size: 13px;
}

.nav-links ul li.drop ul li a {
    color: #000F3B;
}

.nav-buttons a {
    padding: 12px !important;
    background: #2C368A;
    width: 160px;
    color: #fff !important;
    text-align: center;
}

.logo {
    max-width: 200px;
}

.is-menu-open .nav-links ul li {
    left: 0;
}

.nav {
    position: relative;
    z-index: 1;
}

.is-menu-open .nav-links {
    visibility: visible;
    opacity: 1;
    left: 0;
}

.is-menu-open .menu__bg {
    width: 100vh;
    height: 100vh;
    transform: scale(2);
}

.menu__bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #000;
    transition: all .2s linear;
    z-index: 2;
}

/*main section 1*/
.main-sec {
    background-position: center;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 30px;
    position: relative;
    z-index: 1;
    color: #fff;
}

.main-sec::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: -1;
    opacity: .5;
    background: linear-gradient(90deg, rgba(9, 11, 28, 0.8) 0%, rgba(9, 11, 28, 0) 100%);
}

.main-banner {
    min-height: 550px;
}

.main-banner-content {
    width: 100%;
}

.main-banner .txt label {
    font-style: normal;
    font-weight: 600;
    font-size: 10px;
    line-height: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.main-banner .txt h2 {
    font-weight: 400;
    font-style: normal;
    font-weight: 800;
    font-size: 38px;
    line-height: 55px;
    /* or 66px */
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.main-banner .txt p {
    font-family: inter;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
}

.main-banner a {
    width: 191px;
    padding: 15px 20px;
    text-align: center;
    margin-top: 30px;
    background: #FFFFFF;
    border-radius: 4px;
    color: #2C368A;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

/*hover button*/
.hover {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: -1;
    background-color: #00ADEA;
    transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
    opacity: 0;
    visibility: hidden;
}

.hover2::after {
    background-color: #2C368A !important;
}

.hover:hover {
    color: #fff !important;
}

/* .hover2 {
    border: 1px solid #9C3A94;
}

.hover2:hover {
    color: #9C3A94 !important;
} */

.hover:hover::after {
    transform: rotateX(0);
    -ms-transform: rotateX(0);
    -webkit-transform: rotateX(0);
    opacity: 1;
    visibility: visible;
}

/*ask-question*/
.ask-question {
    padding: 40px 0;
    background: #090B1C;
    color: #fff;
}

.ask-question a {
    display: inline-block;
    background: #FFFFFF;
    border-radius: 4px;
    color: #2C368A;
    padding: 15px 25px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

/*introduction section*/
.introduction {
    padding: 80px 0 50px 0;
    background: #F4F5FC;
}

.introduction .title h2 {
    font-style: normal;
    font-weight: 800;
    font-size: 35px;
    line-height: 47px;
    /* identical to box height */
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #0B0D22;
    margin-bottom: 30px;
}

.introduction .text a {
    padding: 10px;
    width: 170px;
    color: #fff;
    background: #2C368A;
    border-radius: 4px;
    text-transform: uppercase;
    text-align: center;
}

.introduction .text p,
.inner-page-txt p {
    font-family: inter;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    /* or 29px */
    color: #1F1F1F;
    margin-bottom: 30px;
}

.introduction .keys h4 {
    font-family: inter;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0.008em;
    text-transform: capitalize;
    margin-bottom: 20px;
    color: #0B0D22;
}

.introduction .keys {
    padding: 40px;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    width: 80%;
    margin-left: 30px;
    margin-top: -30%;
    z-index: 1;
    position: relative;
    text-align: left;
}

.introduction .keys ul {
    list-style-position: inside;
}

.introduction .keys ul li {
    margin: 10px 0;
}

.introduction .image img.imm {
    width: 100%;
}

/*mission & vision*/
.vision-mission {
    padding: 70px 0;
    background-color: #F4F5FC;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.vision-mission::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 50%;
    height: 100%;
    background-image: url(../images/vv.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 60%;
}

.vision-mission .nav-tabs .nav-item.show .nav-link,
.vision-mission .nav-tabs .nav-link.active {
    background: #2C368A;
    color: #fff;
    box-shadow: none;
}

.vision-mission .nav-tabs .nav-link {
    background: #FFFFFF;
    border-width: 1px 1px 1px 0px;
    border-style: solid;
    border-color: #EBEBEB;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
    border-radius: 0;
    color: #000;
    padding: 10px 20px;
    position: relative;
}

.vision-mission .nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    top: 100%;
    width: 16px;
    height: 12px;
    background-image: url(../images/tr.png);
    background-size: 100% 100%;
    left: calc((100% - 20px) / 2);
}

.nav-tabs {
    border: 0;
}

.vision-mission .tab-content {
    padding: 30px 0;
    font-family: inter;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    /* or 29px */
    color: #0B0D22;
}

.values h4 {
    font-family: inter;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 29px;
    text-transform: capitalize;
    color: #0B0D22;
    margin-bottom: 20px;
}

.values {
    margin-top: 30px;
}

.values ul {
    list-style-position: inside;
}

.values ul li {
    width: 50%;
    font-family: inter;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    margin: 5px 0;
    color: #1F1F1F;
}

.vision-mission .img {
    height: 80%;
    min-height: 300px;
    background-position: center;
    background-size: cover;
    position: relative;
    margin-left: 100px;
    margin-bottom: 120px;
}

.vision-mission .img img {
    position: absolute;
    left: -100px;
    bottom: -120px;
    border: 20px solid #F4F5FC;
    height: auto;
    width: 70%;
}

/*services*/
.services {
    padding: 100px 0;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}

.services::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(9, 11, 28, 0.85);
}

.sec-header {
    margin-bottom: 40px;
}

.sec-header h2 {
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 47px;
    /* identical to box height */
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.sec-header span {
    font-family: inter;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #FFFFFF;
}

.services-slider .slide {
    margin: 0 10px;
    background-color: #fff;
}

.services-slider .slide .img {
    height: 230px;
    overflow: hidden;
}

.services-slider .slide .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-slider .slide:hover .img img {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.services-slider .slide .body {
    padding: 20px;
}

.services-slider .slide .body h3 {
    margin-bottom: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.02em;
    color: #1F1F1F;
}

.services-slider .slide a {
    width: 38px;
    height: 38px;
    background: #2C368A;
    text-align: center;
    line-height: 38px;
    color: #fff;
    font-size: 20px;
}

.services-slider {
    margin-top: 70px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #FFFFFF;
    top: calc((100% - 40px) / 2);
    text-align: center;
    color: #1F1F1F;
    outline: 0;
}

.owl-carousel .owl-nav button i {
    font-size: 14px;
}

.owl-carousel .owl-nav button.owl-prev {
    right: -20px;
}

.owl-carousel .owl-nav button.owl-next {
    left: -20px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #2C368A;
}

/**/
.projects {
    padding: 70px 0;
    background-color: #F4F5FC;
    background-image: url(../images/bgg.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed
}

.header-with-button {
    margin-bottom: 50px;
}

.header-with-button .h h2 {
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 47px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #0B0D22;
}

.header-with-button .h p {
    font-family: inter;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    max-width: 500px;
    color: #1F1F1F;
}

.header-with-button a {
    display: inline-block;
    color: #fff;
    padding: 12px 25px;
    background: #2C368A;
    border-radius: 4px;
    margin: 10px 0;
}

.project {
    margin: 15px 0;
    position: relative;
    overflow: hidden;
    height: calc(100% - 30px);
}

.project .bg {
    min-height: 300px;
    height: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.project .bg::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(11, 13, 34, 0) 0%, rgba(11, 13, 34, 0.8) 100%);

}

.project .title {
    position: absolute;
    left: 20px;
    right: 20px;
    color: #fff;
    bottom: 20px;
}

.project .title a {
    display: block;
    height: 30px;
    width: 30px;
    background-color: #fff;
    color: #2C368A;
    font-size: 26px;
    text-align: center;
    line-height: 30px;
}

.project .title label {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
}

.project .title h3 {
    margin: 0 0 10px 0;
    font-family: inter;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.008em;
    text-transform: capitalize;
    line-height: 33px;
}

.project:hover .bg {
    transform: scale(1.1) translateY(-6px);
    -ms-transform: scale(1.1) translateY(-6px);
    -webkit-transform: scale(1.1) translateY(-6px);
}

.project:hover .bg::after {
    opacity: .8;
}

/*certificates*/
.certificates {
    padding: 70px 0;
}

.certificate {
    margin: 15px 0;
    background: #F4F5FC;
    border: 1px solid #E5E7F8;
    height: 400px;
    cursor: pointer;
}

.certificate img {
    max-width: 85%;
    max-height: 85%;
    width: auto;
    height: auto;
}

/*clients*/
.clients {
    padding: 20px 0 70px 0;
}

.clients .sec-header h2 {
    color: #0B0D22;
}

.client-slide {
    height: 150px;
    margin: 0 10px;
}

.client-slide img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto !important;
}

.nav-tabs .nav-link {
    border: 0;
    border-radius: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    /* identical to box height, or 34px */
    letter-spacing: -0.02em;
    color: #1F1F1F;
    border-bottom: 2px solid #eee;

}

.tab-content {
    margin-top: 50px;
}

.clients .nav-tabs .nav-item.show .nav-link,
.clients .nav-tabs .nav-link.active {
    border: 0;
    color: #2C368A;
    border-bottom: 2px solid #2C368A;
}

.clients-slider .owl-nav button.owl-next,
.clients-slider .owl-nav button.owl-prev {
    font-size: 50px;
    background: none;
    width: auto;
    height: auto;
    border-radius: 0;
    outline: 0;
}

.clients-slider .owl-nav [class*=owl-]:hover {
    background: none;
    color: #2C368A;
    text-decoration: none;
}

/**/
footer {
    padding: 80px 0 50px 0;
    background-color: #090B1C;
    color: #fff;
    border-top: 6px solid #00ADEA;
}

footer ul li {
    margin: 6px 0;
}

footer p {
    font-family: inter;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    margin-top: 20px;
}

footer ul li a {
    font-style: normal;
    font-family: inter;
    font-weight: 300;
    font-size: 14px;
    line-height: 170%;
    /* or 31px */
    letter-spacing: -0.004em;
    color: #FFFFFF !important;
    display: inline-block;
    text-transform: capitalize;
}

footer ul li a:hover {
    -ms-transform: translateX(6px);
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
}

footer ul.contactt li {
    margin: 15px 0;
}

footer ul.contactt li a {
    padding-left: 30px;
    position: relative;
}

footer ul.contactt li i {
    display: inline-block;
    position: absolute;
    left: 0;
    font-size: 15px;
    top: 6px;
}

footer ul.contactt li i::before {
    color: transparent;
    background: linear-gradient(180deg, #2C368A 0%, #00ADEA 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

footer .footer-h {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 35px;
    letter-spacing: 0.004em;
    text-transform: capitalize;
    color: #FFFFFF;
    display: block;
    margin-bottom: 20px;
}

.copyrights {
    padding: 20px 0;
    background-color: #090B1C;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    /* identical to box height */
    letter-spacing: -0.004em;
    border-top: 1px solid rgba(242, 242, 242, 0.24);
    font-family: inter;
    color: #B7B7B7;
}

#back-to-top {
    display: none;
}

#back-to-top .top {
    z-index: 9;
    position: fixed;
    margin: 0px;
    color: #ffffff;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    bottom: 105px;
    right: 15px;
    border-radius: 3px;
    background: transparent;
    font-size: 12px;
    background: #2C368A;
    width: 40px;
    height: 40px;
    text-align: center;
}

/**/
.full-hight-img {
    min-height: 400px;
    height: 100%;
}

.full-hight-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.inner-page-txt p {
    font-size: 15px !important;
}

.inner-page-txt p:last-child {
    margin: 0 !important;
}

.breadCrumb {
    min-height: 250px !important;
    overflow: hidden;
}

.white-txtt {
    font-family: inter;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 33px;
    color: #fff;
}

/*contact us */
.footer_get_touch_outer {
    margin-top: 80px;
}

/* .container {
    width: 95%;
    max-width: 1140px;
    margin: auto;
}

.grid-70-30 {
    display: grid;
    grid-template-columns: 70% 30%;
} */

.get_form_inner {
    display: block;
    padding: 50px 40px;
    background: #fff;
    box-shadow: -4px -2px 20px -7px #cfd5df;
}

.f-group {
    margin: 15px 0;
}

input[type="text"],
input[type="text"],
input[type="email"],
input[type="tel"] {
    border: 1px solid #dbdbdb;
    border-radius: 2px;
    color: #333;
    height: 42px;
    padding: 0 0 0 20px;
    width: 100%;
    outline: 0;
}

/* 
.grid-50-50 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.grid-full {
    margin: 20px 0;
} */

textarea {
    border: 1px solid #dbdbdb;
    border-radius: 2px;
    color: #333;
    padding: 12px 0 0 20px;
    width: 100%;
    outline: 0;
    margin-bottom: 20px;
}

.get_form_inner_text h3 {
    color: #333;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 40px;
}

input[type="submit"] {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    background: transparent;
    border: 2px solid;
    font-weight: 500;
    padding: 10px 20px;
    outline: 0;
    cursor: pointer;
    color: #103e65;
    transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -webkit-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -moz-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -ms-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

input[type="submit"]:hover {
    background-color: #00ADEA;
    border-color: #00ADEA;
    color: #fff;
}

.get_say_form {
    padding: 45px 0 25px 30px;
    background: #2C368A;
    position: relative;
    height: 100%;
}

.get_say_form h5 {
    color: #fff;
    font-size: 26px;
    margin: 0 0 40px;
}

.footer_get_touch_inner {
    margin-bottom: 60px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.get_say_social-icn {
    display: flex;
    margin-top: 80px;
}

.get_say_social-icn a {
    font-size: 22px;
    color: #fff;
    padding: 0 20px 0 0;
}

.get_say_info_sec i {
    color: #fff;
    font-size: 32px;
}

.get_say_info_sec>li {
    display: grid;
    grid-template-columns: 40px auto;
    align-items: center;
    margin-bottom: 40px;
}

.get_say_info_sec>li a {
    width: 100%;
    display: block;
    padding: 15px 25px;
    color: #fff;
    font-size: 16px;
    text-decoration: unset;
    font-weight: 500;
    background: #162b65;
    border-radius: 5px 0 0 5px;
    transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -webkit-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -moz-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -ms-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.get_say_info_sec>li a:hover {
    background-color: #00ADEA;
}

.map {
    height: 500px;
}

.map iframe {
    height: 100%;
    width: 100%;
}

/**/
@media only screen and (max-width : 991px) {
    .footer-sec {
        margin-bottom: 30px;
    }

    .nav-links ul li.drop .icofont-rounded-down {
        color: #fff;
        font-size: 18px;
    }

    .nav-links {
        position: fixed;
        z-index: 30;
        padding: 70px 20px 20px 20px;
        /*overflow-y: scroll;*/
        /*overflow-x: hidden;*/
        opacity: 0;
        visibility: hidden;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        transition: all .3s linear;
    }

    .nav-buttons a {
        width: 190px;
    }

    .nav-links ul li a {
        display: block;
        text-align: center;
        padding: 4px;
        font-size: 23px;
        color: #FFFFFF;
    }

    .nav-links ul li {
        margin: 25px 0;
        text-align: center;
    }

    .close-menu {
        color: #fff;
        cursor: pointer;
        position: absolute;
        top: 30px;
        right: 20px;
    }

    .nav-bar .container,
    .nav-bar {
        padding: 0;
    }

    .open-menu {
        cursor: pointer;
        float: right;
        margin-right: 15px;
        color: #000;
        font-size: 35px;
    }

    .nav-links ul li.drop ul {
        position: initial;
        width: 100%;
        margin: auto;
        border: none;
        transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transition: none;
        display: none;
        /* background: none; */
        padding: 10px 0;
        border-radius: 0;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative;
        top: -8px;
    }

    .nav-links ul li.drop {
        padding-right: 0;
    }

    .nav-links ul li.drop ul li a {
        padding: 0 20px;
    }

    .nav-links ul li.drop:hover ul {
        opacity: 1;
        visibility: visible;
    }

    .nav-links ul li.drop .icofont-rounded-down {
        right: 20px;
        top: 6px;
        padding: 7px 10px;
        left: auto;
        background: #fff;
        cursor: pointer;
        color: #021E6B;
    }

    .pageContainer {
        padding-top: 70px;
    }

    .certificate {
        height: 300px;
    }

    .introduction .image {
        margin-top: 20px;
    }

    .nav-bar ul li a::before {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 335px;
        background: #1F1F1F;
        z-index: -1;
        opacity: 0;
        height: 3px;
        border-radius: 3px;
        width: 110px;
        visibility: hidden;
        transform: scale(0);
        -ms-transform: scale(0);
        -webkit-transform: scale(0);
        transform-origin: center;
    }

}

@media only screen and (max-width : 767px) {

    .values ul li {
        width: 100%;
    }

    .map {
        height: 350px;
    }

    .get_form_inner {
        padding: 30px 20px;
    }

    .get_say_form {
        padding: 45px 0 25px 15px;
    }

    .pageContainer {
        padding-top: 95px;
    }

    .vision-mission .img img {
        display: none;
    }

    .owl-carousel .owl-nav button.owl-prev {
        right: 0;
    }

    .owl-carousel .owl-nav button.owl-next {
        left: 0;
    }

    .vision-mission .img {
        height: 100%;
        margin-left: 0;
        margin-bottom: 0;
        margin-top: 20px;
    }

    .introduction .keys {
        padding: 30px;
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }

    .introduction .keys h4 {
        font-size: 20px;
    }

    .introduction .text {
        padding-left: 0px;
    }


    .close-btn {
        width: 100%;
    }

    .main-sec {
        padding-top: 0;
        padding-bottom: 0;
    }

    .introduction .title h2 {
        font-size: 40px;
        margin-top: 30px;
    }

    .latest .bann-sec p {
        font-size: 18px;
    }

    .latest .bann-sec {
        height: 430px;
    }

    .copyrights span {
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-sec {
        margin-bottom: 20px;
    }

    .latest .bann-sec h2 {
        font-size: 33px;
    }

    /* width */
    .nav-links::-webkit-scrollbar {
        width: 4px;
    }

    /* Track */
    .nav-links::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    /* Handle */
    .nav-links::-webkit-scrollbar-thumb {
        background: #888;
    }

    /* Handle on hover */
    .nav-links::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    .m-overlay {
        position: fixed;
        z-index: 29;
        width: 100%;
        height: 100%;
        top: 0;
        left: -100%;
        bottom: 0;
        background: #375094;
        opacity: .35;
    }

    nav .logo {
        height: 90px;
    }

    .nav-bar {
        padding: 10px 0;
        border-bottom: 2px solid #eee;
    }

        .nav-bar ul li a::before {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 32vw;
            background: #1F1F1F;
            z-index: -1;
            opacity: 0;
            height: 3px;
            border-radius: 3px;
            width: 110px;
            visibility: hidden;
            transform: scale(0);
            -ms-transform: scale(0);
            -webkit-transform: scale(0);
            transform-origin: center;
        }
}