@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --bg-white: #ffffff;
  --bg-black: #000000;
  --basic-color1: #5a646f;
  --basic-color2: #313b46;
  --basic-color3: #000000;
  --text-black: #000000;
  --text-white: #ffffff;
  --button-bg: #12232D;
}

a, button {
  outline: none;
  transition: 0.3s ease;
  border: none;
  text-decoration: none;
}

input, select, textarea {
  outline: none;
  border: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  overflow: auto;
  overflow-x: hidden;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: var(--text-black);
}

div.error {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  align-items: center;
  background: #0d2432;
  color: #fff;
}
div.error h1 {
  font-size: 22vw;
  font-weight: 900;
  line-height: 100%;
  display: block;
  text-shadow: 5px 10px 5px #253946;
}
div.error p {
  display: block;
  line-height: 150%;
  font-size: 22px;
  margin: 15px 0;
}
div.error a.button {
  display: block;
  background-color: #fff;
  color: #0d2432;
  line-height: 42px;
  padding: 0 25px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
}
div.error a.button:hover {
  background-color: #253946;
  color: #fff;
}

/*
site design and development by Salman Razak,
for any query please contact razak.salman@gmail.com or +92 (300) 225 3790.
Thanks...
*/
#page-transition {
  position: fixed;
  left: 0;
  top: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #10232c url("../media/images/loading-logo.webp") center center no-repeat;
  background-size: 300px;
  z-index: 999999;
  transform-origin: top center;
  transform: scaleY(1);
  pointer-events: none;
}

header.site-header {
  position: relative;
  width: 100%;
  padding: 0 25px;
  background: transparent;
  transition: transform 0.35s ease, background 0.3s ease, box-shadow 0.3s ease;
  z-index: 10;
}
header.site-header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
header.site-header .header-wrapper .left-column {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}
header.site-header .header-wrapper .left-column a.logo {
  display: block;
  width: 120px;
}
header.site-header .header-wrapper .left-column a.logo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
header.site-header .header-wrapper .left-column nav {
  font-size: 16px;
  font-weight: 500;
}
header.site-header .header-wrapper .left-column nav ul {
  display: flex;
}
header.site-header .header-wrapper .left-column nav ul li {
  border-bottom: 2px solid transparent;
  transition: 0.3s ease;
}
header.site-header .header-wrapper .left-column nav ul li a {
  display: block;
  line-height: 63px;
  color: var(--basic-color1);
  padding: 0 14px;
  font-size: 15px;
  font-weight: 600;
}
header.site-header .header-wrapper .left-column nav ul li:hover {
  border-bottom-color: var(--basic-color3);
}
header.site-header .header-wrapper .left-column nav ul li:hover a {
  color: var(--basic-color3);
  border-bottom-color: var(--basic-color1);
}
header.site-header .header-wrapper .left-column nav ul li.current_page_item {
  border-bottom-color: var(--basic-color3);
}
header.site-header .header-wrapper .left-column nav ul li.current_page_item a {
  color: var(--basic-color3);
}
header.site-header .header-wrapper .right-column {
  display: flex;
  align-items: center;
  gap: 45px;
  justify-content: flex-end;
}
header.site-header .header-wrapper .right-column .social {
  display: flex;
  align-items: center;
  gap: 12px;
}
header.site-header .header-wrapper .right-column .social a {
  width: 30px;
  height: 30px;
}
header.site-header .header-wrapper .right-column .social a img {
  width: 100%;
  height: 100%;
  display: block;
}
header.site-header .header-wrapper .right-column .phone {
  display: flex;
  align-items: center;
  gap: 10px;
}
header.site-header .header-wrapper .right-column .phone svg {
  width: 22px;
}
header.site-header .header-wrapper .right-column .phone span {
  font-size: 15px;
  font-weight: 600;
}
header.site-header .header-wrapper .right-column button.upload-cv {
  height: 48px;
  border-radius: 24px;
  padding: 3px 20px 3px 3px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--button-bg);
  color: var(--text-white);
}
header.site-header .header-wrapper .right-column button.upload-cv svg {
  width: 42px;
  height: 42px;
  transition: 0.3s ease;
}
header.site-header .header-wrapper .right-column button.upload-cv:hover {
  background-color: var(--basic-color2);
}
header.site-header .header-wrapper .right-column button.upload-cv:hover svg {
  transform: rotate(90deg);
}
header.site-header .header-wrapper .right-column button.upload-cv:hover svg circle {
  fill: var(--text-white);
}
header.site-header .header-wrapper .right-column button.toggle {
  width: 43px;
  height: 43px;
  background-color: transparent;
  border-radius: 4px;
  border: none;
  padding: 5px;
  display: none;
}
header.site-header .header-wrapper .right-column button.toggle svg {
  width: 100%;
  height: 100%;
}
header.site-header .header-wrapper .right-column button.toggle:hover {
  background-color: #eee;
}
header.site-header .header-wrapper .right-column button.toggle:hover svg path {
  fill: var(--basic-color2);
}
header.site-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
header.site-header.scrolling {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
header.site-header {
  /* Show on scroll up */
}
header.site-header.hide {
  transform: translateY(-100%);
}
header.site-header.show {
  transform: translateY(0);
}

main {
  width: 100%;
  min-height: 50vh;
}
main h4.round-heading {
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #5A646F;
  background-color: #fff;
  line-height: 34px;
  padding: 0 25px;
  border-radius: 17px;
  display: flex;
  margin: 0;
}
main h3.medium-heading {
  display: block;
  line-height: 100%;
  font-size: 1.8vw;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
main h2.big-heading {
  display: block;
  line-height: 100%;
  font-size: 2.4vw;
  font-weight: 800;
  margin: 0;
  padding: 0;
}
main section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  z-index: 0;
}
main section.active {
  opacity: 1;
  transform: translateY(0);
}
main section.home-slider {
  width: 100%;
  height: calc(100vh - 80px);
  padding: 15px 15px;
  position: relative;
}
main section.home-slider .swiper {
  width: 100%;
  height: 100%;
}
main section.home-slider .swiper.main-slider {
  position: relative;
  z-index: 0;
  border-radius: 15px;
  overflow: hidden;
}
main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  color: #fff;
}
main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content {
  padding: 20px 8% 0;
  width: inherit;
  height: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content h3 {
  font-size: 26px;
  font-weight: 500;
  line-height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  width: 60%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content h2 {
  font-size: 5vw;
  font-weight: 900;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 100%;
  width: 90%;
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content p {
  display: block;
  margin: 5px 0 25px;
  padding: 0;
  font-size: 20px;
  font-weight: 300;
  width: 60%;
  line-height: 120%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content a.link {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 0 25px 0 62px;
  background: #727C86 url("../media/images/icon-arrow.png") 3px 3px no-repeat;
  background-size: 43px;
  border-radius: 24px;
  line-height: 48px;
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content a.link:hover {
  background-color: #fff;
  color: #727C86;
}
main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide.swiper-slide-active .slide-content h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide.swiper-slide-active .slide-content h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide.swiper-slide-active .slide-content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide.swiper-slide-active .slide-content a.link {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}
main section.home-slider .swiper.main-slider .swiper-pagination {
  left: 8%;
  bottom: 30px;
  z-index: 1;
  text-align: left;
}
main section.home-slider .swiper.main-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: white;
}
main section.home-slider .swiper.main-slider nav {
  width: 105px;
  height: 50px;
  position: absolute;
  right: 50px;
  top: 45%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}
main section.home-slider .swiper.main-slider nav div {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: static;
  display: flex;
  margin: 0;
  padding: 15px;
  transition: 0.3s ease;
}
main section.home-slider .swiper.main-slider nav div svg {
  width: 100%;
  height: 100%;
}
main section.home-slider .swiper.main-slider nav div svg path {
  fill: #fff;
}
main section.home-slider .swiper.main-slider nav div:hover {
  background-color: #fff;
}
main section.home-slider .swiper.main-slider nav div:hover svg path {
  fill: var(--basic-color1);
}
main section.home-slider .swiper.main-slider nav div.swiper-button-prev {
  margin-top: 30px;
}
main section.home-slider .swiper.main-slider nav div.swiper-button-next {
  margin-bottom: 30px;
}
main section.home-slider .swiper.main-slider-thumbs {
  width: 256px;
  height: 87px;
  position: absolute;
  right: 50px;
  bottom: 50px;
}
main section.home-slider .swiper.main-slider-thumbs .swiper-wrapper .swiper-slide {
  width: 130px;
  height: 87px;
  border-radius: 5px;
  border: 1px solid transparent;
  overflow: hidden;
  cursor: pointer;
}
main section.home-slider .swiper.main-slider-thumbs .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main section.home-slider .swiper.main-slider-thumbs .swiper-wrapper .swiper-slide.swiper-slide-fully-visible {
  border-color: #fff;
}
main section.home-about {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: url("../media/images/bg-about-section-1.png"), url("../media/images/bg-about-section-2.png"), url("../media/images/bg-about-section-3.png");
  background-position: left top, 48% center, right 110%;
  background-repeat: no-repeat;
  background-size: 120px, 440px, 130px;
}
main section.home-about .about-wrapper {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
main section.home-about .about-wrapper .left-column {
  position: relative;
  z-index: 0;
  flex: 0 0 47%;
}
main section.home-about .about-wrapper .left-column figure.large-image {
  position: relative;
  z-index: 1;
  border-radius: 15px;
  overflow: hidden;
}
main section.home-about .about-wrapper .left-column figure.large-image img {
  width: 100%;
}
main section.home-about .about-wrapper .left-column figure.small-image {
  position: absolute;
  z-index: 2;
  right: -50px;
  bottom: -80px;
}
main section.home-about .about-wrapper .left-column figure.small-image img {
  width: 65%;
}
main section.home-about .about-wrapper .right-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  flex: 0 0 53%;
}
main section.home-about .about-wrapper .right-column h4 {
  margin-bottom: 5px;
}
main section.home-about .about-wrapper .right-column h2 {
  font-size: 2.6vw;
}
main section.home-about .about-wrapper .right-column p {
  margin: 15px 0 0;
  padding: 0;
  line-height: 140%;
  font-size: 17px;
}
main section.home-about .about-wrapper .right-column div.wp-block-button.main-link {
  margin-top: 15px;
}
main section.home-about .about-wrapper .right-column div.wp-block-button.main-link a.wp-element-button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 15px;
  height: 48px;
  line-height: 48px;
  padding: 3px 62px 3px 25px;
  background: #12232D url("../media/images/icon-arrow.png") calc(100% - 3px) center no-repeat;
  background-size: 41px 41px;
  color: #fff;
  font-weight: 500;
}
main section.home-about .about-wrapper .right-column div.wp-block-button.main-link a.wp-element-button:hover {
  background-color: #fff;
  color: #000;
}
main section.home-services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 80px 15px;
  background-image: url("../media/images/bg-services.webp"), url("../media/images/bg-services-1.png"), url("../media/images/bg-services-2.png");
  background-position: center center, calc(100% - 40px) 30px, center bottom;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: contain, 15px, 200px;
  background-color: #EBEEF0;
}
main section.home-services h4 {
  margin-bottom: 5px;
}
main section.home-services h2 {
  font-size: 2.6vw;
  width: 45%;
  text-align: center;
}
main section.home-services p {
  font-size: 18px;
  width: 45%;
  text-align: center;
  line-height: 120%;
}
main section.home-services .services-container {
  width: 100%;
  margin: 25px auto 0;
  display: flex;
  justify-content: center;
}
main section.home-services .services-container .services-outer {
  width: 75%;
  margin: 10px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: stretch;
}
main section.home-services .services-container .services-outer .service-column {
  flex: 0 0 calc(20% - 15px); /* subtract part of gap */
  max-width: calc(20% - 15px);
  box-sizing: border-box;
  flex-direction: column;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  margin: 0;
}
main section.home-services .services-container .services-outer .service-column .image-container {
  background-color: #D6D8DA;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 340px;
  height: 317px;
  margin: -60px 0 0 -60px;
  transition: 0.3s ease;
  clip-path: path("M227.1 0H112.9C93 0 74.6 10.9 64.6 28.5L7.5 129.8c-10 17.7-10 39.4 0 57.1l57.1 101.3c10 17.7 28.4 28.5 48.3 28.5h114.2c19.9 0 38.3-10.9 48.3-28.5l57.1-101.3c10-17.7 10-39.4 0-57.1L275.4 28.5C265.4 10.9 247 0 227.1 0");
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}
main section.home-services .services-container .services-outer .service-column .image-container .image {
  width: 320px;
  height: 298px;
  clip-path: path("M213.8 0H106.3C87.5 0 70.2 10.2 60.8 26.9L7 122.2c-9.4 16.6-9.4 37.1 0 53.7l53.8 95.3c9.4 16.6 26.7 26.9 45.4 26.9h107.5c18.8 0 36.1-10.2 45.4-26.9l53.8-95.3c9.4-16.6 9.4-37.1 0-53.7l-53.8-95.3C249.8 10.2 232.5 0 213.8 0");
  overflow: hidden; /* ensure inner content respects the clip */
  position: relative;
  z-index: 0;
}
main section.home-services .services-container .services-outer .service-column .image-container .image img {
  width: inherit;
  height: inherit;
  display: block;
  clip-path: inherit;
}
main section.home-services .services-container .services-outer .service-column .content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 25px;
}
main section.home-services .services-container .services-outer .service-column .content span {
  display: block;
  line-height: 100%;
  font-size: 22px;
  font-weight: 600;
}
main section.home-services .services-container .services-outer .service-column .content p {
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 130%;
  text-align: left;
  width: 100%;
  display: block;
}
main section.home-services .services-container .services-outer .service-column:hover .image-container {
  background-color: #313B46;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}
main section.home-services .services-container .services-outer .service-column:hover .image-container .image .outer {
  fill: #313B46;
}
main section.how-it-works {
  background-color: #fff;
  background-image: url("../media/images/bg-how-it-1.png"), url("../media/images/bg-how-it-2.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left bottom, right 15px;
  background-size: 130px, 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main section.how-it-works .work-wrapper {
  gap: 0;
}
main section.how-it-works .work-wrapper .wp-block-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
main section.how-it-works .work-wrapper .wp-block-column:first-of-type {
  flex: 0 0 50%;
  max-width: 50%;
}
main section.how-it-works .work-wrapper .wp-block-column:first-of-type figure {
  width: 100%;
}
main section.how-it-works .work-wrapper .wp-block-column:first-of-type figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main section.how-it-works .work-wrapper .wp-block-column:last-of-type {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 0 10% 0 50px;
  flex: 0 0 50%;
  max-width: 50%;
}
main section.how-it-works .work-wrapper .wp-block-column:last-of-type p {
  font-size: 16px;
  margin: 0;
  padding: 0;
}
main section.how-it-works .work-wrapper .wp-block-column:last-of-type div.wp-block-button.main-link a.wp-element-button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 15px;
  height: 48px;
  line-height: 48px;
  padding: 3px 62px 3px 25px;
  background: #12232D url("../media/images/icon-arrow.png") calc(100% - 3px) center no-repeat;
  background-size: 41px 41px;
  color: #fff;
  font-weight: 500;
}
main section.how-it-works .work-wrapper .wp-block-column:last-of-type div.wp-block-button.main-link a.wp-element-button:hover {
  background-color: #fff;
  color: #000;
}
main section.how-it-works .work-wrapper .how-it-works {
  width: 100%;
  margin: 0 auto;
  gap: 0;
}
main section.how-it-works .processes-wrapper {
  width: 80%;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: -100px auto 80px;
}
main section.how-it-works .processes-wrapper .processes-column {
  border: 1px solid #BBBFC4;
  border-radius: 15px;
  padding: 35px 30px;
  background-color: #fff;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 0;
}
main section.how-it-works .processes-wrapper .processes-column:nth-child(1)::after {
  content: "01";
}
main section.how-it-works .processes-wrapper .processes-column:nth-child(2)::after {
  content: "02";
}
main section.how-it-works .processes-wrapper .processes-column:nth-child(3)::after {
  content: "03";
}
main section.how-it-works .processes-wrapper .processes-column svg {
  width: 85px;
  height: 85px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}
main section.how-it-works .processes-wrapper .processes-column h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
main section.how-it-works .processes-wrapper .processes-column p {
  font-size: 14px;
  font-weight: 400;
  line-height: 135%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
main section.how-it-works .processes-wrapper .processes-column:hover {
  background: #37424E;
  border-color: #37424E;
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.15);
  color: #fff;
}
main section.how-it-works .processes-wrapper .processes-column:hover::after {
  opacity: 0.15;
}
main section.how-it-works .processes-wrapper .processes-column::after {
  transition: 0.3s ease;
  font-size: 90px;
  font-weight: 600;
  line-height: 200px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  background-color: #667381;
  border-radius: 50%;
  color: #fff;
  z-index: 0;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
main section.faqs .faqs-wrapper {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 0;
  width: 100%;
}
main section.faqs .faqs-wrapper .left-column {
  padding: 30px 80px 30px 120px;
  background-color: #EAEEF1;
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
main section.faqs .faqs-wrapper .left-column .faq-wrapper {
  width: 100%;
}
main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item {
  border-bottom: 1px solid #D9D9D9;
  padding: 20px 0;
}
main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item .question {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 0;
  cursor: help;
}
main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item .question span {
  font-size: 22px;
  font-weight: 600;
  display: block;
  line-height: 100%;
  color: #212121;
  transition: 0.3s;
}
main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item .question button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px;
  width: 25px;
  height: 25px;
  border: none;
  background-color: transparent;
}
main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item .question button svg {
  width: 100%;
  transition: 0.8s ease;
}
main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item p {
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin: 0;
  padding: 20px 0 0;
  line-height: 120%;
  color: #667381;
  display: none;
  width: 85%;
  opacity: 0;
  transition: 0.3s ease-in;
}
main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item.active .question span {
  font-size: 23px;
  font-weight: 800;
  color: var(--basic-color3);
}
main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item.active .question button svg {
  transform: rotate(180deg);
}
main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item.active p {
  display: block;
  opacity: 1;
}
main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item:last-of-type {
  border-bottom: none;
}
main section.faqs .faqs-wrapper .right-column {
  position: relative;
  z-index: 0;
}
main section.faqs .faqs-wrapper .right-column figure {
  border-radius: 15px;
  overflow: hidden;
  margin: 0;
}
main section.faqs .faqs-wrapper .right-column figure img {
  position: relative;
  z-index: 0;
}
main section.faqs .faqs-wrapper .right-column .wp-block-columns {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 25px;
  z-index: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
main section.faqs .faqs-wrapper .right-column .wp-block-columns h4 {
  font-size: 35px;
  font-weight: 900;
  line-height: 1;
  display: block;
  margin: 0 0 15px;
  padding: 0;
}
main section.faqs .faqs-wrapper .right-column .wp-block-columns p {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  display: block;
  margin: 15px 0;
  padding: 0;
}
main section.faqs .faqs-wrapper .right-column .wp-block-columns .main-link a.wp-element-button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  height: 52px;
  line-height: 52px;
  padding: 3px 65px 3px 25px;
  background: #12232D url("../media/images/icon-arrow.png") calc(100% - 3px) center no-repeat;
  background-size: 46px;
  color: #fff;
  font-weight: 500;
}
main section.faqs .faqs-wrapper .right-column .wp-block-columns .main-link a.wp-element-button:hover {
  background-color: #fff;
  color: #000;
}
main section.elevate-job {
  background-color: #F7F7F7;
  background-image: url("../media/images/bg-about-section-2.png"), url("../media/images/bg-elevate-1.png"), url("../media/images/bg-elevate-2.png"), url("../media/images/bg-elevate-3.png");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: 200px center, left 10px, 80% center, calc(100% - 50px) bottom;
  background-size: 500px, 30px, 200px, 120px;
  align-items: center;
  margin-top: -15px;
  height: 100vh;
}
main section.elevate-job .elevate-wrapper {
  height: inherit;
}
main section.elevate-job .elevate-wrapper .left-column {
  flex: 0 0 45%;
  height: inherit;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
main section.elevate-job .elevate-wrapper .left-column figure {
  margin: 0;
}
main section.elevate-job .elevate-wrapper .left-column figure img {
  width: auto;
  height: 680px;
}
main section.elevate-job .elevate-wrapper .right-column {
  padding: 0 200px 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 55%;
}
main section.elevate-job .elevate-wrapper .right-column h2 {
  font-size: 2.8vw;
  font-weight: 700;
  width: 80%;
  line-height: 100%;
  display: block;
  margin: 0 0 35px;
  padding: 0;
}
main section.elevate-job .elevate-wrapper .right-column ol {
  display: flex;
  flex-direction: column;
  gap: 30px;
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}
main section.elevate-job .elevate-wrapper .right-column ol li {
  counter-increment: item;
  position: relative;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
main section.elevate-job .elevate-wrapper .right-column ol li:nth-child(2) {
  margin-left: 50px;
}
main section.elevate-job .elevate-wrapper .right-column ol li::before {
  content: counter(item) ".";
  position: absolute;
  left: -20px;
  top: -10px;
  color: #D9D9D9;
  font-size: 80px;
  font-weight: 700;
  line-height: 50px;
  display: block;
}
main section.elevate-job .elevate-wrapper .right-column ol li span {
  font-size: 22px;
  font-weight: 600;
  display: block;
  line-height: 110%;
}
main section.elevate-job .elevate-wrapper .right-column ol li p {
  font-size: 16px;
  font-weight: 400;
  display: block;
  line-height: 130%;
  color: #667381;
}
main section.home-blog {
  padding: 80px 0 150px;
  background-color: #fff;
  background-image: url("../media/images/blog-bg-1.png"), url("../media/images/blog-bg-2.png"), url(../media/images/blog-bg.webp);
  background-position: left top, left 100%, center center;
  background-size: 120px, 140px, 80%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}
main section.home-blog .home-blog-wrapper {
  width: 80%;
  margin: 0 auto;
  gap: 0;
}
main section.home-blog .home-blog-wrapper .left-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 0 0 50%;
  max-width: 50%;
}
main section.home-blog .home-blog-wrapper .right-column {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 50%;
  max-width: 50%;
}
main section.home-blog .home-blog-wrapper .right-column div.wp-block-button.view-all a.wp-block-button__link {
  height: 52px;
  border-radius: 26px;
  padding: 3px 30px 3px 60px;
  background: #12232D url("../media/images/icon-arrow.png") 3px center no-repeat;
  background-size: 42px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
main section.home-blog .home-blog-wrapper .right-column div.wp-block-button.view-all a.wp-block-button__link:hover {
  background-color: #fff;
  color: var(--basic-color2);
}
main section.home-blog .blog-container {
  width: 80%;
  margin: 0 auto;
  display: block;
  padding: 0;
}
main section.home-blog .blog-container .post-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 15px;
  margin: 0 0 25px;
}
main section.home-blog .blog-container .post-item .post-image-url {
  display: block;
  width: 240px;
  height: 170px;
  border-radius: 12px;
  overflow: hidden;
}
main section.home-blog .blog-container .post-item .post-image-url img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main section.home-blog .blog-container .post-item .post-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 3px 0;
}
main section.home-blog .blog-container .post-item .post-content .post-content-basic {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
main section.home-blog .blog-container .post-item .post-content .post-content-basic ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
  justify-content: flex-start;
  align-items: center;
}
main section.home-blog .blog-container .post-item .post-content .post-content-basic ul li {
  font-size: 12px;
  color: #313B46;
}
main section.home-blog .blog-container .post-item .post-content .post-content-basic ul li span {
  font-size: 14px;
  font-weight: 500;
  color: #424C57;
  text-transform: capitalize;
}
main section.home-blog .blog-container .post-item .post-content .post-content-basic a {
  display: block;
  color: #313B46;
}
main section.home-blog .blog-container .post-item .post-content .post-content-basic a h3 {
  display: block;
  line-height: 100%;
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  padding: 0;
}
main section.home-blog .blog-container .post-item .post-content .post-content-basic a:hover {
  color: var(--basic-color3);
}
main section.home-blog .blog-container .post-item .post-content .post-content-basic p.post-excerpt {
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 130%;
}
main section.home-blog .blog-container .post-item .post-content a.post-link {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: #313B46;
  gap: 5px;
}
main section.home-blog .blog-container .post-item .post-content a.post-link svg {
  width: 22px;
  transition: 0.3s ease;
}
main section.home-blog .blog-container .post-item .post-content a.post-link:hover {
  color: #000;
}
main section.home-blog .blog-container .post-item .post-content a.post-link:hover svg {
  margin-left: 5px;
}
main section.home-blog .blog-container .post-item .post-content a.post-link:hover svg path {
  fill: #000;
}
main section.home-blog .blog-container .post-item:last-of-type {
  margin-bottom: 0;
}
main section.home-blog .blog-container .featured-post {
  position: relative;
  z-index: 0;
}
main section.home-blog .blog-container .featured-post .image {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 365px;
  border-radius: 12px;
  overflow: hidden;
}
main section.home-blog .blog-container .featured-post .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main section.home-blog .blog-container .featured-post .image::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
}
main section.home-blog .blog-container .featured-post .featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  color: #fff;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
main section.home-blog .blog-container .featured-post .featured-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
}
main section.home-blog .blog-container .featured-post .featured-content ul li {
  font-size: 13px;
}
main section.home-blog .blog-container .featured-post .featured-content ul li span {
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
}
main section.home-blog .blog-container .featured-post .featured-content a.post-title {
  color: #fff;
  display: block;
}
main section.home-blog .blog-container .featured-post .featured-content a.post-title h3 {
  display: block;
  line-height: 100%;
  font-size: 30px;
  font-weight: 800;
  margin: 0;
  padding: 0;
}
main section.home-blog .blog-container .featured-post .featured-content p.post-excerpt {
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin: 0 0 15px;
  padding: 0;
  line-height: 120%;
}
main section.home-blog .blog-container .featured-post .featured-content a.post-link {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  gap: 5px;
}
main section.home-blog .blog-container .featured-post .featured-content a.post-link svg {
  width: 25px;
  transition: 0.3s ease;
}
main section.home-blog .blog-container .featured-post .featured-content a.post-link:hover svg {
  margin-left: 5px;
}
main section.about-who {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: url("../media/images/bg-about-section-1.png"), url("../media/images/bg-about-section-2.png"), url("../media/images/bg-about-section-3.png");
  background-position: left top, 48% center, right 110%;
  background-repeat: no-repeat;
  background-size: 120px, 440px, 130px;
  padding: 50px 0 80px;
}
main section.about-who .about-who-wrapper {
  display: flex;
  justify-content: center;
  width: 80%;
}
main section.about-who .about-who-wrapper .left-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  padding-right: 50px;
}
main section.about-who .about-who-wrapper .left-column h4 {
  margin-bottom: 5px;
}
main section.about-who .about-who-wrapper .left-column h2 {
  font-size: 2.6vw;
}
main section.about-who .about-who-wrapper .left-column h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 10px 0 0;
}
main section.about-who .about-who-wrapper .left-column p {
  margin: 10px 0 0;
  padding: 0;
  line-height: 130%;
  font-size: 16px;
}
main section.about-who .about-who-wrapper .right-column {
  position: relative;
  z-index: 0;
}
main section.about-who .about-who-wrapper .right-column figure.large-image {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
}
main section.about-who .about-who-wrapper .right-column figure.large-image img {
  width: 100%;
}
main section.about-who .about-who-wrapper .right-column figure.small-image {
  position: absolute;
  z-index: 2;
  left: -50px;
  bottom: -80px;
}
main section.about-who .about-who-wrapper .right-column figure.small-image img {
  width: 75%;
}
main section.about-process {
  padding: 50px 0 0;
  flex-direction: column;
  gap: 15px;
}
main section.about-process h2 {
  width: 80%;
  padding-right: 50%;
}
main section.about-process .process-wrapper {
  width: 95%;
  gap: 15px;
}
main section.about-process .process-wrapper .image-column {
  flex: 0 0 45%;
  max-width: 45%;
  min-height: 90%;
}
main section.about-process .process-wrapper .image-column figure {
  width: 100%;
  height: 90%;
  margin: 0;
  padding: 0;
  border-radius: 15px;
  overflow: hidden;
}
main section.about-process .process-wrapper .image-column figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}
main section.about-process .process-wrapper .content-column {
  flex: 0 0 55%;
  max-width: 55%;
  min-height: 100%;
}
main section.about-process .process-wrapper .content-column .columns-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 15px;
  min-height: 90%;
}
main section.about-process .process-wrapper .content-column .columns-wrapper .process-step {
  background-color: #fff;
  padding: 35px;
  border: 1px solid #BBBFC4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  border-radius: 20px;
}
main section.about-process .process-wrapper .content-column .columns-wrapper .process-step:nth-child(1) {
  background: #fff url("../media/images/process-1.webp") 140% center no-repeat;
  background-size: 270px;
}
main section.about-process .process-wrapper .content-column .columns-wrapper .process-step:nth-child(2) {
  background: #fff url("../media/images/process-2.webp") 140% center no-repeat;
  background-size: 270px;
}
main section.about-process .process-wrapper .content-column .columns-wrapper .process-step:nth-child(3) {
  background: #fff url("../media/images/process-3.webp") 140% center no-repeat;
  background-size: 270px;
}
main section.about-process .process-wrapper .content-column .columns-wrapper .process-step:nth-child(4) {
  background: #fff url("../media/images/process-4.webp") 140% center no-repeat;
  background-size: 270px;
}
main section.about-process .process-wrapper .content-column .columns-wrapper .process-step svg {
  width: 90px;
  height: 90px;
  display: block;
}
main section.about-process .process-wrapper .content-column .columns-wrapper .process-step h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 120%;
  color: #313B46;
}
main section.about-process .process-wrapper .content-column .columns-wrapper .process-step p {
  font-size: 15px;
  font-weight: 400;
  line-height: 135%;
  display: block;
  margin: 0;
  padding: 0;
  color: #000;
}
main section.about-experts {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
main section.about-experts .about-experts-wrapper {
  gap: 0;
}
main section.about-experts .about-experts-wrapper .left-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 0 50px 0 150px;
  flex: 0 0 50%;
  max-width: 50%;
}
main section.about-experts .about-experts-wrapper .left-column h2 {
  width: 70%;
}
main section.about-experts .about-experts-wrapper .left-column p {
  font-size: 17px;
  width: 85%;
  margin: 0;
  padding: 0;
  line-height: 120%;
}
main section.about-experts .about-experts-wrapper .right-column {
  flex: 0 0 50%;
  max-width: 50%;
}
main section.about-experts .about-experts-wrapper .right-column figure {
  width: 100%;
}
main section.about-experts .about-experts-wrapper .right-column figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main section.about-experts #our-expers-wrapper {
  width: 85%;
  margin: 0 auto 70px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  justify-content: center;
  align-items: center;
  margin-top: -100px;
}
main section.about-experts #our-expers-wrapper .our-expers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a.image {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background-color: var(--basic-color2);
  margin-bottom: 10px;
  width: 100%;
  height: 420px;
}
main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a.image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.3s ease;
}
main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a.image:hover img {
  transform: scale(1.1, 1.1);
}
main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item h3 {
  display: block;
  line-height: 100%;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 5px;
  padding: 0;
}
main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item span {
  font-size: 14px;
  font-weight: 400;
  display: block;
  line-height: 130%;
}
main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  gap: 12px;
  margin: 20px 0 0;
  width: 100px;
}
main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a svg {
  width: 28px;
  height: 28px;
  display: block;
}
main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a:hover {
  font-weight: 600;
}
main section.about-experts #our-expers-wrapper #our-expers-load-more {
  height: 48px;
  border-radius: 24px;
  color: #fff;
  background-color: #000;
  padding: 3px 30px 3px 3px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
  display: none;
}
main section.about-experts #our-expers-wrapper #our-expers-load-more svg {
  width: 42px;
  height: 42px;
  transition: 0.3s ease;
}
main section.about-experts #our-expers-wrapper #our-expers-load-more:hover {
  background-color: var(--basic-color2);
  color: #fff;
}
main section.about-experts #our-expers-wrapper #our-expers-load-more:hover svg {
  transform: rotate(90deg);
}
main section.our-experts-single {
  padding: 50px 0 140px;
}
main section.our-experts-single div.info {
  background-color: #EAEEF1;
  padding: 20px 20px 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
main section.our-experts-single div.info .expert-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
}
main section.our-experts-single div.info .expert-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main section.our-experts-single div.info h2 {
  font-size: 26px;
  font-weight: 800;
  display: block;
  line-height: 110%;
  margin: 0;
  padding: 0;
}
main section.our-experts-single div.info h3 {
  font-size: 13px;
  font-weight: 700;
  display: block;
  line-height: 100%;
  margin: 0 0 5px;
  padding: 0;
  color: var(--basic-color1);
}
main section.our-experts-single div.info hr {
  border: none;
  height: 1px;
  opacity: 1;
  background-color: #D9D9D9;
  margin: 10px 0 20px;
  pad: 0;
}
main section.our-experts-single div.info .expert-meta span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
  color: var(--basic-color1);
}
main section.our-experts-single div.info .expert-meta ul.info-ul {
  line-height: 100%;
  margin: 10px 0 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
}
main section.our-experts-single div.info .expert-meta ul.info-ul li {
  line-height: 120%;
  display: block;
  margin-bottom: 2px;
  padding: 0 0 0 15px;
  position: relative;
}
main section.our-experts-single div.info .expert-meta ul.info-ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  font-weight: 500;
}
main section.our-experts-single div.info .social {
  margin-top: 35px;
}
main section.our-experts-single div.info .social a {
  display: table;
}
main section.our-experts-single div.info .social a svg {
  width: 35px;
  height: 35px;
  display: block;
}
main section.our-experts-single a.back {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: flex-end;
  color: var(--basic-color1);
}
main section.our-experts-single h3 {
  font-size: 28px;
  font-weight: 500;
  display: block;
}
main section.our-experts-single blockquote.wp-block-quote {
  border-left: 5px solid var(--basic-color2);
  padding: 15px 15px 15px 25px;
  margin: 35px 0 0;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.02);
}
main section.our-experts-single blockquote.wp-block-quote p {
  font-size: 20px;
  display: block;
  line-height: 140%;
  margin-bottom: 10px;
}
main section.our-experts-single blockquote.wp-block-quote h5 {
  font-size: 15px;
  font-weight: 700;
  line-height: 100%;
}
main section.our-experts-single p {
  display: block;
  margin: 0 0 15px;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  color: #333;
}
main section.our-experts-single ul.wp-block-list {
  list-style: none;
  margin: 25px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
}
main section.our-experts-single ul.wp-block-list li {
  line-height: 120%;
  display: block;
  padding: 0 0 0 15px;
  position: relative;
}
main section.our-experts-single ul.wp-block-list li::before {
  content: "●";
  font-size: 13px;
  font-weight: 700;
  position: absolute;
  color: var(--basic-color1);
  left: 0;
  top: 0;
}
main section.counter {
  background: #313B46 url("../media/images/bg-counter-1.png") 85% center no-repeat;
  background-size: 170px;
  padding: 80px 0;
}
main section.counter .counter-wrapper {
  width: 80%;
  margin: 0 auto;
}
main section.counter .counter-wrapper .item {
  padding: 30px 0;
  color: #fff;
  text-align: center;
}
main section.counter .counter-wrapper .item h2 {
  font-size: 4.6vw;
  font-weight: 900;
  display: block;
  line-height: 110%;
  margin: 0;
  padding: 0;
}
main section.counter .counter-wrapper .item h6 {
  font-size: 14px;
  font-weight: 400;
  display: block;
  line-height: 110%;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
main section.testimonial {
  background: #fff url("../media/images/bg-testimonials.webp") center center no-repeat;
  background-size: 100% auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  padding: 80px 0 180px;
}
main section.testimonial h4.wp-block-heading {
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #5A646F;
  line-height: 34px;
  padding: 0 25px;
  border-radius: 17px;
  display: block;
  margin: 0;
}
main section.testimonial h2.wp-block-heading {
  display: block;
  line-height: 150%;
  font-size: 2.4vw;
  font-weight: 800;
  margin: 0;
  padding: 0;
}
main section.testimonial .swiper {
  margin-top: 15px;
  height: 100%;
  width: 100%;
}
main section.testimonial .swiper .swiper-wrapper {
  height: 100%;
  width: 100%;
}
main section.testimonial .swiper .swiper-wrapper .swiper-slide .content {
  border: 1px solid #bbbfc4;
  border-radius: 20px;
  padding: 25px 35px;
  background-color: #fff;
}
main section.testimonial .swiper .swiper-wrapper .swiper-slide .content svg {
  width: 100px;
}
main section.testimonial .swiper .swiper-wrapper .swiper-slide .content p {
  font-size: 15px;
  font-weight: 500;
  line-height: 140%;
  margin: 15px 0;
}
main section.testimonial .swiper .swiper-wrapper .swiper-slide .content ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
}
main section.testimonial .swiper .swiper-wrapper .swiper-slide .content ul li img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
main section.testimonial .swiper .swiper-wrapper .swiper-slide .content ul li strong {
  font-size: 15px;
  display: block;
  line-height: 120%;
  font-weight: 600;
}
main section.testimonial .swiper .swiper-wrapper .swiper-slide .content ul li span {
  font-size: 12px;
  display: block;
  line-height: 120%;
  font-weight: 500;
}
main section.employer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: url("../media/images/bg-about-section-1.png"), url("../media/images/bg-about-section-2.png"), url("../media/images/bg-about-section-3.png");
  background-position: left top, 30% center, right 110%;
  background-repeat: no-repeat;
  background-size: 120px, 440px, 130px;
  padding: 50px 0 80px;
}
main section.employer .employer-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
}
main section.employer .employer-wrapper .right-column {
  position: relative;
  z-index: 0;
}
main section.employer .employer-wrapper .right-column figure.large-image {
  position: relative;
  z-index: 1;
}
main section.employer .employer-wrapper .right-column figure.large-image img {
  width: 85%;
}
main section.employer .employer-wrapper .right-column figure.small-image {
  position: absolute;
  z-index: 2;
  right: -65px;
  bottom: 20px;
}
main section.employer .employer-wrapper .right-column figure.small-image img {
  width: 70%;
}
main section.employer .employer-wrapper .left-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  padding-right: 25px;
}
main section.employer .employer-wrapper .left-column h4 {
  margin-bottom: 5px;
}
main section.employer .employer-wrapper .left-column h2 {
  font-size: 2.6vw;
}
main section.employer .employer-wrapper .left-column h3 {
  font-size: 22px;
  font-weight: 500;
}
main section.employer .employer-wrapper .left-column p {
  margin: 15px 0 0;
  padding: 0;
  line-height: 140%;
  font-size: 17px;
}
main section.employer .employer-wrapper .left-column div.wp-block-button.main-link a.wp-element-button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 15px;
  height: 48px;
  line-height: 48px;
  padding: 3px 62px 3px 25px;
  background: #12232D url("../media/images/icon-arrow.png") calc(100% - 3px) center no-repeat;
  background-size: 41px 41px;
  color: #fff;
  font-weight: 500;
}
main section.employer .employer-wrapper .left-column div.wp-block-button.main-link a.wp-element-button:hover {
  background-color: #fff;
  color: #000;
}
main section.employer-form {
  padding: 50px 0;
  background: #FDFDFD url(../media/images/globe.png) calc(60% + 50px) 100px no-repeat fixed;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
}
main section.employer-form .employer-form-wrapper {
  width: 80%;
  margin: 0 auto;
}
main section.employer-form .employer-form-wrapper .left-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
main section.employer-form .employer-form-wrapper .left-column h3 {
  display: block;
  font-size: 30px;
  line-height: 110%;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
main section.employer-form .employer-form-wrapper .left-column p {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  color: #000;
}
main section.employer-form .employer-form-wrapper .right-column {
  padding-top: 50px;
}
main section.employer-form .employer-form-wrapper .right-column p {
  font-size: 15px;
  line-height: 130%;
  font-weight: 500;
  margin: 0 0 15px;
}
main section.employer-form .employer-form-wrapper .right-column p:last-of-type {
  margin: 0;
}
main section.employer-form form#employer-form {
  width: 80%;
  margin: 0 auto;
  padding: 40px 0;
  background-size: 100px;
}
main section.employer-form form#employer-form h5 {
  display: block;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 18px;
  padding: 0;
}
main section.employer-form form#employer-form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 8px;
}
main section.employer-form form#employer-form label span {
  display: flex;
  gap: 5px;
  line-height: 30px;
  font-weight: 500;
}
main section.employer-form form#employer-form label span em.star {
  color: red;
  font-size: 22px;
  font-weight: 600;
  display: block;
}
main section.employer-form form#employer-form label input[type=text], main section.employer-form form#employer-form label input[type=email], main section.employer-form form#employer-form label input[type=tel] {
  display: block;
  background-color: #fff;
  padding: 0 15px;
  border: 1px solid #BBBFC4;
  font-weight: 500;
  height: 48px;
  width: 100%;
  border-radius: 6px;
}
main section.employer-form form#employer-form label input[type=text]:focus, main section.employer-form form#employer-form label input[type=email]:focus, main section.employer-form form#employer-form label input[type=tel]:focus {
  border-color: #667381;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}
main section.employer-form form#employer-form label input[type=date] {
  display: block;
  background: #fff url("../media/images/icon-calendar.png") calc(100% - 15px) center no-repeat;
  background-size: 20px;
  padding: 0 15px;
  border: 1px solid #BBBFC4;
  font-weight: 500;
  height: 48px;
  width: 100%;
  border-radius: 6px;
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: textfield;
  position: relative;
}
main section.employer-form form#employer-form label input[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}
main section.employer-form form#employer-form label input[type=date]:focus {
  border-color: #667381;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}
main section.employer-form form#employer-form label select {
  display: block;
  background: #fff url("../media/images/dd-arrow.png") calc(100% - 15px) center no-repeat;
  background-size: 9px;
  padding: 0 15px;
  border: 1px solid #BBBFC4;
  font-weight: 500;
  height: 48px;
  width: 100%;
  border-radius: 6px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
main section.employer-form form#employer-form label select:focus {
  border-color: #667381;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}
main section.employer-form form#employer-form label textarea {
  display: block;
  background-color: #fff;
  background-size: 9px;
  padding: 15px;
  border: 1px solid #BBBFC4;
  font-weight: 500;
  height: 120px;
  width: 100%;
  border-radius: 6px;
}
main section.employer-form form#employer-form label .resume-upload {
  max-width: 100%;
  border: 1px dashed #BBBFC4;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
  text-align: center;
  padding: 30px 25px;
  position: relative;
  overflow: hidden;
}
main section.employer-form form#employer-form label .resume-upload div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  line-height: 100%;
}
main section.employer-form form#employer-form label .resume-upload div svg {
  width: 50px;
  display: block;
  margin: 0 auto 30px;
}
main section.employer-form form#employer-form label .resume-upload div strong {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0;
  padding: 0;
  line-height: 120%;
}
main section.employer-form form#employer-form label .resume-upload div span {
  font-size: 13px;
  font-weight: 400;
  color: #5A646F;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 100%;
}
main section.employer-form form#employer-form label .resume-upload div span.browse {
  border: 1px solid #DDDDDD;
  font-size: 14px;
  padding: 0 15px;
  border-radius: 6px;
  line-height: 32px;
  margin-top: 20px;
}
main section.employer-form form#employer-form label .resume-upload .upload-content small {
  color: #64748b;
  display: block;
  margin-top: 8px;
}
main section.employer-form form#employer-form label .resume-upload .file-name {
  margin-top: 12px;
  font-size: 14px;
  color: #16a34a;
  font-weight: 500;
  display: none;
}
main section.employer-form form#employer-form label .resume-upload.blink-border {
  animation: blinkBorder 0.6s linear 3;
  border-color: red;
}
@keyframes blinkBorder {
  0% {
    border-color: red;
  }
  50% {
    border-color: transparent;
  }
  100% {
    border-color: red;
  }
}
main section.employer-form form#employer-form label .resume-upload:hover, main section.employer-form form#employer-form label .resume-upload.dragover {
  border-color: #2563eb;
  background: #eff6ff;
}
main section.employer-form form#employer-form label.i-agree {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
main section.employer-form form#employer-form label.i-agree input#i-agree {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url("../media/images/icon-checkbox-0.png") center center no-repeat;
  background-size: 18px 17.46px;
  display: block;
  width: 18px;
  height: 17.46px;
  cursor: pointer;
}
main section.employer-form form#employer-form label.i-agree input#i-agree:checked {
  background: url("../media/images/icon-checkbox-1.png") center center no-repeat;
  background-size: 18px 17.46px;
}
main section.employer-form form#employer-form label.i-agree span.i-agree {
  font-size: 13px;
  line-height: 18px;
}
main section.employer-form form#employer-form label.i-agree span.i-agree strong {
  font-weight: 700;
}
main section.employer-form form#employer-form label.i-agree span.i-agree a {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: #000;
  line-height: 18px;
}
main section.employer-form form#employer-form label.i-agree span.i-agree a:hover {
  text-decoration: underline;
}
main section.employer-form form#employer-form label span.error-message {
  font-weight: 600;
  font-size: 13px;
  color: red;
}
main section.employer-form form#employer-form button[type=submit].form-submit {
  height: 52px;
  border-radius: 26px;
  padding: 3px 25px 3px 3px;
  border: none;
  background: #12232D;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
main section.employer-form form#employer-form button[type=submit].form-submit svg {
  width: 45px;
  height: 45px;
  transition: 0.3s ease;
  margin-right: 10px;
}
main section.employer-form form#employer-form button[type=submit].form-submit:hover {
  background: var(--basic-color2);
}
main section.employer-form form#employer-form button[type=submit].form-submit:hover svg {
  transform: rotate(90deg);
}
main section.employer-form form#employer-form button[type=submit].form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
main section.employer-form form#employer-form em.note {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin: 15px 0;
}
main section.employer-form form#employer-form div.results {
  font-size: 15px;
  font-weight: 600;
  display: block;
  color: var(--basic-color3);
  line-height: 1;
  margin-top: 20px;
}
main section.candidate {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: url("../media/images/candidate-image-2.webp");
  background-position: 20% center;
  background-repeat: no-repeat;
  background-size: 600px;
  padding: 50px 0 0;
}
main section.candidate .candidate-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
}
main section.candidate .candidate-wrapper .left-column {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 0;
}
main section.candidate .candidate-wrapper .left-column figure.large-image {
  height: 650px;
  position: relative;
  z-index: 1;
}
main section.candidate .candidate-wrapper .left-column figure.large-image img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main section.candidate .candidate-wrapper .right-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  padding-right: 25px;
}
main section.candidate .candidate-wrapper .right-column h4 {
  margin-bottom: 5px;
}
main section.candidate .candidate-wrapper .right-column h2 {
  font-size: 2.6vw;
}
main section.candidate .candidate-wrapper .right-column h3 {
  font-size: 22px;
  font-weight: 500;
}
main section.candidate .candidate-wrapper .right-column p {
  margin: 15px 0 0;
  padding: 0;
  line-height: 140%;
  font-size: 17px;
}
main section.candidate .candidate-wrapper .right-column ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
}
main section.candidate .candidate-wrapper .right-column ul li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
}
main section.candidate .candidate-wrapper .right-column ul li svg {
  width: 50px;
  height: 50px;
}
main section.candidate .candidate-wrapper .right-column ul li div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 0;
}
main section.candidate .candidate-wrapper .right-column ul li div span {
  font-size: 17px;
  font-weight: 700;
}
main section.candidate .candidate-wrapper .right-column ul li div p {
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  margin: 0;
  padding: 0;
  display: block;
}
main section.candidate-form {
  padding: 50px 0;
  background: #FDFDFD url(../media/images/globe.png) calc(60% + 50px) 100px no-repeat fixed;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
}
main section.candidate-form .candidate-form-wrapper {
  width: 80%;
  margin: 0 auto;
}
main section.candidate-form .candidate-form-wrapper .left-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
main section.candidate-form .candidate-form-wrapper .left-column h3 {
  display: block;
  font-size: 30px;
  line-height: 110%;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
main section.candidate-form .candidate-form-wrapper .left-column p {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  color: #000;
}
main section.candidate-form form#candidate-form {
  width: 80%;
  margin: 0 auto;
  padding: 50px 0;
  background-size: 100px;
}
main section.candidate-form form#candidate-form h5 {
  display: block;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 25px;
  padding: 0;
}
main section.candidate-form form#candidate-form .if-yes {
  display: none;
}
main section.candidate-form form#candidate-form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 8px;
}
main section.candidate-form form#candidate-form label span {
  display: flex;
  gap: 5px;
  line-height: 30px;
  font-weight: 400;
}
main section.candidate-form form#candidate-form label span em.star {
  color: red;
  font-size: 22px;
  font-weight: 600;
  display: block;
}
main section.candidate-form form#candidate-form label input[type=text] {
  display: block;
  background-color: #fff;
  padding: 0 15px;
  border: 1px solid #BBBFC4;
  font-weight: 500;
  height: 48px;
  width: 100%;
  border-radius: 6px;
}
main section.candidate-form form#candidate-form label input[type=text]:focus {
  border-color: #667381;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}
main section.candidate-form form#candidate-form label input[type=tel] {
  display: block;
  background-color: #fff;
  padding: 0 15px;
  border: 1px solid #BBBFC4;
  font-weight: 500;
  height: 48px;
  width: calc(100% - 58px);
  border-radius: 6px;
}
main section.candidate-form form#candidate-form label input[type=tel]:focus {
  border-color: #667381;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}
main section.candidate-form form#candidate-form label input[type=email] {
  display: block;
  background-color: #fff;
  padding: 0 15px;
  border: 1px solid #BBBFC4;
  font-weight: 500;
  height: 48px;
  width: 100%;
  border-radius: 6px;
}
main section.candidate-form form#candidate-form label input[type=email]:focus {
  border-color: #667381;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}
main section.candidate-form form#candidate-form label input[type=date] {
  display: block;
  background: #fff url("../media/images/icon-calendar.png") calc(100% - 15px) center no-repeat;
  background-size: 20px;
  padding: 0 15px;
  border: 1px solid #BBBFC4;
  font-weight: 500;
  height: 48px;
  width: 100%;
  border-radius: 6px;
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: textfield;
  position: relative;
}
main section.candidate-form form#candidate-form label input[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}
main section.candidate-form form#candidate-form label input[type=date]:focus {
  border-color: #667381;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}
main section.candidate-form form#candidate-form label select {
  display: block;
  background: #fff url("../media/images/dd-arrow.png") calc(100% - 15px) center no-repeat;
  background-size: 9px;
  padding: 0 15px;
  border: 1px solid #BBBFC4;
  font-weight: 500;
  height: 48px;
  width: 100%;
  border-radius: 6px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
main section.candidate-form form#candidate-form label select:focus {
  border-color: #667381;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}
main section.candidate-form form#candidate-form label textarea {
  display: block;
  background-color: #fff;
  background-size: 9px;
  padding: 15px;
  border: 1px solid #BBBFC4;
  font-weight: 500;
  height: 120px;
  width: 100%;
  border-radius: 6px;
}
main section.candidate-form form#candidate-form label .tag-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
}
main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container {
  display: flex;
  gap: 5px;
  flex-wrap: nowrap;
  margin-right: 5px;
}
main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container .tag {
  background: #cfd4da;
  padding: 0 6px 0 8px;
  line-height: 26px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  height: 26px;
  gap: 10px;
  text-transform: capitalize;
  font-weight: 500;
  transition: 0.3s ease;
}
main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container .tag button {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  font-size: 12px;
  font-weight: 800;
  line-height: 15px;
  cursor: pointer;
}
main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container .tag button svg {
  width: 100%;
  height: 100%;
}
main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container .tag:hover {
  background-color: #64748b;
  color: #fff;
}
main section.candidate-form form#candidate-form label .resume-upload {
  max-width: 100%;
  border: 1px dashed #BBBFC4;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
  text-align: center;
  padding: 30px 25px;
}
main section.candidate-form form#candidate-form label .resume-upload div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  line-height: 100%;
}
main section.candidate-form form#candidate-form label .resume-upload div svg {
  width: 50px;
  display: block;
  margin: 0 auto 30px;
}
main section.candidate-form form#candidate-form label .resume-upload div strong {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0;
  padding: 0;
  line-height: 120%;
}
main section.candidate-form form#candidate-form label .resume-upload div span {
  font-size: 13px;
  font-weight: 400;
  color: #5A646F;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 100%;
}
main section.candidate-form form#candidate-form label .resume-upload div span.browse {
  border: 1px solid #DDDDDD;
  font-size: 14px;
  padding: 0 15px;
  border-radius: 6px;
  line-height: 32px;
  margin-top: 20px;
}
main section.candidate-form form#candidate-form label .resume-upload .upload-content small {
  color: #64748b;
  display: block;
  margin-top: 8px;
}
main section.candidate-form form#candidate-form label .resume-upload .file-name {
  margin-top: 12px;
  font-size: 14px;
  color: #16a34a;
  font-weight: 500;
  display: none;
}
main section.candidate-form form#candidate-form label .resume-upload:hover, main section.candidate-form form#candidate-form label .resume-upload.dragover {
  border-color: #2563eb;
  background: #eff6ff;
}
main section.candidate-form form#candidate-form label.i-agree, main section.candidate-form form#candidate-form label.i-confirm {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
main section.candidate-form form#candidate-form label.i-agree input#i-agree, main section.candidate-form form#candidate-form label.i-agree input#i-confirm, main section.candidate-form form#candidate-form label.i-confirm input#i-agree, main section.candidate-form form#candidate-form label.i-confirm input#i-confirm {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url("../media/images/icon-checkbox-0.png") center center no-repeat;
  background-size: 18px 17.46px;
  display: block;
  width: 18px;
  height: 17.46px;
  cursor: pointer;
}
main section.candidate-form form#candidate-form label.i-agree input#i-agree:checked, main section.candidate-form form#candidate-form label.i-agree input#i-confirm:checked, main section.candidate-form form#candidate-form label.i-confirm input#i-agree:checked, main section.candidate-form form#candidate-form label.i-confirm input#i-confirm:checked {
  background: url("../media/images/icon-checkbox-1.png") center center no-repeat;
  background-size: 18px 17.46px;
}
main section.candidate-form form#candidate-form label.i-agree span.i-agree, main section.candidate-form form#candidate-form label.i-agree span.i-confirm, main section.candidate-form form#candidate-form label.i-confirm span.i-agree, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm {
  font-size: 14px;
}
main section.candidate-form form#candidate-form label.i-agree span.i-agree strong, main section.candidate-form form#candidate-form label.i-agree span.i-confirm strong, main section.candidate-form form#candidate-form label.i-confirm span.i-agree strong, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm strong {
  font-weight: 700;
}
main section.candidate-form form#candidate-form label.i-agree span.i-agree a, main section.candidate-form form#candidate-form label.i-agree span.i-confirm a, main section.candidate-form form#candidate-form label.i-confirm span.i-agree a, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #000;
}
main section.candidate-form form#candidate-form label.i-agree span.i-agree a:hover, main section.candidate-form form#candidate-form label.i-agree span.i-confirm a:hover, main section.candidate-form form#candidate-form label.i-confirm span.i-agree a:hover, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm a:hover {
  text-decoration: underline;
}
main section.candidate-form form#candidate-form label span.error-message {
  font-weight: 600;
  font-size: 13px;
  color: red;
}
main section.candidate-form form#candidate-form button[type=submit].form-submit {
  height: 54px;
  border-radius: 27px;
  padding: 3px 25px 3px 3px;
  border: none;
  background: #12232D;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
main section.candidate-form form#candidate-form button[type=submit].form-submit svg {
  width: 46px;
  height: 46px;
  transition: 0.3s ease;
  margin-right: 10px;
}
main section.candidate-form form#candidate-form button[type=submit].form-submit:hover {
  background: var(--basic-color2);
}
main section.candidate-form form#candidate-form button[type=submit].form-submit:hover svg {
  transform: rotate(90deg);
}
main section.candidate-form form#candidate-form button[type=submit].form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
main section.candidate-form form#candidate-form em.note {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin: 15px 0;
}
main section.candidate-form form#candidate-form div.results {
  font-size: 15px;
  font-weight: 600;
  display: block;
  color: var(--basic-color3);
  line-height: 1;
  margin-top: 20px;
}
main section.blog {
  padding: 20px 0 130px;
  background: #fff url("../media/images/bg-blog-1.png") bottom calc(100% - 50px) no-repeat;
  background-size: 100px;
}
main section.blog h2 {
  font-size: 2vw;
  display: block;
  line-height: 100%;
  font-weight: 700;
}
main section.blog hr {
  border: none;
  height: 1px;
  opacity: 1;
  background-color: #D9D9D9;
  margin: 10px 0;
  pad: 0;
}
main section.blog .blog-item {
  border: 1px solid #D9D9D9;
  background-color: #fff;
  border-radius: 10px;
  transition: 0.3s ease;
  height: 100%;
}
main section.blog .blog-item a.image {
  display: block;
  width: 100%;
  height: 280px;
  background-color: var(--basic-color1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
main section.blog .blog-item a.image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  transition: 1.2s ease;
}
main section.blog .blog-item a.image .blog-date {
  position: absolute;
  z-index: 5;
  right: 15px;
  bottom: 15px;
  background-color: #0d2432;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 5px;
  transition: all 0.5s ease;
}
main section.blog .blog-item a.image .blog-date svg {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
main section.blog .blog-item a.image .blog-date span {
  font-size: 14px;
  font-weight: 500;
  display: block;
  line-height: 16px;
}
main section.blog .blog-item a.image .tags-div {
  position: absolute;
  right: 15px;
  top: 15px;
  right: 15px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
main section.blog .blog-item a.image .tags-div em {
  background-color: #fff;
  color: var(--basic-color2);
  font-size: 12px;
  font-style: normal;
  padding: 0 10px;
  font-weight: 500;
  line-height: 25px;
  display: block;
  border-radius: 4px;
}
main section.blog .blog-item a.image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 15%, transparent 45%);
}
main section.blog .blog-item a.image:hover img {
  transform: scale(1.2, 1.2);
}
main section.blog .blog-item a.image:hover .blog-date {
  background-color: #fff;
  color: #0d2432;
}
main section.blog .blog-item a.image:hover .blog-date svg path {
  fill: #0d2432;
}
main section.blog .blog-item .content {
  padding: 30px 20px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
}
main section.blog .blog-item .content ul {
  list-style: none;
  color: #424C57;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
main section.blog .blog-item .content ul span {
  font-size: 13px;
  font-weight: 600;
}
main section.blog .blog-item .content a.link {
  color: #333A41;
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 110%;
  text-decoration: none;
  margin: 10px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
main section.blog .blog-item .content a.link:hover {
  color: #000;
}
main section.blog .blog-item .content p {
  margin: 10px 0 0;
  padding: 0;
  line-height: 125%;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333A41;
  flex: 1;
}
main section.blog .blog-item .content a.readmore {
  margin: 10px 0 0;
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--basic-color1);
}
main section.blog .blog-item .content a.readmore svg {
  width: 22px;
  transition: 0.3s ease;
}
main section.blog .blog-item .content a.readmore svg path {
  fill: var(--basic-color1);
}
main section.blog .blog-item .content a.readmore:hover {
  color: var(--basic-color3);
}
main section.blog .blog-item .content a.readmore:hover svg {
  margin-left: 10px;
}
main section.blog .blog-item .content a.readmore:hover svg path {
  fill: var(--basic-color3);
}
main section.blog .blog-item:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
main section.blog .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  margin: 35px 0;
  font-size: 18px;
}
main section.blog .pagination span.current {
  display: block;
  border: 1px solid #D9D9D9;
  background-color: #fff;
  color: #000;
  line-height: 50px;
  text-align: center;
  border-radius: 8px;
  height: 50px;
  min-width: 50px;
}
main section.blog .pagination a {
  display: block;
  line-height: 46px;
  border: 1px solid #1F2B38;
  background-color: #1F2B38;
  color: #fff;
  min-width: 46px;
  padding: 0 15px;
  text-align: center;
  border-radius: 6px;
}
main section.blog .pagination a.next, main section.blog .pagination a.prev {
  font-size: 15px;
}
main section.blog .pagination a:hover {
  background-color: #EAEEF1;
  border-color: #EAEEF1;
  color: #000;
}
main section.single-post-breadcrumbs {
  margin: 0 15px;
  width: calc(100% - 30px);
  height: calc(100vh - 95px);
  padding: 0 50px;
  position: relative;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
}
main section.single-post-breadcrumbs h1 {
  display: block;
  line-height: 100%;
  font-size: 4.2vw;
  font-weight: 900;
  text-align: center;
  color: #fff;
  padding: 0;
  position: relative;
  z-index: 1;
}
main section.single-post-breadcrumbs ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0 0 40px;
  position: relative;
  z-index: 1;
}
main section.single-post-breadcrumbs ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
main section.single-post-breadcrumbs ul li span {
  display: block;
  font-size: 17px;
  font-weight: 500;
}
main section.single-post-breadcrumbs ul li span a {
  display: block;
  line-height: 100%;
  color: #fff;
}
main section.single-post-breadcrumbs ul li::after {
  content: " / ";
  display: block;
  margin: 0 10px;
}
main section.single-post-breadcrumbs ul li:last-of-type::after {
  display: none;
}
main section.single-post-breadcrumbs::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 10%, transparent 55%);
}
main section.search-breadcrumbs {
  margin: 0 15px;
  width: calc(100% - 30px);
  min-height: 200px;
  padding: 0 50px;
  position: relative;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  background-color: red;
}
main section.search-breadcrumbs h1 {
  display: block;
  line-height: 100%;
  font-size: 4.2vw;
  font-weight: 900;
  text-align: center;
  color: #fff;
  padding: 0;
  position: relative;
  z-index: 1;
}
main section.search-breadcrumbs ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0 0 40px;
  position: relative;
  z-index: 1;
}
main section.search-breadcrumbs ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
main section.search-breadcrumbs ul li span {
  display: block;
  font-size: 17px;
  font-weight: 500;
}
main section.search-breadcrumbs ul li span a {
  display: block;
  line-height: 100%;
  color: #fff;
}
main section.search-breadcrumbs ul li::after {
  content: " / ";
  display: block;
  margin: 0 10px;
}
main section.search-breadcrumbs ul li:last-of-type::after {
  display: none;
}
main section.search-breadcrumbs::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 10%, transparent 55%);
}
main section.search {
  padding: 50px 0 130px;
  background: #fff url("../media/images/bg-blog-1.png") bottom calc(100% - 50px) no-repeat;
  background-size: 100px;
}
main section.search h2 {
  font-size: 2vw;
  display: block;
  line-height: 100%;
  font-weight: 700;
}
main section.search hr {
  border: none;
  height: 1px;
  opacity: 1;
  background-color: #D9D9D9;
  margin: 10px 0;
  pad: 0;
}
main section.search .blog-item {
  border: 1px solid #D9D9D9;
  background-color: #fff;
  border-radius: 10px;
  transition: 0.3s ease;
}
main section.search .blog-item a.image {
  display: block;
  width: 100%;
  height: 280px;
  background-color: var(--basic-color1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
main section.search .blog-item a.image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  transition: 1.2s ease;
}
main section.search .blog-item a.image .blog-date {
  position: absolute;
  z-index: 5;
  right: 15px;
  bottom: 15px;
  background-color: #0d2432;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 5px;
  transition: all 0.5s ease;
}
main section.search .blog-item a.image .blog-date svg {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
main section.search .blog-item a.image .blog-date span {
  font-size: 14px;
  font-weight: 500;
  display: block;
  line-height: 16px;
}
main section.search .blog-item a.image .tags-div {
  position: absolute;
  right: 15px;
  top: 15px;
  right: 15px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
main section.search .blog-item a.image .tags-div em {
  background-color: #fff;
  color: var(--basic-color2);
  font-size: 12px;
  font-style: normal;
  padding: 0 10px;
  font-weight: 500;
  line-height: 25px;
  display: block;
  border-radius: 4px;
}
main section.search .blog-item a.image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 15%, transparent 45%);
}
main section.search .blog-item a.image:hover img {
  transform: scale(1.2, 1.2);
}
main section.search .blog-item a.image:hover .blog-date {
  background-color: #fff;
  color: #0d2432;
}
main section.search .blog-item a.image:hover .blog-date svg path {
  fill: #0d2432;
}
main section.search .blog-item .content {
  padding: 30px 20px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
}
main section.search .blog-item .content ul {
  list-style: none;
  color: #424C57;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
main section.search .blog-item .content ul span {
  font-size: 13px;
  font-weight: 600;
}
main section.search .blog-item .content a.link {
  color: #333A41;
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 110%;
  text-decoration: none;
  margin: 10px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
main section.search .blog-item .content a.link:hover {
  color: #000;
}
main section.search .blog-item .content p {
  margin: 10px 0 0;
  padding: 0;
  line-height: 125%;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333A41;
  flex: 1;
}
main section.search .blog-item .content a.readmore {
  margin: 10px 0 0;
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--basic-color1);
}
main section.search .blog-item .content a.readmore svg {
  width: 22px;
  transition: 0.3s ease;
}
main section.search .blog-item .content a.readmore svg path {
  fill: var(--basic-color1);
}
main section.search .blog-item .content a.readmore:hover {
  color: var(--basic-color3);
}
main section.search .blog-item .content a.readmore:hover svg {
  margin-left: 10px;
}
main section.search .blog-item .content a.readmore:hover svg path {
  fill: var(--basic-color3);
}
main section.search .blog-item:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
main section.search .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  margin: 35px 0;
  font-size: 18px;
}
main section.search .pagination span.current {
  display: block;
  border: 1px solid #D9D9D9;
  background-color: #fff;
  color: #000;
  line-height: 50px;
  text-align: center;
  border-radius: 8px;
  height: 50px;
  min-width: 50px;
}
main section.search .pagination a {
  display: block;
  line-height: 46px;
  border: 1px solid #1F2B38;
  background-color: #1F2B38;
  color: #fff;
  min-width: 46px;
  padding: 0 15px;
  text-align: center;
  border-radius: 6px;
}
main section.search .pagination a.next, main section.search .pagination a.prev {
  font-size: 15px;
}
main section.search .pagination a:hover {
  background-color: #EAEEF1;
  border-color: #EAEEF1;
  color: #000;
}
main section.search .no-results h2 {
  font-size: 35px;
  display: block;
}
main section.search .no-results p {
  display: block;
  line-height: 120%;
  margin: 0 0 15px;
}
main section.search .no-results form.search-form {
  background-color: #EAEEF1;
  padding: 25px;
  border-radius: 15px;
  display: flex;
  flex: 0 0 1fr;
}
main section.search .no-results form.search-form label {
  flex: 1;
  display: flex;
}
main section.search .no-results form.search-form label span.screen-reader-text {
  display: none;
}
main section.search .no-results form.search-form label input.search-field {
  padding: 0 15px;
  outline-offset: -2px;
  -webkit-appearance: textfield;
  flex-grow: 1;
  min-width: 3rem;
  text-decoration: unset !important;
  text-transform: inherit;
  height: 38px;
  width: 100%;
}
main section.search .no-results form.search-form input.search-submit {
  flex: 0 0 auto;
  display: block;
  border: 1px solid #ccc;
  padding: 0 25px;
  height: 38px;
  word-break: normal;
  cursor: pointer;
  -webkit-appearance: button;
}
main section.our-expers-breadcrumbs {
  margin: 15px;
  padding: 15px;
  border-radius: 12px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
main section.our-expers-breadcrumbs::after {
  content: "";
  background-color: #1d2936;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.8;
}
main section.our-expers-breadcrumbs h1 {
  display: block;
  line-height: 100%;
  font-size: 2.6vw;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 2;
}
main section.our-expers-breadcrumbs ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}
main section.our-expers-breadcrumbs ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}
main section.our-expers-breadcrumbs ul li span {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
main section.our-expers-breadcrumbs ul li span a {
  display: block;
  line-height: 100%;
  color: #fff;
}
main section.our-expers-breadcrumbs ul li::after {
  content: " / ";
  display: block;
  margin: 0 10px;
}
main section.our-expers-breadcrumbs ul li:last-of-type::after {
  display: none;
}
main section.blog-single {
  padding: 30px 0 130px;
}
main section.blog-single ul.post-meta {
  list-style: none;
  color: #424C57;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
}
main section.blog-single ul.post-meta span {
  font-size: 13px;
  font-weight: 600;
}
main section.blog-single p {
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin: 0 0 15px;
  padding: 0;
}
main section.blog-single p.thick-p {
  display: block;
  font-size: 20px;
  line-height: 120%;
  font-weight: 500;
}
main section.blog-single blockquote {
  background: #EAEEF1 url("../media/images/quote.png") 30px 30px no-repeat;
  color: #000;
  border-radius: 15px;
  padding: 30px 30px 30px 140px;
  margin: 20px 0;
}
main section.blog-single blockquote p {
  font-size: 22px;
  line-height: 120%;
  font-weight: 500;
  margin: 0 0 10px;
  padding: 0;
}
main section.blog-single blockquote h6 {
  display: block;
  line-height: 120%;
  position: relative;
  margin: 0;
  padding: 0 0 0 60px;
  font-size: 14px;
}
main section.blog-single blockquote h6::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 1px;
  background-color: #000;
  width: 50px;
}
main section.blog-single h4 {
  font-size: 25px;
  font-weight: 700;
  line-height: 160%;
  display: block;
  margin: 0;
  padding: 0;
}
main section.blog-single h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  display: block;
  margin: 0 0 10px;
  padding: 0;
}
main section.blog-single .image-column {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  margin: 25px 0;
}
main section.blog-single .image-column figure.wp-block-image {
  width: 100%;
}
main section.blog-single .image-column figure.wp-block-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
main section.blog-single div.tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 25px 0;
}
main section.blog-single div.tags strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  display: block;
}
main section.blog-single div.tags .links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  row-gap: 10px;
}
main section.blog-single div.tags .links a {
  background-color: #EAEEF1;
  display: block;
  color: #000;
  border-radius: 15px;
  font-size: 12px;
  padding: 0 15px;
  font-weight: 500;
  line-height: 30px;
  border-radius: 14px;
}
main section.blog-single ul.next-prev {
  list-style: none;
  margin: 25px 0 35px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main section.blog-single ul.next-prev li {
  color: #000;
  display: block;
  align-items: center;
  gap: 10px;
}
main section.blog-single ul.next-prev li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-weight: 600;
}
main section.blog-single ul.next-prev li svg {
  width: 40px;
  height: 40px;
}
main section.blog-single {
  /* ===== Comments Area ===== */
}
main section.blog-single .comments-area {
  /* Comments title */
}
main section.blog-single .comments-area h3 {
  font-size: 26px;
  font-weight: 600;
  display: block;
  line-height: 120%;
}
main section.blog-single .comments-area h4 {
  font-size: 20px;
  font-weight: 600;
  display: block;
  line-height: 110%;
  margin: 0 0 25px;
}
main section.blog-single .comments-area {
  /* ===== Comment List ===== */
}
main section.blog-single .comments-area .comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
main section.blog-single .comments-area .comment-list li.comment {
  margin-bottom: 30px;
}
main section.blog-single .comments-area .comment-list li.comment article.comment-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid #D9D9D9;
  font-weight: 600;
}
main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard {
  display: flex;
  align-items: center;
  gap: 15px;
}
main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
}
main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard b.fn a.url {
  pointer-events: none;
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  text-transform: capitalize;
  color: #000;
}
main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard span.says {
  display: none;
}
main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata {
  display: flex;
}
main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata a {
  color: #000;
  font-size: 12px;
}
main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata a time {
  font-weight: 600;
}
main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata span.edit-link a.comment-edit-link {
  font-size: 13px;
  color: #888;
  display: none;
}
main section.blog-single .comments-area .comment-list li.comment article.comment-body div.comment-content {
  display: block;
  padding-left: 100px;
}
main section.blog-single .comments-area .comment-list li.comment article.comment-body div.comment-content p {
  margin: 0 0 10px;
  line-height: 130%;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
}
main section.blog-single .comments-area .comment-list li.comment article.comment-body div.comment-content p:last-of-type {
  margin: 0;
}
main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 100px;
}
main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply a.comment-reply-link {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  position: relative;
  display: flex;
  gap: 5px;
  align-items: center;
  text-decoration: none;
}
main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply a.comment-reply-link::after {
  transition: 0.3s ease;
  content: "";
  display: inline-block;
  width: 18px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='15' fill='none' viewBox='0 0 28 15'%3E%3Cpath fill='%23313b46' d='M19.94.296a1 1 0 0 0 0 1.42l4.6 4.6H1a1 1 0 1 0 0 2h23.52l-4.58 4.57a1 1 0 0 0 0 1.41 1 1 0 0 0 1.41 0l6.36-6.36a.88.88 0 0 0 0-1.27L21.36.296a1 1 0 0 0-1.42 0'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply a.comment-reply-link:hover::after {
  margin-left: 5px;
}
main section.blog-single .comments-area .comment-list li.comment ol.children {
  list-style: none;
  margin: 0;
  padding: 0 0 0 100px;
}
main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor {
  margin: 0;
  padding: 0;
}
main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 0px solid #D9D9D9;
  font-weight: 600;
}
main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-author.vcard img.avatar {
  width: 50px;
  height: 50px;
}
main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-author.vcard b.fn a.url {
  font-size: 14px;
  font-weight: 700;
}
main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-author.vcard span.says {
  display: none;
}
main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-metadata a {
  font-size: 12px;
}
main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-metadata span.edit-link a.comment-edit-link {
  display: none;
}
main section.blog-single .comments-area {
  /* ===== Comment Form ===== */
}
main section.blog-single .comments-area .comment-respond {
  padding: 30px;
  margin: 0;
  border-radius: 8px;
  background: #EAEEF1;
}
main section.blog-single .comments-area .comment-respond h3.comment-reply-title {
  font-size: 22px;
  font-weight: 600;
}
main section.blog-single .comments-area .comment-respond {
  /* Form fields */
}
main section.blog-single .comments-area .comment-respond .comment-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
main section.blog-single .comments-area .comment-respond .comment-form p {
  margin: 0;
  padding: 0;
}
main section.blog-single .comments-area .comment-respond .comment-form p label {
  display: block;
  font-size: 15px;
  line-height: 160%;
  font-weight: 600;
  margin-bottom: 6px;
}
main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-cookies-consent {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}
main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-cookies-consent input[type=checkbox] {
  display: block;
  width: 16px;
  height: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #344252;
  border-radius: 3px;
}
main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-cookies-consent label {
  display: block;
  font-size: 12px;
  line-height: 16px;
}
main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author input[type=text], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author input[type=email], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author input[type=url], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author textarea, main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email input[type=text], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email input[type=email], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email input[type=url], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email textarea, main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url input[type=text], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url input[type=email], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url input[type=url], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}
main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-comment textarea {
  width: 100%;
  height: 140px;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #BBBFC4;
  padding: 15px;
}
main section.blog-single .comments-area .comment-respond .comment-form p.form-submit {
  /* Submit button */
}
main section.blog-single .comments-area .comment-respond .comment-form p.form-submit input[type=submit] {
  background: #12232D url("../media/images/form-submit-arrow.svg") 3px 3px no-repeat;
  background-size: 41px 41px;
  color: #fff;
  border: none;
  height: 48px;
  padding: 3px 25px 3px 58px;
  border-radius: 24px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}
main section.blog-single .comments-area .comment-respond .comment-form p.form-submit input[type=submit]:hover {
  background-color: #fff;
  color: #000;
}
main section.blog-single .comments-area {
  /* Cancel reply link */
}
main section.blog-single .comments-area #cancel-comment-reply-link {
  display: inline-block;
  margin-left: 10px;
  font-size: 14px;
  color: #999;
  text-decoration: none;
}
main section.blog-single .comments-area #cancel-comment-reply-link:hover {
  color: #000;
}
main section.get-in-touch {
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
main section.get-in-touch .get-in-touch-wrapper {
  width: 80%;
}
main section.get-in-touch .get-in-touch-wrapper .contact-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
}
main section.get-in-touch .get-in-touch-wrapper .contact-content p {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 130%;
}
main section.get-in-touch .get-in-touch-wrapper .contact-content hr.wp-block-separator {
  width: 100%;
  height: 0;
  border-bottom: 1px solid #eee;
  margin: 10px 0;
  padding: 0;
}
main section.get-in-touch .get-in-touch-wrapper .contact-content .customizer-items {
  display: flex;
  flex-direction: column;
  margin: 15px 0;
  gap: 20px;
}
main section.get-in-touch .get-in-touch-wrapper .contact-content .customizer-items .customizer-item {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
}
main section.get-in-touch .get-in-touch-wrapper .contact-content .customizer-items .customizer-item li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}
main section.get-in-touch .get-in-touch-wrapper .contact-content .customizer-items .customizer-item li span {
  font-weight: 700;
  display: block;
  line-height: 100%;
  font-size: 14px;
  color: #000;
}
main section.get-in-touch .get-in-touch-wrapper .contact-content .customizer-items .customizer-item li strong {
  font-size: 15px;
  display: block;
  font-weight: 600;
  line-height: 100%;
  color: #5A646F;
}
main section.get-in-touch .get-in-touch-wrapper .contact-content .customizer-items .customizer-item li svg {
  width: 40px;
  height: 40px;
  display: block;
}
main section.get-in-touch .get-in-touch-wrapper .contact-content .social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}
main section.get-in-touch .get-in-touch-wrapper .contact-content .social-icons span {
  font-size: 16px;
  font-weight: 700;
}
main section.get-in-touch .get-in-touch-wrapper .contact-content .social-icons .social {
  display: flex;
  gap: 5px;
  align-items: center;
}
main section.get-in-touch .get-in-touch-wrapper .contact-content .social-icons .social a {
  width: 35px;
  height: 35px;
  display: block;
  text-decoration: none;
}
main section.get-in-touch .get-in-touch-wrapper .contact-content .social-icons .social a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main section.get-in-touch .get-in-touch-wrapper .contact-form {
  background-color: #EAEEF1;
  padding: 30px;
  color: #000;
  border-radius: 30px;
}
main section.get-in-touch .get-in-touch-wrapper .contact-form h3.wp-block-heading {
  display: block;
  font-size: 30px;
  font-weight: 700;
  line-height: 110%;
  margin: 0 0 10px;
  padding: 0;
}
main section.get-in-touch .get-in-touch-wrapper .contact-form p {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 120%;
}
main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form input:-webkit-autofill,
main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form input:-webkit-autofill:hover,
main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form input:-webkit-autofill:focus,
main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form textarea:-webkit-autofill,
main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form textarea:-webkit-autofill:hover,
main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form textarea:-webkit-autofill:focus,
main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form select:-webkit-autofill,
main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form select:-webkit-autofill:hover,
main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
}
main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 10px;
}
main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form label input[type=text], main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form label input[type=email] {
  display: block;
  height: 40px;
  width: 100%;
  border: 1px solid #BBBFC4;
  padding: 0 15px;
  border-radius: 6px;
  font-size: 14px;
}
main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form label input[type=text]:focus, main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form label input[type=text]:-webkit-autofill, main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form label input[type=email]:focus, main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form label input[type=email]:-webkit-autofill {
  background: #fff !important;
  border-color: var(--basic-color2) !important;
  box-shadow: none !important; /* removes blue glow */
  outline: none !important;
}
main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form label select {
  display: block;
  height: 40px;
  width: 100%;
  border: 1px solid #BBBFC4;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: #fff url("../media/images/dd-arrow.png") calc(100% - 15px) center no-repeat;
  background-size: 10px;
  padding: 0 25px 0 15px;
  border-radius: 6px;
  font-size: 14px;
}
main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form label select:focus, main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form label select:-webkit-autofill {
  background: #fff !important;
  border-color: var(--basic-color2) !important;
  box-shadow: none !important; /* removes blue glow */
  outline: none !important;
}
main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form label textarea {
  display: block;
  height: 120px;
  width: 100%;
  font-size: 14px;
  border: 1px solid #BBBFC4;
  padding: 15px;
  border-radius: 6px;
}
main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form button[type=submit] {
  height: 52px;
  padding: 3px 25px 3px 3px;
  border-radius: 26px;
  background: #12232D;
  color: #fff;
  transition: 0.3s ease;
  margin: 5px 0 0;
  font-weight: 600;
  display: flex;
  line-height: 46px;
  gap: 15px;
}
main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form button[type=submit] svg {
  width: 46px;
  height: 46px;
  transition: 0.3s ease all;
}
main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form button[type=submit]:hover {
  background-color: #fff;
  color: var(--basic-color1);
}
main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form button[type=submit]:hover svg {
  transform: rotate(45deg);
}
main section.get-in-touch .get-in-touch-wrapper .contact-form form#sef-form div.form-response {
  display: block;
  line-height: 52px;
  font-size: 15px;
  font-weight: 600;
  margin: 5px 0 0;
  text-transform: capitalize;
}
main section.get-in-touch .location-map {
  padding: 80px 0 120px;
  width: 100%;
}
main section.get-in-touch .location-map .wp-block-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}
main section.get-in-touch .location-map .wp-block-column iframe {
  width: calc(100% - 30px);
  height: 550px;
  border: none;
  border-radius: 30px;
}
main section.location {
  width: 100%;
  padding: 50px 0 50px;
  background-color: #FCFCFC;
}
main section.location .location-map {
  width: 100%;
}
main section.location .location-map .wp-block-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
main section.location .location-map .wp-block-column h4 {
  margin: 0;
}
main section.location .location-map .wp-block-column h2 {
  margin: 0;
}
main section.location .location-map .wp-block-column iframe {
  width: 95%;
  height: 500px;
  border-radius: 15px;
}
main section.breadcrumbs {
  margin: 15px;
  padding: 15px;
  border-radius: 12px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
main section.breadcrumbs::after {
  content: "";
  background-color: #1d2936;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.8;
}
main section.breadcrumbs h1 {
  display: block;
  line-height: 100%;
  font-size: 2.6vw;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 2;
}
main section.breadcrumbs ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}
main section.breadcrumbs ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}
main section.breadcrumbs ul li span {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
main section.breadcrumbs ul li span a {
  display: block;
  line-height: 100%;
  color: #fff;
}
main section.breadcrumbs ul li::after {
  content: " / ";
  display: block;
  margin: 0 10px;
}
main section.breadcrumbs ul li:last-of-type::after {
  display: none;
}
main section.policy-pages {
  padding: 50px 0 140px;
}
main section.policy-pages .wp-block-columns {
  width: 75%;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
}
main section.policy-pages .wp-block-columns .wp-block-column h2.wp-block-heading {
  font-size: 32px;
  font-weight: 800;
  display: block;
  margin: 0 0 15px;
}
main section.policy-pages .wp-block-columns .wp-block-column h3.wp-block-heading {
  font-size: 24px;
  font-weight: 700;
  display: block;
  margin: 0 0 10px;
}
main section.policy-pages .wp-block-columns .wp-block-column h4.wp-block-heading {
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin: 0 0 10px;
}
main section.policy-pages .wp-block-columns .wp-block-column h5.wp-block-heading {
  font-size: 15px;
  font-weight: 700;
}
main section.policy-pages .wp-block-columns .wp-block-column blockquote {
  margin: 25px 0;
  padding: 10px 0 10px 15px;
  border-left: 10px solid var(--basic-color2);
}
main section.policy-pages .wp-block-columns .wp-block-column blockquote p {
  font-size: 25px;
  font-weight: 400;
  line-height: 120%;
}
main section.policy-pages .wp-block-columns .wp-block-column hr {
  border: none;
  border-top: 1px solid #b8b8b8;
  background-color: transparent;
  height: 1px;
  margin: 15px 0;
  display: block;
}
main section.policy-pages .wp-block-columns .wp-block-column p {
  display: block;
  font-size: 15px;
  line-height: 120%;
  font-weight: 500;
  margin: 0 0 15px;
  padding: 0;
}
main section.policy-pages .wp-block-columns .wp-block-column p a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
}
main section.policy-pages .wp-block-columns .wp-block-column p a:hover {
  text-decoration: underline;
}
main section.policy-pages .wp-block-columns .wp-block-column ul {
  list-style: none;
  margin: 0 0 25px;
  padding: 0;
  font-size: 14px;
  line-height: 150%;
}
main section.policy-pages .wp-block-columns .wp-block-column ul li {
  position: relative;
  padding: 0 0 0 20px;
}
main section.policy-pages .wp-block-columns .wp-block-column ul li::before {
  content: "●";
  font-size: 13px;
  color: var(--basic-color1);
  position: absolute;
  left: 0;
  top: 3px;
  line-height: 100%;
}
main section aside.sidebar .widget .wp-block-columns .wp-block-column form.wp-block-search__button-outside.wp-block-search__text-button.wp-block-search div.wp-block-search__inside-wrapper {
  gap: 0;
}
main section aside.sidebar .widget .wp-block-columns .wp-block-column form.wp-block-search__button-outside.wp-block-search__text-button.wp-block-search div.wp-block-search__inside-wrapper input[type=search] {
  padding: 0 15px;
  margin: 0;
}
main section aside.sidebar .widget .wp-block-columns .wp-block-column form.wp-block-search__button-outside.wp-block-search__text-button.wp-block-search div.wp-block-search__inside-wrapper button[type=submit] {
  margin: 0;
}
main section aside.sidebar .widget .wp-block-columns.category, main section aside.sidebar .widget .wp-block-columns.search, main section aside.sidebar .widget .wp-block-columns.recent-posts, main section aside.sidebar .widget .wp-block-columns.tags-column {
  background-color: #EAEEF1;
  padding: 25px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
main section aside.sidebar .widget .wp-block-columns.category h5.wp-block-heading, main section aside.sidebar .widget .wp-block-columns.category label, main section aside.sidebar .widget .wp-block-columns.search h5.wp-block-heading, main section aside.sidebar .widget .wp-block-columns.search label, main section aside.sidebar .widget .wp-block-columns.recent-posts h5.wp-block-heading, main section aside.sidebar .widget .wp-block-columns.recent-posts label, main section aside.sidebar .widget .wp-block-columns.tags-column h5.wp-block-heading, main section aside.sidebar .widget .wp-block-columns.tags-column label {
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 20px;
  padding: 0;
  color: #424c57;
}
main section aside.sidebar .widget .wp-block-columns.category ul.wp-block-categories-list, main section aside.sidebar .widget .wp-block-columns.search ul.wp-block-categories-list, main section aside.sidebar .widget .wp-block-columns.recent-posts ul.wp-block-categories-list, main section aside.sidebar .widget .wp-block-columns.tags-column ul.wp-block-categories-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
main section aside.sidebar .widget .wp-block-columns.category ul.wp-block-categories-list li a, main section aside.sidebar .widget .wp-block-columns.search ul.wp-block-categories-list li a, main section aside.sidebar .widget .wp-block-columns.recent-posts ul.wp-block-categories-list li a, main section aside.sidebar .widget .wp-block-columns.tags-column ul.wp-block-categories-list li a {
  font-weight: 600;
  color: #424c57;
  line-height: 130%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
main section aside.sidebar .widget .wp-block-columns.category ul.wp-block-categories-list li a::before, main section aside.sidebar .widget .wp-block-columns.search ul.wp-block-categories-list li a::before, main section aside.sidebar .widget .wp-block-columns.recent-posts ul.wp-block-categories-list li a::before, main section aside.sidebar .widget .wp-block-columns.tags-column ul.wp-block-categories-list li a::before {
  content: "●";
  display: inline-block;
}
main section aside.sidebar .widget .wp-block-columns.category ul.recent-post-items.wp-block-latest-posts__list, main section aside.sidebar .widget .wp-block-columns.search ul.recent-post-items.wp-block-latest-posts__list, main section aside.sidebar .widget .wp-block-columns.recent-posts ul.recent-post-items.wp-block-latest-posts__list, main section aside.sidebar .widget .wp-block-columns.tags-column ul.recent-post-items.wp-block-latest-posts__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
main section aside.sidebar .widget .wp-block-columns.category ul.recent-post-items.wp-block-latest-posts__list li, main section aside.sidebar .widget .wp-block-columns.search ul.recent-post-items.wp-block-latest-posts__list li, main section aside.sidebar .widget .wp-block-columns.recent-posts ul.recent-post-items.wp-block-latest-posts__list li, main section aside.sidebar .widget .wp-block-columns.tags-column ul.recent-post-items.wp-block-latest-posts__list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-template-rows: auto auto;
  gap: 10px 15px;
  align-items: center;
}
main section aside.sidebar .widget .wp-block-columns.category ul.recent-post-items.wp-block-latest-posts__list li div.wp-block-latest-posts__featured-image, main section aside.sidebar .widget .wp-block-columns.search ul.recent-post-items.wp-block-latest-posts__list li div.wp-block-latest-posts__featured-image, main section aside.sidebar .widget .wp-block-columns.recent-posts ul.recent-post-items.wp-block-latest-posts__list li div.wp-block-latest-posts__featured-image, main section aside.sidebar .widget .wp-block-columns.tags-column ul.recent-post-items.wp-block-latest-posts__list li div.wp-block-latest-posts__featured-image {
  grid-row: 1/3;
}
main section aside.sidebar .widget .wp-block-columns.category ul.recent-post-items.wp-block-latest-posts__list li div.wp-block-latest-posts__featured-image a, main section aside.sidebar .widget .wp-block-columns.search ul.recent-post-items.wp-block-latest-posts__list li div.wp-block-latest-posts__featured-image a, main section aside.sidebar .widget .wp-block-columns.recent-posts ul.recent-post-items.wp-block-latest-posts__list li div.wp-block-latest-posts__featured-image a, main section aside.sidebar .widget .wp-block-columns.tags-column ul.recent-post-items.wp-block-latest-posts__list li div.wp-block-latest-posts__featured-image a {
  display: block;
  margin: 0;
  padding: 0;
}
main section aside.sidebar .widget .wp-block-columns.category ul.recent-post-items.wp-block-latest-posts__list li div.wp-block-latest-posts__featured-image a img, main section aside.sidebar .widget .wp-block-columns.search ul.recent-post-items.wp-block-latest-posts__list li div.wp-block-latest-posts__featured-image a img, main section aside.sidebar .widget .wp-block-columns.recent-posts ul.recent-post-items.wp-block-latest-posts__list li div.wp-block-latest-posts__featured-image a img, main section aside.sidebar .widget .wp-block-columns.tags-column ul.recent-post-items.wp-block-latest-posts__list li div.wp-block-latest-posts__featured-image a img {
  width: 120px;
  height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 8px;
}
main section aside.sidebar .widget .wp-block-columns.category ul.recent-post-items.wp-block-latest-posts__list li, main section aside.sidebar .widget .wp-block-columns.search ul.recent-post-items.wp-block-latest-posts__list li, main section aside.sidebar .widget .wp-block-columns.recent-posts ul.recent-post-items.wp-block-latest-posts__list li, main section aside.sidebar .widget .wp-block-columns.tags-column ul.recent-post-items.wp-block-latest-posts__list li {
  /* Title and date container (implicit via DOM order) */
}
main section aside.sidebar .widget .wp-block-columns.category ul.recent-post-items.wp-block-latest-posts__list li a.wp-block-latest-posts__post-title, main section aside.sidebar .widget .wp-block-columns.category ul.recent-post-items.wp-block-latest-posts__list li .wp-block-latest-posts .wp-block-latest-posts__post-date, main section aside.sidebar .widget .wp-block-columns.search ul.recent-post-items.wp-block-latest-posts__list li a.wp-block-latest-posts__post-title, main section aside.sidebar .widget .wp-block-columns.search ul.recent-post-items.wp-block-latest-posts__list li .wp-block-latest-posts .wp-block-latest-posts__post-date, main section aside.sidebar .widget .wp-block-columns.recent-posts ul.recent-post-items.wp-block-latest-posts__list li a.wp-block-latest-posts__post-title, main section aside.sidebar .widget .wp-block-columns.recent-posts ul.recent-post-items.wp-block-latest-posts__list li .wp-block-latest-posts .wp-block-latest-posts__post-date, main section aside.sidebar .widget .wp-block-columns.tags-column ul.recent-post-items.wp-block-latest-posts__list li a.wp-block-latest-posts__post-title, main section aside.sidebar .widget .wp-block-columns.tags-column ul.recent-post-items.wp-block-latest-posts__list li .wp-block-latest-posts .wp-block-latest-posts__post-date {
  display: block;
  color: #333A41;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 110%;
}
main section aside.sidebar .widget .wp-block-columns.category ul.recent-post-items.wp-block-latest-posts__list li a.wp-block-latest-posts__post-title:hover, main section aside.sidebar .widget .wp-block-columns.category ul.recent-post-items.wp-block-latest-posts__list li .wp-block-latest-posts .wp-block-latest-posts__post-date:hover, main section aside.sidebar .widget .wp-block-columns.search ul.recent-post-items.wp-block-latest-posts__list li a.wp-block-latest-posts__post-title:hover, main section aside.sidebar .widget .wp-block-columns.search ul.recent-post-items.wp-block-latest-posts__list li .wp-block-latest-posts .wp-block-latest-posts__post-date:hover, main section aside.sidebar .widget .wp-block-columns.recent-posts ul.recent-post-items.wp-block-latest-posts__list li a.wp-block-latest-posts__post-title:hover, main section aside.sidebar .widget .wp-block-columns.recent-posts ul.recent-post-items.wp-block-latest-posts__list li .wp-block-latest-posts .wp-block-latest-posts__post-date:hover, main section aside.sidebar .widget .wp-block-columns.tags-column ul.recent-post-items.wp-block-latest-posts__list li a.wp-block-latest-posts__post-title:hover, main section aside.sidebar .widget .wp-block-columns.tags-column ul.recent-post-items.wp-block-latest-posts__list li .wp-block-latest-posts .wp-block-latest-posts__post-date:hover {
  color: var(--basic-color3); /* WordPress accent color */
}
main section aside.sidebar .widget .wp-block-columns.category ul.recent-post-items.wp-block-latest-posts__list li time.wp-block-latest-posts__post-date, main section aside.sidebar .widget .wp-block-columns.search ul.recent-post-items.wp-block-latest-posts__list li time.wp-block-latest-posts__post-date, main section aside.sidebar .widget .wp-block-columns.recent-posts ul.recent-post-items.wp-block-latest-posts__list li time.wp-block-latest-posts__post-date, main section aside.sidebar .widget .wp-block-columns.tags-column ul.recent-post-items.wp-block-latest-posts__list li time.wp-block-latest-posts__post-date {
  font-size: 13px;
  color: #666;
  font-weight: 600;
  margin: 0;
  line-height: 90%;
}
main section aside.sidebar .widget .wp-block-columns.category div.posts-tags ul, main section aside.sidebar .widget .wp-block-columns.search div.posts-tags ul, main section aside.sidebar .widget .wp-block-columns.recent-posts div.posts-tags ul, main section aside.sidebar .widget .wp-block-columns.tags-column div.posts-tags ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 6px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
main section aside.sidebar .widget .wp-block-columns.category div.posts-tags ul li a, main section aside.sidebar .widget .wp-block-columns.search div.posts-tags ul li a, main section aside.sidebar .widget .wp-block-columns.recent-posts div.posts-tags ul li a, main section aside.sidebar .widget .wp-block-columns.tags-column div.posts-tags ul li a {
  display: block;
  color: #424C57;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  line-height: 28px;
  height: 28px;
  border-radius: 14px;
  padding: 0 20px;
  font-size: 11px;
  font-weight: 600;
}
main section aside.sidebar .widget .wp-block-columns.category div.posts-tags ul li a:hover, main section aside.sidebar .widget .wp-block-columns.search div.posts-tags ul li a:hover, main section aside.sidebar .widget .wp-block-columns.recent-posts div.posts-tags ul li a:hover, main section aside.sidebar .widget .wp-block-columns.tags-column div.posts-tags ul li a:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
main section aside.sidebar .widget .wp-block-columns.image-link {
  position: relative;
  z-index: 0;
}
main section aside.sidebar .widget .wp-block-columns.image-link figure.wp-block-image {
  position: relative;
  z-index: 1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main section aside.sidebar .widget .wp-block-columns.image-link div.wp-block-columns.links {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 40px;
  z-index: 2;
}
main section aside.sidebar .widget .wp-block-columns.image-link div.wp-block-columns.links .wp-block-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
}
main section aside.sidebar .widget .wp-block-columns.image-link div.wp-block-columns.links .wp-block-column h3.wp-block-heading {
  display: block;
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  line-height: 100%;
  color: #fff;
}
main section aside.sidebar .widget .wp-block-columns.image-link div.wp-block-columns.links .wp-block-column p {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 120%;
  display: block;
  text-align: center;
  padding: 0 15px;
  margin: 0 0 10px;
}
main section aside.sidebar .widget .wp-block-columns.image-link div.wp-block-columns.links .wp-block-column .wp-block-buttons {
  justify-content: center;
  margin: 0;
  padding: 0;
}
main section aside.sidebar .widget .wp-block-columns.image-link div.wp-block-columns.links .wp-block-column .wp-block-buttons .wp-block-button a.wp-block-button__link {
  font-size: 14px;
  font-weight: 600;
  display: block;
  height: 48px;
  background: #fff url("../media/images/icon-arrow.svg") 3px center no-repeat;
  background-size: 42px;
  padding: 3px 25px 3px 56px;
  color: #000;
}
main section aside.sidebar .widget .wp-block-columns.image-link div.wp-block-columns.links .wp-block-column .wp-block-buttons .wp-block-button a.wp-block-button__link:hover {
  background-color: var(--basic-color1);
  color: #fff;
}

.modal.modal-right .modal-dialog {
  /* Positions the dialog container at the far right */
  position: fixed;
  margin: 0;
  right: 0;
  top: 0;
  height: 100%;
  transform: translate(0, 0); /* Overrides Bootstrap's default transform */
}
.modal.modal-right .modal-dialog .modal-content {
  /* Ensures the content fills the full height of the viewport */
  height: 100%;
  overflow-y: auto; /* Adds scrolling if content overflows */
  width: 400px;
  padding: 10px;
  border-radius: 0;
  border: none;
  background: #fff url("../media/images/popup-bg.webp") right center no-repeat;
  background-size: 90% auto;
}
.modal.modal-right .modal-dialog .modal-content .modal-header {
  position: relative;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.modal.modal-right .modal-dialog .modal-content .modal-header img.popup-image {
  margin-top: 30px;
  width: 160px;
  display: block;
}
.modal.modal-right .modal-dialog .modal-content .modal-header button.btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  background-color: #ECECEC;
}
.modal.modal-right .modal-dialog .modal-content .modal-header button.btn-close:hover {
  background-color: var(--basic-color2);
}
.modal.modal-right .modal-dialog .modal-content .modal-header h5.modal-title {
  color: #2F363E;
  font-size: 24px;
  font-weight: 700;
  display: block;
  line-height: 100%;
}
.modal.modal-right .modal-dialog .modal-content .modal-body form#cv-upload-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
.modal.modal-right .modal-dialog .modal-content .modal-body form#cv-upload-form div.upload-file-div {
  background: #f5f5f5 url("../media/images/popup-form-bg.png") 80% center no-repeat;
  background-size: auto 70%;
  cursor: pointer;
  border-radius: 12px;
  border: 1px solid #D9D9D9;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 400;
  width: 100%;
  transition: 0.3s ease;
}
.modal.modal-right .modal-dialog .modal-content .modal-body form#cv-upload-form div.upload-file-div svg {
  width: 50px;
  margin: 40px 0 25px;
}
.modal.modal-right .modal-dialog .modal-content .modal-body form#cv-upload-form div.upload-file-div strong {
  font-size: 13px;
  font-weight: 700;
  display: block;
  text-align: center;
}
.modal.modal-right .modal-dialog .modal-content .modal-body form#cv-upload-form div.upload-file-div ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 12px;
}
.modal.modal-right .modal-dialog .modal-content .modal-body form#cv-upload-form div.upload-file-div ul li span:first-of-type {
  font-weight: 700;
}
.modal.modal-right .modal-dialog .modal-content .modal-body form#cv-upload-form div.upload-file-div:hover {
  background-color: #deeef6;
}
.modal.modal-right .modal-dialog .modal-content .modal-body form#cv-upload-form div.upload-file-div.dragging {
  border-color: #000;
  background: #f5f5f5;
}
.modal.modal-right .modal-dialog .modal-content .modal-body form#cv-upload-form button.send {
  padding: 3px 25px 3px 3px;
  height: 52px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  font-weight: 500;
  background-color: #313B46;
  color: #fff;
}
.modal.modal-right .modal-dialog .modal-content .modal-body form#cv-upload-form button.send svg {
  width: 46px;
  height: 46px;
  transition: 0.3s ease;
}
.modal.modal-right .modal-dialog .modal-content .modal-body form#cv-upload-form button.send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.modal.modal-right .modal-dialog .modal-content .modal-body form#cv-upload-form button.send:hover {
  background-color: #fff;
  color: #313B46;
}
.modal.modal-right .modal-dialog .modal-content .modal-body form#cv-upload-form button.send:hover svg {
  transform: rotate(45deg);
}
.modal.modal-right .modal-dialog .modal-content .modal-body form#cv-upload-form div.results {
  font-size: 15px;
  font-weight: 600;
  display: block;
  line-height: 100%;
}
.modal.modal-right.show.modal-right .modal-dialog {
  transform: translateX(100%);
}
.modal.modal-right.fade.modal-right .modal-dialog {
  transform: translateX(0);
}
.modal.modal-left .modal-dialog {
  position: fixed;
  margin: 0;
  left: 0;
  top: 0;
  height: 100%;
  transform: translateX(-100%);
}
.modal.modal-left .modal-dialog .modal-content {
  height: 100%;
  overflow-y: auto;
  width: 350px;
  padding: 15px;
  border-radius: 0;
  border: none;
  background: #fff;
}
.modal.modal-left .modal-dialog .modal-content .modal-header {
  position: relative;
  border: 0;
  padding: 0;
  margin: 0;
}
.modal.modal-left .modal-dialog .modal-content .modal-header button.btn-close {
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  background-color: #ECECEC;
  padding: 0;
  margin: 0 0 0 auto;
}
.modal.modal-left .modal-dialog .modal-content .modal-header button.btn-close:hover {
  background-color: var(--basic-color2);
}
.modal.modal-left .modal-dialog .modal-content .modal-body h5 {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin: 15px 0;
  line-height: 1.1;
}
.modal.modal-left .modal-dialog .modal-content .modal-body ul {
  margin: 0;
}
.modal.modal-left .modal-dialog .modal-content .modal-body ul li {
  border-bottom: 1px solid transparent;
}
.modal.modal-left .modal-dialog .modal-content .modal-body ul li a {
  display: block;
  color: var(--basic-color2);
  font-size: 15px;
  font-weight: 600;
  line-height: 2.2;
  color: var(--basic-color1);
}
.modal.modal-left .modal-dialog .modal-content .modal-body ul li a:hover {
  font-weight: 700;
  color: var(--basic-color3);
}
.modal.modal-left .modal-dialog .modal-content .modal-body ul li.current-menu-item a {
  font-weight: 700;
  color: var(--basic-color3);
}
.modal.modal-left .modal-dialog .modal-content .modal-body {
  padding: 0;
}
.modal.modal-left .modal-dialog .modal-content .modal-footer {
  border: 0;
  justify-content: flex-start;
  padding: 0;
}
.modal.modal-left .modal-dialog .modal-content .modal-footer .social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.modal.modal-left .modal-dialog .modal-content .modal-footer .social a {
  width: 30px;
  height: 30px;
}
.modal.modal-left .modal-dialog .modal-content .modal-footer .social a img {
  width: 100%;
  height: 100%;
  display: block;
}
.modal.modal-left.show .modal-dialog {
  transform: translateX(0);
}
.modal.modal-left.fade .modal-dialog {
  transition: transform 0.3s ease;
}

footer#footer {
  background: #F1F4F7 url("../media/images/footer-element.png") right bottom no-repeat;
  background-size: contain;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
footer#footer .cta {
  background: #0D2432 url("../media/images/footer-cta-bg.png") 35px center no-repeat;
  background-size: 110px auto;
  border-radius: 30px;
  padding: 25px 25px 25px 180px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  height: 200px;
  margin-top: -100px;
}
footer#footer .cta .content h2 {
  font-size: 40px;
  font-weight: 900;
  line-height: 100%;
}
footer#footer .cta .content p {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  line-height: 100%;
}
footer#footer .cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #344252;
  color: #fff;
  text-decoration: none;
  padding: 3px;
  height: 52px;
  border-radius: 26px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}
footer#footer .cta a span {
  display: block;
  padding: 0 25px;
  line-height: 100%;
}
footer#footer .cta a svg {
  width: 46px;
  height: 46px;
  transform: rotate(-45deg);
  transition: 0.3s ease;
}
footer#footer .cta a:hover {
  background-color: #fff;
  color: #000;
  font-weight: 700;
}
footer#footer .cta a:hover svg {
  transform: rotate(0deg);
}
footer#footer .footer-widget h5 {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 180%;
}
footer#footer .footer-widget .menu-footer-container ul.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
footer#footer .footer-widget .menu-footer-container ul.menu li.menu-item {
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}
footer#footer .footer-widget .menu-footer-container ul.menu li.menu-item a {
  display: block;
  line-height: 32px;
  font-weight: 600;
  color: #000;
  font-size: 14px;
}
footer#footer .footer-widget .menu-footer-container ul.menu li.menu-item:hover {
  border-bottom-color: #aaa;
}
footer#footer .footer-widget .menu-footer-container ul.menu li.menu-item:hover a {
  color: #000;
}
footer#footer .footer-widget .menu-footer-container ul.menu li.menu-item.current_page_item {
  border-bottom-color: #000;
}
footer#footer .footer-widget .menu-footer-container ul.menu li.menu-item.current_page_item a {
  font-weight: 700;
}
footer#footer .footer-widget ul.contact-info-widget {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}
footer#footer .footer-widget ul.contact-info-widget li {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 10px;
}
footer#footer .footer-widget ul.contact-info-widget li img {
  display: block;
  width: 20px;
}
footer#footer .footer-widget ul.contact-info-widget li span {
  display: block;
  line-height: 1.35;
  font-size: 14px;
  font-weight: 500;
}
footer#footer .footer-widget ul.contact-info-widget li span a {
  color: var(--text-black);
  text-decoration: none;
}
footer#footer .footer-widget ul.contact-info-widget li span a:hover {
  text-decoration: underline;
}
footer#footer .footer-widget .wp-block-image img {
  width: 172px;
}
footer#footer .footer-widget p {
  margin: 0 0 30px;
  padding: 0;
  font-size: 14px;
  line-height: 140%;
  display: block;
}
footer#footer .footer-widget form#subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer#footer .footer-widget form#subscribe-form div.subscribe-form {
  height: 52px;
  background-color: #BBBFC4;
  display: grid;
  grid-template-columns: 1fr 44px;
  padding: 3px;
  gap: 3px;
  border-radius: 25px;
  overflow: hidden;
}
footer#footer .footer-widget form#subscribe-form div.subscribe-form input {
  background-color: transparent;
  border: none;
  border-radius: 26px;
  display: block;
  height: 100%;
  padding: 0 20px;
  color: #fff;
  /* Standard syntax for modern browsers */
}
footer#footer .footer-widget form#subscribe-form div.subscribe-form input::-moz-placeholder {
  color: #fff; /* Sets the placeholder color to red (use any valid color value) */
  opacity: 1; /* Ensures full opacity, as some browsers (Firefox) apply a default lower opacity */
}
footer#footer .footer-widget form#subscribe-form div.subscribe-form input::placeholder {
  color: #fff; /* Sets the placeholder color to red (use any valid color value) */
  opacity: 1; /* Ensures full opacity, as some browsers (Firefox) apply a default lower opacity */
}
footer#footer .footer-widget form#subscribe-form div.subscribe-form input {
  /* Vendor-prefixed pseudo-elements for broader compatibility */
}
footer#footer .footer-widget form#subscribe-form div.subscribe-form input::-webkit-input-placeholder { /* Chrome, Opera, Safari */
  color: #fff;
}
footer#footer .footer-widget form#subscribe-form div.subscribe-form input:-moz-placeholder { /* Firefox 18- */
  color: #fff;
  opacity: 1;
}
footer#footer .footer-widget form#subscribe-form div.subscribe-form input::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
  opacity: 1;
}
footer#footer .footer-widget form#subscribe-form div.subscribe-form input:-ms-input-placeholder { /* Internet Explorer 10+ */
  color: #fff;
}
footer#footer .footer-widget form#subscribe-form div.subscribe-form input:focus {
  background-color: #fff;
  color: #000;
}
footer#footer .footer-widget form#subscribe-form div.subscribe-form input:focus::-moz-placeholder {
  color: #000;
}
footer#footer .footer-widget form#subscribe-form div.subscribe-form input:focus::placeholder {
  color: #000;
}
footer#footer .footer-widget form#subscribe-form div.subscribe-form button {
  background-color: transparent;
  border-radius: 23px;
  border: none;
}
footer#footer .footer-widget form#subscribe-form div.subscribe-form button svg {
  width: 44px;
  height: 44px;
  transition: 0.3s ease;
}
footer#footer .footer-widget form#subscribe-form div.subscribe-form button svg circle {
  fill: #424C57;
  transition: 0.3s ease;
}
footer#footer .footer-widget form#subscribe-form div.subscribe-form button svg path {
  fill: #fff;
  transition: 0.3s ease;
}
footer#footer .footer-widget form#subscribe-form div.subscribe-form button:hover svg circle {
  fill: #fff;
  transition: 0.3s ease;
}
footer#footer .footer-widget form#subscribe-form div.subscribe-form button:hover svg path {
  fill: #424C57;
  transition: 0.3s ease;
}
footer#footer .footer-widget form#subscribe-form div.subscribe-form input:focus + button svg {
  transform: rotate(-180deg);
  transition: 0.3s;
}
footer#footer .footer-widget form#subscribe-form .subscribe-result {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 100%;
  display: block;
  padding: 0 20px;
  color: var(--basic-color2);
}
footer#footer .social {
  display: flex;
  gap: 10px;
}
footer#footer .social a {
  display: block;
  width: 34px;
  height: 34px;
}
footer#footer .social a img {
  width: 100%;
  height: 100%;
  display: block;
}
footer#footer .copyright {
  color: #fff;
  margin: 0;
  padding: 0 15px;
  background-color: var(--basic-color3);
  min-height: 40px;
}
footer#footer .copyright p {
  line-height: 40px;
}
footer#footer .copyright p span {
  font-weight: 500;
}
footer#footer .copyright p a {
  color: #fff;
  font-weight: 600;
}
footer#footer .copyright p a:hover {
  text-decoration: underline;
}
footer#footer .copyright .footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
}
footer#footer .copyright .footer-menu li a {
  color: #fff;
}
footer#footer .copyright .footer-menu li a:hover {
  text-decoration: underline;
}

#backTop {
  position: fixed;
  bottom: 35px;
  right: 20px;
  z-index: 10;
  background-color: #0d2432;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  text-decoration: none;
}
#backTop.show {
  opacity: 1;
  visibility: visible;
}
#backTop .pulse-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
  z-index: -1;
}
#backTop:hover {
  background-color: #fff;
  color: #0d2432;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

#whatsapp {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 11;
  width: 45px;
  height: 45px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  background: #01ec5d;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
#whatsapp svg path {
  fill: #fff;
  transition: 0.5s ease;
}
#whatsapp.show {
  opacity: 1;
  visibility: visible;
}
#whatsapp:hover {
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
#whatsapp:hover svg path {
  fill: #01ec5d;
}

/* animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
.blink {
  animation: blink-border 0.6s ease 0s 2;
  border: 2px solid red !important;
  border-radius: 4px;
}

@keyframes blink-border {
  0% {
    border-color: red;
  }
  50% {
    border-color: transparent;
  }
  100% {
    border-color: red;
  }
}
/* Mobile Small */
@media screen and (min-width: 320px) and (max-width: 480px) {
  #page-transition {
    position: fixed;
    left: 0;
    top: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    background: #10232c url("../media/images/loading-logo.webp") center center no-repeat;
    background-size: 150px;
    z-index: 999999;
    transform-origin: top center;
    transform: scaleY(1);
    pointer-events: none;
  }
  header.site-header {
    padding: 0 20px;
  }
  header.site-header .header-wrapper {
    height: 65px;
  }
  header.site-header .header-wrapper .left-column {
    gap: 20px;
  }
  header.site-header .header-wrapper .left-column a.logo {
    width: 100px;
  }
  header.site-header .header-wrapper .left-column nav {
    display: none;
  }
  header.site-header .header-wrapper .right-column .social, header.site-header .header-wrapper .right-column .phone, header.site-header .header-wrapper .right-column button.upload-cv {
    display: none;
  }
  header.site-header .header-wrapper .right-column button.toggle {
    display: block;
  }
  main {
    width: 100%;
    min-height: 50vh;
  }
  main h4.round-heading {
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #5A646F;
    background-color: #fff;
    line-height: 34px;
    padding: 0 25px;
    border-radius: 17px;
    display: flex;
    margin: 0;
  }
  main h3.medium-heading {
    display: block;
    line-height: 100%;
    font-size: 1.8vw;
    font-weight: 600;
    margin: 0;
    padding: 0;
  }
  main h2.big-heading {
    display: block;
    line-height: 100%;
    font-size: 2.4vw;
    font-weight: 800;
    margin: 0;
    padding: 0;
  }
  main section.home-slider {
    padding: 10px;
  }
  main section.home-slider .swiper {
    width: 100%;
    height: 100%;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content {
    padding: 20px;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content h3 {
    font-size: 14px;
    width: 100%;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content h2 {
    font-size: 9vw;
    width: 100%;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content p {
    display: block;
    margin: 10px 0;
    font-size: 14px;
    width: 100%;
    line-height: 115%;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content a.link {
    font-size: 14px;
    padding: 0 20px 0 55px;
    background-size: 40px;
    border-radius: 23px;
    line-height: 46px;
  }
  main section.home-slider .swiper.main-slider nav {
    width: 105px;
    height: 50px;
    position: absolute;
    right: 10px;
    top: 92%;
  }
  main section.home-slider .swiper.main-slider nav div.swiper-button-prev, main section.home-slider .swiper.main-slider nav div.swiper-button-next {
    margin: 0;
    width: 40px;
    height: 40px;
  }
  main section.home-slider .swiper.main-slider-thumbs {
    display: none;
  }
  main section.home-about {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background: url("../media/images/bg-about-section-1.png"), url("../media/images/bg-about-section-2.png"), url("../media/images/bg-about-section-3.png");
    background-position: left top, 48% 65%, right 105%;
    background-repeat: no-repeat;
    background-size: 100px, 340px, 100px;
    padding: 50px 15px;
  }
  main section.home-about .about-wrapper {
    width: 100%;
  }
  main section.home-about .about-wrapper .left-column {
    position: relative;
    z-index: 0;
    flex: 0 0 100%;
  }
  main section.home-about .about-wrapper .left-column figure.small-image {
    right: -140px;
    bottom: -40px;
  }
  main section.home-about .about-wrapper .left-column figure.small-image img {
    width: 45%;
  }
  main section.home-about .about-wrapper .right-column {
    gap: 10px;
    flex: 0 0 100%;
  }
  main section.home-about .about-wrapper .right-column h4 {
    margin-bottom: 5px;
  }
  main section.home-about .about-wrapper .right-column h2 {
    font-size: 8.6vw;
  }
  main section.home-about .about-wrapper .right-column p {
    line-height: 120%;
    font-size: 17px;
    margin: 5px 0 0;
  }
  main section.home-about .about-wrapper .right-column div.wp-block-button.main-link a.wp-element-button {
    font-size: 14px;
    font-size: 15px;
    height: 46px;
    line-height: 46px;
    padding: 1px 55px 1px 20px;
  }
  main section.home-services {
    padding: 50px 15px;
  }
  main section.home-services h4 {
    margin-bottom: 5px;
  }
  main section.home-services h2 {
    font-size: 8.6vw;
    width: 90%;
  }
  main section.home-services p {
    font-size: 17px;
    width: 100%;
  }
  main section.home-services .services-container {
    width: 100%;
  }
  main section.home-services .services-container .services-outer {
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-start;
  }
  main section.home-services .services-container .services-outer .service-column {
    flex: 0 0 100%; /* subtract part of gap */
    max-width: 100%;
  }
  main section.home-services .services-container .services-outer .service-column .image-container {
    background-color: #D6D8DA;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 340px;
    height: 317px;
    margin: 15px auto 0;
  }
  main section.how-it-works {
    gap: 0;
  }
  main section.how-it-works .work-wrapper {
    gap: 0;
  }
  main section.how-it-works .work-wrapper .wp-block-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  main section.how-it-works .work-wrapper .wp-block-column:first-of-type {
    flex: 0 0 100%;
    max-width: 100%;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type {
    padding: 25px 15px 15px;
    flex: 0 0 100%;
    max-width: 100%;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type h2 {
    font-size: 7.6vw;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type div.wp-block-button.main-link a.wp-element-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    height: 48px;
    line-height: 48px;
    padding: 3px 67px 3px 30px;
    background: #12232D url("../media/images/icon-arrow.png") calc(100% - 3px) center no-repeat;
    background-size: 41px 41px;
    color: #fff;
    font-weight: 500;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type div.wp-block-button.main-link a.wp-element-button:hover {
    background-color: #fff;
    color: #000;
  }
  main section.how-it-works .work-wrapper .how-it-works {
    width: 100%;
    margin: 0 auto;
    gap: 0;
  }
  main section.how-it-works .processes-wrapper {
    width: 100%;
    margin: 0 auto 30px;
    padding: 15px;
  }
  main section.how-it-works .processes-wrapper .processes-column {
    padding: 25px 20px;
  }
  main section.how-it-works .processes-wrapper .processes-column svg {
    margin-bottom: 15px;
  }
  main section.how-it-works .processes-wrapper .processes-column h4 {
    font-size: 18px;
  }
  main section.faqs .faqs-wrapper {
    display: flex;
    flex-direction: column;
    grid-template-columns: auto;
    width: 100%;
  }
  main section.faqs .faqs-wrapper .left-column {
    padding: 15px;
    background-color: #EAEEF1;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    order: 1;
  }
  main section.faqs .faqs-wrapper .left-column .faq-wrapper {
    width: 100%;
  }
  main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item {
    border-bottom: 1px solid #D9D9D9;
    padding: 20px 0;
  }
  main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item .question span {
    font-size: 18px;
    line-height: 110%;
  }
  main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item p {
    font-size: 15px;
    padding: 15px 0 0;
    line-height: 120%;
    width: 100%;
  }
  main section.faqs .faqs-wrapper .right-column {
    order: 0;
    padding: 15px;
  }
  main section.faqs .faqs-wrapper .right-column img {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    border-radius: 15px;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns {
    bottom: 20px;
    padding: 25px;
    gap: 25px;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns h4 {
    font-size: 28px;
    line-height: 110%;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns p {
    font-size: 20px;
    line-height: 120%;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns .main-link a.wp-element-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    height: 52px;
    line-height: 52px;
    padding: 3px 65px 3px 25px;
    background: #12232D url("../media/images/icon-arrow.png") calc(100% - 3px) center no-repeat;
    background-size: 46px;
    color: #fff;
    font-weight: 500;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns .main-link a.wp-element-button:hover {
    background-color: #fff;
    color: #000;
  }
  main section.elevate-job {
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: center center, left 10px, 80% center, calc(100% - 50px) bottom;
    background-size: 400px, 15px, 200px, 120px;
    height: auto;
  }
  main section.elevate-job .elevate-wrapper .left-column {
    flex: 0 0 100%;
    height: auto;
    padding-top: 30px;
    order: 1;
  }
  main section.elevate-job .elevate-wrapper .left-column figure img {
    height: 100%;
  }
  main section.elevate-job .elevate-wrapper .right-column {
    padding: 50px 25px 0;
    flex: 0 0 100%;
    order: 0;
  }
  main section.elevate-job .elevate-wrapper .right-column h2 {
    font-size: 7.6vw;
    font-weight: 800;
    width: 100%;
    line-height: 100%;
    margin: 0 0 15px;
    text-align: center;
  }
  main section.elevate-job .elevate-wrapper .right-column ol {
    padding-left: 0;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li {
    padding-left: 35px;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li:nth-child(2) {
    margin-left: 0;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li::before {
    left: -5px;
    top: -10px;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li span {
    font-size: 18px;
    font-weight: 700;
    display: block;
    line-height: 150%;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li p {
    font-size: 15px;
    font-weight: 400;
    line-height: 130%;
  }
  main section.home-blog {
    padding: 30px 0 100px;
    background-color: #fff;
    background-image: url("../media/images/blog-bg-1.png"), url("../media/images/blog-bg-2.png"), url(../media/images/blog-bg.webp);
    background-position: left top, left 100%, center center;
    background-size: 120px, 140px, 80%;
    background-repeat: no-repeat, no-repeat, no-repeat;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
  main section.home-blog .home-blog-wrapper {
    width: 100%;
    margin: 0 auto;
    gap: 15px;
    padding: 15px;
    flex-direction: column;
  }
  main section.home-blog .home-blog-wrapper .left-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  main section.home-blog .home-blog-wrapper .left-column h2 {
    font-size: 8.2vw;
  }
  main section.home-blog .home-blog-wrapper .right-column {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: flex-start;
  }
  main section.home-blog .home-blog-wrapper .right-column div.wp-block-button.view-all a.wp-block-button__link {
    padding: 3px 35px 3px 65px;
  }
  main section.home-blog .blog-container {
    width: 100%;
    padding: 15px;
  }
  main section.home-blog .blog-container .post-item {
    display: flex;
    flex-direction: column;
    grid-template-columns: auto;
    gap: 20px;
    margin: 0 0 25px;
  }
  main section.home-blog .blog-container .post-item .post-image-url {
    width: 100%;
    overflow: hidden;
  }
  main section.home-blog .blog-container .post-item .post-image-url img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main section.home-blog .blog-container .post-item .post-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 3px 0;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic ul {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    display: flex;
    gap: 25px;
    justify-content: flex-start;
    align-items: center;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic ul li {
    font-size: 12px;
    color: #313B46;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic ul li span {
    font-size: 14px;
    font-weight: 500;
    color: #424C57;
    text-transform: capitalize;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic a {
    display: block;
    color: #313B46;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic a h3 {
    display: block;
    line-height: 100%;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    padding: 0;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic a:hover {
    color: var(--basic-color3);
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic p.post-excerpt {
    margin: 10px 0;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    font-size: 13px;
    font-weight: 600;
    color: #313B46;
    gap: 5px;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link svg {
    width: 22px;
    transition: 0.3s ease;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link:hover {
    color: #000;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link:hover svg {
    margin-left: 5px;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link:hover svg path {
    fill: #000;
  }
  main section.home-blog .blog-container .post-item:last-of-type {
    margin-bottom: 0;
  }
  main section.home-blog .blog-container .featured-post {
    position: relative;
    z-index: 0;
    margin-bottom: 25px;
  }
  main section.home-blog .blog-container .featured-post .image {
    height: 400px;
  }
  main section.home-blog .blog-container .featured-post .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main section.home-blog .blog-container .featured-post .image::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  }
  main section.home-blog .blog-container .featured-post .featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    color: #fff;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  main section.home-blog .blog-container .featured-post .featured-content a.post-title {
    color: #fff;
    display: block;
  }
  main section.home-blog .blog-container .featured-post .featured-content a.post-title h3 {
    line-height: 100%;
    font-size: 25px;
  }
  main section.home-blog .blog-container .featured-post .featured-content p.post-excerpt {
    font-size: 16px;
    line-height: 120%;
  }
  main section.home-blog .blog-container .featured-post .featured-content a.post-link {
    display: flex;
    gap: 10px;
    font-size: 13px;
    gap: 5px;
  }
  main section.about-who {
    padding: 30px 15px;
  }
  main section.about-who .about-who-wrapper {
    width: 100%;
  }
  main section.about-who .about-who-wrapper .left-column {
    padding-right: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  main section.about-who .about-who-wrapper .left-column h2 {
    font-size: 7.6vw;
  }
  main section.about-who .about-who-wrapper .right-column {
    position: relative;
    z-index: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  main section.about-who .about-who-wrapper .right-column figure.large-image {
    position: relative;
    z-index: 1;
  }
  main section.about-who .about-who-wrapper .right-column figure.large-image img {
    width: 100%;
  }
  main section.about-who .about-who-wrapper .right-column figure.small-image {
    position: absolute;
    z-index: 2;
    left: 30px;
    bottom: -50px;
  }
  main section.about-who .about-who-wrapper .right-column figure.small-image img {
    width: 55%;
  }
  main section.about-process {
    padding: 50px 15px;
    flex-direction: column;
    gap: 15px;
  }
  main section.about-process h2 {
    width: 100%;
    padding-right: 0;
    font-size: 7.6vw;
    text-align: center;
  }
  main section.about-process .process-wrapper {
    width: 100%;
    gap: 15px;
  }
  main section.about-process .process-wrapper .image-column {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 100%;
  }
  main section.about-process .process-wrapper .image-column figure {
    width: 100%;
    height: 100%;
  }
  main section.about-process .process-wrapper .content-column {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 100%;
  }
  main section.about-process .process-wrapper .content-column .columns-wrapper {
    grid-template-columns: repeat(1, 1fr);
    min-height: 100%;
  }
  main section.about-process .process-wrapper .content-column .columns-wrapper .process-step {
    background-color: #fff;
    padding: 20px;
  }
  main section.about-process .process-wrapper .content-column .columns-wrapper .process-step svg {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  main section.about-process .process-wrapper .content-column .columns-wrapper .process-step h3 {
    font-size: 22px;
  }
  main section.about-experts {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  main section.about-experts .about-experts-wrapper .left-column {
    gap: 10px;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 25px 15px 0;
    order: 1;
  }
  main section.about-experts .about-experts-wrapper .left-column h2 {
    font-size: 7.6vw;
    width: 110%;
  }
  main section.about-experts .about-experts-wrapper .left-column p {
    font-size: 16px;
    width: 100%;
    line-height: 120%;
  }
  main section.about-experts .about-experts-wrapper .right-column {
    flex: 0 0 100%;
    max-width: 100%;
    order: 0;
  }
  main section.about-experts .about-experts-wrapper .right-column figure {
    width: 100%;
  }
  main section.about-experts #our-expers-wrapper {
    width: 100%;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a.image {
    width: 100%;
    height: auto;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item h3 {
    font-size: 18px;
    font-weight: 600;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item span {
    font-size: 14px;
    font-weight: 500;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a {
    gap: 12px;
    width: 100px;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a svg {
    width: 25px;
    height: 25px;
  }
  main section.about-experts #our-expers-wrapper #our-expers-load-more {
    height: 48px;
    border-radius: 24px;
    color: #fff;
    background-color: #000;
    padding: 3px 30px 3px 3px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    display: none;
  }
  main section.about-experts #our-expers-wrapper #our-expers-load-more svg {
    width: 42px;
    height: 42px;
    transition: 0.3s ease;
  }
  main section.about-experts #our-expers-wrapper #our-expers-load-more:hover {
    background-color: var(--basic-color2);
    color: #fff;
  }
  main section.about-experts #our-expers-wrapper #our-expers-load-more:hover svg {
    transform: rotate(90deg);
  }
  main section.our-experts-single {
    padding: 20px 0 120px;
  }
  main section.our-experts-single div.info {
    padding: 20px 20px 30px;
  }
  main section.our-experts-single div.info .expert-image {
    margin-bottom: 15px;
  }
  main section.our-experts-single div.info .expert-image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main section.our-experts-single div.info hr {
    border: none;
    height: 1px;
    opacity: 1;
    background-color: #D9D9D9;
    margin: 15px 0;
    padding: 0;
  }
  main section.our-experts-single div.info .expert-meta ul.info-ul li::before {
    font-size: 30px;
  }
  main section.our-experts-single div.info .social {
    margin-top: 25px;
  }
  main section.our-experts-single div.info .social a svg {
    width: 25px;
    height: 25px;
  }
  main section.our-experts-single a.back {
    margin-top: 25px;
  }
  main section.our-experts-single h3 {
    font-size: 25px;
    font-weight: 600;
  }
  main section.our-experts-single blockquote.wp-block-quote {
    border-left: 5px solid var(--basic-color2);
    padding: 15px 15px 15px 25px;
    margin: 35px 0 0;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.02);
  }
  main section.our-experts-single blockquote.wp-block-quote p {
    font-size: 18px;
    margin-bottom: 15px;
  }
  main section.our-experts-single blockquote.wp-block-quote h5 {
    font-size: 14px;
    font-weight: 700;
  }
  main section.our-experts-single p {
    font-size: 15px;
  }
  main section.our-experts-single ul.wp-block-list {
    margin: 25px 0;
    font-size: 15px;
  }
  main section.our-experts-single ul.wp-block-list li::before {
    font-size: 13px;
  }
  main section.counter {
    background: #313B46 url("../media/images/bg-counter-1.png") center center no-repeat;
    background-size: 350px;
    padding: 80px 15px;
  }
  main section.counter .counter-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 15px;
         column-gap: 15px;
    row-gap: 15px;
  }
  main section.counter .counter-wrapper .item {
    padding: 10px;
  }
  main section.counter .counter-wrapper .item h2 {
    font-size: 14.6vw;
    line-height: 120%;
  }
  main section.counter .counter-wrapper .item h6 {
    font-size: 14px;
    font-weight: 500;
    display: block;
    line-height: 120%;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
  }
  main section.testimonial {
    justify-content: center;
    align-items: center;
    padding: 50px 15px 120px;
  }
  main section.testimonial h2.wp-block-heading {
    line-height: 110%;
    font-size: 7.4vw;
    text-align: center;
    width: 90%;
  }
  main section.testimonial .swiper .swiper-wrapper .swiper-slide .content {
    padding: 15px 25px;
  }
  main section.testimonial .swiper .swiper-wrapper .swiper-slide .content svg {
    width: 100px;
  }
  main section.testimonial .swiper .swiper-wrapper .swiper-slide .content ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
  }
  main section.testimonial .swiper .swiper-wrapper .swiper-slide .content ul li img {
    display: none;
  }
  main section.employer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: url("../media/images/bg-about-section-1.png"), url("../media/images/bg-about-section-2.png"), url("../media/images/bg-about-section-3.png");
    background-position: left top, center center, right 110%;
    background-repeat: no-repeat;
    background-size: 120px, 400px, 130px;
    padding: 20px 15px 40px;
  }
  main section.employer .employer-wrapper {
    width: 100%;
  }
  main section.employer .employer-wrapper .right-column figure.large-image img {
    width: 100%;
  }
  main section.employer .employer-wrapper .right-column figure.small-image {
    right: -160px;
    bottom: -35px;
  }
  main section.employer .employer-wrapper .right-column figure.small-image img {
    width: 45%;
  }
  main section.employer .employer-wrapper .left-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    padding-right: 25px;
  }
  main section.employer .employer-wrapper .left-column h4 {
    margin-bottom: 5px;
  }
  main section.employer .employer-wrapper .left-column h2 {
    font-size: 8.6vw;
  }
  main section.employer .employer-wrapper .left-column h3 {
    font-size: 20px;
    font-weight: 500;
  }
  main section.employer .employer-wrapper .left-column p {
    margin: 5px 0 0;
    padding: 0;
    line-height: 140%;
    font-size: 15px;
  }
  main section.employer .employer-wrapper .left-column div.wp-block-button.main-link a.wp-element-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 15px;
    height: 48px;
    line-height: 48px;
    padding: 3px 62px 3px 25px;
    background: #12232D url("../media/images/icon-arrow.png") calc(100% - 3px) center no-repeat;
    background-size: 41px 41px;
    color: #fff;
    font-weight: 500;
  }
  main section.employer .employer-wrapper .left-column div.wp-block-button.main-link a.wp-element-button:hover {
    background-color: #fff;
    color: #000;
  }
  main section.employer-form {
    padding: 50px 15px 20px;
  }
  main section.employer-form .employer-form-wrapper {
    width: 100%;
  }
  main section.employer-form .employer-form-wrapper .left-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  main section.employer-form .employer-form-wrapper .left-column h3 {
    font-size: 8.6vw;
    line-height: 100%;
  }
  main section.employer-form .employer-form-wrapper .right-column {
    padding-top: 0;
  }
  main section.employer-form form#employer-form {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    background-size: 100px;
  }
  main section.employer-form form#employer-form h5 {
    font-size: 20px;
    margin: 0 0 12px;
  }
  main section.employer-form form#employer-form label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 8px;
  }
  main section.employer-form form#employer-form label span {
    line-height: 15px;
    margin-bottom: 10px;
  }
  main section.employer-form form#employer-form label .resume-upload {
    max-width: 100%;
    border: 1px dashed #BBBFC4;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    text-align: center;
    padding: 30px 25px;
  }
  main section.employer-form form#employer-form label .resume-upload div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    line-height: 100%;
  }
  main section.employer-form form#employer-form label .resume-upload div svg {
    width: 50px;
    display: block;
    margin: 0 auto 30px;
  }
  main section.employer-form form#employer-form label .resume-upload div strong {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 120%;
  }
  main section.employer-form form#employer-form label .resume-upload div span {
    font-size: 13px;
    font-weight: 400;
    color: #5A646F;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 100%;
  }
  main section.employer-form form#employer-form label .resume-upload div span.browse {
    border: 1px solid #DDDDDD;
    font-size: 14px;
    padding: 0 15px;
    border-radius: 6px;
    line-height: 32px;
    margin-top: 20px;
  }
  main section.employer-form form#employer-form label .resume-upload .upload-content small {
    color: #64748b;
    display: block;
    margin-top: 8px;
  }
  main section.employer-form form#employer-form label .resume-upload .file-name {
    margin-top: 12px;
    font-size: 14px;
    color: #16a34a;
    font-weight: 500;
    display: none;
  }
  main section.employer-form form#employer-form label .resume-upload:hover, main section.employer-form form#employer-form label .resume-upload.dragover {
    border-color: #2563eb;
    background: #eff6ff;
  }
  main section.employer-form form#employer-form label.i-agree {
    justify-content: flex-start;
    align-items: flex-start;
  }
  main section.employer-form form#employer-form label.i-agree input#i-agree {
    width: 45px;
    height: 17.46px;
  }
  main section.employer-form form#employer-form label.i-agree span.i-agree {
    line-height: 130%;
    display: block;
  }
  main section.employer-form form#employer-form button[type=submit].form-submit {
    padding: 3px 35px 3px 3px;
  }
  main section.employer-form form#employer-form em.note {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin: 15px 0;
  }
  main section.employer-form form#employer-form div.results {
    font-size: 15px;
    font-weight: 600;
    display: block;
    color: var(--basic-color3);
    line-height: 1;
    margin-top: 20px;
  }
  main section.candidate {
    background: url("../media/images/candidate-image-2.webp");
    background-position: center 80px;
    background-size: 388px;
    background-repeat: no-repeat;
    padding: 20px 15px 20px;
  }
  main section.candidate .candidate-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }
  main section.candidate .candidate-wrapper .left-column figure.large-image {
    height: 420px;
    margin: 0;
  }
  main section.candidate .candidate-wrapper .right-column {
    gap: 5px;
    padding-right: 0;
  }
  main section.candidate .candidate-wrapper .right-column h4 {
    margin-bottom: 5px;
  }
  main section.candidate .candidate-wrapper .right-column h2 {
    font-size: 8.6vw;
  }
  main section.candidate .candidate-wrapper .right-column h3 {
    font-size: 20px;
    font-weight: 500;
  }
  main section.candidate .candidate-wrapper .right-column p {
    font-size: 16px;
  }
  main section.candidate .candidate-wrapper .right-column ul li {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }
  main section.candidate .candidate-wrapper .right-column ul li div span {
    font-size: 16px;
    font-weight: 700;
  }
  main section.candidate .candidate-wrapper .right-column ul li div p {
    font-size: 13px;
  }
  main section.candidate-form {
    padding: 50px 15px 20px;
  }
  main section.candidate-form .candidate-form-wrapper {
    width: 100%;
  }
  main section.candidate-form .candidate-form-wrapper .left-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  main section.candidate-form .candidate-form-wrapper .left-column h3 {
    font-size: 8.6vw;
    line-height: 110%;
  }
  main section.candidate-form .candidate-form-wrapper .left-column p {
    font-size: 15px;
    line-height: 125%;
  }
  main section.candidate-form form#candidate-form {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    background-size: 100px;
  }
  main section.candidate-form form#candidate-form h5 {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    padding: 0;
  }
  main section.candidate-form form#candidate-form .if-yes {
    display: none;
  }
  main section.candidate-form form#candidate-form label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 8px;
  }
  main section.candidate-form form#candidate-form label span {
    line-height: 20px;
    margin-bottom: 10px;
  }
  main section.candidate-form form#candidate-form label.i-agree, main section.candidate-form form#candidate-form label.i-confirm {
    align-items: flex-start;
  }
  main section.candidate-form form#candidate-form label.i-agree input#i-agree, main section.candidate-form form#candidate-form label.i-agree input#i-confirm, main section.candidate-form form#candidate-form label.i-confirm input#i-agree, main section.candidate-form form#candidate-form label.i-confirm input#i-confirm {
    width: 25px;
    height: 17.46px;
  }
  main section.candidate-form form#candidate-form label.i-agree span.i-agree, main section.candidate-form form#candidate-form label.i-agree span.i-confirm, main section.candidate-form form#candidate-form label.i-confirm span.i-agree, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm {
    display: block;
  }
  main section.candidate-form form#candidate-form label.i-agree span.i-agree strong, main section.candidate-form form#candidate-form label.i-agree span.i-confirm strong, main section.candidate-form form#candidate-form label.i-confirm span.i-agree strong, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm strong {
    font-weight: 700;
  }
  main section.candidate-form form#candidate-form label.i-agree span.i-agree a, main section.candidate-form form#candidate-form label.i-agree span.i-confirm a, main section.candidate-form form#candidate-form label.i-confirm span.i-agree a, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm a {
    font-size: 14px;
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit {
    height: 54px;
    border-radius: 27px;
    padding: 3px 25px 3px 3px;
    border: none;
    background: #12232D;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit svg {
    width: 46px;
    height: 46px;
    transition: 0.3s ease;
    margin-right: 10px;
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit:hover {
    background: var(--basic-color2);
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit:hover svg {
    transform: rotate(90deg);
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  main section.candidate-form form#candidate-form em.note {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin: 15px 0;
  }
  main section.candidate-form form#candidate-form div.results {
    font-size: 15px;
    font-weight: 600;
    display: block;
    color: var(--basic-color3);
    line-height: 1;
    margin-top: 20px;
  }
  main section.blog {
    padding: 20px 0 130px;
    background: #fff url("../media/images/bg-blog-1.png") bottom calc(100% - 50px) no-repeat;
    background-size: 100px;
  }
  main section.blog h2 {
    font-size: 8.6vw;
  }
  main section.blog .blog-item {
    border: 1px solid #D9D9D9;
    background-color: #fff;
    border-radius: 10px;
    transition: 0.3s ease;
  }
  main section.blog .blog-item a.image {
    display: block;
    width: 100%;
    height: 220px;
    background-color: var(--basic-color1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }
  main section.blog .blog-item a.image em {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 5;
    background-color: #fff;
    color: var(--basic-color2);
    font-size: 13px;
    font-style: normal;
    padding: 0 15px;
    font-weight: 600;
    line-height: 30px;
    display: block;
    border-radius: 15px;
  }
  main section.blog .blog-item .content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    flex: 1;
  }
  main section.blog .blog-item .content ul {
    gap: 10px;
  }
  main section.blog .blog-item .content ul li {
    font-size: 12px;
  }
  main section.blog .blog-item .content ul li span {
    font-size: 12px;
    font-weight: 500;
  }
  main section.blog .blog-item .content a.link {
    font-size: 6.6vw;
  }
  main section.blog .blog-item .content p {
    line-height: 135%;
    font-size: 14px;
  }
  main section.blog .blog-item .content a.readmore {
    font-size: 13px;
    margin-top: 5px;
  }
  main section.blog .blog-item .content a.readmore svg {
    width: 18px;
  }
  main section.blog .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    margin: 25px 0;
    font-size: 18px;
  }
  main section.blog .pagination span.current {
    display: block;
    border: 1px solid #D9D9D9;
    background-color: #fff;
    color: #000;
    line-height: 50px;
    text-align: center;
    border-radius: 8px;
    height: 50px;
    min-width: 50px;
  }
  main section.blog .pagination a {
    display: block;
    line-height: 46px;
    border: 1px solid #1F2B38;
    background-color: #1F2B38;
    color: #fff;
    min-width: 46px;
    padding: 0 15px;
    text-align: center;
    border-radius: 6px;
  }
  main section.blog .pagination a.next, main section.blog .pagination a.prev {
    font-size: 15px;
  }
  main section.blog .pagination a:hover {
    background-color: #EAEEF1;
    border-color: #EAEEF1;
    color: #000;
  }
  main section.single-post-breadcrumbs {
    width: calc(100% - 30px);
    height: calc(65vh - 50px);
    padding: 0 10px;
  }
  main section.single-post-breadcrumbs h1 {
    font-size: 8.2vw;
  }
  main section.single-post-breadcrumbs ul {
    align-items: flex-start;
  }
  main section.single-post-breadcrumbs ul li span {
    font-size: 14px;
  }
  main section.single-post-breadcrumbs ul li::after {
    margin: 0 10px;
  }
  main section.single-post-breadcrumbs ul li:last-of-type::after {
    display: none;
  }
  main section.single-post-breadcrumbs::after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 10%, rgba(0, 0, 0, 0.3) 55%);
  }
  main section.our-expers-breadcrumbs {
    margin: 10px;
    padding: 15px;
    height: 200px;
  }
  main section.our-expers-breadcrumbs h1 {
    font-size: 6.6vw;
  }
  main section.blog-single {
    padding: 30px 0 100px;
  }
  main section.blog-single ul.post-meta {
    gap: 10px;
  }
  main section.blog-single ul.post-meta li {
    font-size: 10px;
  }
  main section.blog-single ul.post-meta li span {
    font-size: 10px;
  }
  main section.blog-single p {
    font-size: 15px;
  }
  main section.blog-single p.thick-p {
    display: block;
    font-size: 20px;
    line-height: 120%;
    font-weight: 500;
  }
  main section.blog-single blockquote {
    background: #EAEEF1 url("../media/images/quote.png") 30px 30px no-repeat;
    color: #000;
    border-radius: 15px;
    padding: 30px 30px 30px 140px;
    margin: 20px 0;
  }
  main section.blog-single blockquote p {
    font-size: 22px;
    line-height: 120%;
    font-weight: 500;
    margin: 0 0 10px;
    padding: 0;
  }
  main section.blog-single blockquote h6 {
    display: block;
    line-height: 120%;
    position: relative;
    margin: 0;
    padding: 0 0 0 60px;
    font-size: 14px;
  }
  main section.blog-single blockquote h6::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    height: 1px;
    background-color: #000;
    width: 50px;
  }
  main section.blog-single h4 {
    font-size: 25px;
    font-weight: 700;
    line-height: 160%;
    display: block;
    margin: 0;
    padding: 0;
  }
  main section.blog-single .image-column {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    margin: 25px 0;
  }
  main section.blog-single .image-column figure.wp-block-image {
    width: 100%;
  }
  main section.blog-single .image-column figure.wp-block-image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
  }
  main section.blog-single div.tags {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 25px 0;
  }
  main section.blog-single div.tags .links a {
    font-size: 10px;
    padding: 0 10px;
    font-weight: 600;
    line-height: 25px;
    border-radius: 10px;
  }
  main section.blog-single ul.next-prev li a {
    gap: 5px;
  }
  main section.blog-single ul.next-prev li svg {
    width: 35px;
    height: 35px;
  }
  main section.blog-single {
    /* ===== Comments Area ===== */
  }
  main section.blog-single .comments-area {
    /* Comments title */
  }
  main section.blog-single .comments-area h3 {
    font-size: 22px;
  }
  main section.blog-single .comments-area h4 {
    font-size: 18px;
  }
  main section.blog-single .comments-area {
    /* ===== Comment List ===== */
  }
  main section.blog-single .comments-area .comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  main section.blog-single .comments-area .comment-list li.comment {
    margin-bottom: 30px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 1px solid #D9D9D9;
    font-weight: 600;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard b.fn a.url {
    pointer-events: none;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    text-transform: capitalize;
    color: #000;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard span.says {
    display: none;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata {
    display: flex;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata a {
    color: #000;
    font-size: 12px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata a time {
    font-weight: 600;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata span.edit-link a.comment-edit-link {
    font-size: 13px;
    color: #888;
    display: none;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.comment-content {
    display: block;
    padding-left: 100px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.comment-content p {
    margin: 0 0 10px;
    line-height: 130%;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.comment-content p:last-of-type {
    margin: 0;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 100px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply a.comment-reply-link {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    position: relative;
    display: flex;
    gap: 5px;
    align-items: center;
    text-decoration: none;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply a.comment-reply-link::after {
    transition: 0.3s ease;
    content: "";
    display: inline-block;
    width: 18px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='15' fill='none' viewBox='0 0 28 15'%3E%3Cpath fill='%23313b46' d='M19.94.296a1 1 0 0 0 0 1.42l4.6 4.6H1a1 1 0 1 0 0 2h23.52l-4.58 4.57a1 1 0 0 0 0 1.41 1 1 0 0 0 1.41 0l6.36-6.36a.88.88 0 0 0 0-1.27L21.36.296a1 1 0 0 0-1.42 0'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply a.comment-reply-link:hover::after {
    margin-left: 5px;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children {
    list-style: none;
    margin: 0;
    padding: 0 0 0 100px;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor {
    margin: 0;
    padding: 0;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 0px solid #D9D9D9;
    font-weight: 600;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-author.vcard img.avatar {
    width: 50px;
    height: 50px;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-author.vcard b.fn a.url {
    font-size: 14px;
    font-weight: 700;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-author.vcard span.says {
    display: none;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-metadata a {
    font-size: 12px;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-metadata span.edit-link a.comment-edit-link {
    display: none;
  }
  main section.blog-single .comments-area {
    /* ===== Comment Form ===== */
  }
  main section.blog-single .comments-area .comment-respond {
    padding: 20px;
  }
  main section.blog-single .comments-area .comment-respond h3.comment-reply-title {
    font-size: 20px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p {
    margin: 0;
    padding: 0;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-cookies-consent {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-cookies-consent input[type=checkbox] {
    display: block;
    width: 16px;
    height: 16px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #344252;
    border-radius: 3px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-cookies-consent label {
    display: block;
    font-size: 12px;
    line-height: 16px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author input[type=text], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author input[type=email], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author input[type=url], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author textarea, main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email input[type=text], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email input[type=email], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email input[type=url], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email textarea, main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url input[type=text], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url input[type=email], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url input[type=url], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.form-submit {
    /* Submit button */
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.form-submit input[type=submit] {
    background-size: 35px 35px;
    height: 42px;
    padding: 2px 20px 2px 55px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
  }
  main section.blog-single .comments-area {
    /* Cancel reply link */
  }
  main section.blog-single .comments-area #cancel-comment-reply-link {
    display: inline-block;
    margin-left: 10px;
    font-size: 14px;
    color: #999;
    text-decoration: none;
  }
  main section.blog-single .comments-area #cancel-comment-reply-link:hover {
    color: #000;
  }
  main section.blog-single aside.sidebar .widget .wp-block-columns.category, main section.blog-single aside.sidebar .widget .wp-block-columns.search, main section.blog-single aside.sidebar .widget .wp-block-columns.recent-posts, main section.blog-single aside.sidebar .widget .wp-block-columns.tags-column {
    padding: 20px;
    border-radius: 10px;
  }
  main section.blog-single aside.sidebar .widget .wp-block-columns.category h5.wp-block-heading, main section.blog-single aside.sidebar .widget .wp-block-columns.category label, main section.blog-single aside.sidebar .widget .wp-block-columns.search h5.wp-block-heading, main section.blog-single aside.sidebar .widget .wp-block-columns.search label, main section.blog-single aside.sidebar .widget .wp-block-columns.recent-posts h5.wp-block-heading, main section.blog-single aside.sidebar .widget .wp-block-columns.recent-posts label, main section.blog-single aside.sidebar .widget .wp-block-columns.tags-column h5.wp-block-heading, main section.blog-single aside.sidebar .widget .wp-block-columns.tags-column label {
    font-size: 17px;
  }
  main section.blog-single aside.sidebar .widget .wp-block-columns.image-link div.wp-block-columns.links .wp-block-column h3.wp-block-heading {
    font-size: 28px;
    font-weight: 800;
  }
  main section.get-in-touch {
    padding: 30px 15px;
  }
  main section.get-in-touch .get-in-touch-wrapper {
    width: 100%;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-content h2 {
    font-size: 8.6vw;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-content .customizer-items {
    display: flex;
    flex-direction: column;
    margin: 15px 0;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-form {
    padding: 20px;
    border-radius: 20px;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-form h3.wp-block-heading {
    font-size: 8.6vw;
  }
  main section.get-in-touch .location-map {
    padding: 80px 0 120px;
    width: 100%;
  }
  main section.get-in-touch .location-map .wp-block-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }
  main section.get-in-touch .location-map .wp-block-column iframe {
    width: calc(100% - 30px);
    height: 550px;
    border: none;
    border-radius: 30px;
  }
  main section.location {
    padding: 30px 0;
  }
  main section.location .location-map {
    width: 100%;
  }
  main section.location .location-map .wp-block-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  main section.location .location-map .wp-block-column h4 {
    margin: 0;
  }
  main section.location .location-map .wp-block-column h2 {
    margin: 0;
    font-size: 8.6vw;
  }
  main section.location .location-map .wp-block-column iframe {
    width: 98%;
  }
  main section.breadcrumbs {
    margin: 10px;
    padding: 15px;
    height: 200px;
  }
  main section.breadcrumbs h1 {
    font-size: 8.6vw;
  }
  main section.breadcrumbs ul li span {
    font-size: 14px;
  }
  main section.policy-pages {
    padding: 20px 15px 100px;
  }
  main section.policy-pages .wp-block-columns {
    width: 100%;
  }
  main section.policy-pages .wp-block-columns .wp-block-column h2.wp-block-heading {
    font-size: 8.6vw;
  }
  main section.policy-pages .wp-block-columns .wp-block-column h3.wp-block-heading {
    font-size: 20px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column h4.wp-block-heading {
    font-size: 17px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column h5.wp-block-heading {
    font-size: 15px;
    font-weight: 700;
  }
  main section.policy-pages .wp-block-columns .wp-block-column blockquote {
    margin: 25px 0;
    padding: 10px 0 10px 15px;
    border-left: 10px solid var(--basic-color2);
  }
  main section.policy-pages .wp-block-columns .wp-block-column blockquote p {
    font-size: 25px;
    font-weight: 400;
    line-height: 120%;
  }
  main section.policy-pages .wp-block-columns .wp-block-column p {
    font-size: 15px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column ul {
    font-size: 14px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column ul li::before {
    font-size: 11px;
  }
  footer#footer {
    background: #F1F4F7 url("../media/images/footer-element.png") right bottom no-repeat;
    background-size: 430px;
    font-size: 13px;
    font-weight: 500;
  }
  footer#footer .cta {
    background: #0D2432 url("../media/images/footer-cta-bg.png") 15px 15px no-repeat;
    background-size: 100px auto;
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    margin: -80px 15px 0;
    gap: 15px;
  }
  footer#footer .cta .content h2 {
    font-size: 30px;
    line-height: 105%;
  }
  footer#footer .cta .content p {
    font-size: 16px;
    line-height: 110%;
  }
  footer#footer .cta a span {
    display: block;
    padding: 0 25px;
  }
  footer#footer .footer-widget h5 {
    font-size: 18px;
    line-height: 140%;
  }
  footer#footer .footer-widget .menu-footer-container ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  footer#footer .footer-widget .menu-footer-container ul.menu li.menu-item a {
    line-height: 30px;
    font-weight: 500;
  }
  footer#footer .footer-widget ul.contact-info-widget {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
  }
  footer#footer .footer-widget ul.contact-info-widget li {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  footer#footer .footer-widget ul.contact-info-widget li img {
    display: block;
    width: 20px;
  }
  footer#footer .footer-widget ul.contact-info-widget li span {
    display: block;
    line-height: 1.35;
    font-size: 14px;
    font-weight: 500;
  }
  footer#footer .footer-widget .wp-block-image img {
    width: 172px;
  }
  footer#footer .footer-widget p {
    margin: 0 0 30px;
    padding: 0;
    font-size: 14px;
    line-height: 140%;
    display: block;
  }
  footer#footer .footer-widget form#subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form {
    height: 52px;
    background-color: #BBBFC4;
    display: grid;
    grid-template-columns: 1fr 44px;
    padding: 3px;
    gap: 3px;
    border-radius: 25px;
    overflow: hidden;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input {
    background-color: transparent;
    border: none;
    border-radius: 26px;
    display: block;
    height: 100%;
    padding: 0 20px;
    color: #fff;
    /* Standard syntax for modern browsers */
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input::-moz-placeholder {
    color: #fff; /* Sets the placeholder color to red (use any valid color value) */
    opacity: 1; /* Ensures full opacity, as some browsers (Firefox) apply a default lower opacity */
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input::placeholder {
    color: #fff; /* Sets the placeholder color to red (use any valid color value) */
    opacity: 1; /* Ensures full opacity, as some browsers (Firefox) apply a default lower opacity */
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input {
    /* Vendor-prefixed pseudo-elements for broader compatibility */
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input::-webkit-input-placeholder { /* Chrome, Opera, Safari */
    color: #fff;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input:-moz-placeholder { /* Firefox 18- */
    color: #fff;
    opacity: 1;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input::-moz-placeholder { /* Firefox 19+ */
    color: #fff;
    opacity: 1;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #fff;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button {
    background-color: transparent;
    border-radius: 23px;
    border: none;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button svg {
    width: 44px;
    height: 44px;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button svg circle {
    fill: #424C57;
    transition: 0.3s ease;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button svg path {
    fill: #fff;
    transition: 0.3s ease;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button:hover svg circle {
    fill: #fff;
    transition: 0.3s ease;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button:hover svg path {
    fill: #424C57;
    transition: 0.3s ease;
  }
  footer#footer .footer-widget form#subscribe-form .subscribe-result {
    font-size: 13.5px;
    font-weight: 600;
    line-height: 100%;
    display: block;
    padding: 0 20px;
    color: var(--basic-color2);
  }
  footer#footer .social {
    display: flex;
    gap: 10px;
  }
  footer#footer .social a {
    display: block;
    width: 34px;
    height: 34px;
  }
  footer#footer .social a img {
    width: 100%;
    height: 100%;
    display: block;
  }
  footer#footer .copyright p {
    line-height: 18px;
    margin-top: 10px;
  }
  footer#footer .copyright p span:last-of-type {
    display: block;
    margin-bottom: 15px;
  }
  footer#footer .copyright .footer-menu {
    margin: 15px 0 0;
    justify-content: center;
  }
}
@media screen and (min-width: 480px) and (max-width: 600px) {
  header.site-header {
    padding: 0 20px;
  }
  header.site-header .header-wrapper {
    height: 75px;
  }
  header.site-header .header-wrapper .left-column {
    gap: 20px;
  }
  header.site-header .header-wrapper .left-column a.logo {
    width: 120px;
  }
  header.site-header .header-wrapper .left-column nav {
    display: none;
  }
  header.site-header .header-wrapper .right-column .social, header.site-header .header-wrapper .right-column .phone, header.site-header .header-wrapper .right-column button.upload-cv {
    display: none;
  }
  header.site-header .header-wrapper .right-column button.toggle {
    display: block;
  }
  main {
    width: 100%;
    min-height: 50vh;
  }
  main h4.round-heading {
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #5A646F;
    background-color: #fff;
    line-height: 34px;
    padding: 0 25px;
    border-radius: 17px;
    display: flex;
    margin: 0;
  }
  main h3.medium-heading {
    display: block;
    line-height: 100%;
    font-size: 1.8vw;
    font-weight: 600;
    margin: 0;
    padding: 0;
  }
  main h2.big-heading {
    display: block;
    line-height: 100%;
    font-size: 2.4vw;
    font-weight: 800;
    margin: 0;
    padding: 0;
  }
  main section.home-slider {
    padding: 10px;
  }
  main section.home-slider .swiper {
    width: 100%;
    height: 100%;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content {
    padding: 20px;
    gap: 10px;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content h3 {
    font-size: 18px;
    width: 100%;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content h2 {
    font-size: 8vw;
    width: 100%;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content p {
    display: block;
    margin: 10px 0 25px;
    font-size: 16px;
    width: 100%;
    line-height: 120%;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content a.link {
    font-size: 14px;
    font-weight: 600;
    padding: 0 25px 0 62px;
  }
  main section.home-slider .swiper.main-slider .swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
    z-index: 1;
  }
  main section.home-slider .swiper.main-slider .swiper-pagination .swiper-pagination-bullet {
    width: 25px;
    height: 3px;
  }
  main section.home-slider .swiper.main-slider nav {
    display: none;
  }
  main section.home-slider .swiper.main-slider-thumbs {
    display: none;
  }
  main section.home-about {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background: url("../media/images/bg-about-section-1.png"), url("../media/images/bg-about-section-2.png"), url("../media/images/bg-about-section-3.png");
    background-position: left top, 48% 65%, right 105%;
    background-repeat: no-repeat;
    background-size: 100px, 340px, 100px;
    padding: 50px 15px;
  }
  main section.home-about .about-wrapper {
    width: 100%;
  }
  main section.home-about .about-wrapper .left-column {
    position: relative;
    z-index: 0;
    flex: 0 0 100%;
  }
  main section.home-about .about-wrapper .left-column figure.small-image {
    right: -110px;
    bottom: -65px;
  }
  main section.home-about .about-wrapper .left-column figure.small-image img {
    width: 65%;
  }
  main section.home-about .about-wrapper .right-column {
    gap: 10px;
    flex: 0 0 100%;
    padding: 15px 5%;
  }
  main section.home-about .about-wrapper .right-column h4 {
    margin-bottom: 5px;
  }
  main section.home-about .about-wrapper .right-column h2 {
    font-size: 7.6vw;
  }
  main section.home-about .about-wrapper .right-column p {
    line-height: 130%;
    font-size: 16px;
  }
  main section.home-about .about-wrapper .right-column div.wp-block-button.main-link a.wp-element-button {
    font-size: 14px;
  }
  main section.home-services {
    padding: 50px 10%;
  }
  main section.home-services h4 {
    margin-bottom: 5px;
  }
  main section.home-services h2 {
    font-size: 7.6vw;
    width: 85%;
  }
  main section.home-services p {
    font-size: 16px;
    width: 100%;
    text-align: center;
    line-height: 120%;
  }
  main section.home-services .services-container {
    width: 100%;
  }
  main section.home-services .services-container .services-outer {
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-start;
  }
  main section.home-services .services-container .services-outer .service-column {
    flex: 0 0 100%; /* subtract part of gap */
    max-width: 100%;
  }
  main section.home-services .services-container .services-outer .service-column .image-container {
    background-color: #D6D8DA;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 340px;
    height: 317px;
    margin: 15px auto 0;
  }
  main section.how-it-works {
    gap: 0;
  }
  main section.how-it-works .work-wrapper {
    gap: 0;
  }
  main section.how-it-works .work-wrapper .wp-block-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  main section.how-it-works .work-wrapper .wp-block-column:first-of-type {
    flex: 0 0 100%;
    max-width: 100%;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type {
    padding: 25px 10% 15px;
    flex: 0 0 100%;
    max-width: 100%;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type h2 {
    font-size: 7.6vw;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type div.wp-block-button.main-link a.wp-element-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    height: 48px;
    line-height: 48px;
    padding: 3px 67px 3px 30px;
    background: #12232D url("../media/images/icon-arrow.png") calc(100% - 3px) center no-repeat;
    background-size: 41px 41px;
    color: #fff;
    font-weight: 500;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type div.wp-block-button.main-link a.wp-element-button:hover {
    background-color: #fff;
    color: #000;
  }
  main section.how-it-works .work-wrapper .how-it-works {
    width: 100%;
    margin: 0 auto;
    gap: 0;
  }
  main section.how-it-works .processes-wrapper {
    width: 80%;
    margin: 0 auto 30px;
    padding: 15px;
  }
  main section.how-it-works .processes-wrapper .processes-column {
    padding: 25px 20px;
  }
  main section.how-it-works .processes-wrapper .processes-column svg {
    margin-bottom: 15px;
  }
  main section.how-it-works .processes-wrapper .processes-column h4 {
    font-size: 18px;
  }
  main section.faqs .faqs-wrapper {
    display: flex;
    flex-direction: column;
    grid-template-columns: auto;
    width: 100%;
  }
  main section.faqs .faqs-wrapper .left-column {
    padding: 15px 10%;
    background-color: #EAEEF1;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    order: 1;
  }
  main section.faqs .faqs-wrapper .left-column .faq-wrapper {
    width: 100%;
  }
  main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item {
    border-bottom: 1px solid #D9D9D9;
    padding: 20px 0;
  }
  main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item .question span {
    font-size: 18px;
    line-height: 110%;
  }
  main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item p {
    font-size: 15px;
    padding: 15px 0 0;
    line-height: 120%;
    width: 100%;
  }
  main section.faqs .faqs-wrapper .right-column {
    order: 0;
    padding: 20px 10%;
  }
  main section.faqs .faqs-wrapper .right-column img {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    border-radius: 15px;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns {
    bottom: 20px;
    padding: 25px 15%;
    gap: 25px;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns h4 {
    font-size: 28px;
    line-height: 110%;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns p {
    font-size: 20px;
    line-height: 120%;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns .main-link a.wp-element-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    height: 52px;
    line-height: 52px;
    padding: 3px 65px 3px 25px;
    background: #12232D url("../media/images/icon-arrow.png") calc(100% - 3px) center no-repeat;
    background-size: 46px;
    color: #fff;
    font-weight: 500;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns .main-link a.wp-element-button:hover {
    background-color: #fff;
    color: #000;
  }
  main section.elevate-job {
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: center 60px, left 10px, 80% center, calc(100% - 50px) bottom;
    background-size: 550px, 15px, 200px, 120px;
    height: auto;
  }
  main section.elevate-job .elevate-wrapper .left-column {
    flex: 0 0 100%;
    height: auto;
    padding-top: 50px;
  }
  main section.elevate-job .elevate-wrapper .left-column img {
    height: 400px;
  }
  main section.elevate-job .elevate-wrapper .right-column {
    padding: 20px 10% 60px;
    flex: 0 0 100%;
  }
  main section.elevate-job .elevate-wrapper .right-column h2 {
    font-size: 7.6vw;
    font-weight: 800;
    width: 100%;
    line-height: 100%;
    margin: 0 0 15px;
    text-align: center;
  }
  main section.elevate-job .elevate-wrapper .right-column ol {
    padding-left: 0;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li {
    padding-left: 35px;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li:nth-child(2) {
    margin-left: 0;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li::before {
    left: -5px;
    top: -10px;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li span {
    font-size: 18px;
    font-weight: 700;
    display: block;
    line-height: 150%;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li p {
    font-size: 15px;
    font-weight: 400;
    line-height: 130%;
  }
  main section.home-blog {
    padding: 30px 0 100px;
    background-color: #fff;
    background-image: url("../media/images/blog-bg-1.png"), url("../media/images/blog-bg-2.png"), url(../media/images/blog-bg.webp);
    background-position: left top, left 100%, center center;
    background-size: 120px, 140px, 80%;
    background-repeat: no-repeat, no-repeat, no-repeat;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
  main section.home-blog .home-blog-wrapper {
    width: 100%;
    margin: 0 auto;
    gap: 15px;
    padding: 30px 10%;
    flex-direction: column;
  }
  main section.home-blog .home-blog-wrapper .left-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  main section.home-blog .home-blog-wrapper .left-column h2 {
    font-size: 8.2vw;
  }
  main section.home-blog .home-blog-wrapper .right-column {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: flex-start;
  }
  main section.home-blog .home-blog-wrapper .right-column div.wp-block-button.view-all a.wp-block-button__link {
    padding: 3px 35px 3px 65px;
  }
  main section.home-blog .blog-container {
    width: 100%;
    padding: 15px 10%;
  }
  main section.home-blog .blog-container .post-item {
    display: flex;
    flex-direction: column;
    grid-template-columns: auto;
    gap: 20px;
    margin: 0 0 25px;
  }
  main section.home-blog .blog-container .post-item .post-image-url {
    width: 100%;
    overflow: hidden;
  }
  main section.home-blog .blog-container .post-item .post-image-url img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main section.home-blog .blog-container .post-item .post-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 3px 0;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic ul {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    display: flex;
    gap: 25px;
    justify-content: flex-start;
    align-items: center;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic ul li {
    font-size: 12px;
    color: #313B46;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic ul li span {
    font-size: 14px;
    font-weight: 500;
    color: #424C57;
    text-transform: capitalize;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic a {
    display: block;
    color: #313B46;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic a h3 {
    display: block;
    line-height: 100%;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    padding: 0;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic a:hover {
    color: var(--basic-color3);
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic p.post-excerpt {
    margin: 10px 0;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    font-size: 13px;
    font-weight: 600;
    color: #313B46;
    gap: 5px;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link svg {
    width: 22px;
    transition: 0.3s ease;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link:hover {
    color: #000;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link:hover svg {
    margin-left: 5px;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link:hover svg path {
    fill: #000;
  }
  main section.home-blog .blog-container .post-item:last-of-type {
    margin-bottom: 0;
  }
  main section.home-blog .blog-container .featured-post {
    position: relative;
    z-index: 0;
    margin-bottom: 25px;
  }
  main section.home-blog .blog-container .featured-post .image {
    height: 400px;
  }
  main section.home-blog .blog-container .featured-post .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main section.home-blog .blog-container .featured-post .image::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  }
  main section.home-blog .blog-container .featured-post .featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    color: #fff;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  main section.home-blog .blog-container .featured-post .featured-content a.post-title {
    color: #fff;
    display: block;
  }
  main section.home-blog .blog-container .featured-post .featured-content a.post-title h3 {
    line-height: 100%;
    font-size: 25px;
  }
  main section.home-blog .blog-container .featured-post .featured-content p.post-excerpt {
    font-size: 16px;
    line-height: 120%;
  }
  main section.home-blog .blog-container .featured-post .featured-content a.post-link {
    display: flex;
    gap: 10px;
    font-size: 13px;
    gap: 5px;
  }
  main section.about-who {
    padding: 50px 15px;
  }
  main section.about-who .about-who-wrapper {
    width: 100%;
  }
  main section.about-who .about-who-wrapper .left-column {
    padding-right: 0;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 15px 5%;
  }
  main section.about-who .about-who-wrapper .left-column h2 {
    font-size: 7.6vw;
  }
  main section.about-who .about-who-wrapper .right-column {
    position: relative;
    z-index: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  main section.about-who .about-who-wrapper .right-column figure.large-image {
    position: relative;
    z-index: 1;
  }
  main section.about-who .about-who-wrapper .right-column figure.large-image img {
    width: 100%;
  }
  main section.about-who .about-who-wrapper .right-column figure.small-image {
    position: absolute;
    z-index: 2;
    left: 30px;
    bottom: -80px;
  }
  main section.about-who .about-who-wrapper .right-column figure.small-image img {
    width: 65%;
  }
  main section.about-process {
    padding: 50px 10%;
    flex-direction: column;
    gap: 15px;
  }
  main section.about-process h2 {
    width: 100%;
    padding-right: 0;
    font-size: 7.6vw;
    text-align: center;
  }
  main section.about-process .process-wrapper {
    width: 100%;
    gap: 15px;
  }
  main section.about-process .process-wrapper .image-column {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 100%;
  }
  main section.about-process .process-wrapper .image-column figure {
    width: 100%;
    height: 100%;
  }
  main section.about-process .process-wrapper .content-column {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 100%;
  }
  main section.about-process .process-wrapper .content-column .columns-wrapper {
    grid-template-columns: repeat(1, 1fr);
    min-height: 100%;
  }
  main section.about-process .process-wrapper .content-column .columns-wrapper .process-step {
    background-color: #fff;
    padding: 20px;
  }
  main section.about-process .process-wrapper .content-column .columns-wrapper .process-step svg {
    width: 80px;
    height: 80px;
  }
  main section.about-process .process-wrapper .content-column .columns-wrapper .process-step h3 {
    font-size: 24px;
  }
  main section.about-experts {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  main section.about-experts .about-experts-wrapper .left-column {
    gap: 10px;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 30px 10% 0;
    order: 1;
  }
  main section.about-experts .about-experts-wrapper .left-column h2 {
    font-size: 7.6vw;
    width: 110%;
  }
  main section.about-experts .about-experts-wrapper .left-column p {
    font-size: 16px;
    width: 100%;
    line-height: 120%;
  }
  main section.about-experts .about-experts-wrapper .right-column {
    flex: 0 0 100%;
    max-width: 100%;
    order: 0;
  }
  main section.about-experts .about-experts-wrapper .right-column figure {
    width: 100%;
  }
  main section.about-experts #our-expers-wrapper {
    width: 100%;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a.image {
    width: 100%;
    height: auto;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item h3 {
    font-size: 18px;
    font-weight: 600;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item span {
    font-size: 14px;
    font-weight: 500;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a {
    gap: 12px;
    width: 100px;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a svg {
    width: 25px;
    height: 25px;
  }
  main section.about-experts #our-expers-wrapper #our-expers-load-more {
    height: 48px;
    border-radius: 24px;
    color: #fff;
    background-color: #000;
    padding: 3px 30px 3px 3px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    display: none;
  }
  main section.about-experts #our-expers-wrapper #our-expers-load-more svg {
    width: 42px;
    height: 42px;
    transition: 0.3s ease;
  }
  main section.about-experts #our-expers-wrapper #our-expers-load-more:hover {
    background-color: var(--basic-color2);
    color: #fff;
  }
  main section.about-experts #our-expers-wrapper #our-expers-load-more:hover svg {
    transform: rotate(90deg);
  }
  main section.our-experts-single {
    padding: 30px 10% 120px;
  }
  main section.our-experts-single div.info {
    padding: 20px 20px 30px;
  }
  main section.our-experts-single div.info .expert-image {
    margin-bottom: 15px;
  }
  main section.our-experts-single div.info .expert-image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main section.our-experts-single div.info hr {
    border: none;
    height: 1px;
    opacity: 1;
    background-color: #D9D9D9;
    margin: 15px 0;
    padding: 0;
  }
  main section.our-experts-single div.info .expert-meta ul.info-ul li::before {
    font-size: 30px;
  }
  main section.our-experts-single div.info .social {
    margin-top: 25px;
  }
  main section.our-experts-single div.info .social a svg {
    width: 25px;
    height: 25px;
  }
  main section.our-experts-single a.back {
    margin-top: 25px;
  }
  main section.our-experts-single h3 {
    font-size: 25px;
    font-weight: 600;
  }
  main section.our-experts-single blockquote.wp-block-quote {
    border-left: 5px solid var(--basic-color2);
    padding: 15px 15px 15px 25px;
    margin: 35px 0 0;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.02);
  }
  main section.our-experts-single blockquote.wp-block-quote p {
    font-size: 18px;
    margin-bottom: 15px;
  }
  main section.our-experts-single blockquote.wp-block-quote h5 {
    font-size: 14px;
    font-weight: 700;
  }
  main section.our-experts-single p {
    font-size: 15px;
  }
  main section.our-experts-single ul.wp-block-list {
    margin: 25px 0;
    font-size: 15px;
  }
  main section.our-experts-single ul.wp-block-list li::before {
    font-size: 13px;
  }
  main section.counter {
    background: #313B46 url("../media/images/bg-counter-1.png") center center no-repeat;
    background-size: 350px;
    padding: 80px 15px;
  }
  main section.counter .counter-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 15px;
         column-gap: 15px;
    row-gap: 15px;
  }
  main section.counter .counter-wrapper .item {
    padding: 10px;
  }
  main section.counter .counter-wrapper .item h2 {
    font-size: 14.6vw;
    line-height: 120%;
  }
  main section.counter .counter-wrapper .item h6 {
    font-size: 14px;
    font-weight: 500;
    display: block;
    line-height: 120%;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
  }
  main section.testimonial {
    justify-content: center;
    align-items: center;
    padding: 50px 10% 120px;
  }
  main section.testimonial h2.wp-block-heading {
    line-height: 110%;
    font-size: 7.4vw;
    text-align: center;
    width: 90%;
  }
  main section.testimonial .swiper .swiper-wrapper .swiper-slide .content {
    padding: 15px 25px;
  }
  main section.testimonial .swiper .swiper-wrapper .swiper-slide .content svg {
    width: 100px;
  }
  main section.testimonial .swiper .swiper-wrapper .swiper-slide .content ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
  }
  main section.testimonial .swiper .swiper-wrapper .swiper-slide .content ul li img {
    display: none;
  }
  main section.employer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: url("../media/images/bg-about-section-1.png"), url("../media/images/bg-about-section-2.png"), url("../media/images/bg-about-section-3.png");
    background-position: left top, center center, right 110%;
    background-repeat: no-repeat;
    background-size: 120px, 400px, 130px;
    padding: 30px 10% 40px;
  }
  main section.employer .employer-wrapper {
    width: 100%;
  }
  main section.employer .employer-wrapper .right-column figure.large-image img {
    width: 100%;
  }
  main section.employer .employer-wrapper .right-column figure.small-image {
    right: -130px;
    bottom: 20px;
  }
  main section.employer .employer-wrapper .right-column figure.small-image img {
    width: 55%;
  }
  main section.employer .employer-wrapper .left-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    padding-right: 0;
  }
  main section.employer .employer-wrapper .left-column h4 {
    margin-bottom: 5px;
  }
  main section.employer .employer-wrapper .left-column h2 {
    font-size: 7.6vw;
  }
  main section.employer .employer-wrapper .left-column h3 {
    font-size: 22px;
    font-weight: 500;
  }
  main section.employer .employer-wrapper .left-column p {
    margin: 15px 0 0;
    padding: 0;
    line-height: 140%;
    font-size: 15px;
  }
  main section.employer .employer-wrapper .left-column div.wp-block-button.main-link a.wp-element-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 15px;
    height: 48px;
    line-height: 48px;
    padding: 3px 62px 3px 25px;
    background: #12232D url("../media/images/icon-arrow.png") calc(100% - 3px) center no-repeat;
    background-size: 41px 41px;
    color: #fff;
    font-weight: 500;
  }
  main section.employer .employer-wrapper .left-column div.wp-block-button.main-link a.wp-element-button:hover {
    background-color: #fff;
    color: #000;
  }
  main section.employer-form {
    padding: 50px 10% 20px;
  }
  main section.employer-form .employer-form-wrapper {
    width: 100%;
  }
  main section.employer-form .employer-form-wrapper .left-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  main section.employer-form .employer-form-wrapper .left-column h3 {
    font-size: 30px;
    line-height: 110%;
  }
  main section.employer-form .employer-form-wrapper .right-column {
    padding-top: 0;
  }
  main section.employer-form form#employer-form {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    background-size: 100px;
  }
  main section.employer-form form#employer-form h5 {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 25px;
    padding: 0;
  }
  main section.employer-form form#employer-form label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 8px;
  }
  main section.employer-form form#employer-form label input[type=text], main section.employer-form form#employer-form label input[type=email], main section.employer-form form#employer-form label input[type=tel] {
    display: block;
    background-color: #fff;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
  }
  main section.employer-form form#employer-form label input[type=text]:focus, main section.employer-form form#employer-form label input[type=email]:focus, main section.employer-form form#employer-form label input[type=tel]:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.employer-form form#employer-form label input[type=date] {
    display: block;
    background: #fff url("../media/images/icon-calendar.png") calc(100% - 15px) center no-repeat;
    background-size: 20px;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
    -webkit-appearance: none;
            appearance: none;
    -moz-appearance: textfield;
    position: relative;
  }
  main section.employer-form form#employer-form label input[type=date]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
  }
  main section.employer-form form#employer-form label input[type=date]:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.employer-form form#employer-form label select {
    display: block;
    background: #fff url("../media/images/dd-arrow.png") calc(100% - 15px) center no-repeat;
    background-size: 9px;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
  }
  main section.employer-form form#employer-form label select:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.employer-form form#employer-form label textarea {
    display: block;
    background-color: #fff;
    background-size: 9px;
    padding: 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 120px;
    width: 100%;
    border-radius: 6px;
  }
  main section.employer-form form#employer-form label .resume-upload {
    max-width: 100%;
    border: 1px dashed #BBBFC4;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    text-align: center;
    padding: 30px 25px;
  }
  main section.employer-form form#employer-form label .resume-upload div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    line-height: 100%;
  }
  main section.employer-form form#employer-form label .resume-upload div svg {
    width: 50px;
    display: block;
    margin: 0 auto 30px;
  }
  main section.employer-form form#employer-form label .resume-upload div strong {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 120%;
  }
  main section.employer-form form#employer-form label .resume-upload div span {
    font-size: 13px;
    font-weight: 400;
    color: #5A646F;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 100%;
  }
  main section.employer-form form#employer-form label .resume-upload div span.browse {
    border: 1px solid #DDDDDD;
    font-size: 14px;
    padding: 0 15px;
    border-radius: 6px;
    line-height: 32px;
    margin-top: 20px;
  }
  main section.employer-form form#employer-form label .resume-upload .upload-content small {
    color: #64748b;
    display: block;
    margin-top: 8px;
  }
  main section.employer-form form#employer-form label .resume-upload .file-name {
    margin-top: 12px;
    font-size: 14px;
    color: #16a34a;
    font-weight: 500;
    display: none;
  }
  main section.employer-form form#employer-form label .resume-upload:hover, main section.employer-form form#employer-form label .resume-upload.dragover {
    border-color: #2563eb;
    background: #eff6ff;
  }
  main section.employer-form form#employer-form label.i-agree {
    justify-content: flex-start;
    align-items: flex-start;
  }
  main section.employer-form form#employer-form label.i-agree input#i-agree {
    width: 45px;
    height: 17.46px;
  }
  main section.employer-form form#employer-form label.i-agree span.i-agree {
    line-height: 130%;
    display: block;
  }
  main section.employer-form form#employer-form button[type=submit].form-submit {
    padding: 3px 35px 3px 3px;
  }
  main section.employer-form form#employer-form em.note {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin: 15px 0;
  }
  main section.employer-form form#employer-form div.results {
    font-size: 15px;
    font-weight: 600;
    display: block;
    color: var(--basic-color3);
    line-height: 1;
    margin-top: 20px;
  }
  main section.candidate {
    background: url("../media/images/candidate-image-2.webp");
    background-position: center 80px;
    background-size: 420px;
    background-repeat: no-repeat;
    padding: 30px 10% 20px;
  }
  main section.candidate .candidate-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }
  main section.candidate .candidate-wrapper .left-column figure.large-image {
    height: 450px;
  }
  main section.candidate .candidate-wrapper .right-column {
    gap: 5px;
    padding-right: 0;
  }
  main section.candidate .candidate-wrapper .right-column h4 {
    margin-bottom: 5px;
  }
  main section.candidate .candidate-wrapper .right-column h2 {
    font-size: 7.6vw;
  }
  main section.candidate .candidate-wrapper .right-column h3 {
    font-size: 22px;
    font-weight: 500;
  }
  main section.candidate .candidate-wrapper .right-column p {
    font-size: 16px;
  }
  main section.candidate .candidate-wrapper .right-column ul li {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }
  main section.candidate .candidate-wrapper .right-column ul li div span {
    font-size: 16px;
    font-weight: 700;
  }
  main section.candidate .candidate-wrapper .right-column ul li div p {
    font-size: 13px;
  }
  main section.candidate-form {
    padding: 50px 10% 20px;
  }
  main section.candidate-form .candidate-form-wrapper {
    width: 100%;
  }
  main section.candidate-form .candidate-form-wrapper .left-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  main section.candidate-form .candidate-form-wrapper .left-column h3 {
    font-size: 30px;
    line-height: 110%;
  }
  main section.candidate-form form#candidate-form {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    background-size: 100px;
  }
  main section.candidate-form form#candidate-form h5 {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    padding: 0;
  }
  main section.candidate-form form#candidate-form .if-yes {
    display: none;
  }
  main section.candidate-form form#candidate-form label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 8px;
  }
  main section.candidate-form form#candidate-form label span {
    display: flex;
    gap: 5px;
    line-height: 30px;
    font-weight: 400;
  }
  main section.candidate-form form#candidate-form label span em.star {
    color: red;
    font-size: 22px;
    font-weight: 600;
    display: block;
  }
  main section.candidate-form form#candidate-form label input[type=text] {
    display: block;
    background-color: #fff;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
  }
  main section.candidate-form form#candidate-form label input[type=text]:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.candidate-form form#candidate-form label input[type=email] {
    display: block;
    background-color: #fff;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
  }
  main section.candidate-form form#candidate-form label input[type=email]:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.candidate-form form#candidate-form label input[type=date] {
    display: block;
    background: #fff url("../media/images/icon-calendar.png") calc(100% - 15px) center no-repeat;
    background-size: 20px;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
    -webkit-appearance: none;
            appearance: none;
    -moz-appearance: textfield;
    position: relative;
  }
  main section.candidate-form form#candidate-form label input[type=date]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
  }
  main section.candidate-form form#candidate-form label input[type=date]:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.candidate-form form#candidate-form label select {
    display: block;
    background: #fff url("../media/images/dd-arrow.png") calc(100% - 15px) center no-repeat;
    background-size: 9px;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
  }
  main section.candidate-form form#candidate-form label select:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.candidate-form form#candidate-form label textarea {
    display: block;
    background-color: #fff;
    background-size: 9px;
    padding: 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 120px;
    width: 100%;
    border-radius: 6px;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container {
    display: flex;
    gap: 5px;
    flex-wrap: nowrap;
    margin-right: 5px;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container .tag {
    background: #cfd4da;
    padding: 0 6px 0 8px;
    line-height: 26px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    height: 26px;
    gap: 10px;
    text-transform: capitalize;
    font-weight: 500;
    transition: 0.3s ease;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container .tag button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    font-size: 12px;
    font-weight: 800;
    line-height: 15px;
    cursor: pointer;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container .tag button svg {
    width: 100%;
    height: 100%;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container .tag:hover {
    background-color: #64748b;
    color: #fff;
  }
  main section.candidate-form form#candidate-form label .resume-upload {
    max-width: 100%;
    border: 1px dashed #BBBFC4;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    text-align: center;
    padding: 30px 25px;
  }
  main section.candidate-form form#candidate-form label .resume-upload div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    line-height: 100%;
  }
  main section.candidate-form form#candidate-form label .resume-upload div svg {
    width: 50px;
    display: block;
    margin: 0 auto 30px;
  }
  main section.candidate-form form#candidate-form label .resume-upload div strong {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 120%;
  }
  main section.candidate-form form#candidate-form label .resume-upload div span {
    font-size: 13px;
    font-weight: 400;
    color: #5A646F;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 100%;
  }
  main section.candidate-form form#candidate-form label .resume-upload div span.browse {
    border: 1px solid #DDDDDD;
    font-size: 14px;
    padding: 0 15px;
    border-radius: 6px;
    line-height: 32px;
    margin-top: 20px;
  }
  main section.candidate-form form#candidate-form label .resume-upload .upload-content small {
    color: #64748b;
    display: block;
    margin-top: 8px;
  }
  main section.candidate-form form#candidate-form label .resume-upload .file-name {
    margin-top: 12px;
    font-size: 14px;
    color: #16a34a;
    font-weight: 500;
    display: none;
  }
  main section.candidate-form form#candidate-form label .resume-upload:hover, main section.candidate-form form#candidate-form label .resume-upload.dragover {
    border-color: #2563eb;
    background: #eff6ff;
  }
  main section.candidate-form form#candidate-form label.i-agree, main section.candidate-form form#candidate-form label.i-confirm {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  main section.candidate-form form#candidate-form label.i-agree input#i-agree, main section.candidate-form form#candidate-form label.i-agree input#i-confirm, main section.candidate-form form#candidate-form label.i-confirm input#i-agree, main section.candidate-form form#candidate-form label.i-confirm input#i-confirm {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url("../media/images/icon-checkbox-0.png") center center no-repeat;
    background-size: 18px 17.46px;
    display: block;
    width: 18px;
    height: 17.46px;
    cursor: pointer;
  }
  main section.candidate-form form#candidate-form label.i-agree input#i-agree:checked, main section.candidate-form form#candidate-form label.i-agree input#i-confirm:checked, main section.candidate-form form#candidate-form label.i-confirm input#i-agree:checked, main section.candidate-form form#candidate-form label.i-confirm input#i-confirm:checked {
    background: url("../media/images/icon-checkbox-1.png") center center no-repeat;
    background-size: 18px 17.46px;
  }
  main section.candidate-form form#candidate-form label.i-agree span.i-agree, main section.candidate-form form#candidate-form label.i-agree span.i-confirm, main section.candidate-form form#candidate-form label.i-confirm span.i-agree, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm {
    font-size: 14px;
  }
  main section.candidate-form form#candidate-form label.i-agree span.i-agree strong, main section.candidate-form form#candidate-form label.i-agree span.i-confirm strong, main section.candidate-form form#candidate-form label.i-confirm span.i-agree strong, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm strong {
    font-weight: 700;
  }
  main section.candidate-form form#candidate-form label.i-agree span.i-agree a, main section.candidate-form form#candidate-form label.i-agree span.i-confirm a, main section.candidate-form form#candidate-form label.i-confirm span.i-agree a, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm a {
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #000;
  }
  main section.candidate-form form#candidate-form label.i-agree span.i-agree a:hover, main section.candidate-form form#candidate-form label.i-agree span.i-confirm a:hover, main section.candidate-form form#candidate-form label.i-confirm span.i-agree a:hover, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm a:hover {
    text-decoration: underline;
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit {
    height: 54px;
    border-radius: 27px;
    padding: 3px 25px 3px 3px;
    border: none;
    background: #12232D;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit svg {
    width: 46px;
    height: 46px;
    transition: 0.3s ease;
    margin-right: 10px;
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit:hover {
    background: var(--basic-color2);
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit:hover svg {
    transform: rotate(90deg);
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  main section.candidate-form form#candidate-form em.note {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin: 15px 0;
  }
  main section.candidate-form form#candidate-form div.results {
    font-size: 15px;
    font-weight: 600;
    display: block;
    color: var(--basic-color3);
    line-height: 1;
    margin-top: 20px;
  }
  main section.blog {
    padding: 30px 10% 120px;
    background: #fff url("../media/images/bg-blog-1.png") bottom calc(100% - 50px) no-repeat;
    background-size: 100px;
  }
  main section.blog h2 {
    font-size: 7.6vw;
  }
  main section.blog .blog-item {
    border: 1px solid #D9D9D9;
    background-color: #fff;
    border-radius: 10px;
    transition: 0.3s ease;
  }
  main section.blog .blog-item a.image {
    display: block;
    width: 100%;
    height: 220px;
    background-color: var(--basic-color1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }
  main section.blog .blog-item a.image em {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 5;
    background-color: #fff;
    color: var(--basic-color2);
    font-size: 13px;
    font-style: normal;
    padding: 0 15px;
    font-weight: 600;
    line-height: 30px;
    display: block;
    border-radius: 15px;
  }
  main section.blog .blog-item .content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    flex: 1;
  }
  main section.blog .blog-item .content ul {
    list-style: none;
    color: #424C57;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  main section.blog .blog-item .content ul span {
    font-size: 12px;
    font-weight: 500;
  }
  main section.blog .blog-item .content a.link {
    font-size: 25px;
  }
  main section.blog .blog-item .content p {
    line-height: 135%;
    font-size: 14px;
    font-weight: 500;
  }
  main section.blog .blog-item .content a.readmore {
    font-size: 13px;
    gap: 10px;
  }
  main section.blog .blog-item .content a.readmore svg {
    width: 18px;
    transition: 0.3s ease;
  }
  main section.blog .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    margin: 25px 0;
    font-size: 18px;
  }
  main section.blog .pagination span.current {
    display: block;
    border: 1px solid #D9D9D9;
    background-color: #fff;
    color: #000;
    line-height: 50px;
    text-align: center;
    border-radius: 8px;
    height: 50px;
    min-width: 50px;
  }
  main section.blog .pagination a {
    display: block;
    line-height: 46px;
    border: 1px solid #1F2B38;
    background-color: #1F2B38;
    color: #fff;
    min-width: 46px;
    padding: 0 15px;
    text-align: center;
    border-radius: 6px;
  }
  main section.blog .pagination a.next, main section.blog .pagination a.prev {
    font-size: 15px;
  }
  main section.blog .pagination a:hover {
    background-color: #EAEEF1;
    border-color: #EAEEF1;
    color: #000;
  }
  main section.single-post-breadcrumbs {
    margin: 0 15px 0;
    width: calc(100% - 30px);
    height: calc(70vh - 50px);
    padding: 0 15px;
    border-radius: 15px;
  }
  main section.single-post-breadcrumbs h1 {
    display: block;
    line-height: 100%;
    font-size: 7.2vw;
    font-weight: 900;
    text-align: center;
    color: #fff;
    padding: 0;
    position: relative;
    z-index: 1;
  }
  main section.single-post-breadcrumbs ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0 0 40px;
    position: relative;
    z-index: 1;
  }
  main section.single-post-breadcrumbs ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  main section.single-post-breadcrumbs ul li span {
    display: block;
    font-size: 17px;
    font-weight: 500;
  }
  main section.single-post-breadcrumbs ul li span a {
    display: block;
    line-height: 100%;
    color: #fff;
  }
  main section.single-post-breadcrumbs ul li::after {
    content: " / ";
    display: block;
    margin: 0 10px;
  }
  main section.single-post-breadcrumbs ul li:last-of-type::after {
    display: none;
  }
  main section.single-post-breadcrumbs::after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 10%, rgba(0, 0, 0, 0.3) 55%);
  }
  main section.our-expers-breadcrumbs {
    margin: 10px;
    padding: 15px;
    height: 200px;
  }
  main section.our-expers-breadcrumbs h1 {
    font-size: 6.6vw;
  }
  main section.blog-single {
    padding: 30px 10% 120px;
  }
  main section.blog-single ul.post-meta {
    list-style: none;
    color: #424C57;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }
  main section.blog-single ul.post-meta span {
    font-size: 12px;
    font-weight: 600;
  }
  main section.blog-single p {
    font-size: 15px;
  }
  main section.blog-single p.thick-p {
    display: block;
    font-size: 20px;
    line-height: 120%;
    font-weight: 500;
  }
  main section.blog-single blockquote {
    background: #EAEEF1 url("../media/images/quote.png") 30px 30px no-repeat;
    color: #000;
    border-radius: 15px;
    padding: 30px 30px 30px 140px;
    margin: 20px 0;
  }
  main section.blog-single blockquote p {
    font-size: 22px;
    line-height: 120%;
    font-weight: 500;
    margin: 0 0 10px;
    padding: 0;
  }
  main section.blog-single blockquote h6 {
    display: block;
    line-height: 120%;
    position: relative;
    margin: 0;
    padding: 0 0 0 60px;
    font-size: 14px;
  }
  main section.blog-single blockquote h6::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    height: 1px;
    background-color: #000;
    width: 50px;
  }
  main section.blog-single h4 {
    font-size: 25px;
    font-weight: 700;
    line-height: 160%;
    display: block;
    margin: 0;
    padding: 0;
  }
  main section.blog-single .image-column {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    margin: 25px 0;
  }
  main section.blog-single .image-column figure.wp-block-image {
    width: 100%;
  }
  main section.blog-single .image-column figure.wp-block-image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
  }
  main section.blog-single div.tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 25px 0;
  }
  main section.blog-single div.tags strong {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    display: block;
  }
  main section.blog-single div.tags .links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    row-gap: 10px;
  }
  main section.blog-single div.tags .links a {
    background-color: #EAEEF1;
    display: block;
    color: #000;
    border-radius: 15px;
    font-size: 12px;
    padding: 0 15px;
    font-weight: 500;
    line-height: 30px;
    border-radius: 14px;
  }
  main section.blog-single ul.next-prev li a {
    gap: 5px;
  }
  main section.blog-single ul.next-prev li svg {
    width: 35px;
    height: 35px;
  }
  main section.blog-single {
    /* ===== Comments Area ===== */
  }
  main section.blog-single .comments-area {
    /* Comments title */
  }
  main section.blog-single .comments-area h3 {
    font-size: 22px;
  }
  main section.blog-single .comments-area h4 {
    font-size: 18px;
  }
  main section.blog-single .comments-area {
    /* ===== Comment List ===== */
  }
  main section.blog-single .comments-area .comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  main section.blog-single .comments-area .comment-list li.comment {
    margin-bottom: 30px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 1px solid #D9D9D9;
    font-weight: 600;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard b.fn a.url {
    pointer-events: none;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    text-transform: capitalize;
    color: #000;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard span.says {
    display: none;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata {
    display: flex;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata a {
    color: #000;
    font-size: 12px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata a time {
    font-weight: 600;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata span.edit-link a.comment-edit-link {
    font-size: 13px;
    color: #888;
    display: none;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.comment-content {
    display: block;
    padding-left: 100px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.comment-content p {
    margin: 0 0 10px;
    line-height: 130%;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.comment-content p:last-of-type {
    margin: 0;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 100px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply a.comment-reply-link {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    position: relative;
    display: flex;
    gap: 5px;
    align-items: center;
    text-decoration: none;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply a.comment-reply-link::after {
    transition: 0.3s ease;
    content: "";
    display: inline-block;
    width: 18px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='15' fill='none' viewBox='0 0 28 15'%3E%3Cpath fill='%23313b46' d='M19.94.296a1 1 0 0 0 0 1.42l4.6 4.6H1a1 1 0 1 0 0 2h23.52l-4.58 4.57a1 1 0 0 0 0 1.41 1 1 0 0 0 1.41 0l6.36-6.36a.88.88 0 0 0 0-1.27L21.36.296a1 1 0 0 0-1.42 0'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply a.comment-reply-link:hover::after {
    margin-left: 5px;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children {
    list-style: none;
    margin: 0;
    padding: 0 0 0 100px;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor {
    margin: 0;
    padding: 0;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 0px solid #D9D9D9;
    font-weight: 600;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-author.vcard img.avatar {
    width: 50px;
    height: 50px;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-author.vcard b.fn a.url {
    font-size: 14px;
    font-weight: 700;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-author.vcard span.says {
    display: none;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-metadata a {
    font-size: 12px;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-metadata span.edit-link a.comment-edit-link {
    display: none;
  }
  main section.blog-single .comments-area {
    /* ===== Comment Form ===== */
  }
  main section.blog-single .comments-area .comment-respond {
    padding: 30px;
    margin: 0;
    border-radius: 8px;
    background: #EAEEF1;
  }
  main section.blog-single .comments-area .comment-respond h3.comment-reply-title {
    font-size: 22px;
    font-weight: 600;
  }
  main section.blog-single .comments-area .comment-respond {
    /* Form fields */
  }
  main section.blog-single .comments-area .comment-respond .comment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p {
    margin: 0;
    padding: 0;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p label {
    display: block;
    font-size: 15px;
    line-height: 160%;
    font-weight: 600;
    margin-bottom: 6px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-cookies-consent {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-cookies-consent input[type=checkbox] {
    display: block;
    width: 16px;
    height: 16px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #344252;
    border-radius: 3px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-cookies-consent label {
    display: block;
    font-size: 12px;
    line-height: 16px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author input[type=text], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author input[type=email], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author input[type=url], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author textarea, main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email input[type=text], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email input[type=email], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email input[type=url], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email textarea, main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url input[type=text], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url input[type=email], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url input[type=url], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-comment textarea {
    width: 100%;
    height: 140px;
    border-radius: 6px;
    background-color: #fff;
    border: 1px solid #BBBFC4;
    padding: 15px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.form-submit {
    /* Submit button */
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.form-submit input[type=submit] {
    background: #12232D url("../media/images/form-submit-arrow.svg") 3px 3px no-repeat;
    background-size: 41px 41px;
    color: #fff;
    border: none;
    height: 48px;
    padding: 3px 25px 3px 58px;
    border-radius: 24px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.form-submit input[type=submit]:hover {
    background-color: #fff;
    color: #000;
  }
  main section.blog-single .comments-area {
    /* Cancel reply link */
  }
  main section.blog-single .comments-area #cancel-comment-reply-link {
    display: inline-block;
    margin-left: 10px;
    font-size: 14px;
    color: #999;
    text-decoration: none;
  }
  main section.blog-single .comments-area #cancel-comment-reply-link:hover {
    color: #000;
  }
  main section.blog-single aside.sidebar .widget .wp-block-columns.category, main section.blog-single aside.sidebar .widget .wp-block-columns.search, main section.blog-single aside.sidebar .widget .wp-block-columns.recent-posts, main section.blog-single aside.sidebar .widget .wp-block-columns.tags-column {
    padding: 20px;
    border-radius: 10px;
  }
  main section.blog-single aside.sidebar .widget .wp-block-columns.category h5.wp-block-heading, main section.blog-single aside.sidebar .widget .wp-block-columns.category label, main section.blog-single aside.sidebar .widget .wp-block-columns.search h5.wp-block-heading, main section.blog-single aside.sidebar .widget .wp-block-columns.search label, main section.blog-single aside.sidebar .widget .wp-block-columns.recent-posts h5.wp-block-heading, main section.blog-single aside.sidebar .widget .wp-block-columns.recent-posts label, main section.blog-single aside.sidebar .widget .wp-block-columns.tags-column h5.wp-block-heading, main section.blog-single aside.sidebar .widget .wp-block-columns.tags-column label {
    font-size: 17px;
  }
  main section.blog-single aside.sidebar .widget .wp-block-columns.image-link div.wp-block-columns.links .wp-block-column h3.wp-block-heading {
    font-size: 28px;
    font-weight: 800;
  }
  main section.blog-single aside.sidebar .widget .wp-block-columns.image-link figure.wp-block-image img {
    width: 100%;
  }
  main section.get-in-touch {
    padding: 30px 10% 50px;
  }
  main section.get-in-touch .get-in-touch-wrapper {
    width: 100%;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-content h2 {
    font-size: 7.6vw;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-content .customizer-items {
    display: flex;
    flex-direction: column;
    margin: 15px 0;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-form {
    padding: 25px;
    border-radius: 25px;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-form h3.wp-block-heading {
    font-size: 26px;
  }
  main section.get-in-touch .location-map {
    padding: 80px 0 120px;
    width: 100%;
  }
  main section.get-in-touch .location-map .wp-block-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }
  main section.get-in-touch .location-map .wp-block-column iframe {
    width: calc(100% - 30px);
    height: 550px;
    border: none;
    border-radius: 30px;
  }
  main section.location {
    width: 100%;
    padding: 50px 10% 120px;
    background-color: #FCFCFC;
  }
  main section.location .location-map {
    width: 100%;
  }
  main section.location .location-map .wp-block-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  main section.location .location-map .wp-block-column h4 {
    margin: 0;
  }
  main section.location .location-map .wp-block-column h2 {
    margin: 0;
    font-size: 7.6vw;
  }
  main section.location .location-map .wp-block-column iframe {
    width: 98%;
    height: 500px;
    border-radius: 15px;
  }
  main section.breadcrumbs {
    margin: 10px;
    padding: 15px;
    height: 200px;
  }
  main section.breadcrumbs h1 {
    font-size: 7.6vw;
  }
  main section.breadcrumbs ul li span {
    font-size: 14px;
  }
  main section.policy-pages {
    padding: 30px 10% 120px;
  }
  main section.policy-pages .wp-block-columns {
    width: 100%;
  }
  main section.policy-pages .wp-block-columns .wp-block-column h2.wp-block-heading {
    font-size: 28px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column h3.wp-block-heading {
    font-size: 20px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column h4.wp-block-heading {
    font-size: 17px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column h5.wp-block-heading {
    font-size: 15px;
    font-weight: 700;
  }
  main section.policy-pages .wp-block-columns .wp-block-column blockquote {
    margin: 25px 0;
    padding: 10px 0 10px 15px;
    border-left: 10px solid var(--basic-color2);
  }
  main section.policy-pages .wp-block-columns .wp-block-column blockquote p {
    font-size: 25px;
    font-weight: 400;
    line-height: 120%;
  }
  main section.policy-pages .wp-block-columns .wp-block-column p {
    font-size: 15px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column ul {
    font-size: 14px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column ul li::before {
    font-size: 11px;
  }
  footer#footer {
    background: #F1F4F7 url("../media/images/footer-element.png") right bottom no-repeat;
    background-size: 500px;
    font-size: 13px;
    font-weight: 500;
  }
  footer#footer .cta {
    background: #0D2432 url("../media/images/footer-cta-bg.png") 35px 35px no-repeat;
    background-size: 140px auto;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    margin: -80px 8% 0;
    gap: 30px;
  }
  footer#footer .cta .content h2 {
    font-size: 38px;
    line-height: 110%;
  }
  footer#footer .cta .content p {
    font-size: 20px;
    line-height: 110%;
  }
  footer#footer .cta a span {
    display: block;
    padding: 0 25px;
  }
  footer#footer .footer-widget {
    padding: 0 5%;
  }
  footer#footer .footer-widget h5 {
    font-size: 18px;
    line-height: 140%;
  }
  footer#footer .footer-widget .menu-footer-container ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  footer#footer .footer-widget .menu-footer-container ul.menu li.menu-item a {
    line-height: 30px;
    font-weight: 500;
  }
  footer#footer .footer-widget ul.contact-info-widget {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
  }
  footer#footer .footer-widget ul.contact-info-widget li {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  footer#footer .footer-widget ul.contact-info-widget li img {
    display: block;
    width: 20px;
  }
  footer#footer .footer-widget ul.contact-info-widget li span {
    display: block;
    line-height: 1.35;
    font-size: 14px;
    font-weight: 500;
  }
  footer#footer .footer-widget .wp-block-image img {
    width: 172px;
  }
  footer#footer .footer-widget p {
    margin: 0 0 30px;
    padding: 0;
    font-size: 14px;
    line-height: 140%;
    display: block;
  }
  footer#footer .footer-widget form#subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form {
    height: 52px;
    background-color: #BBBFC4;
    display: grid;
    grid-template-columns: 1fr 44px;
    padding: 3px;
    gap: 3px;
    border-radius: 25px;
    overflow: hidden;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input {
    background-color: transparent;
    border: none;
    border-radius: 26px;
    display: block;
    height: 100%;
    padding: 0 20px;
    color: #fff;
    /* Standard syntax for modern browsers */
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input::-moz-placeholder {
    color: #fff; /* Sets the placeholder color to red (use any valid color value) */
    opacity: 1; /* Ensures full opacity, as some browsers (Firefox) apply a default lower opacity */
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input::placeholder {
    color: #fff; /* Sets the placeholder color to red (use any valid color value) */
    opacity: 1; /* Ensures full opacity, as some browsers (Firefox) apply a default lower opacity */
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input {
    /* Vendor-prefixed pseudo-elements for broader compatibility */
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input::-webkit-input-placeholder { /* Chrome, Opera, Safari */
    color: #fff;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input:-moz-placeholder { /* Firefox 18- */
    color: #fff;
    opacity: 1;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input::-moz-placeholder { /* Firefox 19+ */
    color: #fff;
    opacity: 1;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #fff;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button {
    background-color: transparent;
    border-radius: 23px;
    border: none;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button svg {
    width: 44px;
    height: 44px;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button svg circle {
    fill: #424C57;
    transition: 0.3s ease;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button svg path {
    fill: #fff;
    transition: 0.3s ease;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button:hover svg circle {
    fill: #fff;
    transition: 0.3s ease;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button:hover svg path {
    fill: #424C57;
    transition: 0.3s ease;
  }
  footer#footer .footer-widget form#subscribe-form .subscribe-result {
    font-size: 13.5px;
    font-weight: 600;
    line-height: 100%;
    display: block;
    padding: 0 20px;
    color: var(--basic-color2);
  }
  footer#footer .social {
    display: flex;
    gap: 10px;
    padding: 0 5%;
  }
  footer#footer .social a {
    display: block;
    width: 34px;
    height: 34px;
  }
  footer#footer .social a img {
    width: 100%;
    height: 100%;
    display: block;
  }
  footer#footer .copyright p {
    line-height: 18px;
    margin-top: 10px;
  }
  footer#footer .copyright p span:last-of-type {
    display: block;
    margin-bottom: 15px;
  }
  footer#footer .copyright .footer-menu {
    margin: 15px 0 0;
    justify-content: center;
  }
}
@media screen and (min-width: 600px) and (max-width: 768px) {
  header.site-header {
    padding: 0 20px;
  }
  header.site-header .header-wrapper {
    height: 75px;
  }
  header.site-header .header-wrapper .left-column {
    gap: 20px;
  }
  header.site-header .header-wrapper .left-column a.logo {
    width: 120px;
  }
  header.site-header .header-wrapper .left-column nav {
    display: none;
  }
  header.site-header .header-wrapper .right-column .social, header.site-header .header-wrapper .right-column .phone, header.site-header .header-wrapper .right-column button.upload-cv {
    display: none;
  }
  header.site-header .header-wrapper .right-column button.toggle {
    display: block;
  }
  main {
    width: 100%;
    min-height: 50vh;
  }
  main h4.round-heading {
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #5A646F;
    background-color: #fff;
    line-height: 34px;
    padding: 0 25px;
    border-radius: 17px;
    display: flex;
    margin: 0;
  }
  main h3.medium-heading {
    display: block;
    line-height: 100%;
    font-size: 1.8vw;
    font-weight: 600;
    margin: 0;
    padding: 0;
  }
  main h2.big-heading {
    display: block;
    line-height: 100%;
    font-size: 2.4vw;
    font-weight: 800;
    margin: 0;
    padding: 0;
  }
  main section.home-slider {
    padding: 10px;
    height: calc(60vh - 80px);
  }
  main section.home-slider .swiper {
    width: 100%;
    height: 100%;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content {
    padding: 20px;
    gap: 10px;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content h3 {
    font-size: 18px;
    width: 100%;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content h2 {
    font-size: 8vw;
    width: 100%;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content p {
    display: block;
    margin: 10px 0 25px;
    font-size: 16px;
    width: 100%;
    line-height: 120%;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content a.link {
    font-size: 14px;
    font-weight: 600;
    padding: 0 25px 0 62px;
  }
  main section.home-slider .swiper.main-slider .swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
    z-index: 1;
  }
  main section.home-slider .swiper.main-slider .swiper-pagination .swiper-pagination-bullet {
    width: 25px;
    height: 3px;
  }
  main section.home-slider .swiper.main-slider nav {
    display: none;
  }
  main section.home-slider .swiper.main-slider-thumbs {
    display: none;
  }
  main section.home-about {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background: url("../media/images/bg-about-section-1.png"), url("../media/images/bg-about-section-2.png"), url("../media/images/bg-about-section-3.png");
    background-position: left top, 48% 65%, right 105%;
    background-repeat: no-repeat;
    background-size: 100px, 340px, 100px;
    padding: 50px 15px;
  }
  main section.home-about .about-wrapper {
    width: 100%;
  }
  main section.home-about .about-wrapper .left-column {
    position: relative;
    z-index: 0;
    flex: 0 0 80%;
    max-width: 80%;
  }
  main section.home-about .about-wrapper .left-column figure.small-image {
    right: -110px;
    bottom: -65px;
  }
  main section.home-about .about-wrapper .left-column figure.small-image img {
    width: 65%;
  }
  main section.home-about .about-wrapper .right-column {
    gap: 10px;
    flex: 0 0 100%;
    padding: 15px 5%;
  }
  main section.home-about .about-wrapper .right-column h4 {
    margin-bottom: 5px;
  }
  main section.home-about .about-wrapper .right-column h2 {
    font-size: 7.6vw;
  }
  main section.home-about .about-wrapper .right-column p {
    line-height: 130%;
    font-size: 16px;
  }
  main section.home-about .about-wrapper .right-column div.wp-block-button.main-link a.wp-element-button {
    font-size: 14px;
  }
  main section.home-services {
    padding: 50px 10%;
  }
  main section.home-services h4 {
    margin-bottom: 5px;
  }
  main section.home-services h2 {
    font-size: 7.6vw;
    width: 85%;
  }
  main section.home-services p {
    font-size: 16px;
    width: 100%;
    text-align: center;
    line-height: 120%;
  }
  main section.home-services .services-container {
    width: 100%;
  }
  main section.home-services .services-container .services-outer {
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-start;
  }
  main section.home-services .services-container .services-outer .service-column {
    flex: 0 0 100%; /* subtract part of gap */
    max-width: 100%;
  }
  main section.home-services .services-container .services-outer .service-column .image-container {
    background-color: #D6D8DA;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 340px;
    height: 317px;
    margin: 15px auto 0;
  }
  main section.how-it-works {
    gap: 0;
  }
  main section.how-it-works .work-wrapper {
    gap: 0;
  }
  main section.how-it-works .work-wrapper .wp-block-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  main section.how-it-works .work-wrapper .wp-block-column:first-of-type {
    flex: 0 0 100%;
    max-width: 100%;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type {
    padding: 25px 10% 15px;
    flex: 0 0 100%;
    max-width: 100%;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type h2 {
    font-size: 7.6vw;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type div.wp-block-button.main-link a.wp-element-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    height: 48px;
    line-height: 48px;
    padding: 3px 67px 3px 30px;
    background: #12232D url("../media/images/icon-arrow.png") calc(100% - 3px) center no-repeat;
    background-size: 41px 41px;
    color: #fff;
    font-weight: 500;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type div.wp-block-button.main-link a.wp-element-button:hover {
    background-color: #fff;
    color: #000;
  }
  main section.how-it-works .work-wrapper .how-it-works {
    width: 100%;
    margin: 0 auto;
    gap: 0;
  }
  main section.how-it-works .processes-wrapper {
    width: 80%;
    margin: 0 auto 30px;
    padding: 15px;
  }
  main section.how-it-works .processes-wrapper .processes-column {
    padding: 25px 20px;
  }
  main section.how-it-works .processes-wrapper .processes-column svg {
    margin-bottom: 15px;
  }
  main section.how-it-works .processes-wrapper .processes-column h4 {
    font-size: 18px;
  }
  main section.faqs .faqs-wrapper {
    display: flex;
    flex-direction: column;
    grid-template-columns: auto;
    width: 100%;
  }
  main section.faqs .faqs-wrapper .left-column {
    padding: 15px 10%;
    background-color: #EAEEF1;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    order: 1;
  }
  main section.faqs .faqs-wrapper .left-column .faq-wrapper {
    width: 100%;
  }
  main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item {
    border-bottom: 1px solid #D9D9D9;
    padding: 20px 0;
  }
  main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item .question span {
    font-size: 18px;
    line-height: 110%;
  }
  main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item p {
    font-size: 15px;
    padding: 15px 0 0;
    line-height: 120%;
    width: 100%;
  }
  main section.faqs .faqs-wrapper .right-column {
    order: 0;
    padding: 20px 10%;
  }
  main section.faqs .faqs-wrapper .right-column img {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    border-radius: 15px;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns {
    bottom: 20px;
    padding: 25px 15%;
    gap: 25px;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns h4 {
    font-size: 28px;
    line-height: 110%;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns p {
    font-size: 20px;
    line-height: 120%;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns .main-link a.wp-element-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    height: 52px;
    line-height: 52px;
    padding: 3px 65px 3px 25px;
    background: #12232D url("../media/images/icon-arrow.png") calc(100% - 3px) center no-repeat;
    background-size: 46px;
    color: #fff;
    font-weight: 500;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns .main-link a.wp-element-button:hover {
    background-color: #fff;
    color: #000;
  }
  main section.elevate-job {
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: center 60px, left 10px, 80% center, calc(100% - 50px) bottom;
    background-size: 550px, 15px, 200px, 120px;
    height: auto;
  }
  main section.elevate-job .elevate-wrapper .left-column {
    flex: 0 0 100%;
    height: auto;
    padding-top: 50px;
  }
  main section.elevate-job .elevate-wrapper .left-column img {
    height: 400px;
  }
  main section.elevate-job .elevate-wrapper .right-column {
    padding: 20px 10% 60px;
    flex: 0 0 100%;
  }
  main section.elevate-job .elevate-wrapper .right-column h2 {
    font-size: 7.6vw;
    font-weight: 800;
    width: 100%;
    line-height: 100%;
    margin: 0 0 15px;
    text-align: center;
  }
  main section.elevate-job .elevate-wrapper .right-column ol {
    padding-left: 0;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li {
    padding-left: 35px;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li:nth-child(2) {
    margin-left: 0;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li::before {
    left: -5px;
    top: -10px;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li span {
    font-size: 18px;
    font-weight: 700;
    display: block;
    line-height: 150%;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li p {
    font-size: 15px;
    font-weight: 400;
    line-height: 130%;
  }
  main section.home-blog {
    padding: 30px 0 100px;
    background-color: #fff;
    background-image: url("../media/images/blog-bg-1.png"), url("../media/images/blog-bg-2.png"), url(../media/images/blog-bg.webp);
    background-position: left top, left 100%, center center;
    background-size: 120px, 140px, 80%;
    background-repeat: no-repeat, no-repeat, no-repeat;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
  main section.home-blog .home-blog-wrapper {
    width: 100%;
    margin: 0 auto;
    gap: 15px;
    padding: 30px 10%;
    flex-direction: column;
  }
  main section.home-blog .home-blog-wrapper .left-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  main section.home-blog .home-blog-wrapper .left-column h2 {
    font-size: 8.2vw;
  }
  main section.home-blog .home-blog-wrapper .right-column {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: flex-start;
  }
  main section.home-blog .home-blog-wrapper .right-column div.wp-block-button.view-all a.wp-block-button__link {
    padding: 3px 35px 3px 65px;
  }
  main section.home-blog .blog-container {
    width: 100%;
    padding: 15px 10%;
  }
  main section.home-blog .blog-container .post-item {
    display: flex;
    flex-direction: column;
    grid-template-columns: auto;
    gap: 20px;
    margin: 0 0 25px;
  }
  main section.home-blog .blog-container .post-item .post-image-url {
    width: 100%;
    overflow: hidden;
  }
  main section.home-blog .blog-container .post-item .post-image-url img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main section.home-blog .blog-container .post-item .post-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 3px 0;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic ul {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    display: flex;
    gap: 25px;
    justify-content: flex-start;
    align-items: center;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic ul li {
    font-size: 12px;
    color: #313B46;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic ul li span {
    font-size: 14px;
    font-weight: 500;
    color: #424C57;
    text-transform: capitalize;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic a {
    display: block;
    color: #313B46;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic a h3 {
    display: block;
    line-height: 100%;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    padding: 0;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic a:hover {
    color: var(--basic-color3);
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic p.post-excerpt {
    margin: 10px 0;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    font-size: 13px;
    font-weight: 600;
    color: #313B46;
    gap: 5px;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link svg {
    width: 22px;
    transition: 0.3s ease;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link:hover {
    color: #000;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link:hover svg {
    margin-left: 5px;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link:hover svg path {
    fill: #000;
  }
  main section.home-blog .blog-container .post-item:last-of-type {
    margin-bottom: 0;
  }
  main section.home-blog .blog-container .featured-post {
    position: relative;
    z-index: 0;
    margin-bottom: 25px;
  }
  main section.home-blog .blog-container .featured-post .image {
    height: 400px;
  }
  main section.home-blog .blog-container .featured-post .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main section.home-blog .blog-container .featured-post .image::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  }
  main section.home-blog .blog-container .featured-post .featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    color: #fff;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  main section.home-blog .blog-container .featured-post .featured-content a.post-title {
    color: #fff;
    display: block;
  }
  main section.home-blog .blog-container .featured-post .featured-content a.post-title h3 {
    line-height: 100%;
    font-size: 25px;
  }
  main section.home-blog .blog-container .featured-post .featured-content p.post-excerpt {
    font-size: 16px;
    line-height: 120%;
  }
  main section.home-blog .blog-container .featured-post .featured-content a.post-link {
    display: flex;
    gap: 10px;
    font-size: 13px;
    gap: 5px;
  }
  main section.about-who {
    padding: 50px 15px;
  }
  main section.about-who .about-who-wrapper {
    width: 100%;
  }
  main section.about-who .about-who-wrapper .left-column {
    padding-right: 0;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 15px 5%;
  }
  main section.about-who .about-who-wrapper .left-column h2 {
    font-size: 7.6vw;
  }
  main section.about-who .about-who-wrapper .right-column {
    position: relative;
    z-index: 0;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 3%;
  }
  main section.about-who .about-who-wrapper .right-column figure.large-image {
    position: relative;
    z-index: 1;
  }
  main section.about-who .about-who-wrapper .right-column figure.large-image img {
    width: 100%;
  }
  main section.about-who .about-who-wrapper .right-column figure.small-image {
    position: absolute;
    z-index: 2;
    left: 30px;
    bottom: -80px;
  }
  main section.about-who .about-who-wrapper .right-column figure.small-image img {
    width: 65%;
  }
  main section.about-process {
    padding: 50px 10%;
    flex-direction: column;
    gap: 15px;
  }
  main section.about-process h2 {
    width: 100%;
    padding-right: 0;
    font-size: 7.6vw;
    text-align: center;
  }
  main section.about-process .process-wrapper {
    width: 100%;
    gap: 15px;
  }
  main section.about-process .process-wrapper .image-column {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 100%;
  }
  main section.about-process .process-wrapper .image-column figure {
    width: 100%;
    height: 100%;
  }
  main section.about-process .process-wrapper .content-column {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 100%;
  }
  main section.about-process .process-wrapper .content-column .columns-wrapper {
    grid-template-columns: repeat(1, 1fr);
    min-height: 100%;
  }
  main section.about-process .process-wrapper .content-column .columns-wrapper .process-step {
    background-color: #fff;
    padding: 20px;
  }
  main section.about-process .process-wrapper .content-column .columns-wrapper .process-step svg {
    width: 80px;
    height: 80px;
  }
  main section.about-process .process-wrapper .content-column .columns-wrapper .process-step h3 {
    font-size: 24px;
  }
  main section.about-experts {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  main section.about-experts .about-experts-wrapper .left-column {
    gap: 10px;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 30px 10% 0;
    order: 1;
  }
  main section.about-experts .about-experts-wrapper .left-column h2 {
    font-size: 7.6vw;
    width: 110%;
  }
  main section.about-experts .about-experts-wrapper .left-column p {
    font-size: 16px;
    width: 100%;
    line-height: 120%;
  }
  main section.about-experts .about-experts-wrapper .right-column {
    flex: 0 0 100%;
    max-width: 100%;
    order: 0;
  }
  main section.about-experts .about-experts-wrapper .right-column figure {
    width: 100%;
  }
  main section.about-experts #our-expers-wrapper {
    width: 100%;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a.image {
    width: 100%;
    height: auto;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item h3 {
    font-size: 18px;
    font-weight: 600;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item span {
    font-size: 14px;
    font-weight: 500;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a {
    gap: 12px;
    width: 100px;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a svg {
    width: 25px;
    height: 25px;
  }
  main section.about-experts #our-expers-wrapper #our-expers-load-more {
    height: 48px;
    border-radius: 24px;
    color: #fff;
    background-color: #000;
    padding: 3px 30px 3px 3px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    display: none;
  }
  main section.about-experts #our-expers-wrapper #our-expers-load-more svg {
    width: 42px;
    height: 42px;
    transition: 0.3s ease;
  }
  main section.about-experts #our-expers-wrapper #our-expers-load-more:hover {
    background-color: var(--basic-color2);
    color: #fff;
  }
  main section.about-experts #our-expers-wrapper #our-expers-load-more:hover svg {
    transform: rotate(90deg);
  }
  main section.our-experts-single {
    padding: 30px 10% 120px;
  }
  main section.our-experts-single div.info {
    padding: 20px 20px 30px;
  }
  main section.our-experts-single div.info .expert-image {
    margin-bottom: 15px;
  }
  main section.our-experts-single div.info .expert-image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main section.our-experts-single div.info hr {
    border: none;
    height: 1px;
    opacity: 1;
    background-color: #D9D9D9;
    margin: 15px 0;
    padding: 0;
  }
  main section.our-experts-single div.info .expert-meta ul.info-ul li::before {
    font-size: 30px;
  }
  main section.our-experts-single div.info .social {
    margin-top: 25px;
  }
  main section.our-experts-single div.info .social a svg {
    width: 25px;
    height: 25px;
  }
  main section.our-experts-single a.back {
    margin-top: 25px;
  }
  main section.our-experts-single h3 {
    font-size: 25px;
    font-weight: 600;
  }
  main section.our-experts-single blockquote.wp-block-quote {
    border-left: 5px solid var(--basic-color2);
    padding: 15px 15px 15px 25px;
    margin: 35px 0 0;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.02);
  }
  main section.our-experts-single blockquote.wp-block-quote p {
    font-size: 18px;
    margin-bottom: 15px;
  }
  main section.our-experts-single blockquote.wp-block-quote h5 {
    font-size: 14px;
    font-weight: 700;
  }
  main section.our-experts-single p {
    font-size: 15px;
  }
  main section.our-experts-single ul.wp-block-list {
    margin: 25px 0;
    font-size: 15px;
  }
  main section.our-experts-single ul.wp-block-list li::before {
    font-size: 13px;
  }
  main section.counter {
    background: #313B46 url("../media/images/bg-counter-1.png") center center no-repeat;
    background-size: 350px;
    padding: 80px 15px;
  }
  main section.counter .counter-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 15px;
         column-gap: 15px;
    row-gap: 15px;
  }
  main section.counter .counter-wrapper .item {
    padding: 10px;
  }
  main section.counter .counter-wrapper .item h2 {
    font-size: 14.6vw;
    line-height: 120%;
  }
  main section.counter .counter-wrapper .item h6 {
    font-size: 14px;
    font-weight: 500;
    display: block;
    line-height: 120%;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
  }
  main section.testimonial {
    justify-content: center;
    align-items: center;
    padding: 50px 10% 120px;
  }
  main section.testimonial h2.wp-block-heading {
    line-height: 110%;
    font-size: 7.4vw;
    text-align: center;
    width: 90%;
  }
  main section.testimonial .swiper .swiper-wrapper .swiper-slide .content {
    padding: 15px 25px;
  }
  main section.testimonial .swiper .swiper-wrapper .swiper-slide .content svg {
    width: 100px;
  }
  main section.testimonial .swiper .swiper-wrapper .swiper-slide .content ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
  }
  main section.testimonial .swiper .swiper-wrapper .swiper-slide .content ul li img {
    display: none;
  }
  main section.employer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: url("../media/images/bg-about-section-1.png"), url("../media/images/bg-about-section-2.png"), url("../media/images/bg-about-section-3.png");
    background-position: left top, center center, right 110%;
    background-repeat: no-repeat;
    background-size: 120px, 400px, 130px;
    padding: 30px 10% 40px;
  }
  main section.employer .employer-wrapper {
    width: 100%;
  }
  main section.employer .employer-wrapper .right-column figure.large-image img {
    width: 100%;
  }
  main section.employer .employer-wrapper .right-column figure.small-image {
    right: -130px;
    bottom: 20px;
  }
  main section.employer .employer-wrapper .right-column figure.small-image img {
    width: 55%;
  }
  main section.employer .employer-wrapper .left-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    padding-right: 0;
  }
  main section.employer .employer-wrapper .left-column h4 {
    margin-bottom: 5px;
  }
  main section.employer .employer-wrapper .left-column h2 {
    font-size: 7.6vw;
  }
  main section.employer .employer-wrapper .left-column h3 {
    font-size: 22px;
    font-weight: 500;
  }
  main section.employer .employer-wrapper .left-column p {
    margin: 15px 0 0;
    padding: 0;
    line-height: 140%;
    font-size: 15px;
  }
  main section.employer .employer-wrapper .left-column div.wp-block-button.main-link a.wp-element-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 15px;
    height: 48px;
    line-height: 48px;
    padding: 3px 62px 3px 25px;
    background: #12232D url("../media/images/icon-arrow.png") calc(100% - 3px) center no-repeat;
    background-size: 41px 41px;
    color: #fff;
    font-weight: 500;
  }
  main section.employer .employer-wrapper .left-column div.wp-block-button.main-link a.wp-element-button:hover {
    background-color: #fff;
    color: #000;
  }
  main section.employer-form {
    padding: 50px 10% 20px;
  }
  main section.employer-form .employer-form-wrapper {
    width: 100%;
  }
  main section.employer-form .employer-form-wrapper .left-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  main section.employer-form .employer-form-wrapper .left-column h3 {
    font-size: 30px;
    line-height: 110%;
  }
  main section.employer-form .employer-form-wrapper .right-column {
    padding-top: 0;
  }
  main section.employer-form form#employer-form {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    background-size: 100px;
  }
  main section.employer-form form#employer-form h5 {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 25px;
    padding: 0;
  }
  main section.employer-form form#employer-form label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 8px;
  }
  main section.employer-form form#employer-form label input[type=text], main section.employer-form form#employer-form label input[type=email], main section.employer-form form#employer-form label input[type=tel] {
    display: block;
    background-color: #fff;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
  }
  main section.employer-form form#employer-form label input[type=text]:focus, main section.employer-form form#employer-form label input[type=email]:focus, main section.employer-form form#employer-form label input[type=tel]:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.employer-form form#employer-form label input[type=date] {
    display: block;
    background: #fff url("../media/images/icon-calendar.png") calc(100% - 15px) center no-repeat;
    background-size: 20px;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
    -webkit-appearance: none;
            appearance: none;
    -moz-appearance: textfield;
    position: relative;
  }
  main section.employer-form form#employer-form label input[type=date]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
  }
  main section.employer-form form#employer-form label input[type=date]:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.employer-form form#employer-form label select {
    display: block;
    background: #fff url("../media/images/dd-arrow.png") calc(100% - 15px) center no-repeat;
    background-size: 9px;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
  }
  main section.employer-form form#employer-form label select:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.employer-form form#employer-form label textarea {
    display: block;
    background-color: #fff;
    background-size: 9px;
    padding: 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 120px;
    width: 100%;
    border-radius: 6px;
  }
  main section.employer-form form#employer-form label .resume-upload {
    max-width: 100%;
    border: 1px dashed #BBBFC4;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    text-align: center;
    padding: 30px 25px;
  }
  main section.employer-form form#employer-form label .resume-upload div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    line-height: 100%;
  }
  main section.employer-form form#employer-form label .resume-upload div svg {
    width: 50px;
    display: block;
    margin: 0 auto 30px;
  }
  main section.employer-form form#employer-form label .resume-upload div strong {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 120%;
  }
  main section.employer-form form#employer-form label .resume-upload div span {
    font-size: 13px;
    font-weight: 400;
    color: #5A646F;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 100%;
  }
  main section.employer-form form#employer-form label .resume-upload div span.browse {
    border: 1px solid #DDDDDD;
    font-size: 14px;
    padding: 0 15px;
    border-radius: 6px;
    line-height: 32px;
    margin-top: 20px;
  }
  main section.employer-form form#employer-form label .resume-upload .upload-content small {
    color: #64748b;
    display: block;
    margin-top: 8px;
  }
  main section.employer-form form#employer-form label .resume-upload .file-name {
    margin-top: 12px;
    font-size: 14px;
    color: #16a34a;
    font-weight: 500;
    display: none;
  }
  main section.employer-form form#employer-form label .resume-upload:hover, main section.employer-form form#employer-form label .resume-upload.dragover {
    border-color: #2563eb;
    background: #eff6ff;
  }
  main section.employer-form form#employer-form label.i-agree {
    justify-content: flex-start;
    align-items: flex-start;
  }
  main section.employer-form form#employer-form label.i-agree input#i-agree {
    width: 45px;
    height: 17.46px;
  }
  main section.employer-form form#employer-form label.i-agree span.i-agree {
    line-height: 130%;
    display: block;
  }
  main section.employer-form form#employer-form button[type=submit].form-submit {
    padding: 3px 35px 3px 3px;
  }
  main section.employer-form form#employer-form em.note {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin: 15px 0;
  }
  main section.employer-form form#employer-form div.results {
    font-size: 15px;
    font-weight: 600;
    display: block;
    color: var(--basic-color3);
    line-height: 1;
    margin-top: 20px;
  }
  main section.candidate {
    background: url("../media/images/candidate-image-2.webp");
    background-position: center 80px;
    background-size: 420px;
    background-repeat: no-repeat;
    padding: 30px 10% 20px;
  }
  main section.candidate .candidate-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }
  main section.candidate .candidate-wrapper .left-column figure.large-image {
    height: 450px;
  }
  main section.candidate .candidate-wrapper .right-column {
    gap: 5px;
    padding-right: 0;
  }
  main section.candidate .candidate-wrapper .right-column h4 {
    margin-bottom: 5px;
  }
  main section.candidate .candidate-wrapper .right-column h2 {
    font-size: 7.6vw;
  }
  main section.candidate .candidate-wrapper .right-column h3 {
    font-size: 22px;
    font-weight: 500;
  }
  main section.candidate .candidate-wrapper .right-column p {
    font-size: 16px;
  }
  main section.candidate .candidate-wrapper .right-column ul li {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }
  main section.candidate .candidate-wrapper .right-column ul li div span {
    font-size: 16px;
    font-weight: 700;
  }
  main section.candidate .candidate-wrapper .right-column ul li div p {
    font-size: 13px;
  }
  main section.candidate-form {
    padding: 50px 10% 20px;
  }
  main section.candidate-form .candidate-form-wrapper {
    width: 100%;
  }
  main section.candidate-form .candidate-form-wrapper .left-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  main section.candidate-form .candidate-form-wrapper .left-column h3 {
    font-size: 30px;
    line-height: 110%;
  }
  main section.candidate-form form#candidate-form {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    background-size: 100px;
  }
  main section.candidate-form form#candidate-form h5 {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    padding: 0;
  }
  main section.candidate-form form#candidate-form .if-yes {
    display: none;
  }
  main section.candidate-form form#candidate-form label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 8px;
  }
  main section.candidate-form form#candidate-form label span {
    display: flex;
    gap: 5px;
    line-height: 30px;
    font-weight: 400;
  }
  main section.candidate-form form#candidate-form label span em.star {
    color: red;
    font-size: 22px;
    font-weight: 600;
    display: block;
  }
  main section.candidate-form form#candidate-form label input[type=text] {
    display: block;
    background-color: #fff;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
  }
  main section.candidate-form form#candidate-form label input[type=text]:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.candidate-form form#candidate-form label input[type=email] {
    display: block;
    background-color: #fff;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
  }
  main section.candidate-form form#candidate-form label input[type=email]:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.candidate-form form#candidate-form label input[type=date] {
    display: block;
    background: #fff url("../media/images/icon-calendar.png") calc(100% - 15px) center no-repeat;
    background-size: 20px;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
    -webkit-appearance: none;
            appearance: none;
    -moz-appearance: textfield;
    position: relative;
  }
  main section.candidate-form form#candidate-form label input[type=date]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
  }
  main section.candidate-form form#candidate-form label input[type=date]:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.candidate-form form#candidate-form label select {
    display: block;
    background: #fff url("../media/images/dd-arrow.png") calc(100% - 15px) center no-repeat;
    background-size: 9px;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
  }
  main section.candidate-form form#candidate-form label select:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.candidate-form form#candidate-form label textarea {
    display: block;
    background-color: #fff;
    background-size: 9px;
    padding: 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 120px;
    width: 100%;
    border-radius: 6px;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container {
    display: flex;
    gap: 5px;
    flex-wrap: nowrap;
    margin-right: 5px;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container .tag {
    background: #cfd4da;
    padding: 0 6px 0 8px;
    line-height: 26px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    height: 26px;
    gap: 10px;
    text-transform: capitalize;
    font-weight: 500;
    transition: 0.3s ease;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container .tag button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    font-size: 12px;
    font-weight: 800;
    line-height: 15px;
    cursor: pointer;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container .tag button svg {
    width: 100%;
    height: 100%;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container .tag:hover {
    background-color: #64748b;
    color: #fff;
  }
  main section.candidate-form form#candidate-form label .resume-upload {
    max-width: 100%;
    border: 1px dashed #BBBFC4;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    text-align: center;
    padding: 30px 25px;
  }
  main section.candidate-form form#candidate-form label .resume-upload div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    line-height: 100%;
  }
  main section.candidate-form form#candidate-form label .resume-upload div svg {
    width: 50px;
    display: block;
    margin: 0 auto 30px;
  }
  main section.candidate-form form#candidate-form label .resume-upload div strong {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 120%;
  }
  main section.candidate-form form#candidate-form label .resume-upload div span {
    font-size: 13px;
    font-weight: 400;
    color: #5A646F;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 100%;
  }
  main section.candidate-form form#candidate-form label .resume-upload div span.browse {
    border: 1px solid #DDDDDD;
    font-size: 14px;
    padding: 0 15px;
    border-radius: 6px;
    line-height: 32px;
    margin-top: 20px;
  }
  main section.candidate-form form#candidate-form label .resume-upload .upload-content small {
    color: #64748b;
    display: block;
    margin-top: 8px;
  }
  main section.candidate-form form#candidate-form label .resume-upload .file-name {
    margin-top: 12px;
    font-size: 14px;
    color: #16a34a;
    font-weight: 500;
    display: none;
  }
  main section.candidate-form form#candidate-form label .resume-upload:hover, main section.candidate-form form#candidate-form label .resume-upload.dragover {
    border-color: #2563eb;
    background: #eff6ff;
  }
  main section.candidate-form form#candidate-form label.i-agree, main section.candidate-form form#candidate-form label.i-confirm {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  main section.candidate-form form#candidate-form label.i-agree input#i-agree, main section.candidate-form form#candidate-form label.i-agree input#i-confirm, main section.candidate-form form#candidate-form label.i-confirm input#i-agree, main section.candidate-form form#candidate-form label.i-confirm input#i-confirm {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url("../media/images/icon-checkbox-0.png") center center no-repeat;
    background-size: 18px 17.46px;
    display: block;
    width: 18px;
    height: 17.46px;
    cursor: pointer;
  }
  main section.candidate-form form#candidate-form label.i-agree input#i-agree:checked, main section.candidate-form form#candidate-form label.i-agree input#i-confirm:checked, main section.candidate-form form#candidate-form label.i-confirm input#i-agree:checked, main section.candidate-form form#candidate-form label.i-confirm input#i-confirm:checked {
    background: url("../media/images/icon-checkbox-1.png") center center no-repeat;
    background-size: 18px 17.46px;
  }
  main section.candidate-form form#candidate-form label.i-agree span.i-agree, main section.candidate-form form#candidate-form label.i-agree span.i-confirm, main section.candidate-form form#candidate-form label.i-confirm span.i-agree, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm {
    font-size: 14px;
  }
  main section.candidate-form form#candidate-form label.i-agree span.i-agree strong, main section.candidate-form form#candidate-form label.i-agree span.i-confirm strong, main section.candidate-form form#candidate-form label.i-confirm span.i-agree strong, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm strong {
    font-weight: 700;
  }
  main section.candidate-form form#candidate-form label.i-agree span.i-agree a, main section.candidate-form form#candidate-form label.i-agree span.i-confirm a, main section.candidate-form form#candidate-form label.i-confirm span.i-agree a, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm a {
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #000;
  }
  main section.candidate-form form#candidate-form label.i-agree span.i-agree a:hover, main section.candidate-form form#candidate-form label.i-agree span.i-confirm a:hover, main section.candidate-form form#candidate-form label.i-confirm span.i-agree a:hover, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm a:hover {
    text-decoration: underline;
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit {
    height: 54px;
    border-radius: 27px;
    padding: 3px 25px 3px 3px;
    border: none;
    background: #12232D;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit svg {
    width: 46px;
    height: 46px;
    transition: 0.3s ease;
    margin-right: 10px;
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit:hover {
    background: var(--basic-color2);
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit:hover svg {
    transform: rotate(90deg);
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  main section.candidate-form form#candidate-form em.note {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin: 15px 0;
  }
  main section.candidate-form form#candidate-form div.results {
    font-size: 15px;
    font-weight: 600;
    display: block;
    color: var(--basic-color3);
    line-height: 1;
    margin-top: 20px;
  }
  main section.blog {
    padding: 30px 10% 120px;
    background: #fff url("../media/images/bg-blog-1.png") bottom calc(100% - 50px) no-repeat;
    background-size: 100px;
  }
  main section.blog h2 {
    font-size: 7.6vw;
  }
  main section.blog .blog-item {
    border: 1px solid #D9D9D9;
    background-color: #fff;
    border-radius: 10px;
    transition: 0.3s ease;
  }
  main section.blog .blog-item a.image {
    display: block;
    width: 100%;
    height: 220px;
    background-color: var(--basic-color1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }
  main section.blog .blog-item a.image em {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 5;
    background-color: #fff;
    color: var(--basic-color2);
    font-size: 13px;
    font-style: normal;
    padding: 0 15px;
    font-weight: 600;
    line-height: 30px;
    display: block;
    border-radius: 15px;
  }
  main section.blog .blog-item .content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    flex: 1;
  }
  main section.blog .blog-item .content ul {
    list-style: none;
    color: #424C57;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  main section.blog .blog-item .content ul span {
    font-size: 12px;
    font-weight: 500;
  }
  main section.blog .blog-item .content a.link {
    font-size: 25px;
  }
  main section.blog .blog-item .content p {
    line-height: 135%;
    font-size: 14px;
    font-weight: 500;
  }
  main section.blog .blog-item .content a.readmore {
    font-size: 13px;
    gap: 10px;
  }
  main section.blog .blog-item .content a.readmore svg {
    width: 18px;
    transition: 0.3s ease;
  }
  main section.blog .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    margin: 25px 0;
    font-size: 18px;
  }
  main section.blog .pagination span.current {
    display: block;
    border: 1px solid #D9D9D9;
    background-color: #fff;
    color: #000;
    line-height: 50px;
    text-align: center;
    border-radius: 8px;
    height: 50px;
    min-width: 50px;
  }
  main section.blog .pagination a {
    display: block;
    line-height: 46px;
    border: 1px solid #1F2B38;
    background-color: #1F2B38;
    color: #fff;
    min-width: 46px;
    padding: 0 15px;
    text-align: center;
    border-radius: 6px;
  }
  main section.blog .pagination a.next, main section.blog .pagination a.prev {
    font-size: 15px;
  }
  main section.blog .pagination a:hover {
    background-color: #EAEEF1;
    border-color: #EAEEF1;
    color: #000;
  }
  main section.single-post-breadcrumbs {
    margin: 0 15px 0;
    width: calc(100% - 30px);
    height: calc(70vh - 50px);
    padding: 0 15px;
    border-radius: 15px;
  }
  main section.single-post-breadcrumbs h1 {
    display: block;
    line-height: 100%;
    font-size: 7.2vw;
    font-weight: 900;
    text-align: center;
    color: #fff;
    padding: 0;
    position: relative;
    z-index: 1;
  }
  main section.single-post-breadcrumbs ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0 0 40px;
    position: relative;
    z-index: 1;
  }
  main section.single-post-breadcrumbs ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  main section.single-post-breadcrumbs ul li span {
    display: block;
    font-size: 17px;
    font-weight: 500;
  }
  main section.single-post-breadcrumbs ul li span a {
    display: block;
    line-height: 100%;
    color: #fff;
  }
  main section.single-post-breadcrumbs ul li::after {
    content: " / ";
    display: block;
    margin: 0 10px;
  }
  main section.single-post-breadcrumbs ul li:last-of-type::after {
    display: none;
  }
  main section.single-post-breadcrumbs::after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 10%, rgba(0, 0, 0, 0.3) 55%);
  }
  main section.our-expers-breadcrumbs {
    margin: 10px;
    padding: 15px;
    height: 200px;
  }
  main section.our-expers-breadcrumbs h1 {
    font-size: 6.6vw;
  }
  main section.blog-single {
    padding: 30px 10% 120px;
  }
  main section.blog-single ul.post-meta {
    list-style: none;
    color: #424C57;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }
  main section.blog-single ul.post-meta span {
    font-size: 12px;
    font-weight: 600;
  }
  main section.blog-single p {
    font-size: 15px;
  }
  main section.blog-single p.thick-p {
    display: block;
    font-size: 20px;
    line-height: 120%;
    font-weight: 500;
  }
  main section.blog-single blockquote {
    background: #EAEEF1 url("../media/images/quote.png") 30px 30px no-repeat;
    color: #000;
    border-radius: 15px;
    padding: 30px 30px 30px 140px;
    margin: 20px 0;
  }
  main section.blog-single blockquote p {
    font-size: 22px;
    line-height: 120%;
    font-weight: 500;
    margin: 0 0 10px;
    padding: 0;
  }
  main section.blog-single blockquote h6 {
    display: block;
    line-height: 120%;
    position: relative;
    margin: 0;
    padding: 0 0 0 60px;
    font-size: 14px;
  }
  main section.blog-single blockquote h6::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    height: 1px;
    background-color: #000;
    width: 50px;
  }
  main section.blog-single h4 {
    font-size: 25px;
    font-weight: 700;
    line-height: 160%;
    display: block;
    margin: 0;
    padding: 0;
  }
  main section.blog-single .image-column {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    margin: 25px 0;
  }
  main section.blog-single .image-column figure.wp-block-image {
    width: 100%;
  }
  main section.blog-single .image-column figure.wp-block-image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
  }
  main section.blog-single div.tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 25px 0;
  }
  main section.blog-single div.tags strong {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    display: block;
  }
  main section.blog-single div.tags .links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    row-gap: 10px;
  }
  main section.blog-single div.tags .links a {
    background-color: #EAEEF1;
    display: block;
    color: #000;
    border-radius: 15px;
    font-size: 12px;
    padding: 0 15px;
    font-weight: 500;
    line-height: 30px;
    border-radius: 14px;
  }
  main section.blog-single ul.next-prev li a {
    gap: 5px;
  }
  main section.blog-single ul.next-prev li svg {
    width: 35px;
    height: 35px;
  }
  main section.blog-single {
    /* ===== Comments Area ===== */
  }
  main section.blog-single .comments-area {
    /* Comments title */
  }
  main section.blog-single .comments-area h3 {
    font-size: 22px;
  }
  main section.blog-single .comments-area h4 {
    font-size: 18px;
  }
  main section.blog-single .comments-area {
    /* ===== Comment List ===== */
  }
  main section.blog-single .comments-area .comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  main section.blog-single .comments-area .comment-list li.comment {
    margin-bottom: 30px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 1px solid #D9D9D9;
    font-weight: 600;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard b.fn a.url {
    pointer-events: none;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    text-transform: capitalize;
    color: #000;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard span.says {
    display: none;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata {
    display: flex;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata a {
    color: #000;
    font-size: 12px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata a time {
    font-weight: 600;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata span.edit-link a.comment-edit-link {
    font-size: 13px;
    color: #888;
    display: none;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.comment-content {
    display: block;
    padding-left: 100px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.comment-content p {
    margin: 0 0 10px;
    line-height: 130%;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.comment-content p:last-of-type {
    margin: 0;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 100px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply a.comment-reply-link {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    position: relative;
    display: flex;
    gap: 5px;
    align-items: center;
    text-decoration: none;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply a.comment-reply-link::after {
    transition: 0.3s ease;
    content: "";
    display: inline-block;
    width: 18px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='15' fill='none' viewBox='0 0 28 15'%3E%3Cpath fill='%23313b46' d='M19.94.296a1 1 0 0 0 0 1.42l4.6 4.6H1a1 1 0 1 0 0 2h23.52l-4.58 4.57a1 1 0 0 0 0 1.41 1 1 0 0 0 1.41 0l6.36-6.36a.88.88 0 0 0 0-1.27L21.36.296a1 1 0 0 0-1.42 0'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply a.comment-reply-link:hover::after {
    margin-left: 5px;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children {
    list-style: none;
    margin: 0;
    padding: 0 0 0 100px;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor {
    margin: 0;
    padding: 0;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 0px solid #D9D9D9;
    font-weight: 600;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-author.vcard img.avatar {
    width: 50px;
    height: 50px;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-author.vcard b.fn a.url {
    font-size: 14px;
    font-weight: 700;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-author.vcard span.says {
    display: none;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-metadata a {
    font-size: 12px;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-metadata span.edit-link a.comment-edit-link {
    display: none;
  }
  main section.blog-single .comments-area {
    /* ===== Comment Form ===== */
  }
  main section.blog-single .comments-area .comment-respond {
    padding: 30px;
    margin: 0;
    border-radius: 8px;
    background: #EAEEF1;
  }
  main section.blog-single .comments-area .comment-respond h3.comment-reply-title {
    font-size: 22px;
    font-weight: 600;
  }
  main section.blog-single .comments-area .comment-respond {
    /* Form fields */
  }
  main section.blog-single .comments-area .comment-respond .comment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p {
    margin: 0;
    padding: 0;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p label {
    display: block;
    font-size: 15px;
    line-height: 160%;
    font-weight: 600;
    margin-bottom: 6px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-cookies-consent {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-cookies-consent input[type=checkbox] {
    display: block;
    width: 16px;
    height: 16px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #344252;
    border-radius: 3px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-cookies-consent label {
    display: block;
    font-size: 12px;
    line-height: 16px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author input[type=text], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author input[type=email], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author input[type=url], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author textarea, main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email input[type=text], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email input[type=email], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email input[type=url], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email textarea, main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url input[type=text], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url input[type=email], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url input[type=url], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-comment textarea {
    width: 100%;
    height: 140px;
    border-radius: 6px;
    background-color: #fff;
    border: 1px solid #BBBFC4;
    padding: 15px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.form-submit {
    /* Submit button */
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.form-submit input[type=submit] {
    background: #12232D url("../media/images/form-submit-arrow.svg") 3px 3px no-repeat;
    background-size: 41px 41px;
    color: #fff;
    border: none;
    height: 48px;
    padding: 3px 25px 3px 58px;
    border-radius: 24px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.form-submit input[type=submit]:hover {
    background-color: #fff;
    color: #000;
  }
  main section.blog-single .comments-area {
    /* Cancel reply link */
  }
  main section.blog-single .comments-area #cancel-comment-reply-link {
    display: inline-block;
    margin-left: 10px;
    font-size: 14px;
    color: #999;
    text-decoration: none;
  }
  main section.blog-single .comments-area #cancel-comment-reply-link:hover {
    color: #000;
  }
  main section.blog-single aside.sidebar .widget .wp-block-columns.category, main section.blog-single aside.sidebar .widget .wp-block-columns.search, main section.blog-single aside.sidebar .widget .wp-block-columns.recent-posts, main section.blog-single aside.sidebar .widget .wp-block-columns.tags-column {
    padding: 20px;
    border-radius: 10px;
  }
  main section.blog-single aside.sidebar .widget .wp-block-columns.category h5.wp-block-heading, main section.blog-single aside.sidebar .widget .wp-block-columns.category label, main section.blog-single aside.sidebar .widget .wp-block-columns.search h5.wp-block-heading, main section.blog-single aside.sidebar .widget .wp-block-columns.search label, main section.blog-single aside.sidebar .widget .wp-block-columns.recent-posts h5.wp-block-heading, main section.blog-single aside.sidebar .widget .wp-block-columns.recent-posts label, main section.blog-single aside.sidebar .widget .wp-block-columns.tags-column h5.wp-block-heading, main section.blog-single aside.sidebar .widget .wp-block-columns.tags-column label {
    font-size: 17px;
  }
  main section.blog-single aside.sidebar .widget .wp-block-columns.image-link div.wp-block-columns.links .wp-block-column h3.wp-block-heading {
    font-size: 28px;
    font-weight: 800;
  }
  main section.blog-single aside.sidebar .widget .wp-block-columns.image-link figure.wp-block-image img {
    width: 100%;
  }
  main section.get-in-touch {
    padding: 30px 10% 50px;
  }
  main section.get-in-touch .get-in-touch-wrapper {
    width: 100%;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-content h2 {
    font-size: 7.6vw;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-content .customizer-items {
    display: flex;
    flex-direction: column;
    margin: 15px 0;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-form {
    padding: 25px;
    border-radius: 25px;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-form h3.wp-block-heading {
    font-size: 26px;
  }
  main section.get-in-touch .location-map {
    padding: 80px 0 120px;
    width: 100%;
  }
  main section.get-in-touch .location-map .wp-block-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }
  main section.get-in-touch .location-map .wp-block-column iframe {
    width: calc(100% - 30px);
    height: 550px;
    border: none;
    border-radius: 30px;
  }
  main section.location {
    width: 100%;
    padding: 50px 10% 120px;
    background-color: #FCFCFC;
  }
  main section.location .location-map {
    width: 100%;
  }
  main section.location .location-map .wp-block-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  main section.location .location-map .wp-block-column h4 {
    margin: 0;
  }
  main section.location .location-map .wp-block-column h2 {
    margin: 0;
    font-size: 7.6vw;
  }
  main section.location .location-map .wp-block-column iframe {
    width: 98%;
    height: 500px;
    border-radius: 15px;
  }
  main section.breadcrumbs {
    margin: 10px;
    padding: 15px;
    height: 200px;
  }
  main section.breadcrumbs h1 {
    font-size: 7.6vw;
  }
  main section.breadcrumbs ul li span {
    font-size: 14px;
  }
  main section.policy-pages {
    padding: 30px 10% 120px;
  }
  main section.policy-pages .wp-block-columns {
    width: 100%;
  }
  main section.policy-pages .wp-block-columns .wp-block-column h2.wp-block-heading {
    font-size: 28px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column h3.wp-block-heading {
    font-size: 20px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column h4.wp-block-heading {
    font-size: 17px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column h5.wp-block-heading {
    font-size: 15px;
    font-weight: 700;
  }
  main section.policy-pages .wp-block-columns .wp-block-column blockquote {
    margin: 25px 0;
    padding: 10px 0 10px 15px;
    border-left: 10px solid var(--basic-color2);
  }
  main section.policy-pages .wp-block-columns .wp-block-column blockquote p {
    font-size: 25px;
    font-weight: 400;
    line-height: 120%;
  }
  main section.policy-pages .wp-block-columns .wp-block-column p {
    font-size: 15px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column ul {
    font-size: 14px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column ul li::before {
    font-size: 11px;
  }
  footer#footer {
    background: #F1F4F7 url("../media/images/footer-element.png") right bottom no-repeat;
    background-size: 500px;
    font-size: 13px;
    font-weight: 500;
  }
  footer#footer .cta {
    background: #0D2432 url("../media/images/footer-cta-bg.png") 35px 35px no-repeat;
    background-size: 140px auto;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    margin: -80px 8% 0;
    gap: 30px;
  }
  footer#footer .cta .content h2 {
    font-size: 38px;
    line-height: 110%;
  }
  footer#footer .cta .content p {
    font-size: 20px;
    line-height: 110%;
  }
  footer#footer .cta a span {
    display: block;
    padding: 0 25px;
  }
  footer#footer .footer-widget {
    padding: 0 5%;
  }
  footer#footer .footer-widget h5 {
    font-size: 18px;
    line-height: 140%;
  }
  footer#footer .footer-widget .menu-footer-container ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  footer#footer .footer-widget .menu-footer-container ul.menu li.menu-item a {
    line-height: 30px;
    font-weight: 500;
  }
  footer#footer .footer-widget ul.contact-info-widget {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
  }
  footer#footer .footer-widget ul.contact-info-widget li {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  footer#footer .footer-widget ul.contact-info-widget li img {
    display: block;
    width: 20px;
  }
  footer#footer .footer-widget ul.contact-info-widget li span {
    display: block;
    line-height: 1.35;
    font-size: 14px;
    font-weight: 500;
  }
  footer#footer .footer-widget .wp-block-image img {
    width: 172px;
  }
  footer#footer .footer-widget p {
    margin: 0 0 30px;
    padding: 0;
    font-size: 14px;
    line-height: 140%;
    display: block;
  }
  footer#footer .footer-widget form#subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form {
    height: 52px;
    background-color: #BBBFC4;
    display: grid;
    grid-template-columns: 1fr 44px;
    padding: 3px;
    gap: 3px;
    border-radius: 25px;
    overflow: hidden;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input {
    background-color: transparent;
    border: none;
    border-radius: 26px;
    display: block;
    height: 100%;
    padding: 0 20px;
    color: #fff;
    /* Standard syntax for modern browsers */
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input::-moz-placeholder {
    color: #fff; /* Sets the placeholder color to red (use any valid color value) */
    opacity: 1; /* Ensures full opacity, as some browsers (Firefox) apply a default lower opacity */
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input::placeholder {
    color: #fff; /* Sets the placeholder color to red (use any valid color value) */
    opacity: 1; /* Ensures full opacity, as some browsers (Firefox) apply a default lower opacity */
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input {
    /* Vendor-prefixed pseudo-elements for broader compatibility */
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input::-webkit-input-placeholder { /* Chrome, Opera, Safari */
    color: #fff;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input:-moz-placeholder { /* Firefox 18- */
    color: #fff;
    opacity: 1;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input::-moz-placeholder { /* Firefox 19+ */
    color: #fff;
    opacity: 1;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #fff;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button {
    background-color: transparent;
    border-radius: 23px;
    border: none;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button svg {
    width: 44px;
    height: 44px;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button svg circle {
    fill: #424C57;
    transition: 0.3s ease;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button svg path {
    fill: #fff;
    transition: 0.3s ease;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button:hover svg circle {
    fill: #fff;
    transition: 0.3s ease;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button:hover svg path {
    fill: #424C57;
    transition: 0.3s ease;
  }
  footer#footer .footer-widget form#subscribe-form .subscribe-result {
    font-size: 13.5px;
    font-weight: 600;
    line-height: 100%;
    display: block;
    padding: 0 20px;
    color: var(--basic-color2);
  }
  footer#footer .social {
    display: flex;
    gap: 10px;
    padding: 0 5%;
  }
  footer#footer .social a {
    display: block;
    width: 34px;
    height: 34px;
  }
  footer#footer .social a img {
    width: 100%;
    height: 100%;
    display: block;
  }
  footer#footer .copyright p {
    line-height: 18px;
    margin-top: 10px;
  }
  footer#footer .copyright p span:last-of-type {
    display: block;
    margin-bottom: 15px;
  }
  footer#footer .copyright .footer-menu {
    margin: 15px 0 0;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  header.site-header {
    padding: 0 20px;
  }
  header.site-header .header-wrapper {
    height: 80px;
  }
  header.site-header .header-wrapper .left-column {
    gap: 20px;
  }
  header.site-header .header-wrapper .left-column a.logo {
    width: 120px;
  }
  header.site-header .header-wrapper .left-column nav {
    display: none;
  }
  header.site-header .header-wrapper .right-column .social {
    display: flex;
  }
  header.site-header .header-wrapper .right-column .phone {
    display: none;
  }
  header.site-header .header-wrapper .right-column button.upload-cv {
    display: flex;
  }
  header.site-header .header-wrapper .right-column button.toggle {
    display: block;
  }
  main {
    width: 100%;
    min-height: 50vh;
  }
  main h4.round-heading {
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #5A646F;
    background-color: #fff;
    line-height: 34px;
    padding: 0 25px;
    border-radius: 17px;
    display: flex;
    margin: 0;
  }
  main h3.medium-heading {
    display: block;
    line-height: 100%;
    font-size: 1.8vw;
    font-weight: 600;
    margin: 0;
    padding: 0;
  }
  main h2.big-heading {
    display: block;
    line-height: 100%;
    font-size: 2.4vw;
    font-weight: 800;
    margin: 0;
    padding: 0;
  }
  main section.home-slider {
    padding: 10px;
    height: calc(60vh - 80px);
  }
  main section.home-slider .swiper {
    width: 100%;
    height: 100%;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content {
    padding: 20px;
    gap: 10px;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content h3 {
    font-size: 18px;
    width: 100%;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content h2 {
    font-size: 8vw;
    width: 100%;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content p {
    display: block;
    margin: 10px 0 25px;
    font-size: 16px;
    width: 100%;
    line-height: 120%;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content a.link {
    font-size: 14px;
    font-weight: 600;
    padding: 0 25px 0 62px;
  }
  main section.home-slider .swiper.main-slider .swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
    z-index: 1;
  }
  main section.home-slider .swiper.main-slider .swiper-pagination .swiper-pagination-bullet {
    width: 25px;
    height: 3px;
  }
  main section.home-slider .swiper.main-slider nav {
    display: none;
  }
  main section.home-slider .swiper.main-slider-thumbs {
    display: block;
    width: 400px;
    height: 110px;
    right: 50px;
  }
  main section.home-slider .swiper.main-slider-thumbs .swiper-wrapper .swiper-slide {
    height: 110px;
  }
  main section.home-about {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background: url("../media/images/bg-about-section-1.png"), url("../media/images/bg-about-section-2.png"), url("../media/images/bg-about-section-3.png");
    background-position: left top, 48% 65%, right 105%;
    background-repeat: no-repeat;
    background-size: 100px, 340px, 100px;
    padding: 50px 10%;
  }
  main section.home-about .about-wrapper {
    width: 100%;
  }
  main section.home-about .about-wrapper .left-column {
    position: relative;
    z-index: 0;
    flex: 0 0 100%;
  }
  main section.home-about .about-wrapper .left-column figure.small-image {
    right: -110px;
    bottom: -65px;
  }
  main section.home-about .about-wrapper .left-column figure.small-image img {
    width: 65%;
  }
  main section.home-about .about-wrapper .right-column {
    gap: 10px;
    flex: 0 0 100%;
    padding: 15px 0;
  }
  main section.home-about .about-wrapper .right-column h4 {
    margin-bottom: 5px;
  }
  main section.home-about .about-wrapper .right-column h2 {
    font-size: 7.6vw;
  }
  main section.home-about .about-wrapper .right-column p {
    line-height: 130%;
    font-size: 16px;
  }
  main section.home-about .about-wrapper .right-column div.wp-block-button.main-link a.wp-element-button {
    font-size: 14px;
  }
  main section.home-services {
    padding: 50px 25px;
  }
  main section.home-services h4 {
    margin-bottom: 5px;
  }
  main section.home-services h2 {
    font-size: 7.6vw;
    width: 85%;
  }
  main section.home-services p {
    font-size: 16px;
    width: 100%;
    text-align: center;
    line-height: 120%;
  }
  main section.home-services .services-container {
    width: 100%;
  }
  main section.home-services .services-container .services-outer {
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    align-items: stretch;
  }
  main section.home-services .services-container .services-outer .service-column {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
  main section.home-services .services-container .services-outer .service-column .image-container {
    background-color: #D6D8DA;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 340px;
    height: 317px;
    margin: 15px auto 0;
  }
  main section.how-it-works {
    gap: 0;
  }
  main section.how-it-works .work-wrapper {
    gap: 0;
  }
  main section.how-it-works .work-wrapper .wp-block-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  main section.how-it-works .work-wrapper .wp-block-column:first-of-type {
    flex: 0 0 100%;
    max-width: 100%;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type {
    padding: 50px 10% 30px;
    flex: 0 0 100%;
    max-width: 100%;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type h2 {
    font-size: 7.6vw;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type div.wp-block-button.main-link a.wp-element-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    height: 48px;
    line-height: 48px;
    padding: 3px 67px 3px 30px;
    background: #12232D url("../media/images/icon-arrow.png") calc(100% - 3px) center no-repeat;
    background-size: 41px 41px;
    color: #fff;
    font-weight: 500;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type div.wp-block-button.main-link a.wp-element-button:hover {
    background-color: #fff;
    color: #000;
  }
  main section.how-it-works .work-wrapper .how-it-works {
    width: 100%;
    margin: 0 auto;
    gap: 0;
  }
  main section.how-it-works .processes-wrapper {
    width: 100%;
    margin: 0 auto 30px;
    padding: 15px;
  }
  main section.how-it-works .processes-wrapper .processes-column {
    padding: 25px 20px;
    flex: 0 0 31.5%;
    max-width: 31.5%;
  }
  main section.how-it-works .processes-wrapper .processes-column svg {
    margin-bottom: 15px;
  }
  main section.how-it-works .processes-wrapper .processes-column h4 {
    font-size: 18px;
  }
  main section.faqs .faqs-wrapper {
    display: flex;
    flex-direction: column;
    grid-template-columns: auto;
    width: 100%;
  }
  main section.faqs .faqs-wrapper .left-column {
    padding: 50px 5%;
    background-color: #EAEEF1;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    order: 1;
  }
  main section.faqs .faqs-wrapper .left-column .faq-wrapper {
    width: 100%;
  }
  main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item {
    border-bottom: 1px solid #D9D9D9;
    padding: 20px 0;
  }
  main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item .question span {
    font-size: 18px;
    line-height: 110%;
  }
  main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item p {
    font-size: 15px;
    padding: 15px 0 0;
    line-height: 120%;
    width: 100%;
  }
  main section.faqs .faqs-wrapper .right-column {
    order: 0;
    padding: 20px 3%;
  }
  main section.faqs .faqs-wrapper .right-column img {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    border-radius: 15px;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns {
    bottom: 20px;
    padding: 25px 15%;
    gap: 25px;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns h4 {
    font-size: 28px;
    line-height: 110%;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns p {
    font-size: 20px;
    line-height: 120%;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns .main-link a.wp-element-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    height: 52px;
    line-height: 52px;
    padding: 3px 65px 3px 25px;
    background: #12232D url("../media/images/icon-arrow.png") calc(100% - 3px) center no-repeat;
    background-size: 46px;
    color: #fff;
    font-weight: 500;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns .main-link a.wp-element-button:hover {
    background-color: #fff;
    color: #000;
  }
  main section.elevate-job {
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: center 60px, left 10px, 80% center, calc(100% - 50px) bottom;
    background-size: 550px, 15px, 200px, 120px;
    height: auto;
  }
  main section.elevate-job .elevate-wrapper .left-column {
    flex: 0 0 100%;
    height: auto;
    padding-top: 80px;
  }
  main section.elevate-job .elevate-wrapper .left-column img {
    height: 550px;
  }
  main section.elevate-job .elevate-wrapper .right-column {
    padding: 20px 10% 60px;
    flex: 0 0 100%;
  }
  main section.elevate-job .elevate-wrapper .right-column h2 {
    font-size: 7.6vw;
    font-weight: 800;
    width: 100%;
    line-height: 100%;
    margin: 0 0 15px;
    text-align: center;
  }
  main section.elevate-job .elevate-wrapper .right-column ol {
    padding-left: 0;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li {
    padding-left: 35px;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li:nth-child(2) {
    margin-left: 0;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li::before {
    left: -5px;
    top: -10px;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li span {
    font-size: 18px;
    font-weight: 700;
    display: block;
    line-height: 150%;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li p {
    font-size: 15px;
    font-weight: 400;
    line-height: 130%;
  }
  main section.home-blog {
    padding: 30px 0 100px;
    background-color: #fff;
    background-image: url("../media/images/blog-bg-1.png"), url("../media/images/blog-bg-2.png"), url(../media/images/blog-bg.webp);
    background-position: left top, left 100%, center center;
    background-size: 120px, 140px, 80%;
    background-repeat: no-repeat, no-repeat, no-repeat;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
  main section.home-blog .home-blog-wrapper {
    width: 100%;
    margin: 0 auto;
    gap: 15px;
    padding: 30px 10%;
    flex-direction: column;
  }
  main section.home-blog .home-blog-wrapper .left-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  main section.home-blog .home-blog-wrapper .left-column h2 {
    font-size: 8.2vw;
  }
  main section.home-blog .home-blog-wrapper .right-column {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: flex-start;
  }
  main section.home-blog .home-blog-wrapper .right-column div.wp-block-button.view-all a.wp-block-button__link {
    padding: 3px 35px 3px 65px;
  }
  main section.home-blog .blog-container {
    width: 100%;
    padding: 15px 10%;
  }
  main section.home-blog .blog-container .post-item {
    display: flex;
    flex-direction: column;
    grid-template-columns: auto;
    gap: 20px;
    margin: 0 0 25px;
  }
  main section.home-blog .blog-container .post-item .post-image-url {
    width: 100%;
    overflow: hidden;
  }
  main section.home-blog .blog-container .post-item .post-image-url img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main section.home-blog .blog-container .post-item .post-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 3px 0;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic ul {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    display: flex;
    gap: 25px;
    justify-content: flex-start;
    align-items: center;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic ul li {
    font-size: 12px;
    color: #313B46;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic ul li span {
    font-size: 14px;
    font-weight: 500;
    color: #424C57;
    text-transform: capitalize;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic a {
    display: block;
    color: #313B46;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic a h3 {
    display: block;
    line-height: 100%;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    padding: 0;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic a:hover {
    color: var(--basic-color3);
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic p.post-excerpt {
    margin: 10px 0;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    font-size: 13px;
    font-weight: 600;
    color: #313B46;
    gap: 5px;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link svg {
    width: 22px;
    transition: 0.3s ease;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link:hover {
    color: #000;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link:hover svg {
    margin-left: 5px;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link:hover svg path {
    fill: #000;
  }
  main section.home-blog .blog-container .post-item:last-of-type {
    margin-bottom: 0;
  }
  main section.home-blog .blog-container .featured-post {
    position: relative;
    z-index: 0;
    margin-bottom: 25px;
  }
  main section.home-blog .blog-container .featured-post .image {
    height: 400px;
  }
  main section.home-blog .blog-container .featured-post .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main section.home-blog .blog-container .featured-post .image::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  }
  main section.home-blog .blog-container .featured-post .featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    color: #fff;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  main section.home-blog .blog-container .featured-post .featured-content a.post-title {
    color: #fff;
    display: block;
  }
  main section.home-blog .blog-container .featured-post .featured-content a.post-title h3 {
    line-height: 100%;
    font-size: 25px;
  }
  main section.home-blog .blog-container .featured-post .featured-content p.post-excerpt {
    font-size: 16px;
    line-height: 120%;
  }
  main section.home-blog .blog-container .featured-post .featured-content a.post-link {
    display: flex;
    gap: 10px;
    font-size: 13px;
    gap: 5px;
  }
  main section.about-who {
    padding: 50px 15px;
  }
  main section.about-who .about-who-wrapper {
    width: 100%;
  }
  main section.about-who .about-who-wrapper .left-column {
    padding-right: 0;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 15px 5%;
  }
  main section.about-who .about-who-wrapper .left-column h2 {
    font-size: 7.6vw;
  }
  main section.about-who .about-who-wrapper .right-column {
    position: relative;
    z-index: 0;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 3%;
  }
  main section.about-who .about-who-wrapper .right-column figure.large-image {
    position: relative;
    z-index: 1;
  }
  main section.about-who .about-who-wrapper .right-column figure.large-image img {
    width: 100%;
  }
  main section.about-who .about-who-wrapper .right-column figure.small-image {
    position: absolute;
    z-index: 2;
    left: 30px;
    bottom: -80px;
  }
  main section.about-who .about-who-wrapper .right-column figure.small-image img {
    width: 65%;
  }
  main section.about-process {
    padding: 50px 15px;
    flex-direction: column;
    gap: 15px;
  }
  main section.about-process h2 {
    width: 100%;
    padding-right: 0;
    font-size: 7.6vw;
    text-align: center;
  }
  main section.about-process .process-wrapper {
    width: 100%;
    gap: 15px;
  }
  main section.about-process .process-wrapper .image-column {
    flex: 0 0 90%;
    max-width: 90%;
    min-height: 100%;
    margin: 0 auto;
  }
  main section.about-process .process-wrapper .image-column figure {
    width: 100%;
    height: 100%;
  }
  main section.about-process .process-wrapper .content-column {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 100%;
  }
  main section.about-process .process-wrapper .content-column .columns-wrapper {
    grid-template-columns: repeat(2, 1fr);
    min-height: 100%;
  }
  main section.about-process .process-wrapper .content-column .columns-wrapper .process-step {
    background-color: #fff;
    padding: 20px;
  }
  main section.about-process .process-wrapper .content-column .columns-wrapper .process-step svg {
    width: 80px;
    height: 80px;
  }
  main section.about-process .process-wrapper .content-column .columns-wrapper .process-step h3 {
    font-size: 24px;
  }
  main section.about-experts {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  main section.about-experts .about-experts-wrapper .left-column {
    gap: 10px;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 30px 10% 0;
    order: 1;
  }
  main section.about-experts .about-experts-wrapper .left-column h2 {
    font-size: 7.6vw;
    width: 110%;
  }
  main section.about-experts .about-experts-wrapper .left-column p {
    font-size: 16px;
    width: 100%;
    line-height: 120%;
  }
  main section.about-experts .about-experts-wrapper .right-column {
    flex: 0 0 100%;
    max-width: 100%;
    order: 0;
  }
  main section.about-experts .about-experts-wrapper .right-column figure {
    width: 100%;
  }
  main section.about-experts #our-expers-wrapper {
    width: 90%;
    margin: 15px auto 50px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a.image {
    width: 100%;
    height: auto;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item h3 {
    font-size: 18px;
    font-weight: 600;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item span {
    font-size: 14px;
    font-weight: 500;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a {
    gap: 12px;
    width: 100px;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a svg {
    width: 25px;
    height: 25px;
  }
  main section.about-experts #our-expers-wrapper #our-expers-load-more {
    height: 48px;
    border-radius: 24px;
    color: #fff;
    background-color: #000;
    padding: 3px 30px 3px 3px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    display: none;
  }
  main section.about-experts #our-expers-wrapper #our-expers-load-more svg {
    width: 42px;
    height: 42px;
    transition: 0.3s ease;
  }
  main section.about-experts #our-expers-wrapper #our-expers-load-more:hover {
    background-color: var(--basic-color2);
    color: #fff;
  }
  main section.about-experts #our-expers-wrapper #our-expers-load-more:hover svg {
    transform: rotate(90deg);
  }
  main section.our-experts-single {
    padding: 30px 10% 120px;
  }
  main section.our-experts-single div.info {
    padding: 20px 20px 30px;
  }
  main section.our-experts-single div.info .expert-image {
    margin-bottom: 15px;
  }
  main section.our-experts-single div.info .expert-image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main section.our-experts-single div.info hr {
    border: none;
    height: 1px;
    opacity: 1;
    background-color: #D9D9D9;
    margin: 15px 0;
    padding: 0;
  }
  main section.our-experts-single div.info .expert-meta ul.info-ul li::before {
    font-size: 30px;
  }
  main section.our-experts-single div.info .social {
    margin-top: 25px;
  }
  main section.our-experts-single div.info .social a svg {
    width: 25px;
    height: 25px;
  }
  main section.our-experts-single a.back {
    margin-top: 25px;
  }
  main section.our-experts-single h3 {
    font-size: 25px;
    font-weight: 600;
  }
  main section.our-experts-single blockquote.wp-block-quote {
    border-left: 5px solid var(--basic-color2);
    padding: 15px 15px 15px 25px;
    margin: 35px 0 0;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.02);
  }
  main section.our-experts-single blockquote.wp-block-quote p {
    font-size: 18px;
    margin-bottom: 15px;
  }
  main section.our-experts-single blockquote.wp-block-quote h5 {
    font-size: 14px;
    font-weight: 700;
  }
  main section.our-experts-single p {
    font-size: 15px;
  }
  main section.our-experts-single ul.wp-block-list {
    margin: 25px 0;
    font-size: 15px;
  }
  main section.our-experts-single ul.wp-block-list li::before {
    font-size: 13px;
  }
  main section.counter {
    background: #313B46 url("../media/images/bg-counter-1.png") center center no-repeat;
    background-size: 350px;
    padding: 80px 15px;
  }
  main section.counter .counter-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 15px;
         column-gap: 15px;
    row-gap: 15px;
  }
  main section.counter .counter-wrapper .item {
    padding: 10px;
  }
  main section.counter .counter-wrapper .item h2 {
    font-size: 14.6vw;
    line-height: 120%;
  }
  main section.counter .counter-wrapper .item h6 {
    font-size: 14px;
    font-weight: 500;
    display: block;
    line-height: 120%;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
  }
  main section.testimonial {
    justify-content: center;
    align-items: center;
    padding: 50px 0% 120px;
  }
  main section.testimonial h2.wp-block-heading {
    line-height: 110%;
    font-size: 7.4vw;
    text-align: center;
    width: 90%;
  }
  main section.testimonial .swiper .swiper-wrapper .swiper-slide .content {
    padding: 15px 25px;
  }
  main section.testimonial .swiper .swiper-wrapper .swiper-slide .content svg {
    width: 100px;
  }
  main section.testimonial .swiper .swiper-wrapper .swiper-slide .content ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
  }
  main section.testimonial .swiper .swiper-wrapper .swiper-slide .content ul li img {
    display: none;
  }
  main section.employer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: url("../media/images/bg-about-section-1.png"), url("../media/images/bg-about-section-2.png"), url("../media/images/bg-about-section-3.png");
    background-position: left top, center center, right 110%;
    background-repeat: no-repeat;
    background-size: 120px, 400px, 130px;
    padding: 30px 10% 40px;
  }
  main section.employer .employer-wrapper {
    width: 100%;
  }
  main section.employer .employer-wrapper .right-column figure.large-image img {
    width: 100%;
  }
  main section.employer .employer-wrapper .right-column figure.small-image {
    right: -130px;
    bottom: 20px;
  }
  main section.employer .employer-wrapper .right-column figure.small-image img {
    width: 55%;
  }
  main section.employer .employer-wrapper .left-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    padding-right: 0;
  }
  main section.employer .employer-wrapper .left-column h4 {
    margin-bottom: 5px;
  }
  main section.employer .employer-wrapper .left-column h2 {
    font-size: 7.6vw;
  }
  main section.employer .employer-wrapper .left-column h3 {
    font-size: 22px;
    font-weight: 500;
  }
  main section.employer .employer-wrapper .left-column p {
    margin: 15px 0 0;
    padding: 0;
    line-height: 140%;
    font-size: 15px;
  }
  main section.employer .employer-wrapper .left-column div.wp-block-button.main-link a.wp-element-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 15px;
    height: 48px;
    line-height: 48px;
    padding: 3px 62px 3px 25px;
    background: #12232D url("../media/images/icon-arrow.png") calc(100% - 3px) center no-repeat;
    background-size: 41px 41px;
    color: #fff;
    font-weight: 500;
  }
  main section.employer .employer-wrapper .left-column div.wp-block-button.main-link a.wp-element-button:hover {
    background-color: #fff;
    color: #000;
  }
  main section.employer-form {
    padding: 50px 5% 20px;
  }
  main section.employer-form .employer-form-wrapper {
    width: 100%;
  }
  main section.employer-form .employer-form-wrapper .left-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  main section.employer-form .employer-form-wrapper .left-column h3 {
    font-size: 30px;
    line-height: 110%;
  }
  main section.employer-form .employer-form-wrapper .right-column {
    padding-top: 0;
  }
  main section.employer-form form#employer-form {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    background-size: 100px;
  }
  main section.employer-form form#employer-form h5 {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 25px;
    padding: 0;
  }
  main section.employer-form form#employer-form label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 8px;
  }
  main section.employer-form form#employer-form label input[type=text], main section.employer-form form#employer-form label input[type=email], main section.employer-form form#employer-form label input[type=tel] {
    display: block;
    background-color: #fff;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
  }
  main section.employer-form form#employer-form label input[type=text]:focus, main section.employer-form form#employer-form label input[type=email]:focus, main section.employer-form form#employer-form label input[type=tel]:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.employer-form form#employer-form label input[type=date] {
    display: block;
    background: #fff url("../media/images/icon-calendar.png") calc(100% - 15px) center no-repeat;
    background-size: 20px;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
    -webkit-appearance: none;
            appearance: none;
    -moz-appearance: textfield;
    position: relative;
  }
  main section.employer-form form#employer-form label input[type=date]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
  }
  main section.employer-form form#employer-form label input[type=date]:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.employer-form form#employer-form label select {
    display: block;
    background: #fff url("../media/images/dd-arrow.png") calc(100% - 15px) center no-repeat;
    background-size: 9px;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
  }
  main section.employer-form form#employer-form label select:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.employer-form form#employer-form label textarea {
    display: block;
    background-color: #fff;
    background-size: 9px;
    padding: 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 120px;
    width: 100%;
    border-radius: 6px;
  }
  main section.employer-form form#employer-form label .resume-upload {
    max-width: 100%;
    border: 1px dashed #BBBFC4;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    text-align: center;
    padding: 30px 25px;
  }
  main section.employer-form form#employer-form label .resume-upload div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    line-height: 100%;
  }
  main section.employer-form form#employer-form label .resume-upload div svg {
    width: 50px;
    display: block;
    margin: 0 auto 30px;
  }
  main section.employer-form form#employer-form label .resume-upload div strong {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 120%;
  }
  main section.employer-form form#employer-form label .resume-upload div span {
    font-size: 13px;
    font-weight: 400;
    color: #5A646F;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 100%;
  }
  main section.employer-form form#employer-form label .resume-upload div span.browse {
    border: 1px solid #DDDDDD;
    font-size: 14px;
    padding: 0 15px;
    border-radius: 6px;
    line-height: 32px;
    margin-top: 20px;
  }
  main section.employer-form form#employer-form label .resume-upload .upload-content small {
    color: #64748b;
    display: block;
    margin-top: 8px;
  }
  main section.employer-form form#employer-form label .resume-upload .file-name {
    margin-top: 12px;
    font-size: 14px;
    color: #16a34a;
    font-weight: 500;
    display: none;
  }
  main section.employer-form form#employer-form label .resume-upload:hover, main section.employer-form form#employer-form label .resume-upload.dragover {
    border-color: #2563eb;
    background: #eff6ff;
  }
  main section.employer-form form#employer-form label.i-agree {
    justify-content: flex-start;
    align-items: flex-start;
  }
  main section.employer-form form#employer-form label.i-agree input#i-agree {
    width: 45px;
    height: 17.46px;
  }
  main section.employer-form form#employer-form label.i-agree span.i-agree {
    line-height: 130%;
    display: block;
  }
  main section.employer-form form#employer-form button[type=submit].form-submit {
    padding: 3px 35px 3px 3px;
  }
  main section.employer-form form#employer-form em.note {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin: 15px 0;
  }
  main section.employer-form form#employer-form div.results {
    font-size: 15px;
    font-weight: 600;
    display: block;
    color: var(--basic-color3);
    line-height: 1;
    margin-top: 20px;
  }
  main section.candidate {
    background: url("../media/images/candidate-image-2.webp");
    background-position: center 80px;
    background-size: 420px;
    background-repeat: no-repeat;
    padding: 30px 10% 20px;
  }
  main section.candidate .candidate-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }
  main section.candidate .candidate-wrapper .left-column figure.large-image {
    height: 450px;
  }
  main section.candidate .candidate-wrapper .right-column {
    gap: 5px;
    padding-right: 0;
  }
  main section.candidate .candidate-wrapper .right-column h4 {
    margin-bottom: 5px;
  }
  main section.candidate .candidate-wrapper .right-column h2 {
    font-size: 7.6vw;
  }
  main section.candidate .candidate-wrapper .right-column h3 {
    font-size: 22px;
    font-weight: 500;
  }
  main section.candidate .candidate-wrapper .right-column p {
    font-size: 16px;
  }
  main section.candidate .candidate-wrapper .right-column ul li {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }
  main section.candidate .candidate-wrapper .right-column ul li div span {
    font-size: 16px;
    font-weight: 700;
  }
  main section.candidate .candidate-wrapper .right-column ul li div p {
    font-size: 13px;
  }
  main section.candidate-form {
    padding: 50px 5% 20px;
  }
  main section.candidate-form .candidate-form-wrapper {
    width: 100%;
  }
  main section.candidate-form .candidate-form-wrapper .left-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  main section.candidate-form .candidate-form-wrapper .left-column h3 {
    font-size: 30px;
    line-height: 110%;
  }
  main section.candidate-form form#candidate-form {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    background-size: 100px;
  }
  main section.candidate-form form#candidate-form h5 {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    padding: 0;
  }
  main section.candidate-form form#candidate-form .if-yes {
    display: none;
  }
  main section.candidate-form form#candidate-form label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 8px;
  }
  main section.candidate-form form#candidate-form label span {
    display: flex;
    gap: 5px;
    line-height: 30px;
    font-weight: 400;
  }
  main section.candidate-form form#candidate-form label span em.star {
    color: red;
    font-size: 22px;
    font-weight: 600;
    display: block;
  }
  main section.candidate-form form#candidate-form label input[type=text] {
    display: block;
    background-color: #fff;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
  }
  main section.candidate-form form#candidate-form label input[type=text]:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.candidate-form form#candidate-form label input[type=email] {
    display: block;
    background-color: #fff;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
  }
  main section.candidate-form form#candidate-form label input[type=email]:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.candidate-form form#candidate-form label input[type=date] {
    display: block;
    background: #fff url("../media/images/icon-calendar.png") calc(100% - 15px) center no-repeat;
    background-size: 20px;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
    -webkit-appearance: none;
            appearance: none;
    -moz-appearance: textfield;
    position: relative;
  }
  main section.candidate-form form#candidate-form label input[type=date]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
  }
  main section.candidate-form form#candidate-form label input[type=date]:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.candidate-form form#candidate-form label select {
    display: block;
    background: #fff url("../media/images/dd-arrow.png") calc(100% - 15px) center no-repeat;
    background-size: 9px;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
  }
  main section.candidate-form form#candidate-form label select:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.candidate-form form#candidate-form label textarea {
    display: block;
    background-color: #fff;
    background-size: 9px;
    padding: 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 120px;
    width: 100%;
    border-radius: 6px;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container {
    display: flex;
    gap: 5px;
    flex-wrap: nowrap;
    margin-right: 5px;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container .tag {
    background: #cfd4da;
    padding: 0 6px 0 8px;
    line-height: 26px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    height: 26px;
    gap: 10px;
    text-transform: capitalize;
    font-weight: 500;
    transition: 0.3s ease;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container .tag button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    font-size: 12px;
    font-weight: 800;
    line-height: 15px;
    cursor: pointer;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container .tag button svg {
    width: 100%;
    height: 100%;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container .tag:hover {
    background-color: #64748b;
    color: #fff;
  }
  main section.candidate-form form#candidate-form label .resume-upload {
    max-width: 100%;
    border: 1px dashed #BBBFC4;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    text-align: center;
    padding: 30px 25px;
  }
  main section.candidate-form form#candidate-form label .resume-upload div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    line-height: 100%;
  }
  main section.candidate-form form#candidate-form label .resume-upload div svg {
    width: 50px;
    display: block;
    margin: 0 auto 30px;
  }
  main section.candidate-form form#candidate-form label .resume-upload div strong {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 120%;
  }
  main section.candidate-form form#candidate-form label .resume-upload div span {
    font-size: 13px;
    font-weight: 400;
    color: #5A646F;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 100%;
  }
  main section.candidate-form form#candidate-form label .resume-upload div span.browse {
    border: 1px solid #DDDDDD;
    font-size: 14px;
    padding: 0 15px;
    border-radius: 6px;
    line-height: 32px;
    margin-top: 20px;
  }
  main section.candidate-form form#candidate-form label .resume-upload .upload-content small {
    color: #64748b;
    display: block;
    margin-top: 8px;
  }
  main section.candidate-form form#candidate-form label .resume-upload .file-name {
    margin-top: 12px;
    font-size: 14px;
    color: #16a34a;
    font-weight: 500;
    display: none;
  }
  main section.candidate-form form#candidate-form label .resume-upload:hover, main section.candidate-form form#candidate-form label .resume-upload.dragover {
    border-color: #2563eb;
    background: #eff6ff;
  }
  main section.candidate-form form#candidate-form label.i-agree, main section.candidate-form form#candidate-form label.i-confirm {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  main section.candidate-form form#candidate-form label.i-agree input#i-agree, main section.candidate-form form#candidate-form label.i-agree input#i-confirm, main section.candidate-form form#candidate-form label.i-confirm input#i-agree, main section.candidate-form form#candidate-form label.i-confirm input#i-confirm {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url("../media/images/icon-checkbox-0.png") center center no-repeat;
    background-size: 18px 17.46px;
    display: block;
    width: 18px;
    height: 17.46px;
    cursor: pointer;
  }
  main section.candidate-form form#candidate-form label.i-agree input#i-agree:checked, main section.candidate-form form#candidate-form label.i-agree input#i-confirm:checked, main section.candidate-form form#candidate-form label.i-confirm input#i-agree:checked, main section.candidate-form form#candidate-form label.i-confirm input#i-confirm:checked {
    background: url("../media/images/icon-checkbox-1.png") center center no-repeat;
    background-size: 18px 17.46px;
  }
  main section.candidate-form form#candidate-form label.i-agree span.i-agree, main section.candidate-form form#candidate-form label.i-agree span.i-confirm, main section.candidate-form form#candidate-form label.i-confirm span.i-agree, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm {
    font-size: 14px;
  }
  main section.candidate-form form#candidate-form label.i-agree span.i-agree strong, main section.candidate-form form#candidate-form label.i-agree span.i-confirm strong, main section.candidate-form form#candidate-form label.i-confirm span.i-agree strong, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm strong {
    font-weight: 700;
  }
  main section.candidate-form form#candidate-form label.i-agree span.i-agree a, main section.candidate-form form#candidate-form label.i-agree span.i-confirm a, main section.candidate-form form#candidate-form label.i-confirm span.i-agree a, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm a {
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #000;
  }
  main section.candidate-form form#candidate-form label.i-agree span.i-agree a:hover, main section.candidate-form form#candidate-form label.i-agree span.i-confirm a:hover, main section.candidate-form form#candidate-form label.i-confirm span.i-agree a:hover, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm a:hover {
    text-decoration: underline;
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit {
    height: 54px;
    border-radius: 27px;
    padding: 3px 25px 3px 3px;
    border: none;
    background: #12232D;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit svg {
    width: 46px;
    height: 46px;
    transition: 0.3s ease;
    margin-right: 10px;
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit:hover {
    background: var(--basic-color2);
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit:hover svg {
    transform: rotate(90deg);
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  main section.candidate-form form#candidate-form em.note {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin: 15px 0;
  }
  main section.candidate-form form#candidate-form div.results {
    font-size: 15px;
    font-weight: 600;
    display: block;
    color: var(--basic-color3);
    line-height: 1;
    margin-top: 20px;
  }
  main section.blog {
    padding: 30px 5% 120px;
    background: #fff url("../media/images/bg-blog-1.png") bottom calc(100% - 50px) no-repeat;
    background-size: 100px;
  }
  main section.blog h2 {
    font-size: 7.6vw;
  }
  main section.blog .blog-item {
    border: 1px solid #D9D9D9;
    background-color: #fff;
    border-radius: 10px;
    transition: 0.3s ease;
    align-items: stretch;
  }
  main section.blog .blog-item a.image {
    display: block;
    width: 100%;
    height: 320px;
    background-color: var(--basic-color1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }
  main section.blog .blog-item a.image em {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 5;
    background-color: #fff;
    color: var(--basic-color2);
    font-size: 13px;
    font-style: normal;
    padding: 0 15px;
    font-weight: 600;
    line-height: 30px;
    display: block;
    border-radius: 15px;
  }
  main section.blog .blog-item .content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    flex: 1;
  }
  main section.blog .blog-item .content ul {
    list-style: none;
    color: #424C57;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  main section.blog .blog-item .content ul span {
    font-size: 12px;
    font-weight: 500;
  }
  main section.blog .blog-item .content a.link {
    font-size: 25px;
  }
  main section.blog .blog-item .content p {
    line-height: 135%;
    font-size: 14px;
    font-weight: 500;
  }
  main section.blog .blog-item .content a.readmore {
    font-size: 13px;
    gap: 10px;
  }
  main section.blog .blog-item .content a.readmore svg {
    width: 18px;
    transition: 0.3s ease;
  }
  main section.blog .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    margin: 25px 0;
    font-size: 18px;
  }
  main section.blog .pagination span.current {
    display: block;
    border: 1px solid #D9D9D9;
    background-color: #fff;
    color: #000;
    line-height: 50px;
    text-align: center;
    border-radius: 8px;
    height: 50px;
    min-width: 50px;
  }
  main section.blog .pagination a {
    display: block;
    line-height: 46px;
    border: 1px solid #1F2B38;
    background-color: #1F2B38;
    color: #fff;
    min-width: 46px;
    padding: 0 15px;
    text-align: center;
    border-radius: 6px;
  }
  main section.blog .pagination a.next, main section.blog .pagination a.prev {
    font-size: 15px;
  }
  main section.blog .pagination a:hover {
    background-color: #EAEEF1;
    border-color: #EAEEF1;
    color: #000;
  }
  main section.single-post-breadcrumbs {
    margin: 0 15px 0;
    width: calc(100% - 30px);
    height: calc(70vh - 50px);
    padding: 0 15px;
    border-radius: 15px;
  }
  main section.single-post-breadcrumbs h1 {
    display: block;
    line-height: 100%;
    font-size: 7.2vw;
    font-weight: 900;
    text-align: center;
    color: #fff;
    padding: 0;
    position: relative;
    z-index: 1;
  }
  main section.single-post-breadcrumbs ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0 0 40px;
    position: relative;
    z-index: 1;
  }
  main section.single-post-breadcrumbs ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  main section.single-post-breadcrumbs ul li span {
    display: block;
    font-size: 17px;
    font-weight: 500;
  }
  main section.single-post-breadcrumbs ul li span a {
    display: block;
    line-height: 100%;
    color: #fff;
  }
  main section.single-post-breadcrumbs ul li::after {
    content: " / ";
    display: block;
    margin: 0 10px;
  }
  main section.single-post-breadcrumbs ul li:last-of-type::after {
    display: none;
  }
  main section.single-post-breadcrumbs::after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 10%, rgba(0, 0, 0, 0.3) 55%);
  }
  main section.our-expers-breadcrumbs {
    margin: 10px;
    padding: 15px;
    height: 200px;
  }
  main section.our-expers-breadcrumbs h1 {
    font-size: 6.6vw;
  }
  main section.blog-single {
    padding: 30px 15px 120px;
  }
  main section.blog-single ul.post-meta {
    list-style: none;
    color: #424C57;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }
  main section.blog-single ul.post-meta span {
    font-size: 12px;
    font-weight: 600;
  }
  main section.blog-single p {
    font-size: 15px;
  }
  main section.blog-single p.thick-p {
    display: block;
    font-size: 20px;
    line-height: 120%;
    font-weight: 500;
  }
  main section.blog-single blockquote {
    background: #EAEEF1 url("../media/images/quote.png") 30px 30px no-repeat;
    color: #000;
    border-radius: 15px;
    padding: 30px 30px 30px 140px;
    margin: 20px 0;
  }
  main section.blog-single blockquote p {
    font-size: 22px;
    line-height: 120%;
    font-weight: 500;
    margin: 0 0 10px;
    padding: 0;
  }
  main section.blog-single blockquote h6 {
    display: block;
    line-height: 120%;
    position: relative;
    margin: 0;
    padding: 0 0 0 60px;
    font-size: 14px;
  }
  main section.blog-single blockquote h6::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    height: 1px;
    background-color: #000;
    width: 50px;
  }
  main section.blog-single h4 {
    font-size: 25px;
    font-weight: 700;
    line-height: 160%;
    display: block;
    margin: 0;
    padding: 0;
  }
  main section.blog-single .image-column {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    margin: 25px 0;
  }
  main section.blog-single .image-column figure.wp-block-image {
    width: 100%;
  }
  main section.blog-single .image-column figure.wp-block-image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
  }
  main section.blog-single div.tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 25px 0;
  }
  main section.blog-single div.tags strong {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    display: block;
  }
  main section.blog-single div.tags .links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    row-gap: 10px;
  }
  main section.blog-single div.tags .links a {
    background-color: #EAEEF1;
    display: block;
    color: #000;
    border-radius: 15px;
    font-size: 12px;
    padding: 0 15px;
    font-weight: 500;
    line-height: 30px;
    border-radius: 14px;
  }
  main section.blog-single ul.next-prev li a {
    gap: 5px;
  }
  main section.blog-single ul.next-prev li svg {
    width: 35px;
    height: 35px;
  }
  main section.blog-single {
    /* ===== Comments Area ===== */
  }
  main section.blog-single .comments-area {
    /* Comments title */
  }
  main section.blog-single .comments-area h3 {
    font-size: 22px;
  }
  main section.blog-single .comments-area h4 {
    font-size: 18px;
  }
  main section.blog-single .comments-area {
    /* ===== Comment List ===== */
  }
  main section.blog-single .comments-area .comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  main section.blog-single .comments-area .comment-list li.comment {
    margin-bottom: 30px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 1px solid #D9D9D9;
    font-weight: 600;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard b.fn a.url {
    pointer-events: none;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    text-transform: capitalize;
    color: #000;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard span.says {
    display: none;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata {
    display: flex;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata a {
    color: #000;
    font-size: 12px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata a time {
    font-weight: 600;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata span.edit-link a.comment-edit-link {
    font-size: 13px;
    color: #888;
    display: none;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.comment-content {
    display: block;
    padding-left: 100px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.comment-content p {
    margin: 0 0 10px;
    line-height: 130%;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.comment-content p:last-of-type {
    margin: 0;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 100px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply a.comment-reply-link {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    position: relative;
    display: flex;
    gap: 5px;
    align-items: center;
    text-decoration: none;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply a.comment-reply-link::after {
    transition: 0.3s ease;
    content: "";
    display: inline-block;
    width: 18px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='15' fill='none' viewBox='0 0 28 15'%3E%3Cpath fill='%23313b46' d='M19.94.296a1 1 0 0 0 0 1.42l4.6 4.6H1a1 1 0 1 0 0 2h23.52l-4.58 4.57a1 1 0 0 0 0 1.41 1 1 0 0 0 1.41 0l6.36-6.36a.88.88 0 0 0 0-1.27L21.36.296a1 1 0 0 0-1.42 0'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply a.comment-reply-link:hover::after {
    margin-left: 5px;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children {
    list-style: none;
    margin: 0;
    padding: 0 0 0 100px;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor {
    margin: 0;
    padding: 0;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 0px solid #D9D9D9;
    font-weight: 600;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-author.vcard img.avatar {
    width: 50px;
    height: 50px;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-author.vcard b.fn a.url {
    font-size: 14px;
    font-weight: 700;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-author.vcard span.says {
    display: none;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-metadata a {
    font-size: 12px;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-metadata span.edit-link a.comment-edit-link {
    display: none;
  }
  main section.blog-single .comments-area {
    /* ===== Comment Form ===== */
  }
  main section.blog-single .comments-area .comment-respond {
    padding: 30px;
    margin: 0;
    border-radius: 8px;
    background: #EAEEF1;
  }
  main section.blog-single .comments-area .comment-respond h3.comment-reply-title {
    font-size: 22px;
    font-weight: 600;
  }
  main section.blog-single .comments-area .comment-respond {
    /* Form fields */
  }
  main section.blog-single .comments-area .comment-respond .comment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p {
    margin: 0;
    padding: 0;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p label {
    display: block;
    font-size: 15px;
    line-height: 160%;
    font-weight: 600;
    margin-bottom: 6px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-cookies-consent {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-cookies-consent input[type=checkbox] {
    display: block;
    width: 16px;
    height: 16px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #344252;
    border-radius: 3px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-cookies-consent label {
    display: block;
    font-size: 12px;
    line-height: 16px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author input[type=text], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author input[type=email], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author input[type=url], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author textarea, main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email input[type=text], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email input[type=email], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email input[type=url], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email textarea, main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url input[type=text], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url input[type=email], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url input[type=url], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-comment textarea {
    width: 100%;
    height: 140px;
    border-radius: 6px;
    background-color: #fff;
    border: 1px solid #BBBFC4;
    padding: 15px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.form-submit {
    /* Submit button */
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.form-submit input[type=submit] {
    background: #12232D url("../media/images/form-submit-arrow.svg") 3px 3px no-repeat;
    background-size: 41px 41px;
    color: #fff;
    border: none;
    height: 48px;
    padding: 3px 25px 3px 58px;
    border-radius: 24px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.form-submit input[type=submit]:hover {
    background-color: #fff;
    color: #000;
  }
  main section.blog-single .comments-area {
    /* Cancel reply link */
  }
  main section.blog-single .comments-area #cancel-comment-reply-link {
    display: inline-block;
    margin-left: 10px;
    font-size: 14px;
    color: #999;
    text-decoration: none;
  }
  main section.blog-single .comments-area #cancel-comment-reply-link:hover {
    color: #000;
  }
  main section.blog-single aside.sidebar .widget .wp-block-columns.category, main section.blog-single aside.sidebar .widget .wp-block-columns.search, main section.blog-single aside.sidebar .widget .wp-block-columns.recent-posts, main section.blog-single aside.sidebar .widget .wp-block-columns.tags-column {
    padding: 20px;
    border-radius: 10px;
  }
  main section.blog-single aside.sidebar .widget .wp-block-columns.category h5.wp-block-heading, main section.blog-single aside.sidebar .widget .wp-block-columns.category label, main section.blog-single aside.sidebar .widget .wp-block-columns.search h5.wp-block-heading, main section.blog-single aside.sidebar .widget .wp-block-columns.search label, main section.blog-single aside.sidebar .widget .wp-block-columns.recent-posts h5.wp-block-heading, main section.blog-single aside.sidebar .widget .wp-block-columns.recent-posts label, main section.blog-single aside.sidebar .widget .wp-block-columns.tags-column h5.wp-block-heading, main section.blog-single aside.sidebar .widget .wp-block-columns.tags-column label {
    font-size: 17px;
  }
  main section.blog-single aside.sidebar .widget .wp-block-columns.image-link div.wp-block-columns.links .wp-block-column h3.wp-block-heading {
    font-size: 28px;
    font-weight: 800;
  }
  main section.blog-single aside.sidebar .widget .wp-block-columns.image-link figure.wp-block-image img {
    width: 100%;
  }
  main section.get-in-touch {
    padding: 30px 15px 50px;
  }
  main section.get-in-touch .get-in-touch-wrapper {
    width: 100%;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-content {
    padding: 0 8%;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-content h2 {
    font-size: 7.6vw;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-content .customizer-items {
    display: flex;
    flex-direction: column;
    margin: 15px 0;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-form {
    padding: 25px;
    border-radius: 25px;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-form h3.wp-block-heading {
    font-size: 26px;
  }
  main section.get-in-touch .location-map {
    padding: 80px 0 120px;
    width: 100%;
  }
  main section.get-in-touch .location-map .wp-block-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }
  main section.get-in-touch .location-map .wp-block-column iframe {
    width: calc(100% - 30px);
    height: 550px;
    border: none;
    border-radius: 30px;
  }
  main section.location {
    width: 100%;
    padding: 50px 15px 120px;
    background-color: #FCFCFC;
  }
  main section.location .location-map {
    width: 100%;
  }
  main section.location .location-map .wp-block-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  main section.location .location-map .wp-block-column h4 {
    margin: 0;
  }
  main section.location .location-map .wp-block-column h2 {
    margin: 0;
    font-size: 7.6vw;
  }
  main section.location .location-map .wp-block-column iframe {
    width: 98%;
    height: 500px;
    border-radius: 15px;
  }
  main section.breadcrumbs {
    margin: 10px;
    padding: 15px;
    height: 200px;
  }
  main section.breadcrumbs h1 {
    font-size: 7.6vw;
  }
  main section.breadcrumbs ul li span {
    font-size: 14px;
  }
  main section.policy-pages {
    padding: 30px 10% 120px;
  }
  main section.policy-pages .wp-block-columns {
    width: 100%;
  }
  main section.policy-pages .wp-block-columns .wp-block-column h2.wp-block-heading {
    font-size: 28px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column h3.wp-block-heading {
    font-size: 20px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column h4.wp-block-heading {
    font-size: 17px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column h5.wp-block-heading {
    font-size: 15px;
    font-weight: 700;
  }
  main section.policy-pages .wp-block-columns .wp-block-column blockquote {
    margin: 25px 0;
    padding: 10px 0 10px 15px;
    border-left: 10px solid var(--basic-color2);
  }
  main section.policy-pages .wp-block-columns .wp-block-column blockquote p {
    font-size: 25px;
    font-weight: 400;
    line-height: 120%;
  }
  main section.policy-pages .wp-block-columns .wp-block-column p {
    font-size: 15px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column ul {
    font-size: 14px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column ul li::before {
    font-size: 11px;
  }
  footer#footer {
    background: #F1F4F7 url("../media/images/footer-element.png") right bottom no-repeat;
    background-size: 500px;
    font-size: 13px;
    font-weight: 500;
  }
  footer#footer .cta {
    background: #0D2432 url("../media/images/footer-cta-bg.png") 35px 35px no-repeat;
    background-size: 140px auto;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    margin: -80px 5% 0;
    gap: 30px;
  }
  footer#footer .cta .content h2 {
    font-size: 38px;
    line-height: 110%;
  }
  footer#footer .cta .content p {
    font-size: 20px;
    line-height: 110%;
  }
  footer#footer .cta a span {
    display: block;
    padding: 0 25px;
  }
  footer#footer .footer-widget {
    padding: 0;
  }
  footer#footer .footer-widget h5 {
    font-size: 18px;
    line-height: 140%;
  }
  footer#footer .footer-widget .menu-footer-container ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  footer#footer .footer-widget .menu-footer-container ul.menu li.menu-item a {
    line-height: 30px;
    font-weight: 500;
  }
  footer#footer .footer-widget ul.contact-info-widget {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
  }
  footer#footer .footer-widget ul.contact-info-widget li {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  footer#footer .footer-widget ul.contact-info-widget li img {
    display: block;
    width: 20px;
  }
  footer#footer .footer-widget ul.contact-info-widget li span {
    display: block;
    line-height: 1.35;
    font-size: 14px;
    font-weight: 500;
  }
  footer#footer .footer-widget .wp-block-image img {
    width: 172px;
  }
  footer#footer .footer-widget p {
    margin: 0 0 30px;
    padding: 0;
    font-size: 14px;
    line-height: 140%;
    display: block;
  }
  footer#footer .footer-widget form#subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form {
    height: 52px;
    background-color: #BBBFC4;
    display: grid;
    grid-template-columns: 1fr 44px;
    padding: 3px;
    gap: 3px;
    border-radius: 25px;
    overflow: hidden;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input {
    background-color: transparent;
    border: none;
    border-radius: 26px;
    display: block;
    height: 100%;
    padding: 0 20px;
    color: #fff;
    /* Standard syntax for modern browsers */
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input::-moz-placeholder {
    color: #fff; /* Sets the placeholder color to red (use any valid color value) */
    opacity: 1; /* Ensures full opacity, as some browsers (Firefox) apply a default lower opacity */
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input::placeholder {
    color: #fff; /* Sets the placeholder color to red (use any valid color value) */
    opacity: 1; /* Ensures full opacity, as some browsers (Firefox) apply a default lower opacity */
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input {
    /* Vendor-prefixed pseudo-elements for broader compatibility */
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input::-webkit-input-placeholder { /* Chrome, Opera, Safari */
    color: #fff;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input:-moz-placeholder { /* Firefox 18- */
    color: #fff;
    opacity: 1;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input::-moz-placeholder { /* Firefox 19+ */
    color: #fff;
    opacity: 1;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #fff;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button {
    background-color: transparent;
    border-radius: 23px;
    border: none;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button svg {
    width: 44px;
    height: 44px;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button svg circle {
    fill: #424C57;
    transition: 0.3s ease;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button svg path {
    fill: #fff;
    transition: 0.3s ease;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button:hover svg circle {
    fill: #fff;
    transition: 0.3s ease;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button:hover svg path {
    fill: #424C57;
    transition: 0.3s ease;
  }
  footer#footer .footer-widget form#subscribe-form .subscribe-result {
    font-size: 13.5px;
    font-weight: 600;
    line-height: 100%;
    display: block;
    padding: 0 20px;
    color: var(--basic-color2);
  }
  footer#footer .social {
    display: flex;
    gap: 10px;
    padding: 0 5%;
  }
  footer#footer .social a {
    display: block;
    width: 34px;
    height: 34px;
  }
  footer#footer .social a img {
    width: 100%;
    height: 100%;
    display: block;
  }
  footer#footer .copyright p {
    line-height: 18px;
    margin-top: 10px;
  }
  footer#footer .copyright p span:last-of-type {
    display: block;
    margin-bottom: 15px;
  }
  footer#footer .copyright .footer-menu {
    margin: 0;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  header.site-header {
    padding: 0 20px;
  }
  header.site-header .header-wrapper {
    height: 80px;
  }
  header.site-header .header-wrapper .left-column {
    gap: 20px;
  }
  header.site-header .header-wrapper .left-column a.logo {
    width: 120px;
  }
  header.site-header .header-wrapper .left-column nav {
    display: none;
  }
  header.site-header .header-wrapper .right-column .social {
    display: flex;
  }
  header.site-header .header-wrapper .right-column .phone {
    display: flex;
  }
  header.site-header .header-wrapper .right-column button.upload-cv {
    display: flex;
  }
  header.site-header .header-wrapper .right-column button.toggle {
    display: block;
  }
  main {
    width: 100%;
    min-height: 50vh;
  }
  main h4.round-heading {
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #5A646F;
    background-color: #fff;
    line-height: 34px;
    padding: 0 25px;
    border-radius: 17px;
    display: flex;
    margin: 0;
  }
  main h3.medium-heading {
    display: block;
    line-height: 100%;
    font-size: 1.8vw;
    font-weight: 600;
    margin: 0;
    padding: 0;
  }
  main h2.big-heading {
    display: block;
    line-height: 100%;
    font-size: 2.4vw;
    font-weight: 800;
    margin: 0;
    padding: 0;
  }
  main section.home-slider {
    padding: 10px;
    height: calc(70vh - 80px);
  }
  main section.home-slider .swiper {
    width: 100%;
    height: 100%;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content {
    padding: 20px;
    gap: 10px;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content h3 {
    font-size: 18px;
    width: 100%;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content h2 {
    font-size: 8vw;
    width: 100%;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content p {
    display: block;
    margin: 10px 0 25px;
    font-size: 16px;
    width: 100%;
    line-height: 120%;
  }
  main section.home-slider .swiper.main-slider .swiper-wrapper .swiper-slide .slide-content a.link {
    font-size: 14px;
    font-weight: 600;
    padding: 0 25px 0 62px;
  }
  main section.home-slider .swiper.main-slider .swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
    z-index: 1;
  }
  main section.home-slider .swiper.main-slider .swiper-pagination .swiper-pagination-bullet {
    width: 25px;
    height: 3px;
  }
  main section.home-slider .swiper.main-slider nav {
    display: none;
  }
  main section.home-slider .swiper.main-slider-thumbs {
    display: block;
    width: 400px;
    height: 110px;
    right: 50px;
  }
  main section.home-slider .swiper.main-slider-thumbs .swiper-wrapper .swiper-slide {
    height: 110px;
  }
  main section.home-about {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background: url("../media/images/bg-about-section-1.png"), url("../media/images/bg-about-section-2.png"), url("../media/images/bg-about-section-3.png");
    background-position: left top, 48% 65%, right 105%;
    background-repeat: no-repeat;
    background-size: 100px, 340px, 100px;
    padding: 50px 25px;
  }
  main section.home-about .about-wrapper {
    width: 100%;
    align-items: center !important;
  }
  main section.home-about .about-wrapper .left-column {
    position: relative;
    z-index: 0;
    flex: 0 0 55%;
  }
  main section.home-about .about-wrapper .left-column figure.small-image {
    right: -80px;
    bottom: -80px;
  }
  main section.home-about .about-wrapper .left-column figure.small-image img {
    width: 65%;
  }
  main section.home-about .about-wrapper .right-column {
    gap: 10px;
    flex: 0 0 45%;
    padding: 15px 0;
  }
  main section.home-about .about-wrapper .right-column h4 {
    margin-bottom: 5px;
  }
  main section.home-about .about-wrapper .right-column h2 {
    font-size: 3.6vw;
  }
  main section.home-about .about-wrapper .right-column p {
    line-height: 130%;
    font-size: 16px;
  }
  main section.home-about .about-wrapper .right-column div.wp-block-button.main-link a.wp-element-button {
    font-size: 14px;
  }
  main section.home-services {
    padding: 50px 25px;
  }
  main section.home-services h4 {
    margin-bottom: 5px;
  }
  main section.home-services h2 {
    font-size: 3.6vw;
    width: 85%;
  }
  main section.home-services p {
    font-size: 16px;
    width: 70%;
    text-align: center;
    line-height: 120%;
  }
  main section.home-services .services-container {
    width: 80%;
  }
  main section.home-services .services-container .services-outer {
    width: 100%;
    flex-wrap: wrap;
    gap: 25px;
    align-items: stretch;
  }
  main section.home-services .services-container .services-outer .service-column {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
  main section.home-services .services-container .services-outer .service-column .image-container {
    background-color: #D6D8DA;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 340px;
    height: 317px;
    margin: 15px auto 0;
  }
  main section.how-it-works {
    gap: 0;
  }
  main section.how-it-works .work-wrapper {
    gap: 0;
  }
  main section.how-it-works .work-wrapper .wp-block-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  main section.how-it-works .work-wrapper .wp-block-column:first-of-type {
    flex: 0 0 47%;
    max-width: 47%;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type {
    padding: 50px 25px 30px;
    flex: 0 0 53%;
    max-width: 53%;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type h2 {
    font-size: 3.6vw;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type div.wp-block-button.main-link {
    margin-block-start: 0px;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type div.wp-block-button.main-link a.wp-element-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    height: 48px;
    line-height: 48px;
    padding: 3px 67px 3px 30px;
    background: #12232D url("../media/images/icon-arrow.png") calc(100% - 3px) center no-repeat;
    background-size: 41px 41px;
    color: #fff;
    font-weight: 500;
  }
  main section.how-it-works .work-wrapper .wp-block-column:last-of-type div.wp-block-button.main-link a.wp-element-button:hover {
    background-color: #fff;
    color: #000;
  }
  main section.how-it-works .work-wrapper .how-it-works {
    width: 100%;
    margin: 0 auto;
    gap: 0;
  }
  main section.how-it-works .processes-wrapper {
    width: 95%;
    margin: 0 auto 30px;
    padding: 15px;
    gap: 20px;
  }
  main section.how-it-works .processes-wrapper .processes-column {
    padding: 25px 20px;
    flex: 0 0 31.5%;
    max-width: 31.5%;
  }
  main section.how-it-works .processes-wrapper .processes-column svg {
    margin-bottom: 15px;
  }
  main section.how-it-works .processes-wrapper .processes-column h4 {
    font-size: 18px;
  }
  main section.faqs .faqs-wrapper {
    display: flex;
    flex-direction: row;
    grid-template-columns: auto;
    width: 100%;
  }
  main section.faqs .faqs-wrapper .left-column {
    padding: 30px;
    background-color: #EAEEF1;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    order: 0;
  }
  main section.faqs .faqs-wrapper .left-column .faq-wrapper {
    width: 100%;
  }
  main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item {
    border-bottom: 1px solid #D9D9D9;
    padding: 20px 0;
  }
  main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item .question span {
    font-size: 18px;
    line-height: 110%;
  }
  main section.faqs .faqs-wrapper .left-column .faq-wrapper .faq-item p {
    font-size: 15px;
    padding: 15px 0 0;
    line-height: 120%;
    width: 100%;
  }
  main section.faqs .faqs-wrapper .right-column {
    order: 1;
    padding: 0;
  }
  main section.faqs .faqs-wrapper .right-column img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    border-radius: 15px;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns {
    bottom: 20px;
    padding: 25px;
    gap: 25px;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns h4 {
    font-size: 39px;
    line-height: 105%;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns p {
    font-size: 22px;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns .main-link a.wp-element-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    height: 52px;
    line-height: 52px;
    padding: 3px 65px 3px 25px;
    background: #12232D url("../media/images/icon-arrow.png") calc(100% - 3px) center no-repeat;
    background-size: 46px;
    color: #fff;
    font-weight: 500;
  }
  main section.faqs .faqs-wrapper .right-column .wp-block-columns .main-link a.wp-element-button:hover {
    background-color: #fff;
    color: #000;
  }
  main section.elevate-job {
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: center 60px, left 10px, 80% center, calc(100% - 50px) bottom;
    background-size: 550px, 15px, 200px, 120px;
    height: auto;
  }
  main section.elevate-job .elevate-wrapper .left-column {
    flex: 0 0 48%;
    height: auto;
    padding-top: 80px;
  }
  main section.elevate-job .elevate-wrapper .left-column img {
    height: 450px;
  }
  main section.elevate-job .elevate-wrapper .right-column {
    padding: 20px 50px 20px 15px;
    flex: 0 0 52%;
  }
  main section.elevate-job .elevate-wrapper .right-column h2 {
    font-size: 4.6vw;
    font-weight: 800;
    width: 100%;
    line-height: 100%;
    margin: 0 0 25px;
    text-align: left;
  }
  main section.elevate-job .elevate-wrapper .right-column ol {
    padding-left: 0;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li {
    padding-left: 35px;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li:nth-child(2) {
    margin-left: 50px;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li::before {
    left: -5px;
    top: -10px;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li span {
    font-size: 18px;
    font-weight: 700;
    display: block;
    line-height: 150%;
  }
  main section.elevate-job .elevate-wrapper .right-column ol li p {
    font-size: 15px;
    font-weight: 400;
    line-height: 130%;
  }
  main section.home-blog {
    padding: 30px 0 120px;
    background-color: #fff;
    background-image: url("../media/images/blog-bg-1.png"), url("../media/images/blog-bg-2.png"), url(../media/images/blog-bg.webp);
    background-position: left top, left 100%, center center;
    background-size: 120px, 140px, 80%;
    background-repeat: no-repeat, no-repeat, no-repeat;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
  main section.home-blog .home-blog-wrapper {
    width: 95%;
    margin: 0 auto;
    gap: 15px;
    padding: 30px 25px;
    flex-direction: row;
  }
  main section.home-blog .home-blog-wrapper .left-column {
    flex: 0 0 70%;
    max-width: 70%;
  }
  main section.home-blog .home-blog-wrapper .left-column h2 {
    font-size: 3.6vw;
  }
  main section.home-blog .home-blog-wrapper .right-column {
    flex: 0 0 30%;
    max-width: 30%;
    justify-content: flex-end;
  }
  main section.home-blog .home-blog-wrapper .right-column div.wp-block-button.view-all a.wp-block-button__link {
    padding: 3px 35px 3px 65px;
  }
  main section.home-blog .blog-container {
    width: 90%;
    padding: 15px 0;
  }
  main section.home-blog .blog-container .post-item {
    display: flex;
    flex-direction: column;
    grid-template-columns: auto;
    gap: 20px;
    margin: 0 0 25px;
  }
  main section.home-blog .blog-container .post-item .post-image-url {
    width: 100%;
    overflow: hidden;
  }
  main section.home-blog .blog-container .post-item .post-image-url img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main section.home-blog .blog-container .post-item .post-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 3px 0;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic ul {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    display: flex;
    gap: 25px;
    justify-content: flex-start;
    align-items: center;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic ul li {
    font-size: 12px;
    color: #313B46;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic ul li span {
    font-size: 14px;
    font-weight: 500;
    color: #424C57;
    text-transform: capitalize;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic a {
    display: block;
    color: #313B46;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic a h3 {
    display: block;
    line-height: 100%;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    padding: 0;
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic a:hover {
    color: var(--basic-color3);
  }
  main section.home-blog .blog-container .post-item .post-content .post-content-basic p.post-excerpt {
    margin: 10px 0;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    font-size: 13px;
    font-weight: 600;
    color: #313B46;
    gap: 5px;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link svg {
    width: 22px;
    transition: 0.3s ease;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link:hover {
    color: #000;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link:hover svg {
    margin-left: 5px;
  }
  main section.home-blog .blog-container .post-item .post-content a.post-link:hover svg path {
    fill: #000;
  }
  main section.home-blog .blog-container .post-item:last-of-type {
    margin-bottom: 0;
  }
  main section.home-blog .blog-container .featured-post {
    position: relative;
    z-index: 0;
    margin-bottom: 25px;
    height: 100%;
  }
  main section.home-blog .blog-container .featured-post .image {
    height: 100%;
  }
  main section.home-blog .blog-container .featured-post .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main section.home-blog .blog-container .featured-post .image::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  }
  main section.home-blog .blog-container .featured-post .featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    color: #fff;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  main section.home-blog .blog-container .featured-post .featured-content a.post-title {
    color: #fff;
    display: block;
  }
  main section.home-blog .blog-container .featured-post .featured-content a.post-title h3 {
    line-height: 100%;
    font-size: 3.4vw;
  }
  main section.home-blog .blog-container .featured-post .featured-content p.post-excerpt {
    font-size: 18px;
    line-height: 120%;
  }
  main section.home-blog .blog-container .featured-post .featured-content a.post-link {
    display: flex;
    gap: 10px;
    font-size: 14px;
    gap: 5px;
  }
  main section.about-who {
    padding: 50px 15px;
  }
  main section.about-who .about-who-wrapper {
    width: 100%;
  }
  main section.about-who .about-who-wrapper .left-column {
    padding-right: 0;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 15px 0 15px 25px;
  }
  main section.about-who .about-who-wrapper .left-column h2 {
    font-size: 3.6vw;
  }
  main section.about-who .about-who-wrapper .right-column {
    position: relative;
    z-index: 0;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 25px;
  }
  main section.about-who .about-who-wrapper .right-column figure.large-image {
    position: relative;
    z-index: 1;
  }
  main section.about-who .about-who-wrapper .right-column figure.large-image img {
    width: 100%;
  }
  main section.about-who .about-who-wrapper .right-column figure.small-image {
    position: absolute;
    z-index: 2;
    left: 50px;
    bottom: -80px;
  }
  main section.about-who .about-who-wrapper .right-column figure.small-image img {
    width: 55%;
  }
  main section.about-process {
    padding: 50px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  main section.about-process h2 {
    width: 45%;
    padding-right: 0;
    font-size: 3.6vw;
    text-align: left;
  }
  main section.about-process .process-wrapper {
    width: 100%;
    gap: 15px;
    padding: 0;
  }
  main section.about-process .process-wrapper .image-column {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    min-height: 100%;
    margin: 0 auto;
  }
  main section.about-process .process-wrapper .image-column figure {
    width: 100%;
    height: 100%;
  }
  main section.about-process .process-wrapper .content-column {
    flex: 0 0 65.33%;
    max-width: 65.33%;
    min-height: 100%;
  }
  main section.about-process .process-wrapper .content-column .columns-wrapper {
    grid-template-columns: repeat(2, 1fr);
    min-height: 100%;
  }
  main section.about-process .process-wrapper .content-column .columns-wrapper .process-step {
    background-color: #fff;
    padding: 20px;
  }
  main section.about-process .process-wrapper .content-column .columns-wrapper .process-step svg {
    width: 80px;
    height: 80px;
  }
  main section.about-process .process-wrapper .content-column .columns-wrapper .process-step h3 {
    font-size: 24px;
  }
  main section.about-experts {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  main section.about-experts .about-experts-wrapper .left-column {
    gap: 10px;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 30px 25px 0;
    order: 0;
  }
  main section.about-experts .about-experts-wrapper .left-column h2 {
    font-size: 3.6vw;
    width: 90%;
  }
  main section.about-experts .about-experts-wrapper .left-column p {
    font-size: 16px;
    width: 100%;
    line-height: 120%;
  }
  main section.about-experts .about-experts-wrapper .right-column {
    flex: 0 0 50%;
    max-width: 50%;
    order: 0;
  }
  main section.about-experts .about-experts-wrapper .right-column figure {
    width: 100%;
  }
  main section.about-experts #our-expers-wrapper {
    width: 90%;
    margin: 15px auto 50px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a.image {
    width: 100%;
    height: auto;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item h3 {
    font-size: 18px;
    font-weight: 600;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item span {
    font-size: 14px;
    font-weight: 500;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a {
    gap: 12px;
    width: 100px;
  }
  main section.about-experts #our-expers-wrapper .our-expers-grid .our-expers-item a svg {
    width: 25px;
    height: 25px;
  }
  main section.about-experts #our-expers-wrapper #our-expers-load-more {
    height: 48px;
    border-radius: 24px;
    color: #fff;
    background-color: #000;
    padding: 3px 30px 3px 3px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    display: none;
  }
  main section.about-experts #our-expers-wrapper #our-expers-load-more svg {
    width: 42px;
    height: 42px;
    transition: 0.3s ease;
  }
  main section.about-experts #our-expers-wrapper #our-expers-load-more:hover {
    background-color: var(--basic-color2);
    color: #fff;
  }
  main section.about-experts #our-expers-wrapper #our-expers-load-more:hover svg {
    transform: rotate(90deg);
  }
  main section.our-experts-single {
    padding: 30px 25px 120px;
  }
  main section.our-experts-single div.info {
    padding: 20px 20px 30px;
  }
  main section.our-experts-single div.info .expert-image {
    margin-bottom: 15px;
  }
  main section.our-experts-single div.info .expert-image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main section.our-experts-single div.info hr {
    border: none;
    height: 1px;
    opacity: 1;
    background-color: #D9D9D9;
    margin: 15px 0;
    padding: 0;
  }
  main section.our-experts-single div.info .expert-meta ul.info-ul li::before {
    font-size: 30px;
  }
  main section.our-experts-single div.info .social {
    margin-top: 25px;
  }
  main section.our-experts-single div.info .social a svg {
    width: 25px;
    height: 25px;
  }
  main section.our-experts-single a.back {
    margin-top: 25px;
  }
  main section.our-experts-single h3 {
    font-size: 25px;
    font-weight: 600;
  }
  main section.our-experts-single blockquote.wp-block-quote {
    border-left: 5px solid var(--basic-color2);
    padding: 15px 15px 15px 25px;
    margin: 35px 0 0;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.02);
  }
  main section.our-experts-single blockquote.wp-block-quote p {
    font-size: 18px;
    margin-bottom: 15px;
  }
  main section.our-experts-single blockquote.wp-block-quote h5 {
    font-size: 14px;
    font-weight: 700;
  }
  main section.our-experts-single p {
    font-size: 15px;
  }
  main section.our-experts-single ul.wp-block-list {
    margin: 25px 0;
    font-size: 15px;
  }
  main section.our-experts-single ul.wp-block-list li::before {
    font-size: 13px;
  }
  main section.counter {
    background: #313B46 url("../media/images/bg-counter-1.png") center center no-repeat;
    background-size: 350px;
    padding: 80px 35px;
  }
  main section.counter .counter-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 15px;
         column-gap: 15px;
    row-gap: 15px;
  }
  main section.counter .counter-wrapper .item {
    padding: 10px;
  }
  main section.counter .counter-wrapper .item h2 {
    font-size: 6.6vw;
    line-height: 120%;
  }
  main section.counter .counter-wrapper .item h6 {
    font-size: 13px;
    font-weight: 500;
  }
  main section.testimonial {
    justify-content: center;
    align-items: center;
    padding: 50px 0% 120px;
  }
  main section.testimonial h2.wp-block-heading {
    line-height: 110%;
    font-size: 3.4vw;
    text-align: center;
    width: 90%;
  }
  main section.testimonial .swiper .swiper-wrapper .swiper-slide .content {
    padding: 15px 25px;
  }
  main section.testimonial .swiper .swiper-wrapper .swiper-slide .content svg {
    width: 100px;
  }
  main section.testimonial .swiper .swiper-wrapper .swiper-slide .content ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
  }
  main section.testimonial .swiper .swiper-wrapper .swiper-slide .content ul li img {
    display: none;
  }
  main section.employer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: url("../media/images/bg-about-section-1.png"), url("../media/images/bg-about-section-2.png"), url("../media/images/bg-about-section-3.png");
    background-position: left top, center center, right 110%;
    background-repeat: no-repeat;
    background-size: 120px, 400px, 130px;
    padding: 30px 50px 40px;
  }
  main section.employer .employer-wrapper {
    width: 100%;
  }
  main section.employer .employer-wrapper .right-column figure.large-image img {
    width: 100%;
  }
  main section.employer .employer-wrapper .right-column figure.small-image {
    right: -130px;
    bottom: 20px;
  }
  main section.employer .employer-wrapper .right-column figure.small-image img {
    width: 55%;
  }
  main section.employer .employer-wrapper .left-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    padding-right: 0;
  }
  main section.employer .employer-wrapper .left-column h4 {
    margin-bottom: 5px;
  }
  main section.employer .employer-wrapper .left-column h2 {
    font-size: 3.6vw;
  }
  main section.employer .employer-wrapper .left-column h3 {
    font-size: 22px;
    font-weight: 500;
  }
  main section.employer .employer-wrapper .left-column p {
    margin: 15px 0 0;
    padding: 0;
    line-height: 140%;
    font-size: 15px;
  }
  main section.employer .employer-wrapper .left-column div.wp-block-button.main-link a.wp-element-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 15px;
    height: 48px;
    line-height: 48px;
    padding: 3px 62px 3px 25px;
    background: #12232D url("../media/images/icon-arrow.png") calc(100% - 3px) center no-repeat;
    background-size: 41px 41px;
    color: #fff;
    font-weight: 500;
  }
  main section.employer .employer-wrapper .left-column div.wp-block-button.main-link a.wp-element-button:hover {
    background-color: #fff;
    color: #000;
  }
  main section.employer-form {
    padding: 50px 50px 20px;
  }
  main section.employer-form .employer-form-wrapper {
    width: 100%;
  }
  main section.employer-form .employer-form-wrapper .left-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  main section.employer-form .employer-form-wrapper .left-column h3 {
    font-size: 30px;
    line-height: 110%;
  }
  main section.employer-form .employer-form-wrapper .right-column {
    padding-top: 0;
  }
  main section.employer-form form#employer-form {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    background-size: 100px;
  }
  main section.employer-form form#employer-form h5 {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 25px;
    padding: 0;
  }
  main section.employer-form form#employer-form label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 8px;
  }
  main section.employer-form form#employer-form label input[type=text], main section.employer-form form#employer-form label input[type=email], main section.employer-form form#employer-form label input[type=tel] {
    display: block;
    background-color: #fff;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
  }
  main section.employer-form form#employer-form label input[type=text]:focus, main section.employer-form form#employer-form label input[type=email]:focus, main section.employer-form form#employer-form label input[type=tel]:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.employer-form form#employer-form label input[type=date] {
    display: block;
    background: #fff url("../media/images/icon-calendar.png") calc(100% - 15px) center no-repeat;
    background-size: 20px;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
    -webkit-appearance: none;
            appearance: none;
    -moz-appearance: textfield;
    position: relative;
  }
  main section.employer-form form#employer-form label input[type=date]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
  }
  main section.employer-form form#employer-form label input[type=date]:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.employer-form form#employer-form label select {
    display: block;
    background: #fff url("../media/images/dd-arrow.png") calc(100% - 15px) center no-repeat;
    background-size: 9px;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
  }
  main section.employer-form form#employer-form label select:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.employer-form form#employer-form label textarea {
    display: block;
    background-color: #fff;
    background-size: 9px;
    padding: 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 120px;
    width: 100%;
    border-radius: 6px;
  }
  main section.employer-form form#employer-form label .resume-upload {
    max-width: 100%;
    border: 1px dashed #BBBFC4;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    text-align: center;
    padding: 30px 25px;
  }
  main section.employer-form form#employer-form label .resume-upload div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    line-height: 100%;
  }
  main section.employer-form form#employer-form label .resume-upload div svg {
    width: 50px;
    display: block;
    margin: 0 auto 30px;
  }
  main section.employer-form form#employer-form label .resume-upload div strong {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 120%;
  }
  main section.employer-form form#employer-form label .resume-upload div span {
    font-size: 13px;
    font-weight: 400;
    color: #5A646F;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 100%;
  }
  main section.employer-form form#employer-form label .resume-upload div span.browse {
    border: 1px solid #DDDDDD;
    font-size: 14px;
    padding: 0 15px;
    border-radius: 6px;
    line-height: 32px;
    margin-top: 20px;
  }
  main section.employer-form form#employer-form label .resume-upload .upload-content small {
    color: #64748b;
    display: block;
    margin-top: 8px;
  }
  main section.employer-form form#employer-form label .resume-upload .file-name {
    margin-top: 12px;
    font-size: 14px;
    color: #16a34a;
    font-weight: 500;
    display: none;
  }
  main section.employer-form form#employer-form label .resume-upload:hover, main section.employer-form form#employer-form label .resume-upload.dragover {
    border-color: #2563eb;
    background: #eff6ff;
  }
  main section.employer-form form#employer-form label.i-agree {
    justify-content: flex-start;
    align-items: flex-start;
  }
  main section.employer-form form#employer-form label.i-agree input#i-agree {
    width: 45px;
    height: 17.46px;
  }
  main section.employer-form form#employer-form label.i-agree span.i-agree {
    line-height: 130%;
    display: block;
  }
  main section.employer-form form#employer-form button[type=submit].form-submit {
    padding: 3px 35px 3px 3px;
  }
  main section.employer-form form#employer-form em.note {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin: 15px 0;
  }
  main section.employer-form form#employer-form div.results {
    font-size: 15px;
    font-weight: 600;
    display: block;
    color: var(--basic-color3);
    line-height: 1;
    margin-top: 20px;
  }
  main section.candidate {
    background: url("../media/images/candidate-image-2.webp");
    background-position: center 80px;
    background-size: 420px;
    background-repeat: no-repeat;
    padding: 30px 50px 0;
  }
  main section.candidate .candidate-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
  }
  main section.candidate .candidate-wrapper .left-column {
    flex: 0 0 40%;
    max-width: 40%;
  }
  main section.candidate .candidate-wrapper .left-column figure.large-image {
    height: 550px;
  }
  main section.candidate .candidate-wrapper .right-column {
    gap: 5px;
    padding-right: 0;
    flex: 0 0 60%;
    max-width: 60%;
  }
  main section.candidate .candidate-wrapper .right-column h4 {
    margin-bottom: 5px;
  }
  main section.candidate .candidate-wrapper .right-column h2 {
    font-size: 3.6vw;
  }
  main section.candidate .candidate-wrapper .right-column h3 {
    font-size: 22px;
    font-weight: 500;
  }
  main section.candidate .candidate-wrapper .right-column p {
    font-size: 15px;
  }
  main section.candidate .candidate-wrapper .right-column ul li {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 15px;
  }
  main section.candidate .candidate-wrapper .right-column ul li div span {
    font-size: 16px;
    font-weight: 700;
  }
  main section.candidate .candidate-wrapper .right-column ul li div p {
    font-size: 13px;
  }
  main section.candidate-form {
    padding: 50px 5% 20px;
  }
  main section.candidate-form .candidate-form-wrapper {
    width: 100%;
  }
  main section.candidate-form .candidate-form-wrapper .left-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: 0 0 80%;
    max-width: 80%;
  }
  main section.candidate-form .candidate-form-wrapper .left-column h3 {
    font-size: 30px;
    line-height: 110%;
  }
  main section.candidate-form form#candidate-form {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    background-size: 100px;
  }
  main section.candidate-form form#candidate-form h5 {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    padding: 0;
  }
  main section.candidate-form form#candidate-form .if-yes {
    display: none;
  }
  main section.candidate-form form#candidate-form label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 8px;
  }
  main section.candidate-form form#candidate-form label span {
    display: flex;
    gap: 5px;
    line-height: 30px;
    font-weight: 400;
  }
  main section.candidate-form form#candidate-form label span em.star {
    color: red;
    font-size: 22px;
    font-weight: 600;
    display: block;
  }
  main section.candidate-form form#candidate-form label input[type=text] {
    display: block;
    background-color: #fff;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
  }
  main section.candidate-form form#candidate-form label input[type=text]:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.candidate-form form#candidate-form label input[type=email] {
    display: block;
    background-color: #fff;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
  }
  main section.candidate-form form#candidate-form label input[type=email]:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.candidate-form form#candidate-form label input[type=date] {
    display: block;
    background: #fff url("../media/images/icon-calendar.png") calc(100% - 15px) center no-repeat;
    background-size: 20px;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
    -webkit-appearance: none;
            appearance: none;
    -moz-appearance: textfield;
    position: relative;
  }
  main section.candidate-form form#candidate-form label input[type=date]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
  }
  main section.candidate-form form#candidate-form label input[type=date]:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.candidate-form form#candidate-form label select {
    display: block;
    background: #fff url("../media/images/dd-arrow.png") calc(100% - 15px) center no-repeat;
    background-size: 9px;
    padding: 0 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 48px;
    width: 100%;
    border-radius: 6px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
  }
  main section.candidate-form form#candidate-form label select:focus {
    border-color: #667381;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
  }
  main section.candidate-form form#candidate-form label textarea {
    display: block;
    background-color: #fff;
    background-size: 9px;
    padding: 15px;
    border: 1px solid #BBBFC4;
    font-weight: 500;
    height: 120px;
    width: 100%;
    border-radius: 6px;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container {
    display: flex;
    gap: 5px;
    flex-wrap: nowrap;
    margin-right: 5px;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container .tag {
    background: #cfd4da;
    padding: 0 6px 0 8px;
    line-height: 26px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    height: 26px;
    gap: 10px;
    text-transform: capitalize;
    font-weight: 500;
    transition: 0.3s ease;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container .tag button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    font-size: 12px;
    font-weight: 800;
    line-height: 15px;
    cursor: pointer;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container .tag button svg {
    width: 100%;
    height: 100%;
  }
  main section.candidate-form form#candidate-form label .tag-input-wrapper #tag-container .tag:hover {
    background-color: #64748b;
    color: #fff;
  }
  main section.candidate-form form#candidate-form label .resume-upload {
    max-width: 100%;
    border: 1px dashed #BBBFC4;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    text-align: center;
    padding: 30px 25px;
  }
  main section.candidate-form form#candidate-form label .resume-upload div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    line-height: 100%;
  }
  main section.candidate-form form#candidate-form label .resume-upload div svg {
    width: 50px;
    display: block;
    margin: 0 auto 30px;
  }
  main section.candidate-form form#candidate-form label .resume-upload div strong {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 120%;
  }
  main section.candidate-form form#candidate-form label .resume-upload div span {
    font-size: 13px;
    font-weight: 400;
    color: #5A646F;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 100%;
  }
  main section.candidate-form form#candidate-form label .resume-upload div span.browse {
    border: 1px solid #DDDDDD;
    font-size: 14px;
    padding: 0 15px;
    border-radius: 6px;
    line-height: 32px;
    margin-top: 20px;
  }
  main section.candidate-form form#candidate-form label .resume-upload .upload-content small {
    color: #64748b;
    display: block;
    margin-top: 8px;
  }
  main section.candidate-form form#candidate-form label .resume-upload .file-name {
    margin-top: 12px;
    font-size: 14px;
    color: #16a34a;
    font-weight: 500;
    display: none;
  }
  main section.candidate-form form#candidate-form label .resume-upload:hover, main section.candidate-form form#candidate-form label .resume-upload.dragover {
    border-color: #2563eb;
    background: #eff6ff;
  }
  main section.candidate-form form#candidate-form label.i-agree, main section.candidate-form form#candidate-form label.i-confirm {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  main section.candidate-form form#candidate-form label.i-agree input#i-agree, main section.candidate-form form#candidate-form label.i-agree input#i-confirm, main section.candidate-form form#candidate-form label.i-confirm input#i-agree, main section.candidate-form form#candidate-form label.i-confirm input#i-confirm {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url("../media/images/icon-checkbox-0.png") center center no-repeat;
    background-size: 18px 17.46px;
    display: block;
    width: 18px;
    height: 17.46px;
    cursor: pointer;
  }
  main section.candidate-form form#candidate-form label.i-agree input#i-agree:checked, main section.candidate-form form#candidate-form label.i-agree input#i-confirm:checked, main section.candidate-form form#candidate-form label.i-confirm input#i-agree:checked, main section.candidate-form form#candidate-form label.i-confirm input#i-confirm:checked {
    background: url("../media/images/icon-checkbox-1.png") center center no-repeat;
    background-size: 18px 17.46px;
  }
  main section.candidate-form form#candidate-form label.i-agree span.i-agree, main section.candidate-form form#candidate-form label.i-agree span.i-confirm, main section.candidate-form form#candidate-form label.i-confirm span.i-agree, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm {
    font-size: 14px;
  }
  main section.candidate-form form#candidate-form label.i-agree span.i-agree strong, main section.candidate-form form#candidate-form label.i-agree span.i-confirm strong, main section.candidate-form form#candidate-form label.i-confirm span.i-agree strong, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm strong {
    font-weight: 700;
  }
  main section.candidate-form form#candidate-form label.i-agree span.i-agree a, main section.candidate-form form#candidate-form label.i-agree span.i-confirm a, main section.candidate-form form#candidate-form label.i-confirm span.i-agree a, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm a {
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #000;
  }
  main section.candidate-form form#candidate-form label.i-agree span.i-agree a:hover, main section.candidate-form form#candidate-form label.i-agree span.i-confirm a:hover, main section.candidate-form form#candidate-form label.i-confirm span.i-agree a:hover, main section.candidate-form form#candidate-form label.i-confirm span.i-confirm a:hover {
    text-decoration: underline;
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit {
    height: 54px;
    border-radius: 27px;
    padding: 3px 25px 3px 3px;
    border: none;
    background: #12232D;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit svg {
    width: 46px;
    height: 46px;
    transition: 0.3s ease;
    margin-right: 10px;
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit:hover {
    background: var(--basic-color2);
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit:hover svg {
    transform: rotate(90deg);
  }
  main section.candidate-form form#candidate-form button[type=submit].form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  main section.candidate-form form#candidate-form em.note {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin: 15px 0;
  }
  main section.candidate-form form#candidate-form div.results {
    font-size: 15px;
    font-weight: 600;
    display: block;
    color: var(--basic-color3);
    line-height: 1;
    margin-top: 20px;
  }
  main section.blog {
    padding: 30px 25px 120px;
    background: #fff url("../media/images/bg-blog-1.png") bottom calc(100% - 50px) no-repeat;
    background-size: 100px;
  }
  main section.blog h2 {
    font-size: 3.6vw;
  }
  main section.blog .blog-item {
    border: 1px solid #D9D9D9;
    background-color: #fff;
    border-radius: 10px;
    transition: 0.3s ease;
    align-items: stretch;
  }
  main section.blog .blog-item a.image {
    display: block;
    width: 100%;
    height: 320px;
    background-color: var(--basic-color1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }
  main section.blog .blog-item a.image em {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 5;
    background-color: #fff;
    color: var(--basic-color2);
    font-size: 13px;
    font-style: normal;
    padding: 0 15px;
    font-weight: 600;
    line-height: 30px;
    display: block;
    border-radius: 15px;
  }
  main section.blog .blog-item .content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    flex: 1;
  }
  main section.blog .blog-item .content ul {
    list-style: none;
    color: #424C57;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  main section.blog .blog-item .content ul span {
    font-size: 12px;
    font-weight: 500;
  }
  main section.blog .blog-item .content a.link {
    font-size: 25px;
  }
  main section.blog .blog-item .content p {
    line-height: 135%;
    font-size: 14px;
    font-weight: 500;
  }
  main section.blog .blog-item .content a.readmore {
    font-size: 13px;
    gap: 10px;
  }
  main section.blog .blog-item .content a.readmore svg {
    width: 18px;
    transition: 0.3s ease;
  }
  main section.blog .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    margin: 25px 0;
    font-size: 18px;
  }
  main section.blog .pagination span.current {
    display: block;
    border: 1px solid #D9D9D9;
    background-color: #fff;
    color: #000;
    line-height: 50px;
    text-align: center;
    border-radius: 8px;
    height: 50px;
    min-width: 50px;
  }
  main section.blog .pagination a {
    display: block;
    line-height: 46px;
    border: 1px solid #1F2B38;
    background-color: #1F2B38;
    color: #fff;
    min-width: 46px;
    padding: 0 15px;
    text-align: center;
    border-radius: 6px;
  }
  main section.blog .pagination a.next, main section.blog .pagination a.prev {
    font-size: 15px;
  }
  main section.blog .pagination a:hover {
    background-color: #EAEEF1;
    border-color: #EAEEF1;
    color: #000;
  }
  main section.single-post-breadcrumbs {
    margin: 0 15px 0;
    width: calc(100% - 30px);
    height: calc(60vh - 50px);
    padding: 0 15px;
    border-radius: 15px;
  }
  main section.single-post-breadcrumbs h1 {
    display: block;
    line-height: 100%;
    font-size: 4.2vw;
    font-weight: 900;
    text-align: center;
    color: #fff;
    padding: 0;
    position: relative;
    z-index: 1;
  }
  main section.single-post-breadcrumbs ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0 0 40px;
    position: relative;
    z-index: 1;
  }
  main section.single-post-breadcrumbs ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  main section.single-post-breadcrumbs ul li span {
    display: block;
    font-size: 17px;
    font-weight: 500;
  }
  main section.single-post-breadcrumbs ul li span a {
    display: block;
    line-height: 100%;
    color: #fff;
  }
  main section.single-post-breadcrumbs ul li::after {
    content: " / ";
    display: block;
    margin: 0 10px;
  }
  main section.single-post-breadcrumbs ul li:last-of-type::after {
    display: none;
  }
  main section.single-post-breadcrumbs::after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 10%, rgba(0, 0, 0, 0.3) 55%);
  }
  main section.our-expers-breadcrumbs {
    margin: 10px;
    padding: 15px;
    height: 200px;
  }
  main section.our-expers-breadcrumbs h1 {
    font-size: 6.6vw;
  }
  main section.blog-single {
    padding: 30px 15px 120px;
  }
  main section.blog-single ul.post-meta {
    list-style: none;
    color: #424C57;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }
  main section.blog-single ul.post-meta span {
    font-size: 12px;
    font-weight: 600;
  }
  main section.blog-single p {
    font-size: 15px;
  }
  main section.blog-single p.thick-p {
    display: block;
    font-size: 20px;
    line-height: 120%;
    font-weight: 500;
  }
  main section.blog-single blockquote {
    background: #EAEEF1 url("../media/images/quote.png") 30px 30px no-repeat;
    color: #000;
    border-radius: 15px;
    padding: 30px 30px 30px 140px;
    margin: 20px 0;
  }
  main section.blog-single blockquote p {
    font-size: 22px;
    line-height: 120%;
    font-weight: 500;
    margin: 0 0 10px;
    padding: 0;
  }
  main section.blog-single blockquote h6 {
    display: block;
    line-height: 120%;
    position: relative;
    margin: 0;
    padding: 0 0 0 60px;
    font-size: 14px;
  }
  main section.blog-single blockquote h6::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    height: 1px;
    background-color: #000;
    width: 50px;
  }
  main section.blog-single h4 {
    font-size: 25px;
    font-weight: 700;
    line-height: 160%;
    display: block;
    margin: 0;
    padding: 0;
  }
  main section.blog-single .image-column {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    margin: 25px 0;
  }
  main section.blog-single .image-column figure.wp-block-image {
    width: 100%;
  }
  main section.blog-single .image-column figure.wp-block-image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
  }
  main section.blog-single div.tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 25px 0;
  }
  main section.blog-single div.tags strong {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    display: block;
  }
  main section.blog-single div.tags .links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    row-gap: 10px;
  }
  main section.blog-single div.tags .links a {
    background-color: #EAEEF1;
    display: block;
    color: #000;
    border-radius: 15px;
    font-size: 12px;
    padding: 0 15px;
    font-weight: 500;
    line-height: 30px;
    border-radius: 14px;
  }
  main section.blog-single ul.next-prev li a {
    gap: 5px;
  }
  main section.blog-single ul.next-prev li svg {
    width: 35px;
    height: 35px;
  }
  main section.blog-single {
    /* ===== Comments Area ===== */
  }
  main section.blog-single .comments-area {
    /* Comments title */
  }
  main section.blog-single .comments-area h3 {
    font-size: 22px;
  }
  main section.blog-single .comments-area h4 {
    font-size: 18px;
  }
  main section.blog-single .comments-area {
    /* ===== Comment List ===== */
  }
  main section.blog-single .comments-area .comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  main section.blog-single .comments-area .comment-list li.comment {
    margin-bottom: 30px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 1px solid #D9D9D9;
    font-weight: 600;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard b.fn a.url {
    pointer-events: none;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    text-transform: capitalize;
    color: #000;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-author.vcard span.says {
    display: none;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata {
    display: flex;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata a {
    color: #000;
    font-size: 12px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata a time {
    font-weight: 600;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body footer.comment-meta div.comment-metadata span.edit-link a.comment-edit-link {
    font-size: 13px;
    color: #888;
    display: none;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.comment-content {
    display: block;
    padding-left: 100px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.comment-content p {
    margin: 0 0 10px;
    line-height: 130%;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.comment-content p:last-of-type {
    margin: 0;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 100px;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply a.comment-reply-link {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    position: relative;
    display: flex;
    gap: 5px;
    align-items: center;
    text-decoration: none;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply a.comment-reply-link::after {
    transition: 0.3s ease;
    content: "";
    display: inline-block;
    width: 18px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='15' fill='none' viewBox='0 0 28 15'%3E%3Cpath fill='%23313b46' d='M19.94.296a1 1 0 0 0 0 1.42l4.6 4.6H1a1 1 0 1 0 0 2h23.52l-4.58 4.57a1 1 0 0 0 0 1.41 1 1 0 0 0 1.41 0l6.36-6.36a.88.88 0 0 0 0-1.27L21.36.296a1 1 0 0 0-1.42 0'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  main section.blog-single .comments-area .comment-list li.comment article.comment-body div.reply a.comment-reply-link:hover::after {
    margin-left: 5px;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children {
    list-style: none;
    margin: 0;
    padding: 0 0 0 100px;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor {
    margin: 0;
    padding: 0;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 0px solid #D9D9D9;
    font-weight: 600;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-author.vcard img.avatar {
    width: 50px;
    height: 50px;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-author.vcard b.fn a.url {
    font-size: 14px;
    font-weight: 700;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-author.vcard span.says {
    display: none;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-metadata a {
    font-size: 12px;
  }
  main section.blog-single .comments-area .comment-list li.comment ol.children li.comment.byuser.comment-author-admin.bypostauthor article.comment-body footer.comment-meta div.comment-metadata span.edit-link a.comment-edit-link {
    display: none;
  }
  main section.blog-single .comments-area {
    /* ===== Comment Form ===== */
  }
  main section.blog-single .comments-area .comment-respond {
    padding: 30px;
    margin: 0;
    border-radius: 8px;
    background: #EAEEF1;
  }
  main section.blog-single .comments-area .comment-respond h3.comment-reply-title {
    font-size: 22px;
    font-weight: 600;
  }
  main section.blog-single .comments-area .comment-respond {
    /* Form fields */
  }
  main section.blog-single .comments-area .comment-respond .comment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p {
    margin: 0;
    padding: 0;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p label {
    display: block;
    font-size: 15px;
    line-height: 160%;
    font-weight: 600;
    margin-bottom: 6px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-cookies-consent {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-cookies-consent input[type=checkbox] {
    display: block;
    width: 16px;
    height: 16px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #344252;
    border-radius: 3px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-cookies-consent label {
    display: block;
    font-size: 12px;
    line-height: 16px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author input[type=text], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author input[type=email], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author input[type=url], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-author textarea, main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email input[type=text], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email input[type=email], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email input[type=url], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-email textarea, main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url input[type=text], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url input[type=email], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url input[type=url], main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-url textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.comment-form-comment textarea {
    width: 100%;
    height: 140px;
    border-radius: 6px;
    background-color: #fff;
    border: 1px solid #BBBFC4;
    padding: 15px;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.form-submit {
    /* Submit button */
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.form-submit input[type=submit] {
    background: #12232D url("../media/images/form-submit-arrow.svg") 3px 3px no-repeat;
    background-size: 41px 41px;
    color: #fff;
    border: none;
    height: 48px;
    padding: 3px 25px 3px 58px;
    border-radius: 24px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  main section.blog-single .comments-area .comment-respond .comment-form p.form-submit input[type=submit]:hover {
    background-color: #fff;
    color: #000;
  }
  main section.blog-single .comments-area {
    /* Cancel reply link */
  }
  main section.blog-single .comments-area #cancel-comment-reply-link {
    display: inline-block;
    margin-left: 10px;
    font-size: 14px;
    color: #999;
    text-decoration: none;
  }
  main section.blog-single .comments-area #cancel-comment-reply-link:hover {
    color: #000;
  }
  main section.blog-single aside.sidebar .widget .wp-block-columns.category, main section.blog-single aside.sidebar .widget .wp-block-columns.search, main section.blog-single aside.sidebar .widget .wp-block-columns.recent-posts, main section.blog-single aside.sidebar .widget .wp-block-columns.tags-column {
    padding: 20px;
    border-radius: 10px;
  }
  main section.blog-single aside.sidebar .widget .wp-block-columns.category h5.wp-block-heading, main section.blog-single aside.sidebar .widget .wp-block-columns.category label, main section.blog-single aside.sidebar .widget .wp-block-columns.search h5.wp-block-heading, main section.blog-single aside.sidebar .widget .wp-block-columns.search label, main section.blog-single aside.sidebar .widget .wp-block-columns.recent-posts h5.wp-block-heading, main section.blog-single aside.sidebar .widget .wp-block-columns.recent-posts label, main section.blog-single aside.sidebar .widget .wp-block-columns.tags-column h5.wp-block-heading, main section.blog-single aside.sidebar .widget .wp-block-columns.tags-column label {
    font-size: 17px;
  }
  main section.blog-single aside.sidebar .widget .wp-block-columns.image-link div.wp-block-columns.links .wp-block-column h3.wp-block-heading {
    font-size: 28px;
    font-weight: 800;
  }
  main section.blog-single aside.sidebar .widget .wp-block-columns.image-link figure.wp-block-image img {
    width: 100%;
  }
  main section.get-in-touch {
    padding: 30px 15px 50px;
  }
  main section.get-in-touch .get-in-touch-wrapper {
    width: 100%;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-content {
    padding: 0 25px;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-content h2 {
    font-size: 3.6vw;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-content .customizer-items {
    display: flex;
    flex-direction: column;
    margin: 15px 0;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-form {
    padding: 25px;
    border-radius: 25px;
  }
  main section.get-in-touch .get-in-touch-wrapper .contact-form h3.wp-block-heading {
    font-size: 26px;
  }
  main section.get-in-touch .location-map {
    padding: 80px 0 120px;
    width: 100%;
  }
  main section.get-in-touch .location-map .wp-block-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }
  main section.get-in-touch .location-map .wp-block-column iframe {
    width: calc(100% - 30px);
    height: 550px;
    border: none;
    border-radius: 30px;
  }
  main section.location {
    width: 100%;
    padding: 50px 15px 120px;
    background-color: #FCFCFC;
  }
  main section.location .location-map {
    width: 100%;
  }
  main section.location .location-map .wp-block-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  main section.location .location-map .wp-block-column h4 {
    margin: 0;
  }
  main section.location .location-map .wp-block-column h2 {
    margin: 0;
    font-size: 7.6vw;
  }
  main section.location .location-map .wp-block-column iframe {
    width: 98%;
    height: 500px;
    border-radius: 15px;
  }
  main section.breadcrumbs {
    margin: 10px;
    padding: 15px;
    height: 200px;
  }
  main section.breadcrumbs h1 {
    font-size: 7.6vw;
  }
  main section.breadcrumbs ul li span {
    font-size: 14px;
  }
  main section.policy-pages {
    padding: 30px 10% 120px;
  }
  main section.policy-pages .wp-block-columns {
    width: 100%;
  }
  main section.policy-pages .wp-block-columns .wp-block-column h2.wp-block-heading {
    font-size: 28px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column h3.wp-block-heading {
    font-size: 20px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column h4.wp-block-heading {
    font-size: 17px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column h5.wp-block-heading {
    font-size: 15px;
    font-weight: 700;
  }
  main section.policy-pages .wp-block-columns .wp-block-column blockquote {
    margin: 25px 0;
    padding: 10px 0 10px 15px;
    border-left: 10px solid var(--basic-color2);
  }
  main section.policy-pages .wp-block-columns .wp-block-column blockquote p {
    font-size: 25px;
    font-weight: 400;
    line-height: 120%;
  }
  main section.policy-pages .wp-block-columns .wp-block-column p {
    font-size: 15px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column ul {
    font-size: 14px;
  }
  main section.policy-pages .wp-block-columns .wp-block-column ul li::before {
    font-size: 11px;
  }
  footer#footer {
    background: #F1F4F7 url("../media/images/footer-element.png") right bottom no-repeat;
    background-size: 500px;
    font-size: 13px;
    font-weight: 500;
  }
  footer#footer .cta {
    background: #0D2432 url("../media/images/footer-cta-bg.png") 35px center no-repeat;
    background-size: 140px auto;
    padding: 45px;
    flex-direction: row;
    align-items: flex-start;
    height: auto;
    margin: -80px 0 0;
    gap: 30px;
  }
  footer#footer .cta .content h2 {
    font-size: 36px;
    line-height: 110%;
  }
  footer#footer .cta .content p {
    font-size: 18px;
    line-height: 110%;
  }
  footer#footer .cta a span {
    display: block;
    padding: 0 25px;
  }
  footer#footer .footer-widget {
    padding: 0;
  }
  footer#footer .footer-widget h5 {
    font-size: 18px;
    line-height: 140%;
  }
  footer#footer .footer-widget .menu-footer-container ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  footer#footer .footer-widget .menu-footer-container ul.menu li.menu-item a {
    line-height: 30px;
    font-weight: 500;
  }
  footer#footer .footer-widget ul.contact-info-widget {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
  }
  footer#footer .footer-widget ul.contact-info-widget li {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  footer#footer .footer-widget ul.contact-info-widget li img {
    display: block;
    width: 20px;
  }
  footer#footer .footer-widget ul.contact-info-widget li span {
    display: block;
    line-height: 1.35;
    font-size: 14px;
    font-weight: 500;
  }
  footer#footer .footer-widget .wp-block-image img {
    width: 172px;
  }
  footer#footer .footer-widget p {
    margin: 0 0 30px;
    padding: 0;
    font-size: 14px;
    line-height: 140%;
    display: block;
  }
  footer#footer .footer-widget form#subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form {
    height: 52px;
    background-color: #BBBFC4;
    display: grid;
    grid-template-columns: 1fr 44px;
    padding: 3px;
    gap: 3px;
    border-radius: 25px;
    overflow: hidden;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input {
    background-color: transparent;
    border: none;
    border-radius: 26px;
    display: block;
    height: 100%;
    padding: 0 20px;
    color: #fff;
    /* Standard syntax for modern browsers */
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input::-moz-placeholder {
    color: #fff; /* Sets the placeholder color to red (use any valid color value) */
    opacity: 1; /* Ensures full opacity, as some browsers (Firefox) apply a default lower opacity */
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input::placeholder {
    color: #fff; /* Sets the placeholder color to red (use any valid color value) */
    opacity: 1; /* Ensures full opacity, as some browsers (Firefox) apply a default lower opacity */
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input {
    /* Vendor-prefixed pseudo-elements for broader compatibility */
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input::-webkit-input-placeholder { /* Chrome, Opera, Safari */
    color: #fff;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input:-moz-placeholder { /* Firefox 18- */
    color: #fff;
    opacity: 1;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input::-moz-placeholder { /* Firefox 19+ */
    color: #fff;
    opacity: 1;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form input:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #fff;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button {
    background-color: transparent;
    border-radius: 23px;
    border: none;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button svg {
    width: 44px;
    height: 44px;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button svg circle {
    fill: #424C57;
    transition: 0.3s ease;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button svg path {
    fill: #fff;
    transition: 0.3s ease;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button:hover svg circle {
    fill: #fff;
    transition: 0.3s ease;
  }
  footer#footer .footer-widget form#subscribe-form div.subscribe-form button:hover svg path {
    fill: #424C57;
    transition: 0.3s ease;
  }
  footer#footer .footer-widget form#subscribe-form .subscribe-result {
    font-size: 13.5px;
    font-weight: 600;
    line-height: 100%;
    display: block;
    padding: 0 20px;
    color: var(--basic-color2);
  }
  footer#footer .social {
    display: flex;
    gap: 10px;
    padding: 0 5%;
  }
  footer#footer .social a {
    display: block;
    width: 34px;
    height: 34px;
  }
  footer#footer .social a img {
    width: 100%;
    height: 100%;
    display: block;
  }
  footer#footer .copyright p {
    line-height: 18px;
    margin-top: 10px;
  }
  footer#footer .copyright p span:last-of-type {
    display: inline;
    margin-bottom: 15px;
  }
  footer#footer .copyright .footer-menu {
    margin: 0;
    justify-content: center;
  }
}/*# sourceMappingURL=main.css.map */