@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

/* *{
  margin: 0;
  padding: 0;
} */
body,
p,
h1,
h2,
h3,
h4,
ul,
li {
    margin: 0px;
    padding: 0px;
}

a {
    text-decoration: none;
    color: transparent;
}

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

.ul li>a {
    text-decoration: none;
    color: white;
    transition: all ease-in-out .3s;
}

.ul li>a:hover {
    color: #18C0B3;
}

body {
    background-color: #000;
}

/* main styling components */

/* --- */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: transparent;
    z-index: 99;
}

nav .navbar {
    max-width: 100vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    padding: 10px 50px;
}

.navbar.scrolled {
    backdrop-filter: blur(10px);
}

.navbar .logo a {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.logo img {
    width: 120px;
}

nav .navbar .nav-links {
    line-height: 70px;
    height: 100%;
}

nav .navbar .links {
    display: flex;
}

nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
}

nav .navbar .links li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: all ease-in-out 0.3s;
}

nav .navbar .links li a:hover {
    color: #18c0b3;
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow,
.links li:hover .language-arrow {
    transform: rotate(180deg);
}

nav .navbar .links li .arrow {
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: #fff;
    transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
    position: absolute;
    top: 60px;
    left: 0;
    line-height: 32px;
    background: #ffffff;
    border-radius: 10px;
    display: none;
    z-index: 2;
    padding: 7px;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu,
nav .navbar .links li:hover .language-sub-menu {
    display: block;
}

.navbar .links li .sub-menu a {
    color: #000;
    font-size: 15px;
    font-weight: 400;
}

.navbar .links li .sub-menu a:hover {
    color: #18c0b3;
}

.navbar .search-box {
    position: relative;
    height: 40px;
    width: 40px;
}

.navbar .search-box i {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar .search-box .input-box {
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 60px;
    width: 300px;
    background: #000;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.navbar.showInput .search-box .input-box {
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #000;
}

.search-box .input-box::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    background: #000;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}

.search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .bx-menu {
    display: none;
}

/* --- */
.odd {
    width: 100%;
    height: 80px;
}

.ourContact__section {
    color: #fff;
    position: relative;
    width: 100%;
}

.ourContact__links {
    color: #fff;
    display: block;
    margin-bottom: 20px;
    display: flex;
    align-items: start;
    width: 200px;
    color: #fff;
}

.ourContact__links:hover {
    color: #18c0b3;
}

.ourContact__links i {
    margin-right: 15px;
}

.ourContact__banner {
    background-image: url(./images/contactus_header.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 60vh;
    margin-top: 90px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    position: relative;
    margin-bottom: 330px;
}
.ourContact__banner--card{
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}
/* .ourContact__banner_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Rubik" sans-serif;
    position: absolute;
    top: 40%;
    width: 100vw;
    line-height: 60px;
} */



.ourContact__banner h1 {
    padding-top: 130px;
    font-size: 52px;
    font-weight: 400;
    color: #fff;
    line-height: 30px;
    width: 100%;
    text-align: center;
    
   
}


.ourContact__hero--leftSideCard{
    height: 350px;
    padding:30px;
    background-color: #222222;
    border-radius: 10px;
}



.ourContact__hero--leftSide h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 30px;
}

.ourContact__hero--leftSide h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 20px;
}

.ourContact__hero {
    width: 100%;
    align-items: center;
    margin-top: 180px;
}


.form_aybis_left{
    margin-top: 30px
}

.ourContact__hero--rightSide iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 10px;

}

.ourContact__form h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 30px;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}


.form_aybis_left h2{
    font-size: 26px !important;
}

.ourContact__form label {
    margin-bottom: 3px;
}

.contactForm__inputs input,
.ourContact__form textarea {
    display: block;
    width: 100%;
    min-width: 200px;
    padding: 12px 10px;
    border-radius: 4px;
    background-color: #343333;
    border: none;
    outline: none;
    color: #fff;
    margin-bottom: 20px;
}

.ourContact__form textarea {
    width: 100%;
    min-height: 100px;
    resize: none;
   
}

.contactForm__inputs input::placeholder {
    color: #7f7f7f;
}

.contactForm__inputs textarea::placeholder {
    color: #7f7f7f;
}

.contactForm__btn {
    display: flex;
    justify-content: end;
    margin-top: 50px;
}

.contactForm__btn button {
    background-color: #00549c;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* ---- */

.footer {
    max-width: 100vw;
    padding: 30px 0;
    background-color: #181818;
}

.custom-font {
    font-family: Rubik;
}

.footer-custom-color {
    color: #c9c9c9;
}

.logo-author--card{
    display: block;
    text-align: center;
    width: 75%;
 }
.logo-author img{
     width: 150px;   
     margin-bottom: 5px;
}
.phone {
    text-decoration: underline;
}

.footer-link {
    cursor: pointer;
    color: #c9c9c9;
}

.footer-link:hover {
    color: #18c0b3;
}

.ul {
    display: flex;
    flex-direction: column;
    align-items: left;
}

/* media query - responsive */
@media (max-width: 920px) {
    nav .navbar {
        max-width: 100%;
        padding: 10px 25px;
    }

    nav .navbar .logo a {
        font-size: 27px;
    }

    nav .navbar .links li {
        padding: 0 10px;
        white-space: nowrap;
    }

    nav .navbar .links li a {
        font-size: 15px;
    }

    .ul {
        align-items: center;
    }

    .construction__images--img {
        margin-right: 10px;
    }

    .construction__images {
        overflow-x: auto;
    }

    .construction__images::-webkit-scrollbar {
        width: 0;
    }

    .construction__banner {
        display: block;
    }

    .construction__banner--card {
        margin-bottom: 20px;
    }

    .construction__banner--card img {
        width: 100%;
        border-radius: 20px;
    }
}

@media (max-width: 778px) {
    .navbar .bx-menu {
        display: block;
    }

    nav .navbar .links li .sub-menu {
        background: #493b3b;
    }

    .navbar .links li .sub-menu a {
        color: #fff;
    }

    nav .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 270px;
        width: 70%;
        height: 100vh;
        background: #493b3b;
        line-height: 40px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .links:last-child {
        width: max-content;
    }

    .logo_small {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 10px;
    }

    .logo img {
        width: 100px;
    }

    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }

    .sidebar-logo i,
    .navbar .bx-menu {
        font-size: 25px;
        color: #fff;
    }

    nav .navbar .links {
        display: block;
        margin-top: 20px;
    }

    nav .navbar .links li .arrow {
        line-height: 15px;
    }

    nav .navbar .links li {
        display: block;
    }

    nav .navbar .links li .sub-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }

    nav .navbar .links li .sub-menu li {
        border-bottom: none;
    }

    .sub-menu li>a {
        font-size: 14px !important;
    }

    .links li:hover .htmlcss-arrow,
    .links li:hover .js-arrow,
    .links li:hover .language-arrow {
        transform: rotate(0deg);
    }

    nav .navbar .links li:hover .htmlCss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu,
    nav .navbar .links li:hover .language-sub-menu {
        display: none;
    }

    .navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .language-sub-menu {
        display: block;
    }

    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow,
    .navbar .nav-links.show2 .links .language-arrow {
        transform: rotate(180deg);
    }
    .ourContact__hero--leftSide{
        margin-bottom: 20px;
    }
    .ourContact__hero--rightSide{
        padding: 0 20px;
        
    }
    .ourContact__hero--leftSide {
        padding: 0 20px;
    }
    .ourContact__banner{
        margin-bottom: 700px;
    }
    .ourContact__hero{
        margin-top: 200px;
    }
    .ourContact__banner h1{
        padding-top: 180px;
    }
    .ourContact__form{
        padding: 30px 0;
    }
    .ourContact__banner h1{
        font-size: 38px;
    }
}

@media (max-width: 558px) {
  

    .ourContact__form {
        padding: 0 12px;
    }
}

.ourContact__hero--leftSide .ourContact__links {
    width: 100%;
}

@media (max-width: 480px) {}

@media (max-width: 395px) {
    nav .navbar .nav-links {
        max-width: 100%;
    }
}

@media (max-width: 320px) {}