@import url("https://fonts.cdnfonts.com/css/maharlika");

/* .vh-100 {
    height: 100vh;
  } */

/* .x{
    overflow: hidden;
    height:550px;
  
} */

.wpcf7-spinner{
    display: none !important;
}

.video_banner {
  width: 100%;
  position: relative;
}

.video_banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

.video_banner .container {
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.video_banner_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
}

.video_banner .content {
  text-align: center;
  color: #ffffff;
}

.video_banner .content span {
  color: var(--color-secondary);
}

.video_banner h1 {
  font-size: 50px;
  font-weight: 100;
  line-height: 1.2;
  font-family: var(--font-secondary);
}

.video_banner h1 + p:not(:empty) {
  margin-top: 20px;
}

.video_banner .banner_button {
  margin-top: 30px;
}

/* ------------------------------------------ */

.scroll_down {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  row-gap: 8px;
  position: absolute;
  bottom: 20px;
}

.scroll_down img {
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  70% {
    transform: translateY(0%);
  }
  80% {
    transform: translateY(-15%);
  }
  90% {
    transform: translateY(0%);
  }
  95% {
    transform: translateY(-7%);
  }
  97% {
    transform: translateY(0%);
  }
  99% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(0);
  }
}

/* ------------------------------------------ */

.color_list_block {
  position: relative;
  width: 100%;
}

.color_list_item {
  width: 100%;
  color: #ffffff;
  background-color: #0a4049;
  padding: 30px 30px 30px 30px;
  border-radius: 23px;
  transition: transform .4s ease-in-out;
}

.color_list_item:hover{
  transform: scale(1.05);
}

.color_list_item:first-child {
  background-color: #216974;
}

.color_list_item:not(:first-child) {
  margin-top: 20px;
}

.color_list_title {
  text-align: center;
  display: block;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: bold;
}

.color_list_item ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
  row-gap: 15px;
  list-style: circle;
  font-size: 14px;
  padding-left: 24px;
}

/* ------------------------------------------ */

.expertise_carousel .owl-stage {
  display: flex;
}
.expertise_carousel .owl-item {
  padding: 40px;
  text-align: center;
  min-height: 400px;
  color: #ffffff;
  background: var(--color-primary);
  transition: background 0.35s ease-in-out;
  border-radius: 30px;
}

.expertise_carousel .owl-item:not(.center) {
  color: #000000;
  background: #f5f5fa;
}

.expertise_item h4 {
  margin-bottom: 20px;
}

.expertise_item p {
  line-height: 1.8;
}

/* ------------------------------------------ */

.section_center_title {
  text-align: center;
  margin-bottom: 50px;
}

.section_center_title h2 {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
}

.section_center_title h2 span {
  color: var(--color-secondary);
}

.section_center_title p:last-child {
  margin-bottom: 0;
}

.expertise_section {
  padding: 120px 0;
}

/* ------------------------------------------ */

.package_item {
  padding: 35px;
  color: #ffffff;
  text-align: center;
  border-radius: 50px;
}

.package_item_title {
  margin-bottom: 25px;
}

.package_item_title h4 {
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1;
  text-transform: capitalize;
  font-family: var(--font-secondary);
  font-weight: 500;
}

.package_item_title span {
  font-size: 14px;
  line-height: 1;
  display: block;
  text-transform: uppercase;
}

.package_item_body {
  min-height: 400px;
}

.package_item_body li {
  font-size: 16px;
  padding-left: 25px;
  text-align: left;
  position: relative;
}

.package_item_body li::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 5px;
  background: url(../images/tic_dot.png) no-repeat;
  background-size: cover;
  border-radius: 100px;
}

.package_item_body li + li {
  margin-top: 10px;
}

.package_item_footer {
  margin-top: 10px;
}

.package_item_footer span {
  display: block;
}

.package_item_footer .site-button {
  display: inline-block;
  margin-bottom: 10px;
}

.news-page,
.contact-page {
  padding: 100px 0;
}

.card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 69px;
  column-gap: 35px;
}

.card-list-item {
  background: #ffffff;
}

.card-list-image {
  margin-bottom: 20px;
}

.card-list-image img {
  width: 100%;
}

.card-list-content {
  position: relative;
  padding-bottom: 70px;
}
.card-list-content .badge {
  display: block;
  color: #e29453;
  margin-bottom: 14px;
}

.card-list-content h4 {
  font-size: 23px;
  font-weight: 400;
  margin-bottom: 15px;
}

.card-list-content p {
  min-height: 54px;
}

.card-list-content p:nth-last-child(2) {
  margin: 0;
}

.card-list-content .site-button-secondary {
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.4s ease-in-out;
}

.form-style {
  --space: 1%;
  --radius: 4px;
  --padding: 15px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  margin: 0 calc(var(--space) * -1);
}

.form-style li {
  width: 100%;
}

.form-style .column-2 {
  width: 48%;
}

.form-style .column-3 {
  width: 31.33%;
}

.form-style > li,
.form-style [class*="column-"] {
  margin: 0 var(--space);
}

input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.form-submit {
  display: block;
  width: 100%;
  height: 60px;
  color: #ffffff;
  border: none;
  font-size: 15px;
  padding: 0 15px;
  cursor: pointer;
  text-transform: uppercase;
  background: #000000;
  border-radius: 4px;
}

.form-submit:hover {
  background: var(--color-secondary);
}

textarea {
    height: 150px;
    resize: none;
    padding: var(--padding);
}

textarea,
.form-field {
  display: block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #999;
  -webkit-border-radius: var(--radius);
  -moz-border-radius: var(--radius);
  border-radius: var(--radius);
}

textarea:focus,
.form-field:focus{
  border: 1px solid var(--color-secondary) !important;
}

input.form-field {
  --height: 52px;
  height: var(--height);
  line-height: var(--height);
  padding: 0 var(--padding); 
  border: 1px solid #999999;
  -webkit-border-radius: var(--radius);
  -moz-border-radius: var(--radius);
  border-radius: var(--radius);
}



.contact-form{
  margin: auto;
  max-width: 1000px;
}