:root {
  --highlight: #002352;
  --main: #ff9843;
}

body {
  font-family: "Gordita" !important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.text_gradient {
  background: linear-gradient(180deg, #1a8ec5 0%, #002352 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.box_gradient {
  background: linear-gradient(180deg, #1a8ec5 0%, #002352 100%);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.inx_hover_btn {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.inx_hover_btn::after {
  content: "";
  position: absolute;
  background-color: #093979;
  width: 0px;
  height: 0px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in;
  z-index: -1;
}

.inx_hover_btn:hover::after {
  transform-origin: center;
  transition: all 0.3s ease-in;
  width: 300px;
  height: 300px;
}

/* .inx_logo {
  width: 130px;
  height: auto;
}
.inx_logo img {
  width: 100%;
  height: 100%;
}
.inx_nav ul {
  margin-bottom: 0;
}
.inx_nav ul li {
  list-style: none;
}
.inx_nav ul li a {
  color: #101010;
  font-weight: 500;
} */

/* .footer-list li a{
  position: relative;
  padding: 0px !important;
  font-size: 16px !important;
  transition: .5s ease;

}
.footer-list li{
  transition: .5s ease;
}
.footer-list li:hover {
  transform: translateX(10px);
}

.footer-list li a:hover{
  color: var(--highlight) !important;
  font-weight: 500;
}  */

.menu-list li a {
  position: relative;
  padding: 0px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}
.menu-list li a:hover {
  color: var(--highlight) !important;
}
.menu-list li a::after {
  content: "";
  width: 0 !important;
  height: 2px !important;
  position: absolute !important;
  bottom: -5px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background-color: var(--highlight) !important;
  transition: width 0.3s !important;
}

.menu-list li a:hover::after {
  width: 75% !important;
}

.menu-list li a.active {
  color: var(--highlight) !important;
}

header.style-1 .header-icons i {
  font-size: 22px !important;
}

.header-icons .icon-block {
    display: flex;
    column-gap: 30px;
}



/* ---------------- hero section ---------------- */

.inx_hero {
  height: 100vh;
  background-image: url("../images/inx_images/banner_imag.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.inx_hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.682);
}

.inx_hero form {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.inx_hero form .inx_search_wrap {
  width: 800px;
  background-color: white;
  padding: 20px 30px;
  border-radius: 40px;
  position: relative;
}

.inx_hero form .inx_search_wrap input {
  outline: none;
  border: none;
  width: 700px;
}

.inx_hero form .inx_search_wrap button {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -6px;
  right: -1px;
  border-radius: 100%;
  background-color: var(--highlight);
}

.inx_hero form .inx_search_wrap button svg {
  width: 30px;
  height: 30px;
}

.inx_hero form .inx_search_wrap button svg path {
  fill: white;
}

.inx_hero_area {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  z-index: 1;
  position: relative;
}

.inx_hero_area .inx_hero_title {
  text-align: center;
}

.inx_hero_area .inx_hero_title img {
  width: 500px;
  margin-bottom: 30px;
}

.inx_hero_area .inx_hero_title h1 {
  font-weight: 300;
  margin: 0;
  color: white;
  font-size: 35px;
  line-height: 60px;
}

.inx_hero_area .inx_hero_title h1 span {
  font-weight: 600;
}

.inx_hero_area .inx_hero_title p {
  color: #ffffffb4;
  width: 600px;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 40px;
}
.inx_hero_area .inx_hero_title button {
  padding: 10px 40px;
  border-radius: 40px;
  margin: 0px 5px;
  font-weight: 500;
  cursor: pointer;
}

.inx_hero_area .inx_hero_title .hero-btn-1 {
  background-color: var(--highlight);
  border: 1px solid var(--highlight);
  color: white;
}

.inx_hero_area .inx_hero_title .hero-btn-2 {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  z-index: 1;
}

.hero-btn-2:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--highlight);
  height: 150px;
  width: 400px;
  border-radius: 50%;
}

.hero-btn-2:hover {
  border: 1px solid var(--highlight) !important;
}

.hero-btn-2:before {
  top: 100%;
  left: 100%;
  transition: all 0.7s;
}

.hero-btn-2:hover:before {
  top: -30px;
  left: -30px;
}

/* =================== LATEST NEWS ===================== */

.inx_new {
  margin-top: 80px;
}

.inx_news_btn button {
  padding: 10px 50px;
  border-radius: 40px;
  background-color: var(--highlight);
  /* color: white; */
  font-weight: 500;
}

.inx_news_btn button a{
  color: white !important;
}

.inx_news_area {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.inx_news_area .inx_news_box {
  border: 1px solid #ededed;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
}
.inx_news_area .inx_new_img {
  width: 100%;
  height: 270px;
  overflow: hidden;
}

.inx_news_area .inx_new_img img {
  width: 100%;
  height: 90%;
  object-fit: contain;
  transition: 0.5s ease;
}

.inx_news_box:hover .inx_new_img img {
  transform: scale(1.2);
}

.inx_news_area .inx_news_box h4 {
  font-size: 20px;
  line-height: 24px;
  padding-right: 20px;
}

.inx_news_area .inx_news_box p {
  font-size: 14px;
  line-height: 20px;
  padding: 30px 20px 0px 0px;
}

/* =================== How It Works ===================== */

.inx_work {
  margin-top: 65px;
  padding: 50px 0px 100px 0px;
  height: 90vh;
  width: 100%;
  background-image: url(../images/inx_images/work.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.inx_work .inx_work_title {
  text-align: center;
}
.inx_work .inx_work_title span {
  color: var(--highlight);
}
.inx_work .inx_work_title h3 {
  font-weight: 500;
  font-size: 35px;
  margin-bottom: 0;
}

.inx_work .inx_work_title h2 {
  font-size: 60px;
  font-weight: 800;
  line-height: 60px;
  margin-bottom: 20px;
  color: var(--main);
}

.inx_work .inx_work_title p {
  width: 500px;
  font-size: 18px;
  font-weight: 500;
}

.inx_work_wrap {
  background-image: url(../images/inx_images/Arrow.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 200px;
  margin-top: 100px;
  display: flex;
  justify-content: space-around;
}

.inx_work_box {
  width: 200px;
  height: 200px;
  border-radius: 100%;

  /* overflow: hidden; */
  position: relative;
}
.inx_work_box div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: end;
  background-color: white;
  position: relative;
  z-index: 1;
}
.inx_work_box:nth-child(2) {
  transform: translateY(70px);
}
.inx_work_box:nth-child(3) {
  transform: translateY(-50px);
}
.inx_work_box p {
  font-size: 20px;
  color: #101010;
  font-weight: 600;
  margin-bottom: 0;
}
.inx_work_box button {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: var(--highlight);
  color: white;
  border-radius: 100%;
  right: -7px;
  top: -7px;
}
.df_btn {
  background-color: var(--main) !important;
}

/* .inx_work_box button:nth-child(2) {
  background-color: var(--main);
} */

/* =================== SERVICES =====================  */

.inx_service {
  margin-top: 80px;
  position: relative;
  padding-bottom: 90px;
}

.inx_service .inx_service_title {
  text-align: center;
}

.inx_service .inx_service_title span {
  color: var(--highlight);
}
.inx_service .inx_service_title h3 {
  font-weight: 500;
  font-size: 35px;
  margin-bottom: 0;
}
.inx_service .inx_service_title h2 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--main);
}

.inx_service_wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 60px;
}

/* .inx_service_box:nth-child(7) {
  grid-column: span 2 / span 2;
}
.inx_service_box:nth-child(9) {
  grid-column: span 2 / span 2;
} */

.inx_service_box {
  height: 300px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.inx_service_img {
  width: 150px;
  display: flex;
  justify-content: center;
}
/* .inx_service_img img {
  width: 100%;
  height: 100%;
} */
.inx_service_img span {
  color: white !important;
}

.inx_service_box h4 {
  color: white;
  margin-top: 20px;
  font-weight: 500;
  text-align: center;
}
.service_bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
.service_bg img {
  width: 100%;
}

/* =================== JOIN US =====================  */

.joinus {
  background: #d1e2f3;
  padding: 80px 0px;
}

.joinus .joinus_title {
  text-align: center;
  margin-bottom: 60px;
}

.joinus_title span {
  color: var(--highlight);
}

.joinus .joinus_title h3 {
  font-size: 35px;
  margin-bottom: 0;
  color: var(--main);
}

.joinus_container {
  background: white;
  padding: 80px;
  position: relative;
  z-index: 1;
  color: #efefef;
}

.ocean {
  width: 100%;
  height: 60%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-x: hidden;
  z-index: -1;
}

.wave {
  background: linear-gradient(180deg, #1a8ec5 0%, #002352 100%);
  position: absolute;
  width: 200%;
  height: 100%;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
}

.wave:nth-of-type(2) {
  bottom: 0;
  animation: wave 18s linear reverse infinite;
  opacity: 0.5;
}

.wave:nth-of-type(3) {
  bottom: 0;
  animation: wave 20s -1s linear infinite;
  opacity: 0.5;
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.joinus_video {
  width: 100%;
  height: 500px;
}

.joinus_container form {
  display: flex;
  flex-flow: column;
  align-items: center;
}

.joinus_form {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
}

.joinus_form_input {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  /* grid-column: span 2 / span 2; */
}
.joinus_form_input input {
  background: transparent;
  border: 1px solid #ffffff69;
  outline: none;
  padding: 10px 20px;
  color: white;
  border-radius: 25px;
}
.joinus_form_input input::placeholder {
  color: #ffffff69;
}

.joinus_form_input input:focus {
  border-color: white;
}

.joinus_form_text {
  height: 130px;
}

.joinus_form_text textarea {
  width: 100%;
  height: 100%;
  background: transparent;
  border: 1px solid #ffffff69;
  outline: none;
  padding: 10px 20px;
  color: white;
  border-radius: 30px;
}

.joinus_form_text textarea:focus {
  border-color: white;
}

.joinus_form_text textarea::placeholder {
  color: #ffffff69;
}

.join_btn_wrap .join_btn {
  display: flex;
  justify-content: center;
}

.join_btn {
  margin-top: 60px;
  background: transparent;
  color: white;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid white;
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}

.join_btn span {
  display: block;
  transition: all 0.3s ease-in-out;
}

.join_btn svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.join_btn:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.join_btn:hover svg {
  transform: translateX(3.5em) rotate(45deg) scale(1.1);
}

.join_btn:hover span {
  transform: translateX(10em);
}

.join_btn:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}

/* =================== JOIN US =====================  */

.catholics_connect_area {
  background-image: url(../images/inx_images/catholic_form.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0px;
}

.catholic_form_wraperr {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.catholic_form_wraperr div:nth-child(1) {
  grid-column: span 2 / span 2;
}

.catholic_form_wraperr div:nth-child(1) p {
  color: white;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}

.catholic_form_wraperr div:nth-child(1) h3 {
  color: white;
  font-size: 35px;
  margin-bottom: 0;
}

.catholic_form_wraperr div:nth-child(1) h3 span {
  color: #ff9843;
}

.catholic_form_wraperr form {
  display: flex;
  align-items: center;
  gap: 20px;
  grid-column: span 3 / span 3;
}
.catholic_form_wraperr form div input {
  width: 100%;
  background-color: transparent;
  border: 1px solid #ffffff69;
  outline: none;
  padding: 10px 20px;
  color: white;
  border-radius: 30px;
}

.catholic_form_wraperr form div input::placeholder {
  color: #ffffff69;
}

.catholic_form_wraperr form div input:focus {
  border-color: white;
}

.catholic_form_wraperr form button {
  padding: 10px 40px;
  border-radius: 50px;
  background-color: #ff9843;
  color: white;
  font-weight: 500;
}
.catholic_form_wraperr form div {
  position: relative;
}
.catholic_form_wraperr form div p{
  position: absolute;
  top: 100%;
  color: red;
  left: 5%;
  font-weight: 400;
}

.android_ios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 400px;
  gap: 20px;
}

.inx_copy_right {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.inx_copy_right a {
  color: var(--highlight);
}


/* =================== Footer ===================== */

footer {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 30px;
  padding: 80px 0px;
}
.footer_content {
  grid-column: span 2 / span 2;
}
.footer_content p {
  margin-bottom: 0px;
}

.footer_content div {
  display: flex;
  gap: 30px;
  padding: 20px 0px;
}

.footer_content div a {
  color: #10101080;
  font-size: 20px;
  transition: 0.5s;
}

.footer_content div a:hover {
  color: #ff9843;
}

.footer_content2 {
  grid-column: span 4 / span 4;
}
.footer_content_child {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer_list_area {
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer_list_area h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.footer_list_area ul {
  list-style: none;
  padding: 0;
}

.footer_list_area ul li a {
  color: #10101080;
  transition: all 0.3s;
}

.footer_list_area ul li {
  transition: all 0.3s;
}

.footer_list_area ul li:hover {
  transform: translateX(10px);
}

.footer_list_area ul li:hover a {
  color: var(--highlight);
}

.footer_address {
  padding-top: 20px;
  /* grid-column: span 2 / span 2; */
}

.footer_address h3 {
  font-size: 22px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.footer_address p {
  margin-bottom: 0px;
  font-size: 14px;
  text-transform: capitalize;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .inx_hero {
    height: 70vh;
  }
  .inx_hero_area .inx_hero_title img {
    width: 250px;
    margin-bottom: 40px;
  }

  .inx_news_area {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .inx_work {
    height: 100vh;
  }
  .inx_service_wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .menu-list li a:hover::after {
    width: 0% !important;
  }

  .menu-list li a {
    padding: 10px 0 !important;
  }
  /* .inx_hero {
    height: 80vh;
  } */
  .inx_hero_area .inx_hero_title img {
    width: 200px;
    margin-bottom: 40px;
  }

  .inx_hero form .inx_search_wrap {
    width: 500px;
  }
  .inx_hero form .inx_search_wrap input {
    width: 400px;
  }
  .inx_news_area {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .inx_work {
    height: 115vh;
    padding: 60px 80px;
  }
  .inx_work_wrap {
    flex-wrap: wrap;
    gap: 30px;
  }
  .inx_work_box:nth-child(2) {
    transform: translateY(0px);
  }
  .inx_work_box:nth-child(3) {
    transform: translateY(0px);
  }
  /* .inx_work_box {
    width: 150px;
    height: 150px;
  }
  .inx_work_box div img {

  } */
  .inx_service_wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .inx_service_box {
    height: 250px;
  }
  .joinus_video {
    height: 300px;
  }
  .joinus_form {
    grid-template-columns: none;
  }
  .joinus_container {
    padding: 50px;
  }
  .catholic_form_wraperr form {
    flex-wrap: wrap;
  }
  .footer_content {
    grid-column: span 6 / span 6;
  }
  .footer_content2 {
    grid-column: span 6 / span 6;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .menu-list li a:hover::after {
    width: 0% !important;
  }
  .menu-list li a {
    padding: 10px 0 !important;
  }

  .inx_hero {
    height: 70vh;
  }

  .inx_hero_area .inx_hero_title img {
    width: 200px;
    margin-bottom: 40px;
  }


  .inx_hero_area .inx_hero_title h1 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 10px;
  }
  .inx_hero_area .inx_hero_title p {
    width: 100%;
    font-size: 14px;
    line-height: 16px;
  }

  .inx_hero_title div {
    display: flex;
  }
  .inx_hero_area .inx_hero_title button {
    padding: 7px 0px;
    width: 100%;
  }
  .inx_hero form .inx_search_wrap {
    width: 300px;
    padding: 10px 15px;
  }

  .inx_hero form .inx_search_wrap input {
    width: 200px;
  }

  .inx_hero form .inx_search_wrap button {
    width: 50px;
    height: 50px;
    top: 0px;
  }

  .inx_hero form .inx_search_wrap button svg {
    width: 20px;
    height: 30px;
  }

  .inx_new {
    margin-top: 40px;
  }

  .inx_news_btn button {
    padding: 5px 20px;
  }

  .inx_news_area {
    margin-top: 30px;
  }
  .inx_news_area {
    grid-template-columns: none;
  }
  .inx_work {
    height: 150vh;
    padding: 40px 0px;
    margin-top: 40px;
  }

  .inx_work .inx_work_title h3 {
    font-size: 20px;
  }

  .inx_work .inx_work_title h2 {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 10px;
  }
  .inx_work .inx_work_title p {
    font-size: 16px;
    line-height: 22px;
  }

  .inx_work_wrap {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
  }
  .inx_work_box {
    width: 190px;
    height: 190px;
  }
  .inx_work_box:nth-child(2) {
    transform: translateY(0px);
  }
  .inx_work_box:nth-child(3) {
    transform: translateY(0px);
  }

  .inx_service {
    margin-top: 40px;
    padding-bottom: 40px;
  }

  .inx_service .inx_service_title h3 {
    font-size: 20px;
  }
  .inx_service .inx_service_title h2 {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 0px;
  }

  .inx_service_wrap {
    grid-template-columns: none;
  }

  .android_ios {
    width: 100%;
    margin-top: 20px;
    gap: 10px;
  }

  /* .inx_service_box:nth-child(7) {
    grid-column: span 1 / span 1;
  }
  .inx_service_box:nth-child(9) {
    grid-column: span 1 / span 1;
  } */

  .inx_service_box {
    height: 250px;
  }

  .joinus {
    padding: 60px 0px;
  }

  .ocean {
    height: 80%;
  }

  .joinus .joinus_title h3 {
    font-size: 26px;
  }
  .joinus .joinus_title {
    margin-bottom: 20px;
  }

  .joinus_video {
    height: 200px;
  }
  .joinus_form {
    grid-template-columns: none;
    margin-top: 30px;
  }
  .joinus_form_input {
    grid-template-columns: none;
  }
  .joinus_form_text textarea {
    border-radius: 20px;
  }
  .join_btn {
    margin-top: 30px;
  }
  .joinus_container {
    padding: 30px;
  }
  .catholic_form_wraperr {
    grid-template-columns: none;
  }
  .catholic_form_wraperr form {
    flex-wrap: wrap;
  }
  footer {
    grid-template-columns: none;
  }
  .footer_content_child {
    grid-template-columns: none;
  }
}

@media (max-width: 320px) {
  .menu-list li a:hover::after {
    width: 0% !important;
  }
  .menu-list li a {
    padding: 10px 0 !important;
  }

  .inx_hero {
    height: 60vh;
  }

  .inx_hero_area .inx_hero_title img {
    width: 250px;
  }

  .inx_hero_area .inx_hero_title h1 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .inx_hero_area .inx_hero_title p {
    width: 100%;
    font-size: 14px;
    line-height: 16px;
  }

  .inx_hero_title div {
    display: flex;
  }
  .inx_hero_area .inx_hero_title button {
    padding: 7px 0px;
    width: 100%;
  }
  .inx_hero form .inx_search_wrap {
    width: 300px;
    padding: 10px 15px;
  }

  .inx_hero form .inx_search_wrap input {
    width: 200px;
  }

  .inx_hero form .inx_search_wrap button {
    width: 50px;
    height: 50px;
    top: 0px;
  }

  .inx_hero form .inx_search_wrap button svg {
    width: 20px;
    height: 30px;
  }

  .inx_new {
    margin-top: 40px;
  }

  .inx_news_btn button {
    padding: 5px 20px;
  }

  .inx_news_area {
    margin-top: 30px;
  }
  .inx_news_area {
    grid-template-columns: none;
  }
  .inx_work {
    height: 165vh;
    padding: 40px 0px;
    margin-top: 40px;
  }

  .inx_work .inx_work_title h3 {
    font-size: 20px;
  }

  .inx_work .inx_work_title h2 {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 10px;
  }
  .inx_work .inx_work_title p {
    font-size: 16px;
    line-height: 22px;
  }

  .inx_work_wrap {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
  }
  .inx_work_box {
    width: 190px;
    height: 190px;
  }
  .inx_work_box:nth-child(2) {
    transform: translateY(0px);
  }
  .inx_work_box:nth-child(3) {
    transform: translateY(0px);
  }

  .inx_service {
    margin-top: 40px;
    padding-bottom: 40px;
  }

  .inx_service .inx_service_title h3 {
    font-size: 20px;
  }
  .inx_service .inx_service_title h2 {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 0px;
  }

  .inx_service_wrap {
    grid-template-columns: none;
  }

  /* .inx_service_box:nth-child(7) {
    grid-column: span 1 / span 1;
  }
  .inx_service_box:nth-child(9) {
    grid-column: span 1 / span 1;
  } */

  .inx_service_box {
    height: 250px;
  }

  .joinus {
    padding: 60px 0px;
  }

  .ocean {
    height: 80%;
  }

  .joinus .joinus_title h3 {
    font-size: 26px;
  }
  .joinus .joinus_title {
    margin-bottom: 20px;
  }

  .joinus_video {
    height: 200px;
  }
  .joinus_form {
    grid-template-columns: none;
    margin-top: 30px;
  }
  .joinus_form_input {
    grid-template-columns: none;
  }
  .joinus_form_text textarea {
    border-radius: 20px;
  }
  .join_btn {
    margin-top: 30px;
  }
  .joinus_container {
    padding: 30px;
  }
  .catholic_form_wraperr {
    grid-template-columns: none;
  }
  .catholic_form_wraperr form {
    flex-wrap: wrap;
  }

  footer {
    grid-template-columns: none;
  }
}

a{
  color:var(--text-secondary);
}
a:hover{
  color:var(--text-secondary);
}

button, input, optgroup, select, textarea{
  font-family: "Gordita" !important;
  font-weight: 500;
}

/* ======================================= drop */
.inx_drop_item {
  position: relative;
}

.inx_drop_item .inx_drop_area {
  position: absolute;
  width: 250px;
  background-color: aliceblue;
  padding: 20px !important;
  left: 0;
  top: 300%;
  opacity: 0;
  visibility: hidden;
  border-top: 2px solid var(--highlight);
  transition: all 0.5s ease;
  z-index: 1;
}
.inx_drop_item:hover .inx_drop_area {
  visibility: visible;
  opacity: 1;
  top: 110%;
}
.inx_drop_item .inx_drop_area li {
  display: block !important;
  padding: 5px 0px !important;
}
.inx_drop_item .inx_drop_area li a:hover::after {
  width: 0% !important;
}
.inx_drop_item .inx_drop_area li a:hover {
  transform: translateX(10px);
}

.home-grid-wrapper{
    display:flex;
}

.grid-col-span-4{
    width: 70%;
}
.grid-col-span-3{
    width: 30%;
    padding-left: 10px;
    padding-top: 190px;
}

.grid-col-span-3 .news-image{
    display: grid;
    row-gap: 20px;
}

.news-block-image{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 40px;
}

.news-block-image img{
    width:437px;
    height: 100%;
}

.news-image img{
    width:523px;
    height: 305px;
}
.last-img{
    display: none;
}


@media (max-width:768px) {

    .grid-col-span-4{
        width: 100%;
    }
    .grid-col-span-3{
        width: 100%;
        padding-left: 0px;
        padding-top: 20px;
    }
    .news-image img{
        width:334px;
        height: 100%;
    }

.news-image {
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 10px 0px 10px;
}

.last-img{
    display: block;
}

.home-grid-wrapper{
        display: block !important;
    }

    .news-block-image img{
        width:337px;
        height: 100%;
    }

    .news-block-image{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 10px 0px 10px;
    }
}
@media (max-width:425px) {
    .news-block-image img{
        width:337px;
        height: 100%;
    }
    .last-img{
        display: block;
    }
}
/* ======================================= drop end */


/* search model */

.search-model {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #00000057;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.search-model.active {
    opacity: 1;
    visibility: visible;
}

.search-model .search-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.4s ease;
}

.search-model.active .search-block {
    transform: translate(-50%, -50%) scale(1);
}

.search-model .search-block .search-popup {
    width: 600px;
    height: 110px;
    background-color: #fff;
    opacity: 1;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 4px;
}

.search-model .search-block .search-popup input {
    width: 500px;
    padding: 5px 15px;
    outline: none
}

.search-model .search-block .search-popup button {
    background-color: #101010;
    color: #d1e2f3;
    padding: 7px 17px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.close-button {
    padding: 6px 15px 4px;
    font-size: 21px;
    position: absolute;
    right: -15px;
    top: -20px;
    border-radius: 5px;
}

.search-model .search-block {
    transform: translate(-50%, -50%) scale(0.8);
}

@media (max-width:375px) {
    .search-model .search-block .search-popup input {
        width: 250px;
        padding: 5px 15px;
    }
    .search-model .search-block .search-popup {
        width: 330px;
        height: 90px;
        background-color: #fff;
        opacity: 1;
        align-items: center;
        display: flex;
        justify-content: center;
        border-radius: 4px;
    }
}
@media (max-width:425px) {
    .search-model .search-block .search-popup input {
        width: 250px;
    }
    .search-model .search-block .search-popup {
        width: 330px;
        height: 90px;
    }
}
