#masthead {
  display: flex;
  align-items: center;
  width: 1300px;
  max-width: 100%;
  padding: 30px 0px 30px 0px;
  margin: 0 auto;
  gap: 70px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
}
.site-branding {
  flex-shrink: 0; /* Prevent shrinking */
}
.main-navigation ul li {
}
.main-navigation ul li a {
  font-family: "raleway", Sans-serif;
  margin-right: 40px;
  transition: 0.3s all ease;
  color: #000;
  font-size: 16px;
  line-height: 40px;
	font-weight: 500;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a {
  text-decoration: underline;
  color: #00529d;
}

.absolute-center {
  position: absolute !important;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.input-container {
  display: flex;
  gap: 15px;
}
::placeholder {
  color: #222222;
  font-family: "Raleway";
  font-weight: 600;
}

.menu-toggle {
  border-radius: 0px;
  margin-left: auto;
  align-items: center;

  padding: 0;
  background-color: transparent;

}
.close {
  display: none;
}
.toggled .close {
  display: block;
}
.toggled .open {
  display: none;
}
.video-link {
  overflow: hidden !important;
  border-radius: 10px !important;
}
.video-link svg {
  transition: 0.3s all ease;
}
.video-link:hover img {
  transition: transform 0.3s ease; /* Smooth zoom effect */
}
.video-link:hover img:hover {
  transform: scale(1.05); /* Slightly enlarge the image */
}
.video-link:hover svg {
  opacity: 0.8;
}
.triangle-bullet ul {
  list-style: none;

  margin: 10px 0 0 0;
}

.triangle-bullet ul li {
  position: relative;
  padding-left: 1.2rem; /* Space for the arrow */
  margin-bottom: 0.5rem; /* Optional: spacing between items */
  font-weight: 600 !important;
}

/* Add right triangle arrow */
.triangle-bullet ul li::before {
  content: "▶"; /* Unicode for right-pointing triangle */
  position: absolute;
  left: 0;
  color: #00529d; /* Change arrow color */
  font-size: 0.9rem; /* Adjust size */
  line-height: 2.1;
}
.wpcf7-submit {
  font-weight: 600 !important;
}
section.error-404.not-found {
  width: 1300px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 0px;
}
/* footer ccss*/

.site-footer {
  background-color: #dce2ef;
  border-top: 10px solid #00529d;
  text-align: center;
}
.footer-container {
  width: 1300px;
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 30px 80px 30px;
}
.site-footer .site-branding img {
  filter: brightness(0);
}
.site-footer .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}
.site-footer .menu a {
  color: #000;
  text-decoration: none;
  font-family: "raleway", Sans-serif;
  font-size: 16px;
}
.site-footer .current-menu-item a {
  text-decoration: underline;
}
.site-footer .footer-contacts {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.site-footer .phone,
.site-footer .email {
  display: flex;
  gap: 10px;
  align-items: center;
}
.site-footer .phone a,
.site-footer .email a {
  color: #000;
  font-family: "Raleway";
  font-weight: 600;
  display: flex;
  gap: 10px;
  align-items: center;
}
/*end footer ccss*/
@media (max-width: 1300px) {
  #masthead {
    padding: 30px 30px 30px 30px;
  }
}
@media (max-width: 599px) {
  .menu-primary-menu-container {
    position: absolute;
    left: 0;
    background-color: #f4f4f4;
    color: #fff;
    width: 100%;
    top: 80px;
	  text-align: center;
  }

  .main-navigation ul li a {
    color: #666;
   padding: 5px 30px;
    margin-right: 0px;
    border-bottom: 1px solid #fff;
	  font-size: 14px
  }
  .main-navigation ul li:last-child a {
    border: none;
  }
  .main-navigation ul li a:hover {
    background-color: #084379;
    color: #fff;
    text-decoration: none;
  }
  .main-navigation ul li.current-menu-item a {
    text-decoration: underline;
    color: #000;
  }
  #masthead {
    padding: 15px 30px 15px 30px;
  }
  .site-footer .menu-primary-menu-container {
    background-color: transparent;
    position: static;
  }
  .site-footer .menu {
    gap: 10px 20px;
  }
  .site-footer .footer-contacts {
    gap: 20px;
  }
  .site-footer .footer-contacts,
  .site-footer .phone,
  .site-footer .email {
    flex-direction: column;
  }
  .menu-toggle {
	border-bottom: 0;
  }
  .menu-toggle:hover {
	border-bottom: 0;
	  background-color: transparent !important;
  }
}
