@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  margin-bottom: 0 !important;
  font-family: "Poppins", "sans-serif";
}

/* container */

@media (min-width: 1536px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1536px;
  }
}
/* header */
#primary-menu {
  ul {
    display: flex;
    gap: 16px;
  }

  @media (max-width: 768px) {
    flex-direction: column;
  }
}
.site-header {
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 9999;
  transition: transform 0.35s ease-in-out 0s,
    background-color 0.25s ease-in-out 0s;

  .main-navigation {
    ul {
      li {
        a {
          color: #fff;
          font-size: 16px;
          font-weight: 500;
        }
      }
    }
  }
  &.fixed {
    ul {
      li {
        a {
          color: #000;
          font-size: 16px;
          font-weight: 500;
        }
      }
    }
  }
}
.site-header .site-branding {
  .custom-logo {
    width: 100%;
    max-width: 100px;
    height: auto;
  }
}

.home-banner .wp-block-cover__inner-container {
  width: 40%;

  @media (max-width: 768px) {
    width: 80%;
  }
  @media (max-width: 575px) {
    width: 90%;
  }
}

.front-page-content .ut-visa-list {
  padding: 60px 0;

  .wp-block-group {
    padding: 0 !important;
    position: relative;

    .wp-block-post-title {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 12px 20px;
      background: rgba(0, 0, 0, 0.5);

      a {
        color: #fff;
      }
    }
  }

  @media (max-width: 768px) {
    padding: 30px 15px;
    max-width: 80% !important;
  }
  @media (max-width: 575px) {
    max-width: 100% !important;
  }
}
.visa-card .visa-title-price {
  background: rgba(0, 0, 0, 0.5);

  h2 {
    a {
      color: #fff;
    }
  }
  p {
    color: #fff;
  }
}

.ut-visa-banner {
  img {
    height: 450px;
    object-fit: cover;
    width: 100%;
  }
}

/* single visa */

.ut-main-content p,
.ut-main-content li {
  font-size: 16px;
  margin: 16px 0;
}
.ut-main-content p strong {
  color: #000;
}
.wp-block-heading,
.wp-block-uagb-advanced-heading .uagb-heading-text {
  font-size: 24px;
  font-weight: 600;
  margin: 16px 0;
  color: #000;
}
.wp-block-list {
  list-style-type: disc;
  padding-left: 20px;
}

/* sidebar */

/* form */

.wp-block-contact-form-7-contact-form-selector {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;

  .ut-form-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .wpcf7-form {
    padding: 20px;

    input[type="submit"] {
      background-color: rgb(2 181 238);
      color: #000;
      border: none;
      padding: 10px 20px;
      border-radius: 30px;
    }
  }
  p {
    margin-bottom: 10px;
  }
  .wpcf7-form-control-wrap {
    display: block;
    width: 100%;

    input {
      width: 100%;
      padding: 10px 15px;
    }
  }
}

.section-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 16px;

  svg {
    width: 40px;
    height: 40px;
  }
  a {
    text-decoration: underline;
    color: #0037ff;
  }
  .contact-section p {
    font-size: 17px;
    font-weight: 400;
    color: #686764;
  }
}

/* footer */

#footer-menu {
  ul {
    display: flex;
    gap: 16px;
  }
}
