@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");

:root {
  --sizeH1: 46px;
  --sizeH2: 32px;
  --sizeH3: 26px;
  --sizeH4: 18px;
  --colorH: #e5e5e5;
  --weightH: 500;
  --secondarycolor: #00e676;

  --sizeP: 18px;
  --colorP: #b0bec5;
  --weightP: 400;

  --sizeA: 16px;
  --colorA: #80cbc4;
  --weightA: 400;
  --hoverA: #00e676;

  --buttonsize: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Orbitron", sans-serif;
}

p {
  font-size: var(--sizeP);
  color: var(--colorP);
  font-weight: var(--weightP);
  line-height: 150%;
}

form {
  font-size: var(--sizeP);
  color: var(--colorP);
  font-weight: var(--weightP);
  line-height: 150%;
}

h1 {
  font-size: var(--sizeH1);
  color: var(--colorH);
  font-weight: var(--weightH);
}

span {
  color: var(--secondarycolor);
}

h2 {
  font-size: var(--sizeH2);
  color: var(--colorH);
  font-weight: var(--weightH);
}

h3 {
  font-size: var(--sizeH3);
  color: var(--colorH);
  font-weight: var(--weightH);
}

h6 {
  font-size: 16px;
  color: var(--colorP);
  font-weight: var(--weightP);
  line-height: 150%;
}

body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0d1117;
}

/*! HEADER */

header {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-around;
  /* background-color: #0f1c1e; */
  border-bottom: 1px #263238 solid;
  position: fixed;
  z-index: 100;
  backdrop-filter: blur(20px);
  /* position: relative; */
}

header img:first-of-type {
  width: 120px;
  margin-left: -30px;
}

header .nav:first-of-type {
  display: flex;
  gap: 60px;
}

header .nav:first-of-type a {
  text-decoration: none;
  color: var(--colorA);
  font-size: var(--sizeA);
  font-weight: 400;
  transition: 0.2s all;
}

header .nav:first-of-type a:hover {
  color: var(--hoverA);
}

header img:last-of-type {
  width: 40px;
  display: none;
  cursor: pointer;
}

header nav {
  position: absolute;
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 20px;
  top: 80px;
  left: 0;
  background-color: #212b32;
  padding: 20px;
}

header nav .line {
  width: 100%;
  height: 1px;
  background-color: #151b20;
  margin: 0 auto;
}

header nav a {
  text-decoration: none;
  color: var(--colorA);
  font-size: var(--sizeA);
  font-weight: 400;
  transition: 0.2s all;
}

header nav.show {
  display: flex;
}

/*! main */

main {
  margin-top: 150px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*! sec-1  */

.sec-1 {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.sec-1 .left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sec-1 .left h1 {
  max-width: 400px;
  line-height: 150%;
}

.sec-1 .left h1 span {
  color: var(--secondarycolor);
}

.sec-1 .left p {
  max-width: 500px;
  line-height: 150%;
}

.sec-1 .left div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec-1 .left div a:first-of-type button {
  background-color: #00e676;
  border: none;
  padding: 14px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: var(--buttonsize);
  color: #0d1117;
  font-weight: 400;
  transition: 0.2s all;
}

.sec-1 .left div a:first-of-type button:hover {
  transform: translateY(-3px);
  box-shadow: 0px 0px 15px #00e676;
  background-color: #1de9b6;
}

.sec-1 .left div a:last-of-type button {
  background-color: #00000000;
  border: 1px solid #80cbc4;
  padding: 14px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: var(--buttonsize);
  color: #80cbc4;
  font-weight: 400;
  transition: 0.2s all;
}

.sec-1 .left div a:last-of-type button:hover {
  background-color: #80cbc4;
  color: #0d1117;
}

.sec-1 .rigth {
  /* 350px 200px */
  width: 500px;
  height: 300px;
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  grid-template-columns: repeat(17, 1fr);
  gap: 3px;
}

.cell,
.g,   
.o,
.a {
  background: transparent;
  transition: 0.2s all;
  border-radius: 5px;
}

.g {
  background: #ffffff;
}
.o {
  background: #00e676;
}
.a {
  background: #ffffff;
}

.g:hover,
.a:hover {
  transform: scale(1.08);
  background: #00e676;
  box-shadow: 0px 0px 20px #ffffff;
}

.o:hover {
  transform: scale(1.08);
  background: #ffffff;
  box-shadow: 0px 0px 20px #00e676;
}

/*todo --- G --- */
.g.r1.c1 {
  grid-row: 1;
  grid-column: 1;
}
.g.r1.c2 {
  grid-row: 1;
  grid-column: 2;
}
.g.r1.c3 {
  grid-row: 1;
  grid-column: 3;
}
.g.r1.c4 {
  grid-row: 1;
  grid-column: 4;
}
.g.r1.c5 {
  grid-row: 1;
  grid-column: 5;
}
.g.r2.c1 {
  grid-row: 2;
  grid-column: 1;
}
.g.r3.c1 {
  grid-row: 3;
  grid-column: 1;
}
.g.r3.c3 {
  grid-row: 3;
  grid-column: 3;
}
.g.r3.c4 {
  grid-row: 3;
  grid-column: 4;
}
.g.r3.c5 {
  grid-row: 3;
  grid-column: 5;
}
.g.r4.c1 {
  grid-row: 4;
  grid-column: 1;
}
.g.r4.c5 {
  grid-row: 4;
  grid-column: 5;
}
.g.r5.c1 {
  grid-row: 5;
  grid-column: 1;
}
.g.r5.c2 {
  grid-row: 5;
  grid-column: 2;
}
.g.r5.c3 {
  grid-row: 5;
  grid-column: 3;
}
.g.r5.c4 {
  grid-row: 5;
  grid-column: 4;
}
.g.r5.c5 {
  grid-row: 5;
  grid-column: 5;
}

/*todo --- O --- */
.o.r1.c7 {
  grid-row: 1;
  grid-column: 8;
}
.o.r1.c8 {
  grid-row: 1;
  grid-column: 9;
}
.o.r1.c9 {
  grid-row: 1;
  grid-column: 10;
}
.o.r2.c6 {
  grid-row: 2;
  grid-column: 7;
}
.o.r2.c10 {
  grid-row: 2;
  grid-column: 11;
}
.o.r3.c6 {
  grid-row: 3;
  grid-column: 7;
}
.o.r3.c10 {
  grid-row: 3;
  grid-column: 11;
}
.o.r4.c6 {
  grid-row: 4;
  grid-column: 7;
}
.o.r4.c10 {
  grid-row: 4;
  grid-column: 11;
}
.o.r5.c7 {
  grid-row: 5;
  grid-column: 8;
}
.o.r5.c8 {
  grid-row: 5;
  grid-column: 9;
}
.o.r5.c9 {
  grid-row: 5;
  grid-column: 10;
}

/*todo --- A --- */
.a.r1.c12 {
  grid-row: 1;
  grid-column: 14;
}
.a.r1.c14 {
  grid-row: 1;
  grid-column: 16;
}
.a.r2.c11 {
  grid-row: 2;
  grid-column: 13;
}
.a.r2.c15 {
  grid-row: 2;
  grid-column: 17;
}
.a.r3.c11 {
  grid-row: 3;
  grid-column: 13;
}
.a.r3.c15 {
  grid-row: 3;
  grid-column: 17;
}
.a.r4.c11 {
  grid-row: 4;
  grid-column: 13;
}
.a.r4.c15 {
  grid-row: 4;
  grid-column: 17;
}
.a.r4.c12 {
  grid-row: 4;
  grid-column: 14;
}
.a.r4.c13 {
  grid-row: 4;
  grid-column: 15;
}
.a.r4.c14 {
  grid-row: 4;
  grid-column: 16;
}
.a.r5.c11 {
  grid-row: 5;
  grid-column: 13;
}
.a.r5.c15 {
  grid-row: 5;
  grid-column: 17;
}

/*! sec-2 */

.sec-2 {
  margin-top: 150px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.sec-2 h2 span {
  color: var(--secondarycolor);
}

.sec-2 .main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.sec-2 .main .box {
  width: 350px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 20px 20px;
  gap: 20px;
  background-color: #1d262c;
  border: 1px solid #263238;
  border-radius: 15px;
  transition: 0.3s all;
}

.sec-2 .main .box:hover {
  transform: translateY(-10px);
  border: 1px solid var(--secondarycolor);
  box-shadow: 0px 0px 15px #0ac07757;
}

.sec-2 .main .box div {
  background-color: var(--secondarycolor);
  border-radius: 50%;
  padding: 10px;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/*! sec-3 */

.sec-3 {
  margin-top: 150px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.sec-3 h2 span {
  color: var(--secondarycolor);
}

.sec-3 .main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.sec-3 .main .box {
  width: 350px;
  overflow: hidden;
  border-radius: 15px;
  background-color: #1d262c;
  border: 1px solid #263238;
  display: flex;
  flex-direction: column;
  align-items: start;
  transition: 0.3s all;
}

.sec-3 .main .box:hover {
  transform: translateY(-10px);
  border: 1px solid var(--secondarycolor);
  box-shadow: 0px 0px 15px #0ac07757;
}

.sec-3 .main .box:hover img {
  transform: scale(1.03);
}

.sec-3 .main .box img {
  width: 100%;
  height: 200px;
  transition: 0.3s all;
}

.sec-3 .main .info-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 15px;
}

.sec-3 .main .info-box .info {
  display: flex;
  gap: 10px;
}

.sec-3 .main .info-box .info div {
  background-color: #08e67743;
  padding: 6px 10px;
  border-radius: 50px;
  color: #08e676;
  font-size: 14px;
}

.sec-3 .main .info-box a {
  color: #4db6ac;
  font-size: var(--sizeA);
  font-weight: var(--weightA);
  text-decoration: none;
}

.sec-3 button {
  background-color: #00e676;
  border: none;
  padding: 14px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: var(--buttonsize);
  color: #0d1117;
  font-weight: 400;
  transition: 0.2s all;
}

.sec-3 button:hover {
  transform: translateY(-3px);
  box-shadow: 0px 0px 15px #00e676;
  background-color: #1de9b6;
}

/*! pro-sec-1 */

.pro-sec-1 {
  width: 100%;
  margin-top: -70px;
  background: linear-gradient(-225deg, rgba(0, 255, 132, 0.1), #0d1117);
  padding: 100px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pro-sec-1 p {
  max-width: 600px;
}

/*! pro-sec-2 */

.pro-sec-2 {
  margin-top: 100px;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  justify-content: center;
  padding: 20px;
}

.pro-sec-2 .box {
  width: 100%;
  background-color: #1d262c;
  border: 1px solid #263238;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  gap: 10px;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.pro-sec-2 .box::after {
  content: "High";
  background-color: #00c853;
  width: 75px;
  height: 26px;
  position: absolute;
  border-radius: 8px;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
}

.pro-sec-2 .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0px 20px rgba(255, 255, 255, 0.107);
}

.pro-sec-2 .box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.pro-sec-2 .box h2 {
  color: #fff;
  font-size: 20px;
  margin: 15px;
}

.pro-sec-2 .box p {
  color: #b0bec5;
  font-size: 14px;
  margin: 0 15px 15px 15px;
}

.pro-sec-2 .info {
  display: flex;
  justify-content: space-between;
  padding: 0 15px 10px 15px;
  color: #b0bec5;
  font-size: 13px;
}

.pro-sec-2 .leg {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0 15px 10px 15px;
}

.pro-sec-2 .leg div {
  background-color: #263238;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
}

.pro-sec-2 .buttons {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px 15px 15px;
  gap: 20px;
}

.pro-sec-2 .buttons a {
  width: 50%;
}

.pro-sec-2 .buttons a:first-of-type button {
  width: 100%;
  padding: 8px 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.pro-sec-2 .buttons a:first-of-type button {
  background-color: #00c853;
  color: #fff;
}

.pro-sec-2 .buttons a:first-of-type button:hover {
  transform: translateY(-3px);
  box-shadow: 0px 0px 15px #00e676;
  background-color: #1de9b6;
}

.pro-sec-2 .buttons a:last-of-type button {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  background-color: transparent;
  color: #00c853;
  border: 1px solid #00c853;
  transition: all 0.2s ease;
}

.pro-sec-2 .buttons a:last-of-type button:hover {
  background-color: #00c853;
  color: #fff;
}

/*! pro-sec-3 */

.pro-sec-3 {
  width: 100%;
  margin-top: 150px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pro-sec-3 div {
  display: flex;
  justify-content: center;
  padding: 10px 15px 15px 15px;
  gap: 20px;
  flex-wrap: wrap;
}

.pro-sec-3 div a:first-of-type button {
  width: 250px;
  height: 46px;
  padding: 8px 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.pro-sec-3 div a:first-of-type button {
  background-color: #00c853;
  color: #fff;
}

.pro-sec-3 div a:first-of-type button:hover {
  transform: translateY(-3px);
  box-shadow: 0px 0px 15px #00e676;
  background-color: #1de9b6;
}

.pro-sec-3 div a:last-of-type button {
  width: 250px;
  height: 46px;
  padding: 8px 10px;
  border-radius: 8px;
  background-color: transparent;
  color: #00c853;
  border: 1px solid #00c853;
  transition: all 0.2s ease;
}

.pro-sec-3 div a:last-of-type button:hover {
  background-color: #00c853;
  color: #fff;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(13, 17, 23, 0.9);
}

.modal-content {
  background-color: #1d262c;
  color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 15px;
  width: 80%;
  max-width: 600px;
  border: 1px solid #263238;
}

.modal-content h2 {
  color: #00c853;
  margin-bottom: 10px;
}

.modal-content ul {
  text-align: left;
  margin-top: 10px;
  line-height: 1.6;
}

.modal-content ul li {
  list-style: "✔ ";
  color: #b0bec5;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #00c853;
}

/*! tec-sec-2 */

.tec-sec-2 {
  width: 100%;
  height: 250px;
  background-color: #141b21;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}

.tec-sec-2 .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
}

.tec-sec-2 .info h2 {
  color: var(--secondarycolor);
}

/*! tec-sec-3 */

.tec-sec-3 {
  margin-top: 100px;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  justify-content: center;
}

.tec-sec-3 .box {
  width: 100%;
  background-color: #1d262c;
  border: 1px solid #263238;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  gap: 10px;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  padding: 0px;
  text-align: start;
}

.tec-sec-3 .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0px 10px var(--secondarycolor);
  border: 1px solid var(--secondarycolor);
}

.tec-sec-3 .box::after {
  content: "";
  transition: all 0.3s ease;
}

.tec-sec-3 .box:hover::after {
  position: absolute;
  width: 100%;
  height: 250px;
  top: 0px;
  left: 0px;
  background-color: #08e6779f;
}

.tec-sec-3 .box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.tec-sec-3 .box h3 {
  color: #fff;
  font-size: 20px;
  margin: 15px;
}

.tec-sec-3 .box p {
  color: #b0bec5;
  font-size: 14px;
  margin: 0 15px 15px 15px;
}

.tec-sec-3 .leg {
  display: flex;
  flex-direction: row;
  justify-content: start;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0px 15px;
}

.tec-sec-3 .leg div {
  background-color: #00c8535e;
  color: #66ff00;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
}

.tec-sec-3 .line {
  margin: 20px auto;
  width: 95%;
  height: 1px;
  background-color: #0d111777;
  border-radius: 1px;
}

.tec-sec-3 .rr {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 0px 15px 0px 0px;
}

.tec-sec-3 .rr div {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 20px;
  font-size: var(--sizeP);
}

.tec-sec-3 .rr div h6 {
  color: #fff;
}

/*! tec-sec-4 */

.tec-sec-4 {
  background-color: #141b21;
  width: 100%;
  height: 300px;
  margin-top: 150px;
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.tec-sec-4 div {
  display: flex;
  justify-content: center;
  padding: 10px 15px 15px 15px;
  gap: 20px;
  flex-wrap: wrap;
}

.tec-sec-4 div a button {
  width: 250px;
  height: 46px;
  padding: 8px 10px;
  border-radius: 8px;
  background-color: transparent;
  color: #00c853;
  border: 1px solid #00c853;
  transition: all 0.2s ease;
  cursor: pointer;
}

.tec-sec-4 div a button:hover {
  background-color: #00c853;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0px 0px 15px #00e676;
  background-color: #1de9b6;
}

.con-sec-2 {
  padding: 20px;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  margin-top: 100px;
  gap: 20px;
  flex-wrap: wrap;
}

.con-sec-2 .left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.con-sec-2 .left form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.con-sec-2 .left form div {
  display: flex;
  flex-direction: column;
}

.con-sec-2 .left form div input {
  width: 100%;
  height: 40px;
  background-color: #192127;
  border: none;
  border-radius: 10px;
  padding: 10px;
  color: #fff;
}

/* .con-sec-2 .left form div input:active{
  border: #00c853 1px solid;
} */

.con-sec-2 .left form .int {
  grid-row: 3/5;
  grid-column: 1/3;
}

.con-sec-2 .left form .int select {
  width: 100%;
  height: 40px;
  background-color: #192127;
  border-radius: 10px;
  color: #fff;
  border: none;
}

.con-sec-2 .left form .mes {
  grid-row: 5/7;
  grid-column: 1/3;
}

.con-sec-2 .left form .Last {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  grid-row: 7/9;
  grid-column: 1/3;
}

.con-sec-2 .left form .chak {
  width: 20px;
  height: 20px;
  accent-color: #192127;
  cursor: pointer;
}

.con-sec-2 .left form .sub {
  grid-row: 9/11;
  grid-column: 1/3;
  background-color: #00c853;
  border: none;
  width: 100%;
  height: 40px;
  border-radius: 10px;
  color: #fff;
  transition: 0.2s all;
  font-size: 16px;
}

.con-sec-2 .left form .sub:active {
  transform: scale(0.98);
}

.con-sec-2 .right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.con-sec-2 .right h6 {
  color: #fff;
}

.con-sec-2 .right p {
  font-size: 16px;
}

.con-sec-2 .right .main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.con-sec-2 .right .box {
  display: flex;
  gap: 20px;
}

.con-sec-2 .right .left {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00c853b0;
  border-radius: 50%;
  font-size: 20px;
}

.con-sec-3 {
  margin-top: 100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.con-sec-3 iframe {
  width: 80%;
  height: 500px;
  border: none;
  border-radius: 8px;
}

/*! ab-sec-2  */

.ab-sec-2 {
  display: flex;
  background-color: #141b21;
  width: 100%;
  align-items: center;
  justify-content: space-evenly;
  padding: 50px 20px;
  flex-wrap: wrap;
  gap: 40px;
}

.ab-sec-2 .box {
  display: flex;
  width: 550px;
  gap: 20px;
}

.ab-sec-2 .box div:first-of-type {
  min-width: 75px;
  min-height: 75px;
  max-width: 75px;
  max-height: 75px;
  background-color: #1ae186;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 40px;
}

.ab-sec-2 .box div:last-of-type {
  max-width: 445px;
}

.ab-sec-3 {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
  gap: 100px;
}

.ab-sec-3 .main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 65px;
  position: relative;
}

.ab-sec-3 .main .info {
  width: 800px;
  height: 150px;
  background-color: #192127;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  padding: 20px;
  border-radius: 15px;
  border: #2b3741 1px solid;
  align-items: center;
  text-align: start;
  z-index: 2;
  transition: 0.2s all;
}

.ab-sec-3 .main .info:hover {
  border: #00c853 1px solid;
  box-shadow: 0px 0px 10px #00c85360;
  transform: translateY(-5px);
}

.ab-sec-3 .main .info .yr {
  color: #fff;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: #263238;
  border: #0d1117 5px solid;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -37.5px;
}

.ab-sec-3 .main .info:hover .yr {
  box-shadow: 0px 0px 15px #00c853;
}

.ab-sec-3 .main .info h3 {
  color: #00c853;
  width: 100%;
}

.ab-sec-3 .main .info p {
  width: 100%;
}

.ab-sec-3 .main .line {
  background-color: #1ae186;
  border-radius: 1px;
  height: 98%;
  width: 1.5px;
  position: absolute;
  z-index: 0;
}

.ab-sec-4 {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 100px;
  align-items: center;
  gap: 50px;
}

.ab-sec-4 .boss {
  width: 650px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  background-color: #192127;
  border: #2b3741 1px solid;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.2s all;
}

.ab-sec-4 .boss:hover {
  border: #00c853 1px solid;
  box-shadow: 0px 0px 10px #00c85360;
  transform: translateY(-5px);
}

.ab-sec-4 .boss img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.ab-sec-4 .boss .box {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ab-sec-4 .boss .box .info {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5px;
}

.ab-sec-4 .boss .box .info div {
  color: #fff;
  background-color: #16352f;
  padding: 5px;
  border-radius: 20px;
}

.ab-sec-5 {
  margin-top: 100px;
  width: 100%;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ab-sec-5 .main {
  margin-top: 50px;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.ab-sec-5 .main div {
  width: 250px;
  background-color: #192127;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  border-radius: 20px;
  border: 1px solid #263238;
  transition: 0.2s all;
}

.ab-sec-5 .main div:hover {
  border: #00c853 1px solid;
  transform: translateY(-5px);
  box-shadow: 0px 0px 10px #00c85360;
}

/*! FOOTER  */

.main-footer {
  width: 100%;
  margin-top: 150px;
  background: rgba(38, 50, 56, 0.8);
  border-top: 1px solid #263238;
  padding: 64px 20px 24px 40px;
  display: flex;
  justify-content: center;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  justify-items: center;
  align-items: start;
  align-content: center;
  justify-content: center;
}

.footer-logo-img {
  width: 120px;
  margin-left: -30px;
}

.footer-description {
  color: #90a4ae;
  margin-bottom: 24px;
  line-height: 160%;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid #263238;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #00e676;
  border-color: #00e676;
  color: #0d1117;
  transform: translateY(-2px);
}

.footer-section h4 {
  color: var(--colorH);
  margin-bottom: 16px;
  font-size: var(--sizeH4);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--colorA);
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--hoverA);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.working-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info p {
  color: var(--colorP);
  font-size: var(--sizeP);
}

.working-hours p {
  color: var(--colorP);
  font-size: var(--sizeP);
}

.footer-bottom {
  border-top: 1px solid #263238;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--colorP);
  font-size: var(--sizeP);
}

@media (max-width: 1050px) {
  .sec-1 {
    justify-content: center;
    padding: 0px 20px;
  }
}

@media (max-width: 900px) {
  :root {
    --sizeH1: 36px;
    --sizeH2: 28px;
    --sizeH3: 24px;

    --sizeP: 14px;

    --sizeA: 14px;
  }

  /*! HEADER */

  header img {
    width: 80px;
  }
  header .nav {
    gap: 30px;
  }
  /*! FOOTER */
  .main-footer {
    padding: 64px 20px 24px 20px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-logo-img {
    margin: 0;
  }

  .ab-sec-3 .main .info {
    width: 95%;
    height: 170px;
    padding: 20px 10px 0px 10px;
  }
}

@media (max-width: 800px) {
  /*! HEADER */

  header {
    justify-content: space-between;
    padding: 0px 20px 0px 20px;
  }
  header .nav:first-of-type {
    display: none;
  }
  header img:last-of-type {
    display: block;
  }
  .sec-1 {
    flex-wrap: wrap;
    gap: 50px;
    padding: 0px 20px;
  }

  .sec-1 .rigth {
    width: 350px;
    height: 200px;
  }

  /*! pro-sec-2 */

  .pro-sec-2 {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    justify-content: center;
    padding: 20px;
  }

  .tec-sec-2 {
    justify-content: space-around;
  }

  .tec-sec-3 {
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .ab-sec-2 .box div:first-of-type {
    min-width: 55px;
    min-height: 55px;
    max-width: 55px;
    max-height: 55px;
    background-color: #1ae186;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
  }
  .ab-sec-4 .boss {
    width: 90%;
  }

  .con-sec-3 iframe {
    width: 95%;
    height: 350px;
  }
}
