:root {
    --light: 300;
    --regular: 400;
    --medium: 500;
    --semi-bold: 600;
    --yellow: #f6ab3f;
    --cyan: #1986c7;
    --navy: #022454;
    --gray: #545454;
    --dark-gray: #404040;
    --light-gray: #efefef;
    --button-height: 39px;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Poppins", sans-serif;
}
h1,h2,h3,h4,h5,h6,
p,span,button,a {
    overflow-wrap:break-word;
}
@font-face {
    font-family: "Segoe UI";
    src: url("/static/fonts/SegoeUI.woff") format("woff");
}
.solid-btn {
    height: var(--button-height);
    background-color: var(--yellow) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    outline: none;
    border: 2px solid transparent;
}
.solid-btn:hover {
    border: 2px solid #fff;
    background-color: transparent !important;
}
.empty-btn {
    height: var(--button-height);
    border: 2px solid #fff;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #fff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.empty-btn:hover {
    background-color: var(--yellow);
    border-color: transparent;
    color: #fff;
    text-decoration: none;
}
/* **********************************************************Banner****************************************************** */
.banner {
    /* overflow: hidden; */
    position: relative;
}

.banner-slider .slick-slide {
    height: 650px;
    /* background-image: url(../img/banner.png); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
@media (max-width: 768px) {
    .banner .banner-slider .slick-slide {
        height: 400px;
    }
}
.banner h1 {
    font-size: 47px;
    font-weight: 500;
    color: #fff;
}

.banner p {
    color: #fff;
    font-size: 27px;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 0px;
}
.banner .header {
    padding-top: 50px;
    height: 125px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
}
@media (max-width: 768px) {
    .banner h1 {
        text-align: center;
        font-size: 38px;
    }
    .banner p {
        text-align: center;
    }
}
@media (max-width: 575px) {
    .banner h1 {
        font-size: 32px;
    }
    .banner p {
        font-size: 20px;
    }
}
@media (max-width: 420px) {
    .banner h1 {
        font-size: 28px;
    }
    .banner p {
        font-size: 16px;
    }
}
.banner .header nav {
    display: flex;
    align-items: center;
    /* gap: 100px; */
    gap: 15px;
    position: relative;
}
@media (max-width: 992px) {
    .banner .header nav {
        gap: 20px;
        transition: gap 0.3s ease-in-out;
        -webkit-transition: gap 0.3s ease-in-out;
        -moz-transition: gap 0.3s ease-in-out;
        -ms-transition: gap 0.3s ease-in-out;
        -o-transition: gap 0.3s ease-in-out;
    }
}
body:not(.inner-page) .header-container {
    height: calc(650px - 125px);
    display: flex;
    align-items: center;
}
@media (max-width: 768px) {
    .banner .header {
        height: 90px;
    }
    body:not(.inner-page) .header-container {
        height: calc(400px - 90px);
    }
    .inner-page .header-container{
        min-height: calc(400px - 90px);
    }
}
.banner .header nav .distributer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 103px);
}
.banner .header nav .distributer .right-ul {
    display: flex;
    align-items: flex-start;
    /* gap: 35px; */
    /* gap: 20px; */
    font-size: 14px;
    margin-bottom: 0px;
}
.banner .header nav .distributer .right-ul li:not(:last-child){
    margin-inline-end:20px
}
@media (max-width: 992px) {
    .banner .header nav .distributer .right-ul {
        /* gap: 15px; */
        transition: gap 0.3s ease-in-out;
        -webkit-transition: gap 0.3s ease-in-out;
        -moz-transition: gap 0.3s ease-in-out;
        -ms-transition: gap 0.3s ease-in-out;
        -o-transition: gap 0.3s ease-in-out;
    }
    .banner .header nav .distributer .right-ul li:not(:last-child){
        margin-inline-end:15px
    }
}
@media (max-width: 768px) {
    .banner .header nav .distributer {
        justify-content: flex-end;
    }
}
.banner .header nav a {
    color: #fff;
}

.banner .header nav .distributer ul:last-child a {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    padding-bottom: 20px;
}
.banner .header nav .distributer ul:last-child a:hover {
    text-decoration: none;
}
.banner .header nav .distributer ul:last-child a svg path {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.banner
    .header
    nav
    .distributer
    ul:last-child
    li:not(:first-of-type)
    a:not(.active):hover
    svg
    path {
    fill: var(--yellow);
}
.banner .header .lang-toggler {
    min-width: 76px;
    height: 36px;
    display: flex;
    align-items: center;
    border: 1px solid var(--yellow);
}
.banner .header .lang-toggler a {
    min-width: 50%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.banner .header .lang-toggler a:not(.active):hover span {
    color: var(--yellow);
}
.banner .header .lang-toggler span {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 12px;
    font-weight: var(--medium);
    height: 35px;
    font-family: "Poppins", sans-serif!important;
}
.banner .header .lang-toggler a.active span {
    background-color: var(--yellow);
    width: calc(100% + 1px);
}
.about-us-menu {
    background-color: #fff;
    /* width:193px; */
    display: flex;
    flex-direction: column;
    gap: 0px !important;
    padding: 0px 20px 0px 20px;
    position: absolute;
    top: calc(100% + 60px);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.about-us__li {
    position: relative;
}
.about-us__li:hover .about-us-menu {
    z-index: 2;
    opacity: 1;
    top: calc(100% + 10px);
}

.about-us-menu li a {
    width: 100%;
    text-align: start;
    font-size: 13px !important;
    font-weight: var(--medium) !important;
    color: var(--navy) !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 193px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.about-us-menu li a:hover {
    color: var(--yellow) !important;
}
.about-us-menu .sub-menu {
    flex-direction: column;
    gap: 0px !important;
}

.search__form.active {
    width: 100%;
}
.search__li {
    display: flex;
    align-items: center;
    gap: 10px;
    /* width: 21px; */
    width: 29px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 40px;
    padding-right: 40px;
}
.open-search svg{
    width: 29px;
    height: 29px;
}
.search__li.active {
    width: 100%;
}
.search__li .search__form {
    position: relative;
}
.search__li .search__form input {
    background-color: transparent;
    border: none;
    color: #fff;
    height: 34px;
    border-bottom: 1px solid #fff;
}
.search__li .search__form i {
    color: #fff;
    position: absolute;
    right: 5px;
    bottom: 10px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.search__li .search__form i:hover {
    color: var(--yellow);
}
.search__li .search__form input::placeholder {
    color: #fff;
}
.search__li .search__form input:focus {
    outline: none;
}
.logo img {
    width: 95px;
}
body:not(.inner-page) .logo img {
    width: 125px;
}
@media(max-width:1200px){
    body:not(.inner-page) .logo img {
        width: 95px;
    }
}
.toggler {
    flex-direction: column;
    gap: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: 0px;
    cursor: pointer;
    display: none;
}
.toggler span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    display: block;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.toggler:hover span {
    background-color: var(--yellow);
}

@media (max-width: 992px) {
    .banner .header .lang-toggler {
        height: 30px;
        width: 60px;
    }
    .banner .header .lang-toggler span {
        height: 30px;
    }
    .logo img,
     body:not(.inner-page) .logo img {
        width: 80px;
    }
}
@media (max-width: 1200px) {
    .banner .header nav .distributer {
        width: fit-content;
    }
    .banner .header nav {
        justify-content: flex-end;
    }
    .toggler {
        display: flex;
    }
    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .stellarnav li a {
        flex-direction: row !important;
    }

    .menu-toggle {
        position: absolute;
        left: 0px;
        top: -10px;
        padding-left: 0px !important;
    }
    .listen__li,
    .search__li {
        display: none;
    }
    .banner .header {
        padding-top: 35px;
    }
    /* .stellarnav a span svg path {
    fill: #fff;
    stroke: #fff;
  } */

    .stellarnav a span:last-child svg {
        display: none;
    }
    .custom__a {
        gap: 10px;
    }
    .hide-m {
        display: none;
    }
    .has-sub.open {
        background-color: var(--yellow);
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }
    .has-sub.open > .dd-toggle .icon-plus:before,
    .has-sub.open > .dd-toggle .icon-plus:after {
        border-color: #fff !important;
        transition: border-color 0.3s ease-in-out;
        -webkit-transition: border-color 0.3s ease-in-out;
        -moz-transition: border-color 0.3s ease-in-out;
        -ms-transition: border-color 0.3s ease-in-out;
        -o-transition: border-color 0.3s ease-in-out;
    }
}

@media (max-width: 420px) {
    .logo img,
    body:not(.inner-page) .logo img  {
        width: 75px;
    }
}
@media (max-width: 1200px) {
    .banner .header nav {
        gap: 35px;
    }
    .stellarnav > ul > li > a {
        padding: 20px 20px !important;
    }
}
@media (max-width: 992px) {
    .stellarnav > ul > li > a {
        padding: 20px 10px !important;
    }
}
/************************************************************First Section***********************************************/
.first-section {
    display: flex;
    align-items: center;
    background-image: url(../img/about.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 664px;
}
.first-section .important-projects {
    padding-top: 170px;
    padding-bottom: 105px;
    height: 100%;
    /* flex-grow: 3; */
    width: 23%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
}
.first-section .important-projects h2 {
    font-size: 30px;
    font-weight: var(--semi-bold);
    color: #1f97d3;
    text-transform: uppercase;
    margin: 0px;
    padding-inline-start: 26.67%;
}
.first-section .important-projects p {
    font-size: 14px;
    color: var(--navy);
    margin-top: 55px;
    margin-bottom: 100px;
    padding-inline-start: 26.67%;
}
.first-section .projects {
    display: flex;
    align-items: center;
    margin: 0px;
    width: calc(100% - 23%);
    height: 100%;
}
.first-section .important-projects button {
    margin-inline-start: 26.67%;
}
.height100 {
    height: 100% !important;
}
.first-section .projects li {
    position: relative;
    overflow: hidden;
  
    text-align: center;
    background-color: rgba(2, 36, 84, 0.8);
    color: #fff;
    padding-inline-start: 30px;
    padding-inline-end: 30px;
    height: 100%;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: var(--semi-bold);
    box-shadow: rgba(0, 0, 0, 0.7) 9px 0px 16px;
    transition: flex 0.5s ease-in-out;
    -webkit-transition: flex 0.5s ease-in-out;
    -moz-transition: flex 0.5s ease-in-out;
    -ms-transition: flex 0.5s ease-in-out;
    -o-transition: flex 0.5s ease-in-out;
}
@media(min-width:768px){

    .first-section .projects li{
          flex: 1;
    }
}
.first-section .projects li:hover {
   
    justify-content: flex-start;
    gap: 40px;
}
@media (min-width: 768px) {
    .first-section .projects li:hover {
        flex: 55;
    }
}
@media(min-width: 1400px){
    .first-section .projects li:hover{
        flex: 25;
    }
}
@media (min-width: 1800px) {
    .first-section .projects li:hover {
        flex: 10;
    }
}

.first-section .projects li:hover svg path {
    fill: var(--yellow);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.first-section .projects li:hover .shown span {
    color: var(--yellow);

}

.first-section .projects li span {
    font-size: 14px;
    max-width: 110px;
    font-weight: var(--medium);
    display: flex;
    justify-content: center;
    line-height: 1.1rem;
}
.first-section .projects li .shown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
    min-width: 110px;
}
.first-section .projects li .shown img{
    height: 51px;
}
.hidden-content {
    position: absolute;
    top: 50%;
    visibility: hidden;
    left: 180px;
    transform: translateY(-50%);
    opacity: 0;
    /* width:60%; */
    /* display: none; */
}
@media (max-width: 768px) {
    .hidden-content {
        /* display: none; */
        position: static;
        transform: none;
        visibility: visible;
        opacity: 1;
    }
}
.first-section .projects li:hover .hidden-content {
    /* visibility: visible;
    transition-property: all;
    transition-delay: .3s;
    transition-duration: .3s; */
    /* left: 180px; */
    visibility: visible;
    opacity: 1;
    display: block;
}
.hidden-content h3 {
    font-size: 20px;
    font-weight: var(--semi-bold);
    text-align: start !important;
    margin: 0px;
    display: flex;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}
.hidden-content p {
    font-size: 16px;
    font-weight: 400 !important;
    text-align: start !important;
    margin: 25px 0px;
    line-height: 1.3rem;
    display: flex;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}
.hidden-content .my-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}
.hidden-content .portal__btn {
    min-width: 197px;
    font-size: 14px;
    font-weight: var(--medium);
    text-decoration: none;
    padding-inline:10px;
}
.read-more__btn--w {
    color: #fff !important;
    border-color: #fff !important;
    font-size: 14px;
    font-weight: var(--medium);
    border-width: 2px !important;
    text-decoration: none;
}
.hidden-content .portal__btn:hover,
.read-more__btn--w:hover {
    color: var(--navy) !important;
    text-decoration: none;
}
.content {
    position: absolute;
    top: 125px;
    width: 100%;
}
@media (max-width: 768px) {
    .content {
        top: 90px;
    }
}
@media (max-width: 1200px) {
    .flex-wrap-mobile {
        flex-wrap: wrap;
    }
    .first-section {
        height: unset;
    }
    .first-section .important-projects {
        width: 100%;
    }
    .first-section .projects {
        width: 100%;
    }
    .first-section .important-projects {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .first-section .important-projects h2 {
        padding-inline-start: 0px;
    }
    .first-section .important-projects p {
        padding-inline-start: 0px;
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .first-section .important-projects button {
        margin-inline-start: 0px;
    }
    .first-section .projects {
        height: 400px;
    }
}
@media (max-width: 992px) {
    .first-section .projects li:hover .hidden-content {
        left: 160px;
    }
    .first-section .projects li {
        padding-inline-start: 15px;
        padding-inline-end: 15px;
    }
    .shown svg {
        max-width: 50px;
    }
    .first-section .projects li .shown {
        gap: 25px;
    }
}
@media (max-width: 768px) {
    .first-section .projects {
        /* flex-wrap: wrap; */
        height: unset;
    }
    .first-section .projects li {
        height: 400px;
    }
    .first-section .projects li span {
        font-size: 12px;
    }
    .hidden-content .my-btns {
        flex-wrap: wrap;
    }
    /*added tot test*/
    .first-section .projects {
        flex-direction: column;
    }
    .first-section .projects li {
        padding-block: 30px;
        height: unset !important;
        transition: flex 0.3s ease-in-out;
        -webkit-transition: flex 0.3s ease-in-out;
        -moz-transition: flex 0.3s ease-in-out;
        -ms-transition: flex 0.3s ease-in-out;
        -o-transition: flex 0.3s ease-in-out;
    }
    /* .first-section .projects li:hover {
        flex: none;
    } */

    .first-section .important-projects h2 {
        font-size: 25px;
    }
    .hidden-content p {
        font-size: 14px;
    }

    .first-section .projects li {
        height: 200px;
        width: 100%;
        /* flex:none; */
        box-shadow: none;
        border: 1px solid #fff;
        justify-content: center;
    }

    .first-section .projects li:hover {
        justify-content: flex-start !important;
    }

    .first-section .projects li:hover .hidden-content {
        left: 140px;
    }
}
@media (max-width: 575px) {
    /* .first-section .projects li:hover {
        flex: 5;
    } */
    .hidden-content h3 {
        font-size: 18px;
        text-align: center !important;
        display: flex;
        justify-content: center;
    }
    .hidden-content p {
        text-align: center !important;
    }
    .hidden-content .portal__btn {
        margin-inline-start: auto;
        margin-inline-end: auto;
    }
    .hidden-content .read-more__btn {
        margin-inline-start: auto;
        margin-inline-end: auto;
        width: 197px;
    }
    .first-section .projects li:hover .hidden-content {
        left: 127px;
    }
}
@media (max-width: 420px) {
    .first-section .important-projects {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .first-section .important-projects h2 {
        text-align: center;
        font-size: 22px;
    }
    .first-section .important-projects p {
        text-align: center;
    }
    .first-section .important-projects button {
        margin-inline-start: auto;
        margin-inline-end: auto;
    }
}
/************************************************************End First Section***********************************************/
/* *********************************************************Second Section********************************************* */
.second-section {
    padding: 70px 0px;
    background-image: url(../img/information-technology-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.second-section h2 {
    font-weight: var(--semi-bold);
    font-size: 30px;
    color: var(--navy);
    margin: 0px;
}
.second-section h3 {
    color: #545454;
    font-size: 24px;
    font-weight: var(--semi-bold);
    margin-top: 55px;
    margin-bottom: 0px;
}
.second-section p {
    margin-top: 15px;
    margin-bottom: 40px;
    width: 70%;
    color: rgb(130, 129, 135);
}
.read-more__btn {
    width: 128px;
    height: var(--button-height);
    border: 1px solid #123266;
    color: #123266;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    outline: transparent;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.read-more__btn:focus {
    outline: none;
}
.read-more__btn:hover {
    background-color: var(--yellow);
    color: #fff;
    border: none;
}
.second-section img {
    max-width: 100%;
}
@media (max-width: 992px) {
    .second-section h2 {
        font-size: 25px;
    }
    .second-section h3 {
        font-size: 20px;
    }
    .second-section p {
        font-size: 14px;
        width: 100%;
    }
    .flex-center-m {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
@media (max-width: 420px) {
    .second-section {
        padding: 35px 0px;
    }
    .second-section h2 {
        text-align: center;
        font-size: 22px;
    }
    .second-section h3 {
        text-align: center;
        font-size: 18px;
        margin-top: 35px;
    }
    .second-section p {
        text-align: center;
    }
    .read-more__btn {
        margin-inline-start: auto;
        margin-inline-end: auto;
        margin-bottom: 15px;
    }
    .second-section p {
        margin-bottom: 25px;
    }
    .second-section img {
        width: 55%;
    }
}
/* *********************************************************End Second Section********************************************* */
/***********************************************************Third Section***********************************************/
.third-section {
}
.third-section .top {
    padding: 30px 0px;
    background-color: var(--light-gray);
}
.third-section .top .container {
    display: flex;
}
.marquee {
    font-size: 15px;
    color: var(--gray);
    /* width: calc(100% - 180px); */
    overflow: hidden;
}
.third-section .top h3 {
    font-size: 20px;
    font-weight: var(--medium);
    color: #022454;
    margin: 0px;
    position: relative;
    width: fit-content;
    min-width: 180px;
}
@media (min-width: 420px) {
    .third-section .top h3 {
        max-width: 230px;
    }
}
.third-section .top h3:after {
    content: "";
    height: 20px;
    width: 3px;
    background-color: #022454;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    right: 0px;
}
.third-section .middle {
    background-image: url("../img/bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
    padding-top: 25px;
    padding-bottom: 70px;
}
.third-section .middle img {
    max-width: 100%;
}
.third-section .middle .group-btns {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.third-section .middle a {
    width: 217px;
    height: 48px;
    font-size: 15px;
    font-weight: var(--medium);
    gap: 10px;
}
.third-section .middle button svg {
    width: 18px;
    height: 18px;
}
.third-section .bottom {
    background-color: var(--light-gray);
    padding: 23px 0px;
}
.third-section .bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.third-section .bottom .left h3 {
    font-size: 18px;
    font-weight: var(--medium);
    color: var(--cyan);
    margin: 0px;
    text-transform: uppercase;
}
.third-section .bottom .left p {
    color: #494949;
    font-size: 14px;
    margin-top: 15px ;
}

.third-section .bottom .right input {
    width: 298px;
    height: var(--button-height);
    border: 1px solid #d5d5d5;
    color: #151515;
    font-size: 14px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    padding-inline-start: 12px;
}
.third-section .bottom .right form {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}
.third-section .bottom .right input:focus {
    outline: none;
}
.third-section .bottom .right input::placeholder {
    color: #151515;
    font-size: 14px;
}
.third-section .bottom .right .subscribe__btn {
    width: 120px;
}
.third-section .bottom .right .subscribe__btn:hover {
    color:#fff;
    border-color:#fff;
}
.kuwait-map {
    max-width: 100%;
}

@media (max-width: 992px) {
    .third-section .bottom .container {
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {
    .third-section .top h3 {
        font-size: 18px;
    }
}
@media (max-width: 575px) {
    .third-section .bottom .right .subscribe__btn {
        transition: width 0.3s ease-in-out;
        -webkit-transition: width 0.3s ease-in-out;
        -moz-transition: width 0.3s ease-in-out;
        -ms-transition: width 0.3s ease-in-out;
        -o-transition: width 0.3s ease-in-out;
    }
    /* .third-section .bottom .right input {
        width: 250px;
    } */
    .third-section .bottom {
        padding: 25px 0px;
    }
    .relative-mobile {
        position: relative;
    }

    .third-section .middle {
        padding-bottom: 25px;
    }
    .e-learning__btn {
        background-color: var(--yellow);
        border: none;
    }
    .company-registry__btn {
        background-color: var(--yellow);
        border: none;
    }
    .e-learning__btn:hover,
    .company-registry__btn:hover {
        opacity: 0.7;
        border: none;
        outline: none;
        color: #fff;
        text-decoration: none;
    }

}
@media (max-width: 420px) {
    .third-section .bottom .left h3 {
        text-align: center;
    }
    .third-section .bottom .left p {
        text-align: center;
    }
    .third-section .bottom .right form {
        flex-wrap: wrap;
        gap: 16px;
    }
    .third-section .bottom .right {
        width: 100%;
    }
    .third-section .bottom .right input {
        width: 100%;
    }
    .third-section .bottom .right .subscribe__btn {
        width: 120px;
        /* margin: auto; */
    }
    .third-section .top {
        padding: 25px 0px;
    }
    .third-section .top .container {
        flex-wrap: wrap;
    }
    .third-section .top h3:after {
        display: none;
    }
    .third-section .top h3 {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .marquee {
        width: 100%;
    }
}

/***********************************************************End Third Section*******************************************/
/**********************************************************footer******************************************************/
footer {
    color: #fff;
    position: relative;
}
.footer-dashed-border {
    position: absolute;
    top: 7px;
    left: 0px;
}
footer .top {
    background-image: url(../img/Footer_Background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px;
}
footer .top p {
    font-size: 14px;
    font-weight: var(--medium);
    margin: 0;
}
footer .top .contact-details {
    margin-top: 30px;
    margin-bottom: 25px;
}
footer .contact-details li {
    font-size: 16px;
    font-weight: var(--regular);
}
footer .contact-details li a {
    color: #fff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
footer .contact-details li a:hover {
    color: var(--yellow);
    text-decoration: none;
}
footer .socials span {
    font-family: "Segoe UI";
    font-size: 20px;
    font-weight: 600;
}
footer .socials .social-media {
    display: flex;
    /* gap: 25px; */
    margin: 25px 0px 0px;
}
footer .socials .social-media  li:not(:last-child){
    margin-inline-end: 25px;
}
footer .social-media a {
    color: #fff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
footer .social-media i {
    font-size: 22px;
}
footer .social-media a:hover {
    color: var(--yellow);
}
footer .connect-us {
    padding-top: 5px;
}
footer .connect-us h3 {
    font-size: 18px;
    font-weight: var(--medium);
    text-transform: uppercase;
    margin: 0px;
    margin-bottom: 35px;
}
footer label {
    display: block;
    font-size: 14px;
    color: var(--yellow);
    position: absolute;
    margin-bottom: 0px;
    left: 0px;
    bottom: 10px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
footer input:focus + label {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}

footer input {
    border: none;
    background-color: transparent;
    border-bottom: 1px solid #e5e5e5;
    color: #fff;
    font-size: 14px;
    width: 100%;
}
footer input:focus {
    outline: none;
}
footer .outer__div {
    display: flex;
    gap: 25px;
}
footer .inner__div {
    margin-top: 15px;
    margin-bottom: 15px;
}
footer button {
    width: 128px;
    height: var(--button-height);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--yellow) !important;
    color: #fff !important;
    margin: 5px 0px 0px;
    font-size: 14px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
footer button:hover {
    border: 2px solid #fff !important;
    background-color: transparent !important;
}
.yes__btn,
.no__btn {
    width: 84px;
}
.my-btns-group {
    display: flex;
    align-items: center;
    /* gap: 20px; */
}
.my-btns-group li:not(:last-child){
    margin-inline-end: 20px;
}
footer .useful-site .actions {
    display: flex;
    font-size: 14px;
    gap: 20px;
    text-align: center;
    margin: 40px 0px 25px;
}
footer .useful-site .actions a {
    color: #fff;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
footer .useful-site .actions a:hover {
    color: var(--yellow);
    text-decoration: none;
}
footer .useful-site .actions a svg {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
footer .useful-site .actions a:hover svg path {
    fill: var(--yellow);
}
footer .visitors {
    display: flex;
    align-items: center;
    /* gap: 10px; */
}
footer .visitors span {
    font-size: 14px;
    font-weight: var(--medium);
    margin-inline-start: 10px;
}
footer .bottom {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 300;
    color: var(--dark-gray);
}
@media (max-width: 992px) {
    .useful-site {
        margin-top: 35px;
    }
}
@media (max-width: 768px) {
    .useful-site {
        margin-top: 25px;
    }
    footer .top {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    footer .bottom {
        font-size: 14px;
        height: 45px;
    }
    footer .top .contact-details {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    footer .contact-details li {
        font-size: 14px;
    }
    footer .socials span {
        font-size: 18px;
    }
    footer .social-media i {
        font-size: 22px;
    }
    footer .connect-us h3 {
        font-size: 16px;
    }
    footer .useful-site .actions a {
        display: flex;
        flex-direction: column;
    }
    footer .top p {
        line-height: 1.7;
    }
    footer .socials .social-media {
        margin-top: 15px;
    }
    footer .connect-us {
        padding-top: 20px;
    }

    footer input:focus + label {
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
    }
    footer .inner__div {
        margin-top: 25px;
    }
    footer .contact-us form {
        margin-top: 35px;
    }
    footer .outer__div .inner__div {
        width: 50%;
    }
}
@media (max-width: 420px) {
    footer .top p {
        text-align: center;
    }
    .socials {
        text-align: center;
    }
    footer .socials .social-media {
        justify-content: center;
    }
    footer .contact-details li {
        text-align: center;
    }
    footer .bottom {
        text-align: center;
    }
    footer .connect-us h3 {
        text-align: center;
    }
    footer .outer__div {
        flex-wrap: wrap;
        gap: 0px;
    }
    footer .outer__div .inner__div {
        width: 100%;
    }
    footer button {
        margin-left: auto;
        margin-right: auto;
    }
    .my-btns-group {
        justify-content: center;
    }
    footer .useful-site .actions {
        justify-content: center;
    }
    .actions li:last-child span:last-child {
        width: 80px;
    }
    footer .visitors {
        justify-content: center;
    }
    /* .parsley-required,
    .parsley-custom-error-message {
        text-align: start !important;
    } */
}
/* ***********************************************Search Modal******************************************** */
.search-modal {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: rgba(18, 50, 102, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    z-index: -1;
}
.search-modal.active {
    visibility: visible;
    z-index: 10000;
}
.search-modal .search__form {
    width: 100%;
}
.search-modal .search__form div {
    position: relative;
    width: 50%;
    margin: auto;
}
.search__form input {
    width: 100%;
    display: block;
    background-color: transparent;
    border: none;
    outline: none;
    border-bottom: 2px solid #fff;
    height: 48px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.search__form input,
.search__form input::placeholder {
    color: #fff;
    font-size: 18px;
}
.search__form svg {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.search__form svg:hover path {
    fill: var(--yellow);
}
.search__form input:focus {
    border-color: var(--yellow);
}
.search__form input:focus {
    border-color: var(--yellow);
}
.close__search {
    position: fixed !important;
    right: 20px;
    top: 30px;
    cursor: pointer;
}
.close__search svg {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.close__search:hover svg path {
    stroke: var(--yellow) !important;
}
@media (max-width: 768px) {
    .search-modal .search__form div {
        width: 70%;
    }
}
@media (max-width: 575px) {
    .search-modal .search__form div {
        width: 90%;
    }
}

/* .banner .header nav .stellarnav a{
    display:flex;
    flex-direction: column;
    align-items: center;
    padding: 0px !important;
} */
@media (min-width: 768px) {
    .listen__li--m,
    .search__li--m {
        display: none !important;
    }
}
/* STELLARNAV */
.stellarnav {
    width: fit-content;
}
.stellarnav a {
    transition: all 0.3s ease-in-out;
}
.stellarnav > ul > li > a {
    padding: 20px 35px;
}
.stellarnav a:hover {
    color: #f6ab3f !important;
}
/* .stellarnav a:hover path {
  fill: #f6ab3f;
  stroke: #f6ab3f;
} */
.stellarnav li a {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: #fff;
    align-items: center;
    /* gap: 10px; */
}
.custom__a span:first-child svg,
.custom__a svg:first-child {
    /* min-width: 25px;
    height: 25px; */
    width: 32px;
    height: 35px;
}
.stellarnav.mobile.dark ul {
    background-color: rgba(18, 50, 102, 1);
}
.stellarnav.dark {
    background-color: transparent;
}
.stellarnav li.has-sub > a:after {
    display: none;
}
.stellarnav .has-sub ul {
    background-color: #fff !important;
}
.stellarnav.mobile > ul > li > a.dd-toggle {
    display: flex;
    align-items: center;
}
.has-sub ul li a {
    flex-direction: row;
    justify-content: space-between;
    color: var(--navy) !important;
    font-size: 13px;
    padding-inline-start: 30px !important;
    padding-inline-end: 30px !important;
    transition: color 0.3s ease-in-out;
}
.has-sub ul li a:hover {
    color: #f6ab3f !important;
}
.has-sub ul li a svg path {
    fill: #022454;
    transition: fill 0.3s ease-in-out;
}
.has-sub ul li a:hover svg path {
    fill: #f6ab3f;
}
.orange.open {
    background-color: #f6ab3f;
}

.has-sub.open > a {
    color: #fff !important;
}
.has-sub.open > a > svg {
    display: none;
}
.stellarnav.dark a.dd-toggle .icon-plus:after,
.stellarnav.dark a.dd-toggle .icon-plus:before {
    border-color: #022454;
}
.orange.open .dd-toggle .icon-plus:after,
.orange.open .dd-toggle .icon-plus:before {
    border-color: #fff !important ;
}
.orange.open > a:hover {
    color: #fff !important;
}
.dd-pos > .dd-toggle {
    top: 12px;
}
.dd-pos > .dd-toggle .icon-plus:before,
.dd-pos > .dd-toggle .icon-plus:after {
    border-color: #fff !important;
}
.search-m {
    display: flex;
    align-items: center;
    padding: 20px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    flex-direction: row !important;
    justify-content: center;
}
.search-m input {
    background-color: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid #fff;
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.search-m input,
.search-m input::placeholder {
    color: #fff;
}
.search-m input:focus {
    border-color: #f6ab3f;
}
@media (min-width: 1200px) {
    .stellarnav li.orange ul {
        position: static !important;
    }
    .stellarnav .search-m,
    .stellarnav .listen-m {
        display: none;
    }
    .listen-m a {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .inner-page .listen-m a span{
        color: var(--navy)
    }
    .inner-page .mobile a span{
        color:#fff
    }
}
@media (max-width: 768px) {
    .stellarnav li a {
        flex-direction: row;
    }
    .orange a svg {
        display: none;
    }
    .stellarnav .search-m {
        justify-content: flex-start;
    }
}
/* UPPER MANAGEMENT START */
.page-content {
    padding: 70px 0px;
}
.inner-page .banner {
    /* height: 340px; */
    background-image: url(../img/upper-management/management-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.inner-page .header {
    position: static;
    height: 125px;
    background-color: #fff;
    padding: 0px;
    display: flex;
    align-items: center;
}
.inner-page .right-ul svg path {
    fill: var(--navy);
}
.inner-page .stellarnav.desktop > ul > li > a {
    color: var(--navy);
}
.inner-page .stellarnav.desktop > ul > li > a.active {
    color: var(--yellow);
}

.inner-page .stellarnav.desktop > ul > li > a.contact-us__a svg path {
    stroke: var(--navy);
    fill: var(--navy);
}
.inner-page .stellarnav.desktop #navy {
    fill: var(--navy);
}
.inner-page .header-container {
    /* min-height: calc(340px - 125px); */
    min-height: calc(250px - 125px);
    display: flex;
    align-items: center;
    padding-block: 25px;
}
.header-container .row {
    width: 100%;
}
.inner-page .banner h1 {
    font-weight: var(--semi-bold);
}
.inner-page .banner p {
    font-weight: var(--semi-bold);
}
.inner-page .banner .header .lang-toggler span {
    color: var(--navy);
}
.inner-page .stellarnav.dark .menu-toggle span.bars span {
    background-color: var(--navy);
}
/* .inner-page .stellarnav.desktop a.custom__a:hover svg path {
  fill: none !important;
} */
.inner-page .stellarnav.desktop a.custom__a:hover svg path#navy {
    fill: var(--yellow) !important;
    stroke: none;
}
.inner-page .stellarnav.desktop a.contact-us__a:hover svg path {
    stroke: var(--yellow);
    fill: var(--yellow);
}
.inner-page .content {
    position: static;
}
.inner-page .banner {
    overflow: visible;
}
.top-management {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 49.5%;
    margin-inline-start: auto;
    margin-inline-end: auto;
    margin-bottom: 50px;
}
.top-management img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.team-name {
    font-size: 20px;
    font-weight: var(--semi-bold);
    color: var(--navy);
    margin: 0px;
}
.team-description {
    font-size: 20px;
    font-weight: var(--medium);
    color: rgb(53, 80, 118);
    margin-top: 10px;
}
.m-0 {
    margin: 0px;
}
.flex-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
li.top-management {
    margin-bottom: 30px!important;
    width: 49.5%;
}
@media (max-width: 992px) {
    .inner-page .banner h1 {
        font-size: 40px;
    }
    .inner-page .banner p {
        font-size: 25px;
    }
    .top-management {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .inner-page .header {
        height: 90px;
    }
    .top-management {
        width: 49.5%;
        margin-bottom: 25px;
    }
    .top-management img {
        width: 90%;
    }
    .team-name,
    .team-description {
        font-size: 16px;
    }
    /* .inner-page .content {
        height: calc(340px - 90px);
    } */
    .inner-page .banner h1 {
        font-weight: 500;
    }
    .inner-page .banner p {
        font-weight: 500;
    }
}
@media (max-width: 575px) {
    .inner-page .banner h1 {
        font-size: 32px;
    }
    .inner-page .banner p {
        font-size: 20px;
    }
}
@media (max-width: 375px) {
    .inner-page .banner h1 {
        font-size: 30px;
    }
}
/* UPPER MANAGEMENT END */

/* BOARD OF DIRECTORS */
.supervisor {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 50px;
    color: var(--navy);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.supervisor .avatar {
    width: 122px;
    height: 122px;
    width: 122px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #d5d5d5;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(2, 36, 84, 0.33) 0px 0px 15px 0px;
    overflow: hidden;
}
.supervisor .avatar img {
    max-width: 100%;
}
.supervisor .supervisor-name {
    font-size: 20px;
    font-weight: var(--semi-bold);
}
a.supervisor:hover {
    text-decoration: none;
    color: var(--yellow);
}
a.supervisor svg path {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
a.supervisor:hover svg path {
    fill: var(--yellow);
}
@media (min-width: 768px) {
    .inner-page .banner p {
        padding-inline-start: 30px;
    }
}
@media (max-width: 992px) {
    .supervisor .avatar {
        width: 90px;
        height: 90px;
    }
    .avatar svg {
        width: 35px;
        height: 35px;
    }
    .supervisor .supervisor-name {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .page-content {
        padding: 30px 0px;
    }
    .supervisor {
        flex-direction: column;
    }
    .supervisor .supervisor-name {
        font-weight: 500;
    }
}
/* BOARD OF DIRECTORS */

/* MEDIA CENTER */
.selector {
    width: 33.33%;
    min-height: 65px;
    background-color: #fff;
    position: relative;
    padding: 15px 30px;
}
.selector div:first-child {
    color: #234156;
    font-size: 15px;
}
.selector span {
    color: #5d5d5d;
    font-size: 15px;
    font-weight: 300;
}
.selector svg {
    margin-inline-start: auto;
}
.list {
    width: 192px;
    background-color: #fff;
    margin-bottom: 0px;
    position: absolute;
    right: 0px;
    box-shadow: rgba(35, 65, 86, 0.61) 0px 0px 10px 0px;
    top: calc(100% + 40px);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    visibility: hidden;
    max-height: 225px;
    overflow: auto;
}
.selector:hover .list {
    visibility: visible;
    top: calc(100% + 20px);
    z-index: 1;
}
.list li {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #7b796f;
    padding-left: 10px;
    padding-right: 10px;
}
.list li:not(:last-child) {
    border-bottom: 1px solid #f3f2f0;
}
.list li svg {
    display: none;
}
.list li.active {
    color: var(--navy);
}
li.active svg {
    display: block;
}
.list li:hover {
    color: var(--navy);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.inner-page.media-center .header-container {
    height: 100%;
}
.agenda__div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 70px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.agenda__div form {
    display: flex;
    /* width: calc(100% - 232px); */
    width: 80%;
}
.agenda {
    /* width: 232px; */
    width: 20%;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--yellow);
    color: #fff;
    gap: 15px;
    cursor: pointer;
}
.agenda:hover {
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.content-search {
    width: 33.33%;
    border: none;
    outline: none;
    padding-inline-start: 30px;
    background-color: #fff;
}
.content-search::placeholder {
    font-size: 15px;
    font-weight: 300;
    color: #5d5d5d;
}
.selector:after {
    content: "";
    width: 1px;
    height: 41px;
    background-color: #707070;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.gallery-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 70px;
    margin-bottom: 70px;
}
.gallery-content .box {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px 0px;
}

.gallery-content .box .image-container img {
    width: 100%;
    height: 200px;
}
.gallery-content .box .box-content {
    padding: 25px;
    height: calc(100% - 200px);
    display: flex;
    flex-direction: column;
}
.gallery-content .box .box-content h3 {
    font-size: 13px;
    font-weight: var(--semi-bold);
    color: #234156;
    margin: 0px;
    overflow-wrap: break-word;
}
.gallery-content .box .box-content span {
    display: block;
    font-size: 16px;
    font-weight: var(--medium);
    color: rgb(102, 124, 138);
    margin: 10px 0px 15px 0px;
}
.gallery-content .box .box-content p {
    font-size: 16px;
    color: #313e56;
    line-height: 22px;
    overflow-wrap: break-word;
}
.gallery-content .box .box-content a {
    display: flex;
    width: 140px;
    height: 38px;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-top: auto;
    background-color: var(--navy);
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    box-shadow: rgba(34, 65, 86, 0.15) 0px 0px 13px;
}
.gallery-content .box .box-content a:hover {
    text-decoration: none;
    background-color: var(--yellow);
    box-shadow: rgba(34, 65, 86, 0.15) 0px 0px 16px;
}
.inner-page.media-center .banner {
    height: 500px;
}
.inner-page.media-center .banner .content {
    height: calc(500px - 125px);
}
@media (max-width: 992px) {
    .agenda {
        width: 160px;
    }
    .agenda__div form {
        width: calc(100% - 160px);
    }
    .content-search {
        padding-inline-start: 5px;
    }
    .list {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .inner-page.media-center .banner .content {
        height: calc(500px - 90px);
    }
    .gallery-content .box:hover {
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
    }
    .agenda__div {
        flex-wrap: wrap;
        position: relative;
    }
    .agenda__div form {
        width: 100%;
        flex-wrap: wrap;
    }
    .selector {
        padding-inline: 20px;
        width: 50%;
        min-height: 60px;
    }
    .content-search {
        width: calc(100% - 168px);
        height: 60px;
        margin-top: 10px;
        padding-inline-start: 10px;
    }
    .agenda {
        position: absolute;
        right: 0px;
        top: 85px;
        height: 60px;
        gap: 7px;
    }
    .header-container {
        justify-content: center;
    }
    .list {
        z-index: 100;
    }
    .selector:nth-of-type(2):after {
        display: none;
    }
}
@media (max-width: 575px) {
    .agenda {
        width: 150px;
    }
    .content-search {
        width: calc(100% - 158px);
    }
}
/* MEDIA CENTER */

/* EMPLOYEES */
.inner-page.employees .banner {
    /* height: 100vh; */
    min-height: 650px;
    background-image: url("../img/employees/employees-banner.png") !important;
    background-position-y: 90px;
}

.inner-page.inner-page.employees .page-content {
    padding: 0px;
}
.download-app {
    width: 255.69px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--yellow);
    color: #fff;
    margin-inline-start: 30px;
    margin-top: 40px;
    font-size: 15px;
    font-weight: var(--semi-bold);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    border: 2px solid transparent
}
.download-app:hover {
    color: #fff;
    text-decoration: none;
    border-color: #fff;
    background-color: transparent;
}
.inner-page.employees .content {
    /* height: calc(100vh - 125px); */
    min-height: calc(650px - 125px);
    padding-block: 25px;
    display: flex;
    align-items: center;
}
.inner-page.inner-page.employees .header-container {
    height: 100%;
}
.header-container .col-lg-5{
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 992px) {
    .inner-page.employees .content {
        top: calc(50% + 75px);
    }
    .inner-page.inner-page.employees .banner h1 {
        text-align: center;
    }
    .inner-page.inner-page.employees .banner p {
        text-align: center;
        text-indent: 0px;
    }
    .download-app {
        margin: auto;
        margin-top: 15px;
    }
    .inner-page.employees .banner img {
        display: block;
        margin-inline: auto;
    }
    .inner-page.employees .header-container img {
        margin-top: 30px;
    }
}
@media (max-width: 575px) {
    .inner-page.employees .header-container img {
        width: 70%;
    }
}
/* EMPLOYEES */

/* REGISTRIES */
.registries {
    margin: 0px;
}
.registries li {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.registries p {
    margin: 0px;
    font-size: 16px;
    font-weight: var(--medium);
    color: var(--navy);
    margin-inline-start: 35px;
}
.registries .download__a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 128px;
    height: 38px;
    gap: 5px;
    color: var(--navy);
    font-size: 12px;
    font-weight: var(--semi-bold);
    border: 2px solid var(--navy);
    margin-inline-start: auto;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.registries .download__a:hover {
    color: #fff;
    text-decoration: none;
    background-color: var(--navy);
}
.registries .download__a:hover svg path {
    fill: #fff;
}
.my-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 620px;
    margin-inline: auto;
}
.my-card {
    text-align: center;
    /* width: fit-content; */
    padding-top: 100px;
    padding-bottom: 60px;
    padding-inline: 40px;
    width: 295px;
    box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 25px 0px;
    /* cursor: pointer; */
    position:relative;
}
/* .my-card:hover {
  background-color: var(--navy);
  box-shadow: rgba(0, 0, 0, 0.17) 0px 0px 15px 0px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
} */
/* .my-card:hover p {
  color: #fff;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
} */
.my-card h3 {
    font-size: 24px;
    font-weight: var(--medium);
    color: var(--cyan);
    margin: 0px;
    /* width: fit-content; */
    margin-inline: auto;
    margin-bottom: 30px;
}
.my-card p {
    font-size: 14px;
    color: #7f7f7f;
    margin: 30px auto;
}
.access-select {
    width: 128px;
    height: 40px;
    display: flex;
    color: #fff;
    background-color: var(--cyan);
    align-items: center;
    justify-content: center;
    margin: auto;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    position: absolute;
    bottom: 35px;
    transform: translateX(-50%);
    left: 50%;
}
.access-select:hover {
    background-color: var(--yellow);
    color: #fff;
    text-decoration: none;
}
.chat {
    min-width: 45px;
}
@media (max-width: 768px) {
    .my-cards {
        flex-wrap: wrap;
    }
    .my-card {
        padding-top: 70px;
    }
    .registries li {
        flex-wrap: wrap;
    }
    .registries li p {
        width: calc(100% - 80px);
    }
    .registries .download__a {
        margin-top: 15px;
    }
}
@media (max-width: 575px) {
    .my-card h3 {
        font-size: 22px;
    }
    .registries p {
        margin-inline-start: 20px;
        font-size: 14px;
        text-align: justify;
    }
    .my-card {
        padding-block: 40px;
    }
}
/* REGISTRIES */
.banner-slider .slick-prev,
.banner-slider .slick-next {
    z-index: 1000;
}
.banner-slider .slick-prev {
    left: 25px;
}
.banner-slider .slick-next {
    right: 25px;
}
.banner-slider .slick-prev:before {
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-size: 35px;
    font-weight: 900;
}
.banner-slider .slick-next:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-size: 35px;
    font-weight: 900;
}
@media (max-width: 768px) {
    .banner-slider .slick-prev {
        left: 10px;
    }
    .banner-slider .slick-next {
        right: 10px;
    }
}
@media (max-width: 992px) {
    .inner-page.employees .banner {
        height: auto;
    }
    .inner-page.employees .content {
        min-height: 750px;
    }
}
@media (min-width: 1200px) {
    .stellarnav .contact-us__a,
    .stellarnav .custom__a,
    .stellarnav .has-sub > a {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .stellarnav > ul {
        /* gap: 30px; */
        gap: 10px;
        display: flex;
    }
    .outer__ul {
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
}
.p-inline-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}
.stellarnav > ul {
    align-items: center;
}
/* START OUR PROJECTS */
.our-projects {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.our-projects__box {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px 0px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    height: 430px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.our-projects__box:hover .our-projects__svg {
    filter: invert(13%) sepia(22%) saturate(3128%) hue-rotate(324deg)
        brightness(96%) contrast(101%);
    -webkit-filter: invert(13%) sepia(22%) saturate(3128%) hue-rotate(324deg)
        brightness(96%) contrast(101%);
}
.our-projects__img-container {
    position: relative;
}
.our-projects__img {
    width: 100%;
    height: 186px;
}
.our-projects__overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(35, 65, 86, 0.8);
}
.our-projects__svg {
    width:75px;
    height: 75px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);

}
.our-projects__content {
    padding: 15px 20px;
    height: calc(100% - 186px);
    display: flex;
    flex-direction: column;
}
.our-projects__h3 {
    font-size: 16px;
    color: #234156;
    font-weight: var(--semi-bold);
}
.our-projects__p {
    font-size: 15px;
    color: #313e56;
    margin-bottom: 10px;
}
.our-projects__a {
    color: #009cde;
    font-size: 14px;
    line-height: 18px;
    display: block;
    opacity: 0;
    display: none;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}
.our-projects__btn {
    width: 141px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: var(--medium);
    border: 3px solid #022454;
    font-size: 15px;
    color: #022454;
    background-color: transparent;
    outline: none;
    margin-top: auto;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.our-projects__btn:focus {
    outline: none;
}
.our-projects__btn:hover {
    background-color: var(--yellow);
    border-color: transparent;
    color: #fff;
    text-decoration: none;
}
.our-projects__btn--active {
    background-color: #022454;
    color: #fff;
}
/* END OUR PROJECTS */

/* START PROJECT DETAILS */
.my-breadcrumb {
    background-color: transparent;
    padding-left: 0px;
}
.my-breadcrumb .breadcrumb-item {
    position: relative;
    padding-inline-end: 18px;
}
.my-breadcrumb .breadcrumb-item a {
    font-size: 16px;
    font-weight: var(--semi-bold);
    color: #707070;
}
.my-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "";
    width: 5px;
    height: 5px;
    padding-left: 0px;
    padding-right: 0px;
    position: absolute;
    left: 0px;
    top: 50%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #707070;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.my-breadcrumb .breadcrumb-item.active {
    padding-inline-start: 18px;
    font-size: 16px;
    color: var(--navy);
    font-weight: var(--semi-bold);
}
.product-details__p {
    font-size: 18px;
    color: var(--navy);
    font-weight: var(--medium);
}
.product-details__span {
    font-size: 18px;
    font-weight: var(--medium);
    color: #009cde;
}
.product-details__ul li {
    position: relative;
    font-size: 18px;
    color: var(--navy);
    font-weight: var(--medium);
    padding-inline-start: 20px;
}
.product-details__ul li:before {
    content: "";
    width: 5px;
    height: 5px;
    background-color: var(--navy);
    position: absolute;
    left: 0px;
    top: 12px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.product-details__btn {
    width: 158px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    outline: none;
    background-color: var(--navy);
    color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    box-shadow: rgba(34, 65, 86, 0.15) 0px 0px 13px;
}
.product-details__btn:hover {
    background-color: var(--yellow);
    box-shadow: rgba(34, 65, 86, 0.25) 0px 0px 13px;
}
.product-details__btn:focus {
    outline: none;
}
@media (max-width: 768px) {
    .product-details__p,
    .product-details__ul li,
    .product-details__span,
    .product-details__btn {
        font-size: 16px;
    }
    .my-breadcrumb .breadcrumb-item a,
    .my-breadcrumb .breadcrumb-item {
        font-size: 14px;
    }
    .product-details__p {
        text-align: justify;
    }
}
/* END PROJECT DETAILS */

/* VALIDATION ERROR MESSAGES */
.validation-error {
    color: #ff5e00;
    font-weight: var(--medium);
    font-size: 14px;
    margin-bottom: 0px;
}

/* START EVENTS CALENDER */
.events__h2 {
    font-size: 26px;
    font-weight: var(--medium);
    color: var(--navy);
    margin-bottom: 50px;
}

.events__date {
    font-size: 16px;
    font-weight: var(--medium);
    color: var(--navy);
    position: relative;
}
.events__p {
    font-size: 18px;
    font-weight: var(--medium);
    color: var(--navy);
    margin-bottom: 0px;
}
.events__h4 {
    font-size: 20px;
    font-weight: var(--medium);
    color: var(--navy);
    margin: 10px 0px;
}
.events__date:before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    left: -20px;
    top: 5px;
    background-color: var(--yellow);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.events__card {
    margin-bottom: 20px;
    padding-inline-start: 50px;
    padding-inline-end: 25px;
    box-shadow: rgba(100, 100, 111, 0.25) 0px 7px 15px 0px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.events__card:first-of-type {
    margin-top: 50px;
}
.fc .fc-daygrid-day.fc-day-today {
    background-color: transparent !important;
    color: #009cde;
    font-size: 20px;
}
.fc .fc-daygrid-day.fc-day-today > div {
    border: 1px solid #009cde !important;
}
.event {
    font-size: 22px;
    font-weight: var(--medium);
    color: var(--yellow);
    border: 1px solid var(--yellow);
}
.fc-daygrid-event-harness,
.fc-daygrid-day-bottom {
    display: none;
}
.appointment-holder {
    text-align: center;
}
.mCSB_inside > .mCSB_container {
    margin-right: 0px !important;
}
.fc-prev-button,
.fc-next-button {
    border: none !important;
    background: transparent !important;
    display: inline-block !important;
}
.fc-prev-button {
    margin-inline-end: 25px !important;
}
.fc-next-button {
    margin-inline-start: 25px !important;
}
.fc-icon {
    color: var(--navy) !important;
    font-size: 20px !important;
    display: inline-block;
    margin-top: 4px;
    font-weight: 700;
}
#fc-dom-1 {
    display: inline;
    position: relative;
    top: 5px;
    font-size: 22px;
    font-weight: var(--medium);
    color: var(--navy);
}
.fc-header-toolbar {
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    margin-bottom: 0px !important;
}
#calendar {
    margin-top: 60px;
    margin-inline-start: 11%;
    margin-bottom: 90px;
}
@media (max-width: 992px) {
    #calendar {
        margin-inline-start: 0px;
    }
}
.fc-col-header-cell-cushion {
    font-size: 22px !important;
    font-weight: var(--medium) !important;
    color: var(--navy) !important;
}
@media (max-width: 768px) {
    .events__h2 {
        font-size: 22px;
    }
    #fc-dom-1 {
        font-size: 20px;
    }
    .fc-col-header-cell-cushion {
        font-size: 20px !important;
    }
    .fc .fc-daygrid-day.fc-day-today {
        font-size: 18px;
    }
    .event {
        font-size: 20px;
    }
    .events__h2 {
        margin-bottom: 25px;
    }
    #calendar {
        margin-top: 25px;
        margin-bottom: 40px;
    }
    .events__date {
        font-size: 14px;
    }
    .events__h4 {
        font-size: 18px;
    }
    .events__p {
        font-size: 16px;
    }
}
/* END EVENTS CALENDER */

/* START COMPANIES REGISTRIES */
.my-tabs{
    overflow-x: auto;
}
.my-tabs__titles {
    display: flex;
    align-items: center;
    width: fit-content;
    position: relative;
    padding-bottom:17px;
}
.my-tabs__titles:before {
    content: "";
    width: 100%;
    height: 2.5px;
    background-color: rgba(2, 36, 84, 0.3);
    border-radius: 20px;
    position: absolute;
    left: 0px;
    bottom: 0px;
}
.my-tabs__label {
    font-size: 16px;
    font-weight: var(--medium);
    color: var(--navy);
    /* width: 20%; */
    margin-bottom: 0px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    min-width: 65px;
    padding-inline-end:30px;
}
@media(max-width:1200px){
   .my-tabs__label{
    padding-inline-end:15px;
   }
}
.my-tabs__label:hover {
    opacity: 0.7;
}
.my-tabs__label:not(.my-tabs__span--active) {
    color: rgb(53, 80, 118);
}
.my-tabs__label:first-of-type {
    text-align: start;
}
.my-tabs__label:not(:first-child):last-of-type {
    text-align: end;
}
.my-tabs__bar {
    width: 100%;
    height: 1.5px;
    margin-top: 15px;
    background-color: rgba(2, 36, 84, 0.3);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    display: flex;
    justify-content: space-between;
}
.my-tabs__span {
    height: 2px;
    width: 15%;
    background-color: transparent;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    position: relative;
    top: -0.3px;
}
/* .my-tabs__span:first-of-type,
.my-tabs__span:last-of-type{
  width: 15%;
} */
.my-tabs__span--active:before {
    background-color: var(--yellow);
}
.forms__table {
    margin-top: 70px;
}
.forms__table th {
    color: #009cde;
    font-size: 16px;
    font-weight: 400;
    border: none !important;
}
.forms__table tr:first-of-type td {
    border-top: none !important;
    height: 60px;
    line-height: 60px;
}
.forms-title__div {
    display: flex;
    align-items: center;
    gap: 30px;
}
.forms__table td {
    font-weight: var(--medium);
    color: var(--navy);
    height: 88px;
    line-height: 88px;
}
.forms__btn {
    width: 141px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid var(--navy);
    font-size: 12px;
    color: var(--navy);
    font-weight: var(--semi-bold);
    position: relative;
    /* top: 50%; */
    gap: 15px;
    padding: 0px;
    cursor: pointer;
    /* margin-inline-start: auto; */
    /* transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%); */
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.forms__btn:hover {
    background-color: var(--navy);
    color: #fff;
    text-decoration: none;
}
.forms__table svg path {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.forms__btn:hover svg path {
    fill: #fff !important;
}
.pa-s-0 {
    padding-left: 0px !important;
}
.forms__table th:first-of-type {
    padding-left: 55px;
}
.registry-search__form button {
    width: 174px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: var(--yellow);
    color: #f1f1f1;
    font-weight: var(--medium);
    outline: none;
    border: none;
    cursor: pointer;
    border: 2px solid var(--yellow);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.registry-search__form button:hover {
    color: var(--cyan);
    border-color:var(--cyan);
    background-color: transparent;
}
.registry-search__form button  svg path{
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}
.registry-search__form button:hover  svg path{
    fill:var(--cyan);
    stroke: var(--cyan);
}
.registry-search__form {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-left: auto;
    margin-right: auto; */
    margin-top: 70px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 29px 0px;
}
.registry-search__form button:focus,
.registry-search__form button:hover {
    outline: none;
}
.registry-search__form input {
    display: block;
    padding-block: 9px;
    width: calc(100% - 174px);
    border: 1px solid rgba(128, 145, 169, 0.44);
    color: var(--navy);
    font-weight: var(--medium);
    border-right: none;
    padding-inline-start: 30px;
}
.registry-search__form input::placeholder {
    color: var(--navy);
    font-weight: var(--medium);
}
.registry-search__form input:focus {
    outline: none;
}
.my-dropdown {
    position: relative;
}
.my-dropdown svg {
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
@media (max-width: 992px) {
    .registry-search__form {
        width: 80%;
    }
    .forms__table thead {
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    .forms__table td {
        display: flex;
        position: relative;
        height: unset !important;
        border: none;
        height: 60px;
        line-height: 60px;
    }
    .forms__table td:before {
        content: attr(data-label);
        display: block;
        width: 20%;
        color: #009cde;
    }
    .forms__table td {
        padding-left: 0px;
    }
    .forms__table tr:not(:last-of-type) {
        border-bottom: 1px solid #dee2e6;
    }
}
@media (max-width: 768px) {
    .registry-search__form {
        width: 100%;
    }
    .registry-search__form button {
        width: 150px;
    }
    .registry-search__form input {
        width: calc(100% - 150px);
        padding-inline-start: 10px;
    }
    .my-tabs__label {
        font-size: 12px;
    }
}
@media (max-width: 575px) {
    .forms__table td:before {
        width: 30%;
    }
    .forms-title__div,
    .forms__table td:before {
        font-size: 14px;
    }
    .forms-title__div {
        gap: 10px;
    }
    .forms__table td {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .my-tabs__label {
        font-size: 10px;
    }
}
.two-lines {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    line-height: 16px; /* Height taken by one line */
    max-height: 32px;
}
.forms-title__div p {
    margin-bottom: 0px;
    line-height: 16px;
}
@media (min-width: 1200px) {
    .has-sub ul li a {
        padding-inline-start: 10px !important;
        padding-inline-end: 10px !important;
    }
    .has-sub {
        margin-right: 10px !important;
    }
    .has-sub .has-sub {
        margin-right: 0px !important;
    }
    .has-sub .outer__ul .has-sub:hover > a {
        color: var(--yellow) !important;
    }
    .has-sub .outer__ul .has-sub:hover > a svg path {
        fill: var(--yellow) !important;
    }
}
/* .custom__a {
  font-weight: 700;
} */

a.active {
    color: var(--yellow);
}
a.active .my-dropdown > svg path {
    fill: var(--yellow);
    stroke: var(--yellow);
}
.fill-orange {
    fill: var(--yellow) !important;
}
/* END COMPANIES REGISTRIES */
.my-tabs__label {
    position: relative;
}
.my-tabs__label::before {
    content: "";
    width: 100%;
    height: 2px;
    left: 0px;
    display: block;
    bottom: -16.5px;
    position: absolute;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

/* .custom__a svg path {
  fill: var(--navy);
  stroke: var(--navy);
} */
.inner-page .stellarnav ul:first-of-type li:not(:first-of-type) path {
    fill: var(--navy);
    stroke: var(--navy);
}
.home .custom__a svg path {
    fill: #fff;
    stroke: #fff;
}
/* .custom__a.active svg path {
  fill: var(--yellow);
  stroke: var(--yellow);
} */
/* @media (max-width: 1200px) {
  .custom__a svg path {
    fill: #fff;
    stroke: #fff;
  }
} */
/*************************************CONTACT US PAGE**********************/
.form__div {
    margin-bottom: 45px;
}
.form__div label {
    display: block;
    color: var(--navy);
    font-weight: var(--semi-bold);
    font-size: 16px;
    width: fit-content;
    position: relative;
    text-transform: capitalize;
}
.form__div label:after {
    content: "*";
    position: absolute;
    color: #ff5e00;
    right: -10px;
    font-weight: 400;
}
.form__div input,
.form__div textarea {
    width: 100%;
    padding-block: 10.5px;
    display: flex;
    border: 1.5px solid var(--navy);
    border-radius: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    padding-inline: 15px;
    transition: border-color 0.3s ease-in-out;
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    -ms-transition: border-color 0.3s ease-in-out;
    -o-transition: border-color 0.3s ease-in-out;
    font-size: 16px;
    color: var(--navy);
    font-weight: var(--medium);
}
.form__div input::placeholder,
.form__div textarea::placeholder {
    color: rgb(103, 124, 152);
    overflow:visible
}
.form__div input:focus,
.form__div textarea:focus {
    outline: none;
    border-color: #009cde;
}
.form__div textarea {
    resize: none;
    min-height: 168px;
    padding-top: 15px;
}
.send__btn {
    width: 183px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: var(--yellow);
    text-transform: capitalize;
    font-weight: 400;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
}
.send__btn:hover {
    background-color: transparent;
    color: var(--cyan);
    border-color: var(--cyan);
}
@media (max-width: 768px) {
    .form__div {
        margin-bottom: 25px;
    }
}
@media (max-width: 575px) {
    .send__btn {
        margin: auto;
    }
}
/**********************News Details*********/
.main__img img,
.sub__img img {
    max-height: 400px;
    float: right;
    margin-inline-start: 25px;
}
.sub__img img {
    height: 340px;
}
.post__p {
    font-size: 18px;
    font-weight: var(--medium);
    color: var(--navy);
}
.main__img {
    margin: 50px 0px;
}
.img__caption {
    font-size: 16px;
    color: var(--navy);
    display: block;
    text-align: center;
    margin-top: 3px;
}
/* .first-section .projects li:hover .hidden-content {
  opacity: 1;
}

.hidden-content
 {
  opacity: 0;
} */
.m-b {
    margin-bottom: 65px;
}
.my-breadcrumb .breadcrumb-item {
    padding-inline-start: 18px;
}
.my-breadcrumb .breadcrumb-item:first-of-type {
    padding-inline-start: 0px;
}
.inner-page.news-page .banner {
    /* height: 480px; */
    /* height: 610px; */
    height: unset;
    background-image: url(../img/media-center/news-bg.png);
}
.news__h3 {
    font-size: 22px;
    font-family: var(--semi-bold);
    color: #fff;
    margin-top: 75px;
}
.news__h1 {
    font-size: 38px !important;
    font-family: var(--semi-bold);
    color: #fff;
    margin-top: 25px;
}
.news__date {
    font-size: 18px;
    font-family: var(--semi-bold);
    color: #fff;
}
.inner-page.news-page .header-container {
    height:unset;
    min-height: unset;
    flex-direction: column;
    align-items: flex-start;
}
.news__date {
    display: flex;
    margin-top: auto;
    margin-bottom: 30px;
    margin-top: 144px;
}
@media (max-width: 768px) {
    .post__p {
        text-align: justify;
        font-size: 16px;
    }
    .m-b {
        margin-bottom: 30px;
    }
    .main__img img {
        height: 265px;
    }
    .news__h3,
    .news__date {
        margin-left: auto;
        margin-right: auto;
    }
    .inner-page.news-page .banner {
        /* height: 430px; */
        height: unset;
    }
    .inner-page .content {
        /* min-height: calc(430px - 90px); */
        /* min-height: calc(290px - 90px); */

    }
}

/* Integration Fixes */
/* .inner__div {
  margin-bottom: 15px;
} */
footer input:focus + label,
/* footer input:valid + label, */
footer input:focus + p + label,
/* footer input:valid + p + label, */
footer input:not(.empty) + p + label,
footer input:not(.empty) + label {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}
footer label {
    bottom: unset;
    top: 0px;
}
footer .useful-site .actions li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
footer .useful-site .actions li:first-child a {
    align-items: flex-start;
}
.latest-posts,
.latest-tweets {
    display: none;
}
.about__p {
    font-size: 18px;
    color: var(--navy);
    font-weight: var(--medium);
    margin-bottom: 30px;
}

.about__h3 {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.my-breadcrumb .breadcrumb-item + .breadcrumb-item.active::before {
    background-color: var(--navy);
}
@media (max-width: 768px) {
    .about__p {
        text-align: justify;
        font-size: 16px;
    }
}
.listen-m svg {
    width: 32px !important;
    height: 32px !important;
}
.one-line {
    overflow: hidden;
    text-overflow: ellipsis;
    display: none;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 14px !important;
    line-height: 14px !important; /* Height taken by one line */
    max-height: 28px;
}
.endless_more {
    width: 140px;
    height: 38px;
    background: var(--yellow);
    font-size: 16px;
    color: #fff;
    margin-left: auto;
    display: flex;
    margin-right: auto;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    border-radius: 0px;
    box-shadow: rgb(34 65 86 / 15%) 0px 0px 13px;
    transform: all 0.3s ease-in-out;
    -webkit-transform: all 0.3s ease-in-out;
    -moz-transform: all 0.3s ease-in-out;
    -ms-transform: all 0.3s ease-in-out;
    -o-transform: all 0.3s ease-in-out;
}
.endless_more:hover {
    opacity: 0.7;
    color: #fff;
}
.box-content h6 {
    color: var(--navy);
}
.box-content {
    height: calc(100% - 200px);
}
.fc-event-title-container {
    display: none;
}
#event-tooltip {
    position: absolute;
    z-index: 99;
    display: none;
}

#event-tooltip:before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
    top: -7px;
    border-width: 0.5rem 0.5rem 0;
    border-top-color: #46a4e5;
    transform: rotate(180deg);
    left: 20px;
}

#event-tooltip.right:before {
    left: auto;
    right: 20px;
}

#event-tooltip .tooltip-inner {
    width: 300px;
  
    color: #fff;
    border-radius: 0px;
    box-shadow: 0px 0px 15px 4px rgba(63, 161, 248, 0.4);
    border-width: 0.6rem 0.6rem 0;
    text-align: left;
    background: transparent;
    max-height: 180px;
    padding: 0;
    height: 190px;
    max-height: 200px;
    background-color: var(--navy);
}
@media(min-width:900px){
    #event-tooltip .tooltip-inner{
          max-width: 300px;
    }
}

#event-tooltip .tooltip-inner .tooltip-event-date {
    padding: 1.25rem 0px;
    min-height: 190px;
}

#event-tooltip .tooltip-inner .tooltip-event-date:nth-child(odd) {
    background: #46a4e5;
}

#event-tooltip .tooltip-inner .tooltip-event-date:nth-child(even) {
    background: #125688;
}

#event-tooltip .tooltip-inner .tooltip-event-date .event-info {
    padding: 0px 1.25rem;
    padding-right: 5px;
    width: 100%;
}

#event-tooltip .arrow::before,
#event-tooltip .bs-tooltip-top .arrow::before {
    border-top-color: #46a4e5;
}

#event-tooltip .bs-tooltip-bottom .arrow::before {
    border-bottom-color: #46a4e5 !important;
}

#event-tooltip .event-tooltip .tooltip-event-date {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#event-tooltip .event-tooltip .tooltip-event-date .date {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    flex-wrap: nowrap;
    text-align: left;
    padding-bottom: 0.5rem;
}

#event-tooltip .event-tooltip .tooltip-event-date .date .day {
    font-size: 2.25rem;
}

#event-tooltip .event-tooltip .tooltip-event-date .date .month {
    font-size: 0.75rem;
    margin: 0 15px;
}

#event-tooltip .event-tooltip .tooltip-event-date .date .month span {
    display: block;
}

#event-tooltip .event-tooltip .tooltip-event-date .tooltip-event-title {
    flex: 1;
    font-size: 1.125rem;
}

#event-tooltip .event-tooltip p {
    font-size: 0.875rem;
    color: #fff;
    line-height: 1;
}

#event-tooltip .event-tooltip p.event-location img {
    margin-right: 8px;
}

#event-tooltip .event-tooltip p.tooltip-event-detail {
    margin-bottom: 10px;
    line-height: 1.5;
    margin-right: 16px;
    word-break: break-all;
}
#event-tooltip .event-tooltip p.tooltip-event-detail a {
    color: #fff;
    font-size: 1.125rem;
    padding-top: 8px;
    display: block;
}
#event-tooltip .event-tooltip p.tooltip-event-detail a.read-more:after {
    font-family: "Material Icons";
    content: "\e5c8";
    display: inline-block;
    vertical-align: middle;
    transition: all 0.6s ease;
    margin-left: 3px;
}
#event-tooltip .event-tooltip p.tooltip-event-detail a:hover {
    text-decoration: underline;
}
#event-tooltip .event-tooltip p.tooltip-event-detail a:hover:after {
    margin-left: 8px;
}

#event-tooltip.multiple-days .tooltip-inner {
    background: #125688;
    color: #fff;
    border-radius: 0px;
    box-shadow: 0px 0px 15px 4px rgba(18, 86, 136, 0.4);
}

#event-tooltip.multiple-days
    .tooltip-inner
    .mCSB_scrollTools
    .mCSB_draggerRail {
    background: #55acee !important;
}

#event-tooltip.multiple-days .arrow::before,
#event-tooltip.multiple-days .bs-tooltip-top .arrow::before {
    border-top-color: #125688;
    border-bottom-color: #125688;
}

#event-tooltip.multiple-days .bs-tooltip-bottom .arrow::before {
    border-bottom-color: #125688;
}

#event-tooltip.multiple-days:before {
    border-top-color: #125688;
}
.fc-theme-standard td {
    height: 114px;
}
#event-tooltip .tooltip-inner .tooltip-event-date:nth-child(odd) {
    background-color: var(--navy);
}
#event-tooltip .event-tooltip p.tooltip-event-detail a.read-more:after {
    /* font-family: "Font Awesome 5 Free" !important;
    content: "\f178" !important;
    font-weight:900; */
    display: none;
}
#event-tooltip:before {
    border-top-color: var(--navy);
}
@media (max-width: 768px) {
    .appointment-holder img {
        width: 30px;
    }
    .fc-theme-standard td {
        height: 85px;
    }
}
@media (max-width: 992px) {
    /* #event-tooltip.mobile-tooltip .tooltip-inner {
        width: fit-content !important;
    } */
    #event-tooltip .event-tooltip .tooltip-event-date .date .day {
        font-size: 1.55rem;
    }
    #event-tooltip .event-tooltip .tooltip-event-date .date .month {
        font-size: 0.55rem;
    }
    #event-tooltip .event-tooltip .tooltip-event-date .tooltip-event-title,
    #event-tooltip .event-tooltip p.tooltip-event-detail a {
        font-size: 0.9rem;
    }
    #event-tooltip .event-tooltip p.event-location img {
        width: 15px;
    }
    .add-event-cal {
        font-size: 11px !important;
    }
}
.preloader-wrapper {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    z-index: 10000;
}
.loader-img img {
    max-width: 100%;
}
@media (max-width: 768px) {
    .appointment-holder img {
        width: 30px!important;
        height:30px!important;
    }
}
@media (max-width: 420px) {
    .mail {
        text-align: center;
    }
}
/* QA Fixes */
/* .inner-page .stellarnav ul:first-of-type li:first-of-type a:first-child path{
  fill: transparent;
  stroke: var(--navy);
}
.inner-page .stellarnav ul:first-of-type li:first-of-type a:first-child:hover path{
  fill: transparent!important;
  stroke: var(--yellow);
} */

@media (min-width: 1200px) {
    .container {
        max-width: 1185px;
    }
    .banner .header nav {
        gap: 40px;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1200px;
    }
    .banner .header nav {
        gap: 100px;
    }
}
@media (min-width: 1920px) {
    .container {
        max-width: 1450px;
    }
}
.terms-sitemap {
    margin-top: 37px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* gap: 10px; */
}
.terms-sitemap a {
    color: #fff;
}
.terms-sitemap a:first-child{
    margin-inline-end: 10px;
}

.bar {
    margin-inline-end: 10px;
    width: 1px;
    height: 15px;
    background-color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
footer .useful-site .actions li {
    width: 33.33%;
}
@media (max-width: 420px) {
    .terms-sitemap {
        justify-content: center;
    }
}
.mail a {
    color: #fff;
}

@media (min-width: 1200px) {
    .stellarnav > ul > li:nth-child(7) {
        width: 110px;
    }
    .stellarnav > ul > li:nth-child(7) a {
        padding-bottom: 0px;
    }
}
@media (max-width: 420px) {
    footer .useful-site .actions li:first-child a {
        align-items: center;
    }
}
@media (max-width: 1200px) {
    .agenda__div {
        width: 90%;
    }
}

footer .connect-us {
    padding-inline: 35px;
}
@media (max-width: 768px) {
    footer .connect-us {
        padding-inline: 0px;
    }
}
@media (min-width: 420px) {
    .outer__div .inner__div {
        width: 50%;
    }
}
@media (max-width: 992px) {
    .agenda__div {
        width: 100%;
    }
}
.move-up {
    position: relative;
    top: -15px;
}
@media (max-width: 992px) {
    .move-up {
        top: 0px;
    }
}
.endless_page_link {
    color: var(--navy);
}
.endless_page_current {
    color: var(--yellow);
    border: 1px solid var(--yellow);
    display: flex;
    width: 32px;
    justify-content: center;
    align-items: center;
}
.my-pagination a {
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
}
.my-pagination {
    padding: 0px;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0px;
}

.registries {
    margin-bottom: 40px;
    border-bottom: 1px solid #707070;
}
.registries li:last-child {
    margin-bottom: 5px;
}
.my-cards {
    margin-bottom: 65px;
}
.my-cards .my-card:nth-of-type(odd) {
    background-color: var(--navy);
}
.my-cards .my-card:nth-of-type(odd) p,
.my-cards .my-card:nth-of-type(odd) h3 {
    color: #fff;
}
/* .custom__a.active{
    width: 35px;
    height: 35px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
} */
/* .custom__a.active svg path {
  fill: #fff;
  stroke: #fff;
} */
.row .col-md-6 .supervisor:first-child {
    margin-inline-start: 60px;
}
/* .avatar img {
    width: 60%;
    margin: auto;
    display: block;
} */
.row .col-md-6:nth-child(7) .supervisor,
.row .col-md-6:nth-child(8) .supervisor {
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    .row .col-md-6 .supervisor:first-child {
        margin-inline-start: 0px;
    }
}
@media (min-width: 992px) {
    .my-width1 {
        width: 105px;
    }
    .my-width2 {
        width: 141px;
    }
}
@media (min-width: 992px) {
    #contact-form {
        width: 60%;
        margin-inline: auto;
    }
}
@media (max-width: 992px) {
    #contact-form {
        width: 75%;
        margin-inline: auto;
    }
}
@media (max-width: 768px) {
    #contact-form {
        width: 90%;
        margin-inline: auto;
    }
}
.hide-asterisk::after {
    display: none;
}
.listen__li a {
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.inner-page .listen__li a {
    color: var(--navy) !important;
}
.listen__li a:hover,
.inner-page .listen__li a:hover {
    cursor: default !important;
    color: var(--yellow) !important;
}

footer:after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 10px;
    left: 0px;
    right: 0px;
    background-image: url("../img/Divider.png");
    background-color: rgb(19, 40, 74);
}
@media (max-width: 768px) {
    .inner-page.news-page .news__h1 {
        font-size: 32px;
    }
    .inner-page.news-page .banner {
        /* height: 530px; */
        height: unset;
    }
}
@media (max-width: 480px) {
    .inner-page.news-page .news__h1 {
        font-size: 26px;
    }
    .inner-page.news-page .banner {
        /* height: 500px; */
        height: unset;
    }
}
@media (max-width: 420px) {
    .inner-page .banner h1 {
        font-size: 28px;
    }
}
@media (min-width: 1200px) {
    .flex-layout {
        width: 80%;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
.hide-arrow {
    display: none !important;
}
.form-control::placeholder {
    overflow: visible !important;
}
@media (max-width: 768px) {
    .inner-page.news-page .header-container {
        height: unset;
        min-height: unset;
    }
    .news__date{
        margin-top: 85px;
    }
    .news__h3{
        margin-top: 38px;
    }
}
.listen-m a {
    display: flex;
    align-items: center;
    gap: 10px;
}
@media (max-width: 992px) {
    .news__h1 {
        font-size: 30px !important;
    }
}
@media (max-width: 768px) {
    .news__h1 {
        font-size: 28px !important;
    }
}
@media (max-width: 480px) {
    .news__h1 {
        font-size: 25px !important;
    }
}
@media (max-width: 420px) {
    .inner-page.news-page .banner {
        /* height: 530px; */
        height: unset;
    }
}
.page-content.event-page {
    padding: 25px 0px;
}
.page-content.event-page span {
    font-size: 18px !important;
    font-weight: var(--medium) !important;
    color: var(--navy) !important;
    font-family: "Poppins", sans-serif !important;
    overflow-wrap: break-word!important;
}
@media (max-width: 575px) {
    .fc-col-header-cell-cushion {
        font-size: 14px !important;
    }
}
@media (max-width: 420px) {
    .fc-col-header-cell-cushion {
        font-size: 12px !important;
    }
}
.page-content.custome-padding {
    padding-top: 10px !important;
}
.page-content.my-padding {
    padding-top: 20px;
}
.page-content.custome-padding span,
.page-content.custome-padding p,
.page-content.custome-padding ul li {
    font-size: 18px !important;
    font-weight: var(--medium) !important;
    color: var(--navy) !important;
    font-family: "Poppins", sans-serif !important;
}
.page-content.custome-padding ul {
    padding-inline-start: 0px;
    list-style: none;
}
.page-content.custome-padding li {
    position: relative;
    padding-inline-start: 20px;
}
.page-content.custome-padding ul li:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-block;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background-color: var(--navy);
    position: absolute;
    left: 0px;
}
.page-content.custome-padding strong {
    color: #009cde;
    font-weight: 500 !important;
}
@media (max-width: 420px) {
    .agenda {
        width: 120px;
    }
    .content-search {
        width: calc(100% - 127px);
    }
    .content-search::placeholder {
        font-size: 14px;
    }
}
#toast-container > div {
    opacity: 1 !important;
}
.third-section .bottom .right .subscribe__btn:hover {
    color: #fff !important;
    cursor:pointer;
}

/*navbar*/
@media (min-width: 1400px) {
    .stellarnav > ul {
        gap: 29px;
    }
}
.stellarnav svg {
    width: unset;
}
@media (min-width: 1200px) {
    .stellarnav li a {
        gap: 15px;
    }
    .banner .header nav {
        /* gap: 75px; */
        gap: 50px;
    }
    .stellarnav > ul {
        gap: 20px;
    }
}
@media (min-width: 1920px) {
    .stellarnav > ul {
        gap: 50px;
    }
}
.stellarnav a:first-child + ul a:first-child + li span svg {
    height: 32px;
}
/* .main__img img, .sub__img img {
  max-height: 400px;
  float: left;
  margin-inline-end: 25px;
} */
@media (max-width: 768px) {
    .main__img img,
    .sub__img img {
        float: none;
        margin-inline-start: 0px;
        display: block;
        height: auto;
        width: 100%;
        max-width: 100%;
    }
}
.page-content.custome-padding p {
    /* text-align: start !important; */
    margin-inline: 0px !important;
}
.close__search svg {
    top: 46px;
}
.inner-page .active-page .custom__a span:first-child {
    width: 35px;
    height: 35px;
    background-color: var(--yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.inner-page .active-page:nth-child(4) .custom__a > span svg,
.inner-page .active-page:nth-child(7) .custom__a > span svg {
    width: 25px;
}
.inner-page .active-page .custom__a span:first-child svg path {
    fill: #fff !important;
    stroke: #fff !important;
}
@media (min-width: 1200px) {
    /* .stellarnav > ul li:nth-child(7) .custom__a span:last-child {
        position: relative;
        top: -5px;
    } */
}
.inner-page
    .stellarnav:nth-child(2)
    li:nth-child(2)
    .custom__a
    span:first-child
    path {
    fill: transparent !important;
    stroke: var(--navy) !important;
}
.inner-page
    .stellarnav:nth-child(2)
    li:nth-child(2)
    .custom__a:hover
    span:first-child
    path {
    stroke: var(--yellow) !important;
}

/* @media(max-width:1200px){
  .inner-page .stellarnav ul:first-of-type li:first-of-type a:first-child path {
    fill: transparent;
    stroke: #fff;
}
} */
.stellarnav.home ul:first-of-type li:first-of-type a:first-child path {
    fill: var(--yellow);
    stroke: transparent;
}
footer input::placeholder {
    color: transparent !important;
}
.page-content.custome-padding {
    font-family: "Poppins", sans-serif !important;
    font-size: 18px !important;
    font-weight: var(--medium) !important;
    color: var(--navy) !important;
}
footer .useful-site .actions li a {
    width: fit-content;
}
@media (min-width: 1920px) {
    .banner .header nav {
        gap: 100px;
    }
}
.inner-page
    .stellarnav
    ul:first-of-type
    li:first-of-type
    a:first-child:hover
    svg
    path:nth-of-type(2) {
    fill: var(--yellow);
}
@media (max-width: 1200px) {
    .inner-page .stellarnav ul:first-of-type li:not(:first-of-type) path {
        fill: #fff;
        stroke: #fff;
    }
    .inner-page
        .stellarnav
        ul:first-of-type
        li:first-of-type
        a:first-child
        svg
        path:nth-of-type(1) {
        fill: transparent;
    }
    .inner-page
        .stellarnav
        ul:first-of-type
        li:first-of-type
        a:first-child
        svg
        path:nth-of-type(2) {
        fill: #fff;
    }
}
div.cms .cms-structure.cms-structure-condensed .cms-structure-content {
    overflow-y: scroll;
    overflow-x: hidden;
}
div.cms .cms-structure{
    overflow-y: scroll!important;
}
.cms-submenu-item a[data-on-success="REFRESH_PAGE"] {
    display: none !important;
}

@media (min-width: 1200px) {
    .first-section {
        background-size: 117%;
    }
}
@media (min-width: 1260px) {
    .first-section {
        background-size: 112%;
    }
}
@media (min-width: 1410px) {
    .first-section {
        background-size: cover;
    }
}
/***************************Sitemap************************/
.site-map-content {
    font-weight: var(--medium);
    color: var(--navy);
}
.site-map-content a {
    color: var(--navy);
}
.site-map-content h4 {
    font-size: 22px;
}
.site-map-content li {
    font-size: 18px;
    margin-top: 15px;
    padding-inline-start: 15px;
    position: relative;
}
.site-map-content li:before {
    content: "";
    width: 7px;
    height: 7px;
    background-color: var(--yellow);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.site-sections {
    margin-top: 55px;
    display: flex;
    flex-wrap: wrap;
}
.site-sections div {
    width: calc(33.33% - 50px);
    margin-inline-start: 50px;
    margin-bottom: 55px;
}
@media (max-width: 992px) {
    .site-sections div {
        width: calc(50% - 50px);
    }
}
@media (max-width: 768px) {
    .site-sections div {
        width: 50%;
        margin-inline-start: 0px;
    }
}
@media (max-width: 575px) {
    .site-sections div {
        width: 100%;
        margin-bottom: 30px;
    }
}
.satisfaction-modal {
    background-color: rgba(2, 36, 84, 0.5);
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    visibility: hidden;
    z-index: -10;
}
.show-modal {
    visibility: visible;
    z-index: 9901;
}
.satisfaction-modal .modal-content {
    max-width: 840px;
    padding-top: 45px;
    padding-bottom: 15px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    margin-bottom: 204px;
    position: relative;
}
.satisfaction-modal p {
    color: var(--navy);
    font-size: 22px;
    font-weight: var(--medium);
    text-align: center;
}
.satisfaction-modal ul {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 55px;
    margin-bottom: 40px;
}
.satisfaction-modal li {
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px,
        rgba(17, 17, 26, 0.05) 0px 8px 32px;
    cursor: pointer;
}
.satisfaction-modal li span {
    color: var(--navy);
    line-height: 1.1;
    height: 32px;
    display: flex;
    align-items: flex-end;
    /* margin-top: 5px; */
    font-size: 14px;
}
.satisfaction-modal li:last-of-type span {
    width: 55px;
}
.satisfaction-modal .submit-btn {
    width: 128px;
    height: 39px;
    display: flex;
    background-color: var(--yellow);
    color: #fff;
    font-size: 14px;
    border: none;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.close-s__modal {
    background-color: transparent;
    width: fit-content;
    border: none;
    position: absolute;
    right: 20px;
    top: 40px;
}
.satisfaction-modal .submit-btn:hover {
    cursor: pointer;
    background-color: var(--navy);
    color: #fff;
}
.close-s__modal {
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}
.close-s__modal:hover {
    cursor: pointer;
}
.close-s__modal:hover path {
    stroke: var(--yellow);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.opinion-active {
    background-color: var(--navy);
}
.satisfaction-modal li:not(.opinion-active):hover {
    background-color: var(--yellow);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.satisfaction-modal li.opinion-active span,
.satisfaction-modal li:not(.opinion-active):hover span {
    color: #fff;
}
.opinion-active svg path,
.satisfaction-modal li:not(.opinion-active):hover path {
    fill: #fff;
}
.opinion-active svg line:last-child,
.satisfaction-modal li:not(.opinion-active):hover svg line:last-child {
    stroke: #fff;
}
.banner__a {
    display: block;
    width: 120px;
    height: 39px;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 15px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
}
.banner__a:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.9;
    background-color: transparent;
    border-color: #fff;
}
@media (max-width: 768px) {
    .satisfaction-modal ul {
        gap: 25px;
    }
    .banner__a {
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 670px) {
    .satisfaction-modal ul {
        gap: 15px;
        flex-wrap: wrap;
    }
    .close-s__modal {
        top: 25px;
        right: 15px;
    }
    .satisfaction-modal p {
        padding-inline: 5px;
    }
}
.third-section .top .container {
    display: flex;
    align-items: center;
}
footer label[for="id_phone"] .asterisk {
    display: none;
}
.listen__li a:hover path {
    fill: var(--yellow);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.first-section .projects li:hover #Ellipse_2,
.first-section .projects li:hover #Ellipse_3 {
    fill: var(--yellow);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}
.site-map-content li a {
    color: rgb(65, 91, 127);
}
/***************************************Terms and Conditions************************/
.page-content.terms-page{
    padding-top: 60px;
  }
  .terms-content{
    color: var(--navy);
    font-size: 18px;
  }
  .terms-content p {
    margin-bottom: 35px;
  }
  .terms-content a {
    color: #009CDE;
    text-decoration: none;
  }
  .terms-content a:hover{
    text-decoration: underline;
  }
  .terms-content ul{
    list-style: none;
    padding: 0px;
  }
  .terms-content ul li{
    position: relative;
    padding-inline-start: 18px;
    margin-bottom: 0px;
  }
  .terms-content ul li::before{
    content: "";
    width: 7px;
    height: 7px;
    background-color: var(--yellow);
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .terms-content ul:last-child{
    margin-bottom: 30px;
  }
  @media(max-width:768px){
    .terms-content{
      font-size: 16px;
      text-align: justify;
    }
  }
  .satisfaction-modal li:first-child span{
      width: 90px;
  }
  .headline-separator{
      margin-inline: 16px;
  }
  .projects li:hover .shown img{
    filter:brightness(0) saturate(100%) invert(91%) sepia(16%) saturate(5919%) hue-rotate(327deg) brightness(99%) contrast(95%);
    -webkit-filter:brightness(0) saturate(100%) invert(91%) sepia(16%) saturate(5919%) hue-rotate(327deg) brightness(99%) contrast(95%);
}
.top-management img{
    width: 122px;
    height: 122px;
}

.submit-btn:disabled {
    background-color: rgba(230, 230, 230)!important;
    color: rgb(255, 255, 255)!important;
    border-color: rgb(118, 118, 118)!important;
  }
.calendar-page{
    padding-top:30px;
}
@media(max-width:768px){
    .inner-page .banner h1{
        width: 100%;
    }
}
.flex-center-m{
    display: flex;
    justify-content: center;
    align-items: baseline;
}
.main__img img{
    max-width:450px
}
.ace_dd{
    height: 105px!important;
    width: 100%!important;
}
a.ace_opt{
    display: block!important;
}
/* Press Resources Style */
.press-resources{
    padding-top:50px;
  }
  .press-resources .forms__table td{
    height: unset;
    padding-block: 5px;
  }
  .press-resources .forms__table{
    margin-top: 0px;
  }
  .press-resources .forms__table tr td {
    vertical-align: middle;
    font-size: 16px;
  }
  .press-resources .forms__table tr td,
  .press-resources .forms__table tr td p{
    font-weight: var(--semi-bold);
  }
  .press-resources .forms__btn{
    border-width: 2px;
    letter-spacing: 2px;
    font-weight: var(--semi-bold);
    font-size: 12px;
    position: static;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }
  .custom-pagination{
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .custom-pagination a{
    display: flex;
    height:32px;
    width: 32px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: var(--medium);
    color:var(--navy);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
  }
  .custom-pagination a.active{
    border: 1px solid var(--yellow);
    color:var(--yellow);
    font-weight: var(--semi-bold);
  }
  .custom-pagination a:hover{
    color: var(--yellow);
    text-decoration: none;
  }
  .custom-pagination{
    margin-bottom: 30px;
    margin-top:20px;
    
  }
  .employees-space .forms__table tr td {
    vertical-align: middle;
    font-size: 16px;
    font-weight: var(--semi-bold);
}
.employees-space .forms__table .forms__btn{
    border-width: 2px;
    letter-spacing: 2px;
    font-weight: var(--semi-bold);
    font-size: 12px;
    position: static;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}
.page-content.custome-padding p {
    word-wrap: break-word;
}
.news__h1{
    text-align: justify;
}
.news-page p{
    text-align: justify;
}


.news-details .page-content.custome-padding p{
    text-align: justify!important;;
}
.appointment-holder img{
    width: 50px;
    height: 50px;
}
.listen-m a{
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}
.listen-m a:hover svg path{
    fill:#f6ab3f;
    stroke:#f6ab3f;
}
@media(max-width:1200px){
    .right-ul .listen-m{
        display: none!important;
    }
}
.listen-m a span{
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}
.listen-m a:hover span{
    color: var(--yellow);
}
.registries li img{
    width: 45px;
    height: 45px;
}
.menu-toggle{
    z-index: 10000;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); 
}
 .stellarnav.mobile.left>ul, .stellarnav.mobile.right>ul{
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); z-index: 10001;
    min-height: 100vh;
}
    .active-page.listen-m span svg{
        width: 25px !important;
        height: 25px !important;
    }

    #event-tooltip .event-tooltip .tooltip-event-date .date {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .event-info .date div:last-child{
        margin-inline-start: auto;
        margin-inline-end: 25px;
    }
/*About us page*/
.about-us {
    padding-top:25px!important;
  
  }
  /* .about-us .container{
    background-image: url(../img/about-bg.jpg);
    background-repeat: no-repeat;
   background-position-y:110px ; 
   background-position-x: -85px;
   background-size: 45%;
  } */
  @media(max-width:1199px){
      .about-us .container{
          background-size: 70%;
      }
  }
  #about-content div.about-details:first-child{
    display: flex;
    align-items: flex-start;
    margin-top: 15px;
  }
  #about-content div.about-details:first-child .about-desc{
    width: 53%;
  }
  #about-content div.about-details:first-child .about-img{
    display: flex;
    margin-inline-start: auto;
    align-items: flex-start;
    margin-inline-end: 160px;
  }
  #about-content div.about-details:first-child .about-img img{
    width: 200px;
    height: 200px;
    
  }
  .about-us p{
    font-size: 18px;
    color:var(--navy);
    font-weight: 500;
  
  }
  .about-us a{
    color:#009CDE
  }
  #about-content div.about-details:last-child {
    display: flex;
    justify-content: center;
    gap:20%;
    margin-top: 115px;
  }
  #about-content div.about-details:last-child .about-desc {
    width: 54%;
    order:2;
  }
  .about-us .our-specialties{
    margin-top: 200px;
  }
  .about-us .our-specialties li{
    color: var(--navy);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    overflow-wrap: anywhere;
  }
  .about-us .our-specialties li::marker{
    color: var(--yellow);
    width: 6px;
    height: 6px;
  }
  .about-us .our-specialties ul{
    padding-inline-start:25px;
    list-style-position:inside;
  }

  @media(min-width:1920px){
    .about-us .container {
      background-position-y: 90px;
  }
  }
  @media(max-width:1200px){
    .about-us .first-row {
      margin-top: 45px;
  }
    .about-us .second-row {
      margin-top: 73px;
  }
  .about-us .container {
    background-position-x: -120px;
  }
  }
  .about-us .our-specialties {
    margin-top: 0px;
    padding-top:150px;
    background-image: url(../img/bottom-circuit.jpg);
    background-repeat: no-repeat;
    background-position: 6% -10%;
  
  }
  @media(max-width:992px){
    .about-us .our-specialties {
        margin-top: 0px;
        background-image: url(../img/bottom-circuit.jpg);
        background-repeat: no-repeat;
        background-position: top center;
      
      }
    .first-row {
      flex-wrap: wrap;
  }
  
    .about-us .first-row div:first-child {
      width: 100%;
  }
  .about-us .first-row div:last-child {
     margin:20px auto;
     
  }
  .about-us .second-row div {
    width: 100%;
  }
  .about-us .second-row {
    margin-top: 30px;
  }
  .about-us .container{
    background-image: none!important;
  }
 
  /* .about-us .our-specialties ul{
      background-color: rgba(255,255,255,0.8);
      padding-top:80px
  } */
  .about-us-map{
    display:block ;
    text-align: center;
  }
  .second-row div{
    background-image: url(../img/top-circuit.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
  }
  .second-row div p{
    padding-bottom: 88px;
    background-color: rgba(255,255,255,0.8);
  }

  }

  @media(max-width:768px){
    .about-us p {
      font-size: 16px;
     
  }
  .about-us .our-specialties li {
    font-size: 16px;
  }
  .about-us .our-specialties li {
    margin-bottom: 15px;
  }
 
  }
  @media(max-width:575px){
    .about-us .our-specialties ul {
        padding-inline-start: 15px;
  }
  }
  .about-us-map .filer_image{
    max-width: 70%;
}
.inner-page .active-page .custom__a span svg:first-child{
    width: 25px;
    height:25px;
}
.stellarnav.mobile a:first-child + ul a:first-child + li span svg {
    height: 25px;
    width: 25px;
}
@media(max-width:1200px){
    .listen-m svg {
        width: 25px !important;
        height: 25px !important;
    }
    .custom__a span:first-child svg, .custom__a svg:first-child {
        width: 25px!important;
        height: 25px!important;
    }
}
@media(min-width:1200px){
    .container{
        max-width:1197px;
    } 
}
@media(min-width:1400px){
    .container{
        max-width:1300px;
    } 
}
@media(min-width:1600px){
    .container{
        max-width:1450px;
    }
}
.absolute-mobile{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.third-section .absolute-mobile .bottom {
    background-color: transparent!important;
}
.third-section .absolute-mobile .bottom .left p{
    color:#fff!important
}
@media(max-width:768px){

    .absolute-mobile .bottom{
        margin-left: auto;
        margin-right: auto;
    }
    .absolute-mobile{
        order: 2;
    }
    .kuwait-map {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}
.has-sub .custom__a{
    cursor:default;
}

.about-us .our-specialties ul {
    padding-inline-start: 0px;
    list-style-position: inside;
    list-style-type:none;
}
.about-us .our-specialties li{
    position: relative;
    padding-inline-start: 50px;
}
.about-us .our-specialties li:before{
    content:"";
    width: 6px;
    height: 6px;
    background-color: #F6AB3F;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: 25px;
    top:11px;
}
/* @media(min-width:992px){
    #about-content div.about-details:last-child .about-img{
        display: none;
      }
} */

@media(max-width:992px){
    #about-content div.about-details:last-child .about-desc{
        padding-bottom:80px;
        background-image: url(../img/top-circuit.jpg);
        background-repeat: no-repeat;
        background-position: bottom center;
    }
    #about-content div.about-details{
        justify-content: flex-start;
        flex-wrap: wrap;
      }
      #about-content div.about-details:first-child .about-desc,
      #about-content div.about-details:last-child .about-desc{
          width: 100%;
      }
   
      #about-content div.about-details:first-child .about-img{
          margin:25px auto;
      }
      #about-content div.about-details:last-child .about-img{
        display: block;
        margin-inline: auto;
      }
    
      #about-content div.about-details:last-child{
          margin-top:0px;
      }
      #about-content div.about-details:last-child .about-desc p{
          position: relative;
      }
      #about-content div.about-details:last-child .about-desc{
          background-color: rgba(255,255,255,0.8);
          position: relative;
      }
      #about-content div.about-details:last-child .about-desc::before{
          content: "";
          display: block;
          width: 100%;
          height: 100%;
          background-color: rgba(255,255,255,0.8);
         background-image: linear-gradient(to bottom , rgba(255,255,255,1),rgba(255,255,255,0.8));
          position: absolute;
          left: 0px;
          right: 0px;
          bottom: 0;
          
      }
      .about-us .our-specialties{
          padding-top:80px;
          position: relative;
      }
 
      .about-us .our-specialties ul,
      .about-us .our-specialties h4{
          position: relative;
      }
 }
 .about-us .our-specialties h4{
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #022454;
    margin-bottom: 20px;
    padding-inline-start: 15px;
  
  }
  @media(min-width:1200px){
      .search__li{
          align-self: flex-start;
        
      }
  }
  .third-section .bottom .right form .wrapper{
      min-height: 70px;
  }
  .list::-webkit-scrollbar {
    width: 12px;
  }
  .list::-webkit-scrollbar-track {
   background-color: #F2F2F2;
    
  }
  .list::-webkit-scrollbar-thumb {
     width: 8px;
     border-radius: 10px;
     -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
     -ms-border-radius: 10px;
     -o-border-radius: 10px;
     background-color: var(--yellow);
}
.pay__btn{
    width: 141px;
    height: 44px;
    margin-inline:12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: var(--yellow);
    color: #f1f1f1;
    font-weight: var(--medium);
    outline: none;
    border: none;
    cursor: pointer;
    border: 2px solid var(--yellow);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    margin-top: 70px;
    box-shadow: rgb(0 0 0 / 20%) 0px 7px 29px 0px;
}
.pay__btn:hover{
    color: var(--cyan);
    border-color: var(--cyan);
    background-color: transparent;
}
.form__div2{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media(max-width:768px){
    .form__div2{
        flex-wrap: wrap;
    }
    .pay__btn{
        margin-top: 45px;
        margin-inline-start: auto;
    }
    
}
.forms__table td{
    vertical-align: middle;
}
/* .stellarnav ul ul ul {
    left: unset!important;
    right: 220px!important;
} */
.mCSB_scrollTools .mCSB_draggerRail{
    display: none!important;
}
@media(max-width:575px){
    .access-select{
        bottom: 15px;
    }
}
.post__p{
    overflow-wrap: break-word!important;
}
.our-projects__p{
    overflow-wrap: break-word;
}
.lift-up{
    position: relative;
    top:-4px;
    font-family: 'Almarai', sans-serif!important;
}
.pay__btn:focus, 
.send__btn:focus{
    outline: none!important;
}
@media(min-width:576px){
    .container{
        max-width:95%
    }
}
@media(min-width:768px){
    .container{
        max-width:95%
    }
}
.employees-space .registry-search__form{
    margin-inline: auto;
    width:60%
}

.button-add {
  appearance: none;
  background-color: transparent;
  border: 2px solid #1A1A1A;
  border-radius: 15px;
  box-sizing: border-box;
  color: #3B3B3B;
  cursor: pointer;
  display: inline-block;
  font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin-right:25%;
  min-height: 60px;
  min-width: 0;
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 50%;
  will-change: transform;
}

.button-add:disabled {
  pointer-events: none;
}

.button-add:hover {
  color: #fff;
  background-color: #1A1A1A;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-add:active {
  box-shadow: none;
  transform: translateY(0);
}
.marquee{
   
    width: 100%;
    overflow: hidden;
    height: 30px;
  }
  .marquee-content{
    list-style: none;
    height: 100%;
    margin:0px;
    display: flex;
    gap:50px;
    animation: scrolling-en 10s linear infinite;
    -webkit-animation: scrolling-en 50s linear infinite;
    padding-inline-start: 0px;
}
  .marquee-content li{
    /* border : 3px solid teal; */
    
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
  }
  @keyframes scrolling-en {
    0%{
      transform:translateX(100%)  ;
      -webkit-transform:translateX(100%)  ;
      -moz-transform:translateX(100%)  ;
      -ms-transform:translateX(100%)  ;
      -o-transform:translateX(100%)  ;
  }
  100%{
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
}
  }
.inner-page{
    overflow-x:hidden ;
}
@media(max-width:992px){
    .employees-space .registry-search__form{
        width:75%;
    }
}
@media(max-width:768px){
    .employees-space .registry-search__form{
        width:80%;
    }
}
@media(max-width:480px){
    .employees-space .registry-search__form{
        width: 100%;
    }
}
@media(max-width:768px){
    .pay__btn{
        margin-inline:0px;
    }
}
@media(max-width:480px){
    .pay__btn{
        width:120px;
    }
    .registry-search__form button{
        width: 120px;
    }
    .registry-search__form input{
        width: calc(100% - 120px);
    }
}
.about-us p:empty{
    display: none;
}

#about-content div.about-details:last-child .about-img{
   
    order:1
  }
#about-content div.about-details:last-child .about-img img{
    min-width: 300px;
}
/* .about-us .our-specialties:before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.8);
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0;
  } */
@media(max-width:992px){
    #about-content div.about-details:last-child .about-img {
        order: 2;
    }
    #about-content div.about-details:last-child .about-desc{
        order: 1; 
    }
    /* #about-content div.about-details:first-child .about-desc::before{
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background-color: rgba(255,255,255,0.8);
        position: absolute;
        left: 0px;
        right: 0px;
        bottom: 0;
        
    } */
}
@media(min-width:992px){

    #about-content div.about-details:first-child .about-desc{
        padding-bottom:95px;
        background-image: url(../img/top-circuit.jpg);
        background-repeat: no-repeat;
        /* background-position: 10% 69%; */
        background-position: 10% 33%;
        position: relative;
        z-index: 1;
    }
    #about-content div.about-details:first-child .about-desc:before{
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background-color: rgba(255,255,255,0.8);
        position: absolute;
        left: 0px;
        right: 0px;
        bottom: 0;
        z-index: -1;
        background-image: linear-gradient(to bottom, rgba(255,255,255), rgba(255,255,255,0.8));
    }

}
.our-specialties{
 position: relative;
}
.our-specialties:before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.8);
    background-image: linear-gradient(to top, rgba(255,255,255), rgba(255,255,255,0.8));
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0;
}
.about-us .our-specialties h4{
    position:relative
}
@media(max-width:992px){
    .forms-title__div svg{
        min-width: 21px;
        max-width: 21px;
    }
    .forms-title__div{
        width: 80%;
    }
}
@media(max-width:575px){
    .forms-title__div{
        width:70%
    }
}
@media(max-width:420px){

    .forms__table td:before{
        width: 35%;
    }
    .forms-title__div {
        width: 65%;
    }
}
@media(max-width:375px){
    .inner-page.media-center .banner .content {
        height: calc(540px - 90px);
    }
    .agenda{
        width: 100%;
        position: static;
        margin-bottom: 30px;
    }
    .content-search{
        width: 100%;
    }
    .selector{
        width: 100%;
    }
    .selector:after{
        left: 0px;
        right: 0px;
        bottom: px;
        width: 100%;
        height: 1px;
        top: 100%;
    }
    .agenda__div {
        margin-top: 15px;
    }
}
@media(max-width:768px){
    .third-section .bottom .left h3{
        text-align: center!important;
    }
    .third-section .absolute-mobile .bottom .left p{
        text-align: center!important;
    }
    .third-section .bottom .right form{
        justify-content: center;
        flex-wrap: wrap;
        gap: 0px;
    }
    .third-section .bottom .right form .wrapper{
        width: 100%;
    }
    .third-section .bottom .right .subscribe__btn{
        margin-inline: auto;
    }
    .third-section .bottom .right form .wrapper p{
        text-align: center;
    }
    .third-section .bottom .right input{
        width: 100%;
    }
    .third-section .absolute-mobile .bottom{
        margin-top:25px;
    }
}
@media(min-width:768px)and (max-width:1300px){
    footer .connect-us {
        padding-inline:0px;
    }
    footer label{
        white-space: nowrap;
    }
}
@media (max-width:575px){
    .hidden-content h3,
    .hidden-content p{
        width: 90%;
        margin-inline: auto;
    }


}
@media(max-width:420px){
    .hidden-content p{
        width:92%;
        /* margin-left: 0px;
        margin-right: auto; */
    }
    .hidden-content h3{
        width:90%;
        /* margin-left: 0px;
        margin-right: auto; */
    }
    /* .first-section .projects li:hover {
        flex: 15;
    } */
    .hidden-content .my-btns {
       width:90%;
       margin-inline: auto;
    }
    .hidden-content .portal__btn{
        padding-inline: 10px;
        height: unset;
        min-width: unset;
        padding-block: 10px;
    }
}

#event-tooltip.arrow-position:before{
    left: unset!important;
    right:20px!important;
}
.banner .header nav .distributer ul:not(.right-ul) li:not(:first-of-type) a:not(.active):hover svg path {
    stroke: var(--yellow);
}
@media(min-width:992px){
    .forms-title__div svg{
        min-width: 25px;
    }
}

#id_location{
 width: 100%;
    height: 48px;
    border: 1.5px solid var(--navy);
    padding-inline: 15px;
    font-size: 16px;
    color: var(--navy);
    font-weight: var(--medium);
}

.django-ckeditor-widget{
     width:100%;
}


.paci-location {
    margin-top: auto;
}
 .paci-location li{
    margin-bottom: 15px;
    color: rgb(117,117,117);
    display: flex;
    align-items: center;
    gap: 10px;
 }
 .paci-location li img{
    width: 18px;
    filter: invert(91%) sepia(0%) saturate(5726%) hue-rotate(73deg) brightness(76%) contrast(81%);
 }
 .paci-location li:last-child{
    margin-bottom: 0px;
 }
 .flex-column{
    display: flex;
    flex-direction: column;
 }
 .my-tabs__label{
    white-space: nowrap;
 }

 .my-tabs::-webkit-scrollbar {
    height: 8px;
}
.my-tabs::-webkit-scrollbar-track {
    border-radius: 15px;
    height: 8px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.my-tabs::-webkit-scrollbar-thumb {
    background-color: #022454;
    border-radius: 15px;
}

#event-tooltip.mobile-tooltip{
    left:50%!important;
    transform: translateX(-50%)!important;
    -webkit-transform: translateX(-50%)!important;
    -moz-transform: translateX(-50%)!important;
    -ms-transform: translateX(-50%)!important;
    -o-transform: translateX(-50%)!important;
}
#event-tooltip.mobile-tooltip:before{
   display: none;
}

.search-m input{
   
        padding-inline-end: 35px;
   
}

.search-m button{
    background-color: transparent;
    border:none;
    position: absolute;
    right: 5px;
    top: 11px;
}
.search-m button:focus{
    outline: none;
}
.search-m button svg{
    width: 21px!important;
    height: 21px!important;
 
}
@media(max-width:1200px){
    
    .search-m button svg{
        width: 21px!important;
    height: 21px!important;
    }
    .search-m button svg path{
        stroke:transparent!important;
    }

}

.faqs-banner{
    min-height: calc(250px - 125px);
    display: flex;
    align-items: center;
    padding-block: 25px;
    background-image: url(../img/upper-management/management-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.faqs-banner h1{
    font-family: "Poppins", sans-serif !important;
    color:#fff;
    font-size: 47px;
}
body.ar .faqs-banner h1 {
    direction: ltr;
}
.faq-container{
    padding-block: 60px
}
.faq-container h2{
    font-family: 'Almarai', sans-serif!important;
    margin-bottom: 30px!important;
}
.faq-page{
    font-family: 'Almarai', sans-serif!important;
    text-align: right;
    font-size: 18px;
    padding: 15px 15px !important;
    justify-content: flex-end;
    margin-bottom: 0px!important;

}
.faq-body{
    font-family: 'Almarai', sans-serif!important;
    text-align: right;
    font-size: 18px;
    padding: 15px!important;
}
.faq-body p{
    margin-bottom: 0px!important;
}
.faq-container h3{
    font-family: 'Almarai', sans-serif!important;
    margin-bottom: 30px!important;
}
@media(max-width:992px){
    .faq-page{
        font-size: 16px;
    }
    .faq-body{
        font-size: 16px;
    }
    .faqs-banner h1 {
        text-align: center;
    }
}

/* #form1 table{
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    width: 100%;
}

#form1 marquee{
    width: 100%;
} */

.date__div{
    position: relative;
}
.date__div svg{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.publications__label{
    
    display: block;
    color: var(--navy);
    font-weight: var(--semi-bold);
    font-size: 16px;
    width: fit-content;
    position: relative;
    text-transform: capitalize;
}
#id_publications,
#id_internal_place,
#id_external_place{
    width: 100%;
    padding-block: 10.5px;
    display: flex;
    border: 1.5px solid var(--navy);
    border-radius: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    padding-inline: 15px;
    transition: border-color 0.3s ease-in-out;
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    -ms-transition: border-color 0.3s ease-in-out;
    -o-transition: border-color 0.3s ease-in-out;
    font-size: 16px;
    color: var(--navy);
    font-weight: var(--medium);
}
label [ for="id_internal_place"],
label [ for="id_external_place"]{
    display: block;
}

#event-form input[type="checkbox"]{
    width: 20px;
    height: 20px;
    accent-color: var(--navy);
}
#event-form input[type="checkbox"] + label{
    margin-inline-start: 8px;
    position: relative;
    top: -5px;
}
#id_publications{
    margin-bottom: 15px;
}
#id_internal_place{
    margin-bottom: 20px;
}
#id_press_invitation{
    display: none;
}
.press-invitation{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    padding-inline: 15px;
    color: var(--navy);
    background: #fff;
    width: 100%;
    /* border: 1px dashed var(--light-gray); */
    border: 1px dashed var(--dark-gray);
   
}

.press-invitation input{
    display: none;
}
.add-event{
    margin-inline-start: auto;
    margin-top: 25px;
}
@media(max-width: 575px){
    .add-event{
        width: 100%;
    }
}

@media(max-width: 575px){
    .first-section .projects li{
 flex-direction: column;
    }
   
}
.fab {
    font-family: 'FontAwesome'!important;
  
}


.terms-page span{
    color:#022454!important
}

/* Error Pages Styles  */

.error-content .error-code{
    margin-top:170px;
    text-align: center;
    width: fit-content;
    margin-inline:auto;
    position: relative;
  }
  .error-content__div{
    text-align: center;
    margin-top: 50px;
    position: relative;
    width: fit-content;
    margin-inline: auto;
  }
  .error-content__div h2{
    font-family: "Poppins", sans-serif!important;
    font-size: 36px;
    font-weight: 600;
    color:#022454
  }
  
  .error-content__div p{
    font-size: 18px;
    color:#494949;
    margin-bottom: 18px;
  }
  
  .actions__div{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:25px;
    margin-bottom: 30px;
  }
  .actions__div a.reload__a{
    width: 124px;
    height:39px;
    background-color: #F6AB3F;
    color: #fff;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    border: 1px solid transparent;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
  }
  
  .actions__div a.reload__a:hover{
    background-color: transparent;
    border-color: #F6AB3F;
    text-decoration: none;
    color:#F6AB3F;
  }
  
  .actions__div a.back__a{
      font-size:14px;
      color:#022454;
      transition: all .3s ease-in-out;
      -webkit-transition: all .3s ease-in-out;
      -moz-transition: all .3s ease-in-out;
      -ms-transition: all .3s ease-in-out;
      -o-transition: all .3s ease-in-out;
  }
  
  .actions__div a.back__a:hover{
    text-decoration: none;
    color:#F6AB3F;
  }
  
  .clock__img,
  .list__img,
  .bg-cloud__img,
  .sm-cloud__img1,
  .sm-cloud__img2{
    position: absolute;
  }
  
  .clock__img{
    left: -290px;
    top:-90px
  }
  
  .list__img{
    top:-179px;
    left:50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  
  .bg-cloud__img{
    right: -335px;
    top:-33px;
  }
  
  .sm-cloud__img1{
    left:-41px;
    top:-43px
  }
  
  .sm-cloud__img2{
    right:-100px;
    bottom:0px
  }
  
  @media(max-width:992px){
    .error-code__img{
      width: 300px;
    }
    .clock__img{
      width: 67px;
      left:-200px
    }
    .list__img{
      width: 77px;
    }
    .bg-cloud__img{
      width: 98px;
      right:-235px
    }
    .sm-cloud__img1{
      width:45px;
      left:-29px
    }
    .sm-cloud__img2{
      width:45px;
      right:-70px;
    }
    .error-content__div h2{
      font-size: 25px;
    }
    .error-content__div p{
      font-size: 16px;
    }
  }
  
  @media(max-width:768px){
    .error-code__img{
      width: 210px;
    }
    .clock__img{
      width: 47px;
      left:-140px;
      top:-63px
   
    }
    .list__img{
      width: 54px;
      top:-125px
    }
    .bg-cloud__img{
      width: 69px;
      right:-165px;
      top:-23px
    }
    .sm-cloud__img1{
      width:32px;
      left:-20px;
      top:-30px
    }
    .sm-cloud__img2{
      width:32px;
      right:-50px;
    }
    .error-content__div h2{
      font-size: 18px;
    }
    .error-content__div p{
      font-size: 14px;
    }
  }
  
  @media(max-width:626px){
    .sm-cloud__img2{
      right:-16px;
    } 
  }
  
  @media(max-width:575px){
    .sm-cloud__img1{
      left:15px;
    } 
    .sm-cloud__img2{
      right:15px;
    } 
    .clock__img{
      left:calc(-100% + 90px)
    }
    .bg-cloud__img{
      right: calc(-100% + 90px);
    
    }
  }
  
  @media(max-width:480px){
    .clock__img{
      left:-90px
    }
    .bg-cloud__img{
      right: -90px
    
    }
  }
  
  @media(max-width:375px){
    .clock__img{
      left:-60px
    }
    .bg-cloud__img{
      right: -60px;
      width:55px
    }
    .sm-cloud__img1{
      left:0px;
    } 
    .sm-cloud__img2{
      right:0px;
    } 
  }
  
  /* Error 500 */
  
  .bg-cloud__img--1,
  .bg-cloud__img--2{
    position: absolute;
  }
  .bg-cloud__img--1{
    left:-314px;
    top:-55px
  }
  .bg-cloud__img--2{
    right:-300px;
    top:-70px
  }
  
  @media(max-width:992px){
    .bg-cloud__img--1{
      left:-220px;
      width:99px
    }
    .bg-cloud__img--2{
      right:-210px;
      width:99px
    }
  }
  
  @media(max-width:768px){
    .bg-cloud__img--1{
      left:-154px;
      width:60px;
      top:-38.5px
    }
    .bg-cloud__img--2{
      right:-147px;
      width:60px;
      top:-50px
    }
  }
  
  @media(max-width:575px){
    .bg-cloud__img--1{
      left:calc(-100% + 90px)
  
    }
    .bg-cloud__img--2{
      right:calc(-100% + 90px)
  
    }
  }
  
  @media(max-width:480px){
    .bg-cloud__img--1{
      left:-90px
  
    }
    .bg-cloud__img--2{
      right:-90px
  
    }
  }
  @media(max-width:375px){
    .bg-cloud__img--1{
      left:-60px
    }
    .bg-cloud__img--2{
      right: -60px;
      width:55px
    }
  }
  .less-mr{
    margin-top: 60px!important;
  }

 .tabs{
    width: 181px;
    min-width: 181px;
    }
    .tabs li{
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color:#022454;
    padding-bottom: 20px;
    padding-top: 25px;
    border-bottom: 2px solid #F0F0F0;
    cursor: pointer;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transform-origin: center left;
    }
    .tabs li span{
    display: block;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    }
    .tabs li:hover span{
    transform:translateX(3px);
    -webkit-transform:translateX(3px);
    -moz-transform:translateX(3px);
    -ms-transform:translateX(3px);
    -o-transform:translateX(3px);
    }
    .tabs li.active{
    color:#009CDE
    }
    .faqs-content{
    display: flex;
    gap:83px;
    margin-bottom: 70px;
    }
    .faqs_q{
    width: calc(100% - 264px);
    }
    .faqs_q .accordion{
    margin-top: 50px;
    }

    .faqs_q .accordion button{
    font-family: "Poppins", sans-serif;
    white-space: normal;
    width: 100%;
    text-align: start;
    font-size: 16px;
    font-weight: 600;
    color:#022454;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    }

    .faqs_q .accordion button:hover{
    text-decoration: none;
    }
    .faqs_q .accordion .card{
    margin-bottom: 20px;
    box-shadow: 0px 3px 17px rgba(0,0,0,0.2);
    }
    .faqs_q .accordion .card-header{
    background-color: transparent;
    border: none;
    padding:22px 29px
    }
    .faqs_q .card-body{
    color:#022454;
    margin-inline: 29px;
    padding-inline: 0px;
    padding-top: 25px;
    border-top: 2px solid #F0F0F0;
    }
    .faqs_q .accordion button.collapsed .img-bg{
    min-width: 20px;
    min-height: 20px;
    background-image: url(../img/plus.png);
    }
    .faqs_q .accordion button .img-bg{
    min-width: 20px;
    min-height: 20px;
    background-image: url(../img/minus.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    }
    .faqs_q .tabcontent{
    height: 0px;
    overflow: hidden;
    padding-inline:17px;
    opacity: 0;
    transition: opacity .8s ease;
    -webkit-transition: opacity .8s ease;
    -moz-transition: opacity .8s ease;
    -ms-transition: opacity .8s ease;
    -o-transition: opacity .8s ease;
    }
    .faqs_q .tabcontent.tabcontent-active{
    height: auto!important;
    opacity: 1;
    }
    @media(max-width:992px){
    .faqs-content {
        gap: 30px;
    }
    .faqs_q {
    width: calc(100% - 211px);
    }
    }

    @media(max-width:768px){
    .faqs-content {
    flex-direction: column;
    gap:0px
    }
    .faqs_q {
    width: 100%
    }
    .tabs{
    width: calc(100% - 34px);
    border: 1px solid #f0f0f0;
    padding-inline: 30px;
    margin-inline: 17px;
    }
    .faqs_q .accordion button{
    font-size: 14px;
    }
    .faqs_q .card-body{
    font-size: 14px;
    }
    }
    @media(max-width:575px){
    .faqs_q .accordion .card-header{
        padding:10px 15px
    }
    .faqs_q .accordion button{
        font-size: 12px;
    }
    .faqs_q .card-body{
        font-size: 12px;
    }
    .faqs_q .accordion button .img-bg{
        width: 15px;
        height: 15px;
        background-size: 60%;
    }
    .faqs_q .accordion button.collapsed .img-bg{
        width: 15px;
        height: 15px;
        background-size: 60%;
    }
    .tabs li{
        font-size: 14px;
        padding-top:15px;
        padding-bottom: 15px;
    }
    .faqs_q .accordion {
        margin-top: 30px;
    }
    }

    .faqs_q .card-body li{
        position: relative;
        padding-inline-start: 10px;
        line-height: 20px;
      }
      .faqs_q .card-body li:before{
        content:"";
        width:5px;
        height:5px;
        border-radius: 50%;
        position: absolute;
        left: 0px;
        background-color: #f6ab3f;
        top:7px
      }
      .faqs_q .card-body li:not(:last-of-type){
        margin-bottom: 15px;
      }

      .third-section .middle img{
        max-width:300px
      }

      .request__div h3 img{

        width: 25px;

      }

      .right-ul li a{
        padding-bottom: 0px!important;
      }
      
      .second-section video{
    width: 0px
}