:root {
    --black: #1F2359;
    --txtColor: #8F9091;
    --blue: #0080E8;
    --white: #ffffff;
    --green: #45E8AA;
    --textShadow: 2px 4px 3px rgba(0,0,0,0.3);
    --sectionBg: #f8f9fa;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--white);
}

p {
    letter-spacing: 1px;
}

::-webkit-scrollbar {
    width: 8px;
} 

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--blue); 
    border-radius: 8px;
}
   
::-webkit-scrollbar-thumb {
    background: var(--green); 
    border-radius: 8px;
}


.menu {
    display: none;
}

.home {
    background: rgba(0,0,0,0.5) ;
    background-image: url("../media/imgs/slide-2.png");
    background-position: center;
    background-size: cover;
    background-blend-mode: darken;
    height: 900px;
    width: 99%;
    margin: auto;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px 0 32px;
}

.logo img{
    width: 100%;
}

.logo-client {
    height: 164px;
}

nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
}

nav ul li a{
    font-size: 26px;
    text-decoration: none;
    color: var(--black);
    margin: 75px;
    transition: ease 0.3s;
    font-weight: 500;
}

.language a, .language-f a {
    font-size: 20px;
    color: var(--black);
    margin: 14px;
    text-decoration: none;
}

.language a:hover, .language-f a:hover {
    color: var(--green);
}

.side-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background-color: #b6bdc5;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: none;
    z-index: 10;
    border-radius: 8px;
    border: solid var(--sectionBg) 1px;
}

.side-container.open {
    transform: translateX(0);
}

.side-container a {
    font-size: 28px;
    text-decoration: none;
    color: var(--black);
    transition: ease 0.3s;
    font-weight: 500;
}

.side-container ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    list-style: none;
}

.side-container ul li {
    padding: 90px;
}

.side-container span {
    width: 100%;
    border-bottom: solid var(--black) 2px;
}

#menu, #cross {
    display: none;
    font-size: 50px;
}

nav ul li a:hover {
    color: var(--green);
    font-size: 28px;
    cursor: pointer;
    text-shadow: var(--txtShadow);
}

.content {
    padding-top: 225px;
}

.content h3 {
    color: var(--green);
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
}

.content h1 {
    font-size: 50px;
    color: var(--white);
    width: 60%;
    padding: 20px;
    font-weight: 400;
    text-align: center;
    margin: 14px auto;
    text-shadow: var(--txtShadow);
}

.special-word {
    color: var(--green);
    font-weight: bold;
}

.content p {
    font-size: 18px;
    color: var(--white);
    width: 40%;
    padding: 20px;
    text-align: center;
    margin: 14px auto;
    line-height: 32px;
}

.btns {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: fit-content;
    margin: 25px auto;
}

.prime-btn {
    width: 200px;
    padding: 16px;
    margin-right: 42px;
    background-image: linear-gradient(to right, #0080E8, #45E8AA);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    transition: .3s ease-in;
    z-index: 1;
    cursor: pointer;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.second-btn {
    width: 200px;
    padding: 16px;
    background-color: #29313D;
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    transition: .5s ease-in;
    z-index: 1;
    cursor: pointer;
}

.second-btn:hover{
    box-shadow: inset -10.5em 0 0 0 var(--green), inset 10.5em 0 0 0 var(--green);
    border: none;
}

.prime-btn:hover {
    background-image: unset;
    background-color: transparent;
    color: var(--blue);
    border: solid var(--white) 1px;
}

.clients {
    margin-top: 200px;
}

.swiper-wrapper {
    margin: auto 50px;
}

.values {
    margin-top: 100px;
    visibility: hidden;
}

.values-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 100px;
}

.section-heading{
    font-size: 50px;
    color: var(--black);
    text-shadow: var(--txtShadow);
    text-align: center;
}

.values p {
    font-size: 16px;
    color: var(--txtColor);
    line-height: 32px;
    width: 50%;
    margin: 24px auto;
    text-align: center;
}

.value {
    height: 500px;
    width: 500px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    border-radius: 16px;
    padding: 32px;
    transition: 0.3s;
}

.value:hover {
    transform: scale(1.1);
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.value h2 {
    color: var(--black);
    font-size: 32px;
    text-shadow: none;
}

.value p {
    color: var(--txtColor);
    line-height: 32px;
    text-align: center;
    font-weight: 400;
    width: 100%;
    margin: 0;
}

.value img {
    height: 100px;
    transition: .5s;
}

.value img:hover {
    height: 105px;
    cursor: pointer;
}

.services {
    height: fit-content;
    margin-top: 150px;
    padding: 25px 0 25px 0;
    visibility: hidden;
    background-color: var(--sectionBg);
}

.services-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 50px;
}

.service-box {
    margin: 32px auto;
    width: 45%;
    padding: 26px;
    border-radius: 16px;
    cursor: pointer;
    transition: all .3s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.service-box:hover {
    transform: scale(1.1);
    background-color: #f9f9f9;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.service-box div {
    display: inline-block;
    margin: 24px;
}

.sub-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.service-ico {
    height: 75px;
    cursor: pointer;
}

.service-box h2 {
    font-size: 26px;
    color: var(--black);
    margin: 24px 0 24px 0;
}

.service-box p {
    color: var(--txtColor);
    line-height: 32px;
    text-align: left;
    font-weight: 400;
    margin: 0;
}

.about {
    height: fit-content;
    margin-top: 150px;
    padding: 25px 0 25px 0;
}

.about-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    visibility: hidden;
}

.elp {
    border: solid 6px var(--blue);
    border-radius: 50%;
    margin-top: 50px;
}

.elp img {
    height: 600px;
    width: 450px;
    object-fit: cover;
    border-radius: 50%;
    margin: 8px;
    transition: .3s;
}

.elp img:hover {
    margin: 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.side {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: fit-content;
    width: 550px;
    height: 550px;
}

.side h3 {
    color: var(--black);
    font-size: 28px;
    text-align: left;
    text-shadow: var(--txtShadow);
    padding-bottom: 16px;
}

.par {
    text-align: left;
    color: var(--txtColor);
    line-height: 32px;
    padding: 32px;
}

.side a {
    color: var(--green);
    font-weight: 500;
}

.side a:hover {
    color: var(--black);
}

.sw-txt {
    letter-spacing: 1px;
    color: var(--txtColor);
    line-height: 32px;
    text-align: left;
}

.swal2-container.swal2-center>.swal2-popup {
    width: 1000px;
    border-radius: 16px;
    background-color: #f6f6f6;
}

.swal2-icon.swal2-info, .swal2-icon.swal2-question {
    color: var(--blue) !important;
    border-color: var(--blue) !important;
}

.swal2-title {
    color: var(--blue) !important;
    font-size: 32px !important;
}

.sub-about {
    margin-top: 200px;
    background-position: center;
    background-size: cover;
    height: fit-content;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 50px;
    visibility: hidden;
    background-color: #f8f9fa;
}

.machine {
    border: solid var(--blue) 6px;
    border-radius: 8px;
}

.machine img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transform: translate(-10%, -10%);
    border-radius: 6px;
}

.sub-description {
    width: 50%;
}

.sub-description h2 {
    font-size: 32px;
    color: var(--black);
    text-shadow: var(--textShadow);
}

.sub-about p {
    color: var(--txtColor);
    line-height: 32px;
    font-size: 18px;
}

.contact {
    visibility: hidden;
    margin-top: 150px;
    height: fit-content;
}

.contact p {
    text-align: center;
    margin: 24px auto;
    width: 50%;
    color: var(--txtColor);
    font-size: 18px;
    line-height: 32px;
}

.content-form {
    display: flex;
    justify-content: space-evenly;
    align-self: center;
    margin-top: 70px;
}

.map {
    height: 450px;
    width: 450px;
    border-radius: 6px;
}

form {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    width: 700px;
}

form input[type=text], form input[type=email], form textarea{
    border: solid 2px var(--txtColor);
    padding: 20px;
    font-size: 16px;
    border-radius: 4px;
    width: 100%;
    background-color: transparent;
    resize: none;
}

input:focus,textarea:focus{
    outline: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.inp-cont {
    display: flex;
    width: 100%;
    position: relative;
}

form div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

form div label {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
}

select {
    width: 100%;
    padding: 20px;
    background-color: transparent;
    font-size: 18px;
    color: var(--black);
    border: solid 2px var(--txtColor);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.contact-btn {
    margin: 0;
    margin-top: 32px;
}

.bar {
    padding: 14px;
    width: fit-content;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.bar img {
    height: 40px;    
}

.bar h3 {
    font-size: 18px;
    color: var(--txtColor);
    font-weight: 500;
    margin-left: 14px;
}

.bar h3 a {
    font-size: 18px;
    color: var(--txtColor);
    font-weight: 500;
    text-decoration: none;
    margin-left: 14px;
}

.social {
    margin: 0px auto;
}

.social img {
    margin: 12px;
    height: 38px;
    transition: .3s;
}

.social img:hover {
    cursor: pointer;
    height: 45px;
}

.fa-contact {
    text-align: center;
    color: var(--txtColor);
    font-size: 18px;
    margin-top: 32px;
}

footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    background-color: var(--sectionBg);
    margin-top: 150px;
    padding: 50px 0 50px 0;
    border-top: solid 2px var(--black);
}
footer .column {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-direction: column;
    width: 400px;
}

.social {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.social span {
    background-color: transparent;
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 12px;
    margin: 6px;
}

.contact-footer img{
    height: 45px;
}

footer .social {
    margin: 0;
}

.social span:hover {
    background-color: transparent;
    cursor: pointer;
}

.column p {
    text-align: left;
    line-height: 32px;
    color: var(--txtColor);
}

.column h2 {
    font-size: 2.5em;
    color: var(--black);
    text-align: left;
}

.column h3 {
    color: var(--black);
    text-align: left;
    padding-top: 24px;
}

.column a {
    text-align: left;
    text-decoration: none;
    color: var(--black);
    font-weight: 300;
    margin-left: 24px;
}

.loc {
    font-size: 20px;
    padding-right: 10px;
    color: var(--greenNeon);
}

.column a:hover {
    text-decoration: underline;
    color: rgb(105, 105, 184);
}

.column ul {
    list-style: none;
    margin-left: 100px;
}


.column ul li a {
    font-size: 1.4em;
    line-height: 50px;
}

.arr {
    font-size: 16px;
    color: var(--green);
    padding: 6px;
}


.center {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    width: 300px;
}

footer h4 {
    color: var(--black);
    font-size: 14px;
    font-weight: 300;
}

.contact-footer {
    width: 100%;
}