/* Start Global Rules */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #0c2f5e;
    scroll-behavior: smooth;
}
.container {
    width: 70%;
    padding-left: 15%;
    padding-right: 15%;
}
a {
    text-decoration: none;
    color: #000;   
}
li,ul {
    list-style: none;
}
/* End Global Rules */
/* Start Nav */
.nav {
    position: fixed;
    width: 100%;
    margin: 0;
}
.nav .container {
    background-color: #07adb7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
.nav .container ul {
    display: flex;
    gap: 15px;
}
.nav .container ul li a {
    color: #fff;
    font-size: 20px;
    transition: 0.5s;
}
.nav .container ul li a:hover {
    color: #0c2f5e;
}
/* End Nav */
/* Start Header */
.header {
    padding-top: 160px;
}
.header .container {
    display: flex;
}
.header .container .text * {
margin-bottom: 60px;
}
.header .container .text h1 {
    font-size: 60px;
    font-weight: bolder;
}
.header .container .text p {
    font-size: 20px;
    letter-spacing: 4px;
}
.header .container .text button {
    width: 130px;
    height: 40px;
    border-color: #07adb7;
    background-color: #07adb7;
    color: #fff;
    transition: 0.5s;
}
.header .container .text button:hover {
    color: #0c2f5e;
    background-color: #05d0db;
    border-color: #05d0db;
}
/* End Header */
/* Start About */
.about {
    background-color: #ececec;
    padding-top: 100px;
    padding-bottom: 100px;
    transition: 0.5s;
}
.about .container {
display: flex;
gap: 30%;
}
.about .container .text {
    width: 100%;
}
.about .container .text h1 {
    font-size: 40px;
    font-weight: bolder; 
}
.about .container .text p {
    font-weight: bold;
    letter-spacing: 2px;
} 
/* End About */
/* Start Products */
.products {
padding-top: 100px;
padding-bottom: 100px;
transition: 0.5s;
}
.products .container .text {
text-align: center;
margin-bottom: 50px;
}
.products .container .text h1 {
    border: 2px solid #000;
display: inline-block;
padding: 10px;
margin-bottom: 20px;
}
.products .container .boxes {
    display: flex;
    justify-content: space-evenly;
}
.products .container .box {
    width: 30%;
    border: 3px solid #e5e5e5;
    border-radius: 5%;
}
.products .container .boxes .box:hover {
   position: relative;
   top: -10px;
   transition: 0.5s;
}
.products .container .box img {
    border-radius: 5%;
}
.products .container .box .text1 {
    padding-bottom: 50px;
}
.products .container .box .text1 h3 {
    margin-left: 10px;
}
.products .container .box .text1 span {
opacity: 0.5;
margin-left: 40px;
margin-bottom: 60px;
}
.products .container .box .text2 {
    color: #05d0db;
    margin-left: 10px;
}
.products .container .box .text2 a {
    color: #05d0db;
}
/* End Products */
/* Start Services */
.services {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #ececec;
}
.services .container .text {
    text-align: center;
    margin-bottom: 50px;
}
.services .container .text h1 {
    border: 2px solid #000;
display: inline-block;
padding: 10px;
margin-bottom: 20px;
}
.services .container .text h4 {
    font-weight: normal;
}
.services .container .boxes {
    display: flex;
    justify-content: space-evenly;
}
.services .container .boxes .box {
    width: 30%;
    border: 3px solid #e5e5e5;
    background-color: #fff;
    position: relative;
}
.services .box::after {
    content: '';
    width: 100%;
    position: absolute;
    top: -5px;
    height: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #05d0db;
    display: none;
}
.services .container .boxes .box:hover::after {
    display: block;
}
.services .container .boxes .box:hover {
    position: relative;
    top: -10px;
    transition: 0.5s;
}
.services .container .boxes .box .fa-solid {
    display: block;
    text-align: center;
    color: rgb(7, 173, 183);
    font-size: 25px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}
.services .container .boxes .box h3 {
text-align: center;
font-size: 25px;
}
.services .container .boxes .box p {
    text-align: center;
}
.services .container .box .foot {
    background-image: linear-gradient(135deg, rgb(7, 173, 183) 30%, lightgrey 30%,white 40%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 10px;
    padding-left: 10px;
}
.services .container .box .foot p {
    font-size: 20px;
    color: #fff;
}
.services a {
    color: #05d0db;
}
/* End Services */