

/*                                                                            services                                       */
.services-root {
  background-image: url("../images/servicesBg.png");
  background-position: 0% 0%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 30px;
  padding-bottom: 30px;
}

.services-parent li {
  perspective: 400px;
  position: relative;
}

.services-parent .info {
  transform: rotate3d(1, 0, 0, 90deg);
  width: 100%;
  height: 100%;
  padding: 40px;
  position: absolute;
  border: 1px solid white;
  top: 0;
  left: 0;
  border-radius: 4px;
  pointer-events: none;
  background-color: rgba(26, 188, 156, 0.9);
}


.services-parent li:hover .info {
  opacity: 1;
  border: none;
}

.services-parent .in-top .info {
  transform-origin: 50% 0%;
  -webkit-animation: in-top 300ms ease 0ms 1 forwards;
  animation: in-top 300ms ease 0ms 1 forwards;
}

.services-parent .in-right .info {
  transform-origin: 100% 0%;
  -webkit-animation: in-right 300ms ease 0ms 1 forwards;
  animation: in-right 300ms ease 0ms 1 forwards;
}

.services-parent .in-bottom .info {
  transform-origin: 50% 100%;
  -webkit-animation: in-bottom 300ms ease 0ms 1 forwards;
  animation: in-bottom 300ms ease 0ms 1 forwards;
}

.services-parent .in-left .info {
  transform-origin: 0% 0%;
  -webkit-animation: in-left 300ms ease 0ms 1 forwards;
  animation: in-left 300ms ease 0ms 1 forwards;
}

.services-parent .out-top .info {
  transform-origin: 50% 0%;
  -webkit-animation: out-top 300ms ease 0ms 1 forwards;
  animation: out-top 300ms ease 0ms 1 forwards;
}

.services-parent .out-right .info {
  transform-origin: 100% 50%;
  -webkit-animation: out-right 300ms ease 0ms 1 forwards;
  animation: out-right 300ms ease 0ms 1 forwards;
}

.services-parent .out-bottom .info {
  transform-origin: 50% 100%;
  -webkit-animation: out-bottom 300ms ease 0ms 1 forwards;
  animation: out-bottom 300ms ease 0ms 1 forwards;
}

.services-parent .out-left .info {
  transform-origin: 0% 0%;
  -webkit-animation: out-left 300ms ease 0ms 1 forwards;
  animation: out-left 300ms ease 0ms 1 forwards;
}

@-webkit-keyframes in-top {
  from {
    transform: rotate3d(-1, 0, 0, 90deg);
  }

  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}

@keyframes in-top {
  from {
    transform: rotate3d(-1, 0, 0, 90deg);
  }

  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}

@-webkit-keyframes in-right {
  from {
    transform: rotate3d(0, -1, 0, 90deg);
  }

  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}

@keyframes in-right {
  from {
    transform: rotate3d(0, -1, 0, 90deg);
  }

  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}

@-webkit-keyframes in-bottom {
  from {
    transform: rotate3d(1, 0, 0, 90deg);
  }

  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}

@keyframes in-bottom {
  from {
    transform: rotate3d(1, 0, 0, 90deg);
  }

  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}

@-webkit-keyframes in-left {
  from {
    transform: rotate3d(0, 1, 0, 90deg);
  }

  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}

@keyframes in-left {
  from {
    transform: rotate3d(0, 1, 0, 90deg);
  }

  to {
    transform: rotate3d(0, 0, 0, 0deg);
  }
}

@-webkit-keyframes out-top {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }

  to {
    transform: rotate3d(-1, 0, 0, 180deg);
  }
}

@keyframes out-top {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }

  to {
    transform: rotate3d(-1, 0, 0, 180deg);
  }
}

@-webkit-keyframes out-right {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }

  to {
    transform: rotate3d(0, -1, 0, 180deg);
  }
}

@keyframes out-right {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }

  to {
    transform: rotate3d(0, -1, 0, 180deg);
  }
}

@-webkit-keyframes out-bottom {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }

  to {
    transform: rotate3d(1, 0, 0, 180deg);
  }
}

@keyframes out-bottom {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }

  to {
    transform: rotate3d(1, 0, 0, 180deg);
  }
}

@-webkit-keyframes out-left {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }

  to {
    transform: rotate3d(0, 1, 0, 180deg);
  }
}

@keyframes out-left {
  from {
    transform: rotate3d(0, 0, 0, 0deg);
  }

  to {
    transform: rotate3d(0, 1, 0, 180deg);
  }
}

/* you can ignore this ones */
.services-parent ul {
  padding: 0;
  transition: 0.5s all ease;
  margin: 0 0 50px;
}

.services-parent ul:after {
  /* content: ""; */
  /* display: table; */
  /* clear: both; */
}

.services-parent li {
  position: relative;
  float: left;
  width: 100%;
  height: 300px;
  margin: 5px;
  padding: 0;
  list-style: none;
  box-shadow: 1px 1px 18px -3px #c3e5e0;
  overflow: hidden;
}

.services-parent li a {
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  border-radius: 4px;
}

.services-parent li h3 {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.services-parent li p {
  font-size: 12px;
  line-height: 1.5;
}

.services-parent li .normal {
  width: 100%;
  height: 100%;
}

.services-parent li .normal svg {
  pointer-events: none;
  width: 50px;
}

.services-parent li .normal svg path {
  fill: rgba(52, 73, 94, 0.2);
}

.services-parent h1 {
  margin: 0 auto 5px;
  text-align: center;
}

.services-parent h3 {
  font-family: "Bree Serif", serif;
}

.services-parent header {
  font-family: "Bree Serif", serif;
  text-align: center;
  margin: 50px 0 25px;
  color: #34495e;
}

.services-parent header p {
  margin: 0;
  color: rgba(52, 73, 94, 0.4);
}

.services-parent .icon-shadow {
  box-shadow: -1px 5px 16px -7px #00d0b07a;
}

.services-content p {
  line-height: 1.2;
}

.form-logo {
  position: absolute;
  top: -32px;
  right: 50%;
  transform: translateX(50%);
}

@media (max-width: 1025px) {
 
  .footer_nav img {
    height: 44px;
  }
  .services-parent li {
    width: 97%;
  }

  .header_content_2nd_p {
    width: 100%;
  }
  .nav .lg_ul {
    /* padding: 0; */
    margin: 0;
    list-style: none;
    /* display: flex; */
    justify-content: space-evenly;
    width: 40%;
  }
  .custom_container {
    padding: 0 24px 70px;
    margin-bottom: 60px;
  }
  .about_right_cards {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    text-align: right;
  }

  .about_right_cards_content p {
    width: 100%;
  }

  .about_content_header p {
    width: 100%;
  }

  .about_content_header h2 {
    line-height: 1;
  }

  .about_content_header {
    gap: 11px;
  }

 

  .footer_container {
    padding: 30px;
  }

  .footer_nav {
    flex-direction: column;
    gap: 20px;
  }

  .footer_social {
    flex-direction: column;
    gap: 4px;
  }

  .header_content_left {
    padding: 20px;
    width: 100%;
  }

  .header_content_first_p {
    font-size: 40px;
    line-height: 1;
  }
}
/*
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #095b5b;
  border-radius: 8px;
}
*/

.mySwiper img {
  /* filter: drop-shadow(3px 6px 4px #8d8f93); */
}
.select-border select{
    padding: 0;
    padding-left: 0 !important;
    border-radius: 41px;
    border: 1px solid transparent;
    width: 100%;
        background: white;
}

.select-border{
    width:100%;
    padding: 10px 14px 10px 14px;
    /*padding-left: 40px !important;*/
    border-radius: 41px;
    border: 1px solid #d5dae1;
}


/* start media (max-width:500px) */

@media (max-width:500px){

	
.header_content_first_p{
font-size: 31px;
    line-height: 39px;
}
.header_content_2nd_p{
    line-height: 21px;

}
	.wpcf7 p br{
display:none;
}
.about_content_header h2 {
    color: #095b5b;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px !important;
}
.about h4 {
    font-size: 17px;
}
.max-lg\:text-\[32px\] {
    font-size: 24px !important;
}
.parteners h2 {
font-size:20px !important;
	}
.header_content input, .header_content select{
    margin-top:7px !important;
    margin-bottom: 10px;

}
.card_header_content h4 {
font-size:20px;	
}
.nav .nav_btn, .header_content button {
font-size:18px;	
}

form button {
 
    margin-top: 10px;
}
  .about_right_cards_content p {
    width: 100%;
    margin-top: -6px;

  }
.services-content p {
    line-height: 1.2;
    margin-top: -10px;
}
.services-parent li p {
 
    margin-top: -7px;
 
}

	
}

