/*start header*/
body {
  margin: 0;
  padding: 0;
}

p {
  line-height: 1 !important;

}

.page {
  max-width: 2000px;
  margin: 0 auto;
  position: relative;
}

.main-navigation {
  min-width: 320px !important;
}

@media screen and (max-width: 330px) {
  .main-navigation.no-wrap {
    flex-wrap: nowrap !important;
  }
}



.burgerOpenDiv.show {
  background-color: white;
  position: absolute;
  top: 100px;
  right: 0;
  width: 100%;
}

@media screen and (max-width:991px) {
  .burgerOpenDiv.show {
    background: linear-gradient(90deg, rgba(25, 25, 112, 1) 35%, rgba(117, 0, 49, 1) 100%);
    position: absolute;
    top: 100px;
    right: 0;
    width: 320px;
  }
}





nav.main-navigation {
  position: relative;
}

/* Animation */
@keyframes fadeInUp {
  from {
    transform: translate3d(0, 40px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    transform: translate3d(0, 40px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
}

.animatedFadeInUp {
  opacity: 0;
}

.fadeInUp {
  opacity: 0;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
}


/*end works blade*/





/*start about blade*/
.about {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(90deg, rgba(14, 81, 97, 1) 35%, rgba(65, 117, 130, 1) 100%);
  padding: 50px 10%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid #FFFF;
  border-top: 2px solid #FFFF;
}

.about_second,
.about_third {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(90deg, rgba(14, 81, 97, 1) 35%, rgba(65, 117, 130, 1) 100%);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0px 20px rgba(255, 255, 255, 0.3);
}

.about_second_img,
.about_third_img {
  width: 50%;
  text-align: center;
}

.about_second_img img,
.about_third_img img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/*end about blade*/

/* contacts section */
















.burgerOpenDiv.show {
  background-color: white;
  position: absolute;
  top: 100px;
  right: 0;
  width: 100%;
}

.bigDiv {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 1px;
  left: 1px;
  display: flex;
  justify-content: center;
  align-items: center
}

.modalsend {
  max-width: 420px;
  height: 140px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #0E5161;
  margin: 15px;
  padding: 10px;
  border: 1px solid #FFFF;
}

.modalText {
  font-size: 16px;
  color: #ECECEC;
  text-align: center;
}

.moodalClose {
  width: 100px;
  height: 30px;
  background-color: #ECECEC;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modalTExtSuccess {
  font-size: 18px;
  color: #ECECEC !important;
  ;
}

.modalTextError {
  padding: 10px;
  color: red !important;
  padding: 0;
}

.send_btn {
  width: 80px;
  height: 30px;
  background-color: #0E5161;
  border: none;
}

.send_btn a p {
  color: #ECECEC;

  &:hover {
    color: #0E5161;
  }
}

.send_btn a:hover {
  text-decoration: none;
}

.send_btn:hover {
  cursor: pointer;
  background-color: #ECECEC;
  color: #0E5161;
}

/*end contact blade*/

.footer {
  width: 100%;
}

/*end services blade*/



/*start scroll*/
::-webkit-scrollbar {
  width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #0E5161;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #0E5161;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #0E5161;
}

/*end scroll*/


/* start card */
.card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, rgba(14, 81, 97, 1) 35%, rgba(65, 117, 130, 1) 100%);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.card_title h1 {
  color: #D6AD91;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
}

.card_boxes {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.card_box {
  max-width: 300px;
  min-width: 200px;
  width: 30%;
  padding: 15px;
  border-radius: 15px;
  background: #f1f1f1;
  border: 1px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.card_box a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;

  &:hover {
    text-decoration: none;
  }
}

.card_box:hover {
  cursor: pointer;
  background: linear-gradient(90deg, rgba(14, 81, 97, 1) 35%, rgba(65, 117, 130, 1) 100%);
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

.card_box i {
  font-size: 60px;
  color: #D6AD91;
}

.card_box p {
  font-size: 20px;
  color: #D6AD91;
  font-weight: bold;
}

@media screen and (max-width: 500px) {
  .card_box {
    width: 100%;
    max-width: none;
  }

  .card_title h1 {
    font-size: 21px;
  }
}

/* end card */