.lang a:hover,
nav ul li a:hover {
    color: #00e0b6;
    text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #00e0b6, 0 0 82px #00e0b6, 0 0 92px #00e0b6, 0 0 102px #00e0b6, 0 0 150px #00e0b6
}

.home,
.lang,
.social-home,
header,
nav ul {
    display: flex
}

.prime,
.social-home span {
    background-color: var(--greenNeon)
}

.prime:hover,
.second:hover {
    box-shadow: 0 0 30px #00e0b6, 0 0 #00e0b6, 0 0 #00e0b6
}

:root {
    --bg: #010506;
    --sectionBg: #0c0c0f;
    --greenNeon: #6CD5C1;
    --white: #f5f5f5;
    --black: #0c0c0f;
    --txt: #f5f5fa;
    --d: 2500ms;
    --angle: 90deg;
    --gradX: 100%;
    --gradY: 50%;
    --c1: rgba(168, 239, 255, 1);
    --c2: rgba(168, 239, 255, 0.1)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Poppins, sans-serif;
    background-color: var(--bg)
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px var(--bg);
    border-radius: 6px
}

::-webkit-scrollbar-thumb {
    background: var(--greenNeon);
    border-radius: 6px
}

::selection {
    color: var(--black);
    background-color: var(--greenNeon)
}

#close,
#menu {
    display: none;
    font-size: 50px;
    color: var(--greenNeon)
}

header {
    justify-content: space-between;
    align-items: center;
    padding: 24px 16px 16px
}

.social-home {
    justify-content: space-between;
    align-items: flex-start;
    width: 250px;
    padding-top: 32px;
    position: absolute;
    bottom: 5%
}

.arm,
.prime,
.touch {
    position: relative
}

.social-home span {
    border-radius: 50%;
    transition: .5s;
    height: 50px;
    width: 50px
}

.social-home i {
    font-size: 26px;
    color: var(--white);
    text-align: center;
    padding: 12px
}

.lang a,
nav ul li a {
    color: var(--txt);
    font-weight: 500;
    text-decoration: none;
    transition: .5s
}

.social-home span:hover {
    background-color: var(--sectionBg);
    cursor: pointer
}

.logo img {
    height: 128px
}

nav ul {
    justify-content: space-around;
    align-items: center
}

.lang {
    width: fit-content;
    justify-content: space-evenly
}

.lang a {
    margin: 12px;
    font-size: 1.2em
}

nav ul li a {
    font-size: 1.5em;
    margin: 50px
}

nav ul li a:hover {
    font-size: 1.8em
}

.lang a:hover {
    font-size: 1.2em
}

.home {
    justify-content: space-around;
    align-items: center;
    padding: 24px
}

.home .txt {
    width: 50%;
    padding: 8px
}

.txt h1 {
    color: var(--white);
    font-size: 2.8em;
    text-shadow: 2px 4px 3px rgba(0, 0, 0, .3)
}

.txt p {
    color: var(--txt);
    line-height: 32px;
    font-weight: 400
}

.arm img,
.touch img {
    width: 100%
}

.parts {
    background-image: url("./media/imgs/home.png");
    background-position: center;
    background-size: cover;
    width: 840px;
    height: 715px
}

.btns {
    margin-top: 50px
}

.prime {
    display: inline-block;
    width: 200px;
    text-align: center;
    padding: 16px;
    border-radius: 6px;
    color: var(--black);
    border: none;
    Letter-spacing: 1px;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    overflow: hidden;
    transition: .3s
}

.prime:hover {
    color: var(--black);
    background: var(--greenNeon);
    transition: .5s
}

.second:hover {
    transition: .5s
}

.second,
.tw {
    color: var(--greenNeon)
}

.boxes p,
.section-head p {
    text-align: center;
    line-height: 32px
}

#box img,
.service img {
    background-color: var(--greenNeon);
    padding: 6px
}

.service img:hover,
.service:hover {
    transform: scale(1.1)
}

.second {
    position: relative;
    display: inline-block;
    width: 200px;
    text-align: center;
    padding: 16px;
    border-radius: 6px;
    border: solid 1px var(--greenNeon);
    background-color: transparent;
    Letter-spacing: 1px;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    overflow: hidden;
    transition: .3s;
    margin-left: 20px
}

.features,
.services {
    margin-top: 300px;
    padding: 100px 0;
    visibility: hidden
}

.features {
    width: 100%;
    height: fit-content;
    background-color: var(--sectionBg);
    transition: .5s
}

.content div img,
.service {
    height: 400px;
    transition: .5s
}

.tw {
    text-shadow: 2px 4px 3px rgba(0, 0, 0, .3)
}

.section-head {
    text-align: center
}

.section-head h2 {
    text-align: center;
    color: var(--white);
    letter-spacing: 1px;
    font-size: 3.5em
}

.section-head p {
    color: var(--txt);
    display: inline-block;
    width: 50%
}

#box,
.boxes,
.content div,
.service {
    display: flex
}

.boxes {
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap
}

@property --angle {
    syntax: '<angle>';
    initial-value: 90deg;
    inherits: true
}

@property --gradX {
    syntax: '<percentage>';
    initial-value: 50%;
    inherits: true
}

@property --gradY {
    syntax: '<percentage>';
    initial-value: 0%;
    inherits: true
}

#box {
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    width: 450px;
    height: 450px;
    background-color: #081317;
    padding: 64px;
    -webkit-box-shadow: rgb(50 50 93 / 25%) 0 13px 27px -5px, rgb(0 0 0 / 30%) 0 8px 16px -8px;
    box-shadow: rgb(50 50 93 / 25%) 0 13px 27px -5px, rgb(0 0 0 / 30%) 0 8px 16px -8px
}

.gradient-border {
    --borderWidth: 4px;
    background: #081317;
    position: relative;
    border-radius: var(--borderWidth)
}

.gradient-border:after {
    content: '';
    position: absolute;
    top: calc(-1 * var(--borderWidth));
    left: calc(-1 * var(--borderWidth));
    height: calc(100% + var(--borderWidth) * 2);
    width: calc(100% + var(--borderWidth) * 2);
    background: linear-gradient(90deg, var(--c1), var(--c2), var(--black));
    border-radius: 0;
    z-index: -1;
    -webkit-animation: 5s infinite alternate animatedgradient;
    animation: 5s infinite alternate animatedgradient;
    background-size: 300% 300%
}

@-webkit-keyframes animatedgradient {

    0%,
    100% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }
}

@keyframes animatedgradient {

    0%,
    100% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }
}

.boxes h2 {
    text-align: center;
    color: var(--white);
    letter-spacing: 1px
}

.boxes p {
    color: var(--txt)
}

.service,
.service h2,
.service p {
    text-align: left
}

#box img {
    box-shadow: 0 0 30px var(--greenNeon), 0 0 var(--greenNeon), 0 0 var(--greenNeon);
    border-radius: 6px;
    transition: .5s
}

#box img:hover {
    transform: scale(1.2)
}

.services {
    transition: .5s
}

.service {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 32px;
    margin: 32px;
    border: solid var(--c2) 2px;
    width: 40%
}

.service:hover {
    cursor: text
}

.service img {
    box-shadow: 0 0 30px #00e0b6, 0 0 #00e0b6, 0 0 #00e0b6;
    border-radius: 6px;
    transition: .5s
}

.service h2 {
    padding: 16px 0 0;
    letter-spacing: 1px;
    line-height: 36px;
    font-weight: 400
}

.projects {
    margin-top: 300px;
    background-color: var(--sectionBg);
    width: 100%;
    padding: 100px 0;
    visibility: hidden;
    transition: .5s
}

.projects-container ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: fit-content;
    margin: 50px auto
}

.projects-container ul li {
    font-size: 1em;
    font-weight: 400;
    padding: 32px;
    color: var(--white);
    transition: .5s
}

.active {
    border-bottom: solid var(--greenNeon) 1px
}

.projects-container ul li:hover {
    opacity: .5;
    cursor: pointer
}

.content div {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

.content div img {
    filter: brightness(50%);
    width: 400px;
    border-radius: 12px;
    object-fit: cover
}

.content div img:hover {
    transform: scale(1.2);
    cursor: pointer;
    filter: unset
}

.about-us p,
.mini-cont h2 {
    text-shadow: 0 4px 3px rgba(0, 0, 0, .4), 0 8px 13px rgba(0, 0, 0, .1), 0 18px 23px rgba(0, 0, 0, .1)
}

.about,
.contact {
    visibility: hidden;
    transition: .5s
}

.news,
.parts-2 {
    background-position: center;
    background-size: cover
}

.send,
.send:hover {
    color: var(--black)
}

.mini-cont {
    position: relative;
    text-align: center;
    margin: 28px
}

.mini-cont h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    letter-spacing: 1px;
    padding: 14px;
    transition: .2s;
    color: var(--white);
    visibility: hidden;
    font-weight: 300;
    width: 100%;
    border-radius: 4px
}

.about-cont hr,
.sub input[type=mail] {
    border: solid 1px var(--greenNeon)
}

.mini-cont:hover.mini-cont h2 {
    visibility: visible;
    background-color: rgba(255, 255, 255, .1);
    border: solid 2px var(--c2);
    cursor: pointer
}

.content {
    display: none
}

.all-content .active-2 {
    display: block
}

.about {
    margin-top: 300px
}

.about-cont {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px
}

.kuwait img {
    box-shadow: 0 0 30px #00e0b6, 0 0 #00e0b6, 0 0 #00e0b6
}

.about-us p {
    text-align: left;
    line-height: 32px;
    color: var(--txt);
    padding: 16px 0
}

.about-cont div {
    width: 50%;
    padding: 64px
}

.news {
    padding: 24px 0;
    margin-top: 150px;
    background-image: url("./media/imgs/overlay.jpg");
    background-repeat: no-repeat;
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, .6)
}

.news p,
.sub {
    margin: 50px auto;
    text-align: center
}

.news h2 {
    text-align: center;
    color: var(--white);
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 3em;
    padding-top: 64px
}

.news p {
    line-height: 32px;
    color: var(--txt);
    width: 45%
}

.sub input[type=mail] {
    padding: 16px;
    width: 325px;
    background: 0 0;
    height: 64px;
    border-right: none;
    color: var(--txt)
}

.sub input[type=submit] {
    padding: 16px;
    height: 64px;
    background: var(--greenNeon);
    font-weight: 600;
    margin-left: -3px;
    border: solid 1px var(--greenNeon);
    border-left: none
}

.sub input[type=submit]:hover {
    cursor: pointer;
    opacity: .8
}

.contact {
    margin-top: 300px;
    background-color: var(--sectionBg);
    padding: 100px 0
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.parts-2 {
    background-image: url("./media/imgs/contact.png");
    width: 840px;
    height: 715px
}

.contact form input,
.contact form textarea,
.form {
    width: 100%;
    -webkit-appearance: none
}

.contact form {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    margin-top: 100px;
    padding: 14px
}

.contact form input {
    background-color: transparent;
    color: var(--white);
    border: solid 1px var(--greenNeon);
    padding: 14px;
    height: 60px;
    margin-bottom: 35px;
    border-radius: 4px;
    -webkit-transition: .2s linear;
    transition: .2s linear
}

.contact form input:focus {
    outline: 0
}

.contact form textarea {
    border: solid var(--greenNeon) 1px;
    padding: 14px;
    color: var(--txt);
    background-color: transparent;
    height: 300px;
    border-radius: 4px;
    -webkit-transition: .2s linear;
    transition: .2s linear
}

.contact form input:focus,
.contact form textarea:focus {
    -webkit-box-shadow: 0 0 30px var(--greenNeon), 0 0 var(--greenNeon), 0 0 var(--greenNeon);
    box-shadow: 0 0 30px var(--greenNeon), 0 0 var(--greenNeon), 0 0 var(--greenNeon);
    outline: solid var(--greenNeon) 1px;
    border: none
}

.send {
    width: 200px;
    text-align: center;
    padding: 16px;
    border-radius: 6px;
    border: none;
    background-color: var(--greenNeon);
    Letter-spacing: 1px;
    font-size: 1em;
    font-weight: 600;
    transition: .3s;
    margin-top: 50px
}

.send:hover {
    background: var(--greenNeon);
    box-shadow: 0 0 30px #00e0b6, 0 0 #00e0b6, 0 0 #00e0b6;
    cursor: pointer
}

.icon,
.loc {
    font-size: 20px;
    color: var(--greenNeon)
}

.arr,
.icon,
.loc {
    color: var(--greenNeon)
}

.input-container {
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    position: relative
}

.icon {
    padding: 20px;
    background: 0 0;
    text-align: center
}

footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    background-color: var(--bg);
    margin-top: 150px;
    padding: 0 0 24px
}

.social,
footer .column {
    justify-content: space-around;
    display: flex
}

footer .column {
    align-items: flex-start;
    flex-direction: column;
    width: 300px
}

.social {
    align-items: flex-start
}

.social span {
    background-color: var(--greenNeon);
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 12px;
    margin: 6px
}

.column a,
.column h2,
.column h3,
.column p {
    text-align: left
}

.social i {
    font-size: 26px;
    color: var(--white)
}

.social span:hover {
    background-color: transparent;
    cursor: pointer
}

.column p {
    line-height: 32px;
    color: var(--txt)
}

.column h2 {
    font-size: 2.5em;
    color: var(--white)
}

.column h3 {
    color: var(--white);
    padding-top: 10px
}

.column a {
    text-decoration: none;
    color: #fff;
    font-weight: 300
}

.loc {
    padding-right: 10px
}

.column a:hover {
    text-decoration: underline;
    color: #6969b8
}

.column ul {
    list-style: none;
    margin-left: 100px
}

.column ul li a {
    font-size: 1.4em;
    line-height: 50px
}

.arr {
    font-size: 16px;
    padding: 6px
}

.center {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    width: 300px
}

footer h4,
footer h5 {
    color: var(--white);
    font-size: .9em;
    font-weight: 300
}