:root {
  --primary: #0570b6;
  --secondary: #a31d24;
  --bg-color: #f1f1f0;

  --text: #4d4d4d;

  --light: #ffffff;
  --dark: #000000;

  --transition: all 0.4s ease-in-out;

  --primary-font: "Mulish", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 16px;
  margin: 0;
  background-color: var(--light);
  color: var(--text);
  overflow-x: clip;
  line-height: 1.1;
}
img {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
h1,
h2,
h3,
h5,
h4,
h6 {
  font-family: var(--primary-font);
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -1%;
  color: var(--text-1);
}
img {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}
a,
a:active,
a:hover {
  text-decoration: none;
  outline: unset !important;
  box-shadow: unset !important;
  transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  transition: var(--transition);
  margin: 0;
}

h1.banner-title,
.section-wrap h2 {
  font-size: clamp(28px, 3vw, 40px);
  background: radial-gradient(
    57.62% 57.62% at 50% 50%,
    #a31d24 0%,
    #0570b6 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 6px;
}
h1 {
  font-size: clamp(28px, 3vw, 40px);
}
h2 {
  font-size: clamp(24px, 3vw, 28px);
  color: var(--secondary);
}
h3 {
  font-size: clamp(20px, 3vw, 24px);
  color: #666666;
}
h4 {
  font-size: clamp(18px, 3vw, 20px);
  color: #666666;
}

p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -1%;
  margin: 0;
}

.wrapper,
.wrapper-medium,
.wrapper-small {
  max-width: 1600px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.wrapper-medium {
  max-width: 1300px;
}
.wrapper-small {
  max-width: 1220px;
}

.btn,
.btn-white {
  padding: 10px 24px;
  border-radius: 50px;
  background: linear-gradient(270deg, #0570b6 0%, #6eb5e3 100%);
  font-size: 15px;
  font-weight: 700;
  color: var(--light);
  display: block;
  width: fit-content;
  white-space: nowrap;
  transition: var(--transition);
}
.btn:hover {
  color: var(--light);
  transform: scale(1.05);
}
.btn-white {
  background: var(--light);
  color: var(--primary);
  padding: 12px 24px;
}
.btn.center {
  margin: 45px auto 0;
}

.section-wrap {
  max-width: 720px;
  margin: 0 auto clamp(25px, 3vw, 45px);
  text-align: center;
}
.padding-tb {
  padding: clamp(35px, 5vw, 70px) 0;
}

.entry-title {
  font-size: 18px;
}
.entry-title-medium {
  font-size: clamp(20px, 2vw, 24px);
}
.entry-title-large {
  font-size: clamp(24px, 3vw, 36px);
}

.content__area img {
  margin: 20px 0;
}
.content__area h2,
.content__area h3,
.content__area h4 {
  margin-bottom: 14px;
}
.content__area p {
  margin-bottom: 12px;
}
.content__area p:last-child {
  margin-bottom: 0;
}
.content__area p strong {
  /* display: block; */
  color: var(--secondary);
}
.content__area p + h2,
.content__area p + h3,
.content__area p + h4 {
  margin-top: 30px;
}
.content__area ul li:not(:last-child),
.content__area ol li:not(:last-child) {
  margin-bottom: 10px;
}

/* Header css  */
.site-header {
  background-color: var(--light);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 9999;
}
.site-header.fixed {
  box-shadow: 0px 6px 12px -4px rgba(0, 0, 0, 0.1);
}
.site-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.site-branding img {
  max-width: 315px;
}
.main-navigation > ul {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-navigation ul a {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  transition: color 0.3s ease;
}
.menu-item-has-children {
  position: relative;
}
.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.submenu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 0;
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  transition: transform 0.3s ease;
  vertical-align: middle;
}
.submenu-toggle svg {
  transition: transform 0.3s ease;
}
.menu-item-has-children.active .submenu-toggle svg {
  transform: rotate(180deg);
}
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background-color: #fff;
  box-shadow: 0 8px 20px 5px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 12px 0;
  margin-top: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  z-index: 1000;
  list-style: none;
}
.sub-menu::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -18px;
}
.sub-menu .sub-menu {
  left: 100%;
  margin-top: -20px;
}
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children.active > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu-item-has-children .menu-item-has-children button {
  position: absolute;
  right: 10px;
  top: 10px;
  transform: rotate(270deg);
}
.sub-menu li {
  margin: 0;
  padding: 0;
  position: relative;
}
.sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.2s ease;
}
.sub-menu a:hover {
  background-color: rgba(116, 174, 212, 0.15);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10000;
}
.menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: var(--primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
@media (max-width: 1600px) {
  .site-header-wrapper {
    gap: 40px;
  }
  .site-branding img {
    max-width: 260px;
  }
  .main-navigation > ul {
    gap: 20px;
  }
}
@media (max-width: 1400px) {
  .site-branding img {
    max-width: 190px;
  }
  .site-header-wrapper {
    gap: 30px;
  }
  .btn,
  .btn-white {
    padding: 10px 16px;
  }
}
@media (max-width: 1280px) {
  .site-header-wrapper {
    gap: 30px;
  }
  .main-navigation ul {
    gap: 20px;
  }
  .main-navigation ul a {
    font-size: 14px;
  }
  .sub-menu {
    min-width: 220px;
  }
  .menu-toggle {
    display: flex;
  }
  .menu-toggle.active {
    position: fixed;
    right: 20px;
    top: 25px;
  }
  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 325px;
    height: 100vh;
    background-color: var(--light);
    padding: 80px 0 30px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }
  .main-navigation.active {
    right: 0;
  }
  .main-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .main-navigation > ul > li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .main-navigation ul a {
    font-size: 16px;
    padding: 15px 30px;
    display: block;
    width: 100%;
  }
  .submenu-toggle {
    position: absolute;
    right: 20px;
    top: 14px;
    padding: 10px;
  }
  .menu-item-has-children {
    position: relative;
  }
  .menu-item-has-children > a {
    padding-right: 60px;
  }
  .sub-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition:
      max-height 0.4s ease,
      padding 0.4s ease;
    padding-left: 20px;
  }
  .sub-menu .sub-menu {
    padding-left: 30px;
    margin-top: 0;
  }
  .menu-item-has-children .menu-item-has-children button {
    transform: rotate(180deg);
  }
  .menu-item-has-children .menu-item-has-children.active button {
    transform: rotate(360deg);
  }
  .menu-item-has-children.active > .sub-menu {
    max-height: 1000px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
  .sub-menu li {
    border-bottom: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .sub-menu li:last-child {
    border-bottom: unset;
  }
  .sub-menu a {
    padding: 12px 30px 12px 50px;
    font-size: 15px;
    font-weight: 600;
  }
  .sub-menu a:hover {
    background-color: rgba(116, 174, 212, 0.15);
    padding-left: 55px;
  }
  .header-button {
    display: none;
  }
  .site-header-wrapper {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .site-branding img {
    max-width: 200px;
  }
  .menu-toggle span {
    width: 25px;
    height: 2px;
  }
}

@media (max-width: 480px) {
  .site-branding img {
    max-width: 180px;
  }

  .site-header {
    padding: 10px 0;
  }

  .main-navigation {
    width: 280px;
  }

  .main-navigation ul a {
    font-size: 15px;
    padding: 14px 25px;
  }

  .sub-menu a {
    padding: 11px 25px 11px 45px;
    font-size: 14px;
  }

  .sub-menu a:hover {
    padding-left: 50px;
  }
}
/* Header css  */

/* Footer css  */
.site-footer {
  position: relative;
}
.site-footer::before {
  content: "";
  width: 36%;
  height: 100%;
  background-color: #0000003d;
  position: absolute;
  top: 0;
  left: 0;
}
.site-footer-wrapper {
  background: linear-gradient(100.36deg, #0570b6 0%, #023150 100%);
  padding: 60px 0;
}
.site-footer-wrapper .wrapper-small {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
.site-footer h2,
.site-footer h3 {
  font-size: 24px;
  color: #b2defa;
  font-weight: 800;
}
.site-footer h3 {
  font-size: 18px;
}
.footer-left {
  max-width: 260px;
}
.footer-left > div:not(:last-child) {
  border-bottom: 1px dashed var(--light);
  margin-bottom: 30px;
  padding-bottom: 32px;
}
.footer-left > div > h3 {
  margin-bottom: 10px;
}
.contact-details > div {
  display: flex;
  align-items: start;
  gap: 15px;
}
.contact-details > div:not(:last-child) {
  margin-bottom: 15px;
}
.contact-details .icon {
  width: 34px;
  min-width: 34px;
  text-align: center;
  margin-top: 3px;
}
.footer-left p,
.footer-left a {
  color: var(--light);
  font-size: 14px;
  font-weight: 700;
}
.social-media {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-media a {
  font-size: 24px;
}
.footer-left iframe {
  width: 100%;
  border-radius: 10px;
  height: 230px;
}

.footer-right {
  max-width: 785px;
}
.footer-right > div:not(:last-child) {
  border-bottom: 1px dashed var(--light);
  padding-bottom: 35px;
  margin-bottom: 35px;
}
.footer-title {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-bottom: 25px;
}
.footer-right p {
  font-size: 14px;
  color: var(--light);
}
.footer-right .footer-menu {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 60px;
  row-gap: 35px;
}
.footer-widget:not(:last-child) {
  margin-bottom: 35px;
}
.footer-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-widget ul li:not(:last-child) {
  margin-bottom: 3px;
}
.footer-widget a {
  font-size: 12px;
  color: var(--light);
}
.footer-right h3 {
  margin-bottom: 12px;
}
.book-training .btn-white {
  margin-top: 18px;
}
.site-info {
  padding: 14px 0;
  position: relative;
  z-index: 1;
  background-color: var(--light);
}
.site-info .wrapper-small {
  display: flex;
  justify-content: space-between;
}
.site-info a,
.site-info p {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 1600px) {
  .site-footer::before {
    width: 32%;
  }
}
@media (max-width: 1400px) {
  .site-footer::before {
    width: 30%;
  }
}
@media (max-width: 1200px) {
  .site-footer::before {
    width: 28%;
  }
}
@media (max-width: 1024px) {
  .site-footer::before {
    width: 30%;
  }
  .site-footer-wrapper .wrapper-small {
    grid-gap: 70px;
  }
}
@media (max-width: 900px) {
  .site-footer::before {
    width: 34%;
  }
  .site-footer-wrapper .wrapper-small {
    grid-gap: 50px;
  }
}
@media (max-width: 767px) {
  .site-footer::before {
    display: none;
  }
  .site-footer-wrapper .wrapper-small {
    flex-direction: column;
    gap: 0;
  }
  .footer-left {
    max-width: 100%;
  }
  .footer-left > div:last-child {
    border-bottom: 1px dashed var(--light);
    margin-bottom: 30px;
    padding-bottom: 32px;
  }
}
/* Footer css  */
