/* Navbar section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

body {
    min-height: 100vh;
    background-color: #000 !important;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    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;
}

ul {
    margin-bottom: 0 !important;
}

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

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

.logo_aybis {
    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 .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: #fff;
    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;
}

@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;
    }
}

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

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

    .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);
    }

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

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

}

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



/* Header section */

.header {
    height: 100% !important;
}

.header__context {
    padding-top: 33vh;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    position: absolute;
    top: 0;
}

.header__context h1 {
    width: 667px;
    height: 88px;
    font-weight: 500;
    font-size: 40px;
    line-height: 44px;
    color: #fff;
    margin-bottom: 40px;
}


.header__context p {
    width: 485px;
    height: 84px;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #A1A1AA;
    margin-bottom: 50px;
    right: 16px;
}

.header__btn button {
    border-radius: 14px;
    border: none;
    background: #18C0B3;
    width: 206px;
    height: 44px;
    padding: 12px, 52px, 12px, 52px;
    gap: 10px;
    color: #fff;
    cursor: pointer;
}

#myVideo {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.header__hero {
    width: 100%;
    height: 100vh;
    position: relative;
}


@media only screen and (min-width: 0px) and (max-width: 575px) {

    .header__context h1 {
        margin: 0 auto;
        width: 100%;
        font-size: 28px;
        line-height: 34px;
        text-align: center;
        height: 120px;
        margin-bottom: 5px;
        padding: 0 10px;
    }

    .header__context p {
        margin: 0 auto;
        width: 100%;
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        height: 150px;
        padding: 0 10px;
    }

    .header__contex {
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .header__btn {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


@media only screen and (min-width: 576px) and (max-width: 767px) {
    .header__context h1 {
        margin: 0 auto;
        width: 90%;
        font-size: 32px;
        line-height: 40px;
        text-align: center;
        height: 100px;
    }

    .header__context p {
        margin: 0 auto;
        width: 90%;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        height: 150px;
    }

    .header__contex {
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .header__btn {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .header__context h1 {
        width: 70%;
        font-size: 36px;
        line-height: 40px;
    }

    .header__context p {
        width: 60%;
        font-size: 14px;
        line-height: 24px;
    }
}

@media only screen and (min-width: 1025px) {
    .header__context h1 {
        width: 667px;
        font-size: 40px;
        line-height: 44px;
    }

    .header__context p {
        width: 485px;
        font-size: 16px;
        line-height: 28px;
    }
}


/* About us section */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.about-us {
    max-width: 100vw;
    padding: 50px 165px;
    background-color: black;
}

.custom-font {
    font-family: 'Rubik' sans-serif;
}

.custom-border {
    border-bottom: 2px solid #18C0B3;
}

.custom-color {
    color: #A1A1AA;
}

.custom-dsc-font {
    font-family: Nunito;
}


.about-content__img {
    background-color: #202020;
    padding: 50px 100px;
    border-radius: 30% 15px 30% 15px;
}

.about-content__img img {
    height: 150px;
}

.about-dsc-midd {
    text-align: right;
}

.row_height_line {
    padding: 100px 0;
}

@media(max-width:666px) {
    .about-us {
        padding: 30px 100px;
    }

    .row_height_line_1 {
        flex-direction: column-reverse;
    }

    .about-content__img {
        margin-bottom: 30px;
    }
}

@media(max-width:570px) {
    .about-us {
        padding: 30px;
    }

    .row_height_line {
        padding: 10px 0;
    }
}


/* Products section */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#button_seemore a {
   
   
    text-decoration: none;
    color: white;
}

.products__row--items{
    position: relative;
}
.products__row--items img{
    height: 194.14px;
    border-radius: 10px;
}
.products__row--items .card{
    background-color: #222222;
}
.products__row--card p{
    margin-bottom: 45px;
}
.products__row--items a{
    position: absolute;
    bottom: 20px;
}
.ahref_link a {
    text-decoration: none;
    color: white;
    transition: all ease-in-out .3s;
}

.ahref_link a:hover {
    color: #18C0B3;
}

.products {
    max-width: 100vw;
    padding: 50px;
}

.custom-btn {
    border: 2px solid white;
    color: white;
    background-color: transparent;
    transition: all linear .3s;
}

.custom-btn:hover {
    background-color: #18C0B3;
    border: 2px solid transparent;
    transition: all linear .3s;
}

.custom-card-text {
    color: #D4D4D4;
}
.products__row--card{
    background-color: #222222; 
    border-radius: 10px; 
  
}
.custom-font {
    font-family: 'Rubik' sans-serif;
}
/* .optional img{
    object-fit: cover;
    border-radius: 10px;
} */
@media (min-width: 992px) {

    .products__row--card{
        min-height: 570px;
    }
  } 
@media (min-width: 1200px) {
    .products__row--card{
        min-height: 520px;
    }
    .products__row--card p{
        margin-bottom: 15px;
    }
  }
 
@media(max-width:990px) {
    .lg-custom {
        margin-bottom: 20px;
    }
    .products__row--items img{
        height: 394.14px;
        border-radius: 15px;
    }
    .products__row--card{
        min-height: 570px;
    }
    .products__row--card p{
        margin-bottom: 35px;
    }

}

@media(max-width:670px) {
    .products {
        padding: 40px;
    }
    .products__row--items img{
        height: 234.14px;
        
    }
    .products__row--card{
        min-height: 500px;
    }
}

@media(max-width:520px) {
    .products {
        padding: 20px;
    }
  
}


/* Industry sectors */

.Industry {
    background-color: #181818;
    padding: 60px 0;
    margin: 60px 0;
}

.card_industry {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card_industry1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}




@media(max-width:670px) {
    .Industry {
        padding: 40px;
    }

    .Industry {
        padding: 20px;
    }

    .card_industry {
        margin: 20px 0;
    }
}

@media(max-width:520px) {
    .Industry {
        padding-top: 60px;
    }

    .card_industry {
        margin: 20px 0;
    }
}


/* Contact us */

.contact__title {
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
    padding: 30px 0;
}

.contact__title_img img {
    height: 27px;
}

.contact__board {
    background-color: #222222;
    border-radius: 16px;
}

.contact__board--style {
    padding: 16px;
    position: relative;
}

.contact__board--sendImage {
    position: absolute;
    height: 200px;
    bottom: 0px;
    right: 60px;
}

.contact__information {
    position: relative;
    background-color: #000;
    color: #fff;
    border-radius: 8px;
    width: 100%;
    height: 541px;
}

.contact__information--style {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 32px;
}

.contact__information--style h2 {
    font-weight: 400;
    font-size: 28px;
    line-height: 33px;
}

.contact__information--style p {
    font-weight: 300;
    font-size: 18px;
    line-height: 21px;
    color: #C9C9C9;
}

.contact__information--rows {
    display: flex;
    align-items: start;
    margin: 30px 0;
    width: 158px;
}

.contact__information--rows a {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #C9C9C9;
}

.contact__information--rows i {
    margin-right: 20px;
}

.contact__information--icons {
    position: absolute;
    bottom: 32px;
    display: flex;
    justify-content: start;
}

.contact__information--iconsBox {
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: #18C0B3;
    padding: 10px;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
}

.contact__information--iconsBox:hover {
    background-color: #fff;
    color: #343333;
    transition: all;
}

.contact__information--image01 {
    position: absolute;
    bottom: -1px;
    right: -1px;
    height: 150px;
}

.contact__information--image02 {
    position: absolute;
    bottom: 70px;
    right: 50px;
    height: 100px;
}



/* form side */

.contact__form {
    width: 100%;
    height: 100%;
}

.contact__form form {
    height: 80%;
}
.contact__form form .submit-row{
    z-index: 10;
}

.contact__form form label {
    color: #fff;
}

.contact__form--message {
    margin-bottom: 0px;


}

.contact__form form button {
    float: right;
    z-index: 10;
}

.contact__form form input,
.contact__form form textarea {
    background-color: #343333;
    outline: none;
    border: none;
    color: #fff;
}
.contact__form form textarea{
    resize: none;
}
.contact__form form input:focus,
.contact__form form textarea:focus{
    background-color: #343333;
    color: #fff;
}

@media only screen and (min-width: 0px) and (max-width: 575px) {
    .contact__board--sendImage {
        display: none;
    }

    .contact__form form {
        height: 100%;
        margin-top: 30px;
    }

    .contact__form--message {
        margin-bottom: 30px;
    }

    .contact__form form button {
        width: 100%;
    }

    .contact__information {
        height: 100%;
        padding: 10px;
       
    }

    .contact__information--style {
        padding: 8px;
        
    }

    .contact__information--icons {
        bottom: 10px; 
    }

    .contact__information--iconsBox {
        width: 25px;
        height: 25px;
        align-items: center;
        padding: 0px;
    }

}


@media only screen and (min-width: 576px) and (max-width: 767px) {
    .contact__board--sendImage {
        display: none;
    }

    .contact__form form {
        height: 100%;
        margin-top: 20px;
    }

    .contact__form--message {
        margin-bottom: 30px;
    }

    .contact__information {
        height: 100%;
        height: 470px;
        margin-bottom: 20px;
    }
}


/* Footer */

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

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

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

.logo {
    width: "40px";
}
.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;
}

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

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


@media(max-width:990px) {
    .ul {
        align-items: center;
    }
    .Industry {
        padding: 40px;
    }
}