:root {
  /*--fluid-body: clamp(1rem, 0.9149rem + 0.4255cqi, 1.375rem); /* 16-22 */
  /*--fluid-h1: clamp(2.25rem, 1.0585rem + 5.9574cqi, 7.5rem); /* 36-120 */
  /*--fluid-h2: clamp(1.875rem, 1.2793rem + 2.9787cqi, 4.5rem); /* 30-72 */
  /*--fluid-h3: clamp(1.5rem, 1.3865rem + 0.5674cqi, 2rem); /* 24-32 */
  /*--fluid-h4: clamp(1.25rem, 1.1365rem + 0.5674cqi, 1.75rem); /* 20-28 */
  /*--fluid-h5: clamp(1.125rem, 1.0399rem + 0.4255cqi, 1.5rem); /* 18-24 */
  /*--fluid-h6: clamp(0.875rem, 0.8183rem + 0.2837cqi, 1.125rem); /* 14-18 */
  /*--fluid-sm: clamp(0.875rem, 0.8466rem + 0.1418cqi, 1rem); /* 14-16 */
  
  --fluid-body: 22px; /* 16-22 */
  --fluid-h1: 120px; /* 36-120 */
  --fluid-h2: 72px; /* 30-72 */
  --fluid-h3: 32px; /* 24-32 */
  --fluid-h4: 28px; /* 20-28 */
  --fluid-h5: 24px; /* 18-24 */
  --fluid-h6: 18px; /* 14-18 */
  --fluid-sm: 16px; /* 14-16 */
  --red: #FF1D1D;
  --black: #000000;
  --l-black: #282828;
  --b-radius: 18px;
}

* { word-break: break-word; }

/*----------------------------------------------------------------------------*/
/*#FONTS*/
/*----------------------------------------------------------------------------*/

/*----------font weight-------------------*/

.fw--light     { font-weight: 300; }
.fw--regular   { font-weight: 400; }
.fw--medium    { font-weight: 500; }
.fw--semibold  { font-weight: 600; }
.fw--bold      { font-weight: 700; }
.fw--extrabold { font-weight: 800; }
.fw--black     { font-weight: 900; }

/*----------font style------------------*/

.txt--uppercase   { text-transform: uppercase; }
.txt--lowercase   { text-transform: lowercase; }
.txt--capitalize  { text-transform: capitalize; }

.txt--overline      { text-decoration: overline; }
.txt--linethrough   { text-decoration: line-through; }
.txt--underline     { text-decoration: underline; }
.txt--none:hover    { text-decoration: none; }
/*-----------font align -------------------*/

.txt--center  { text-align: center; }
.txt--left    { text-align: left; }
.txt--right   { text-align: right; }
.txt--justify { text-align: justify; }

/*---------elements align------------------*/

.pull--left   { float: left; }
.pull--right  { float: right; }
.pull--none   { float: none; }
.clearfix     { clear: both; }
.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/*--------overflow---------------------------------*/

.overflow--visible { overflow: visible; }
.overflow--auto    { overflow: auto; }
.overflow--hidden  { overflow: hidden; }
.overflow-x--hidden { overflow-x: hidden; }

/*--------position---------------------------------*/
.p--relative { position: relative; }

/*--------height---------------------------------*/
.height--100 { height: 100%; }
/*----------------------------------------------------------------------------*/
/*#CONTAINER STYLE*/
/*----------------------------------------------------------------------------*/

[class^='container'] {
  width: 100%;
  padding-left:  20px;
  padding-right: 20px;
  margin-left:  auto;
  margin-right: auto;
}
/*max-width = width of container + padding-left + padding-right*/
.container-full { max-width: 100%; }
.container      { max-width: 1770px; }
.container--md  { max-width: 1475px; }
.container--sm  { max-width: 1185px; }

.row {
    margin-left:  -10px;
    margin-right: -10px;
}
.row [class*='col'] {
    padding-left:  10px;
    padding-right: 10px;
}
.row.gutters-md {
    margin-left:  -36px;
    margin-right: -36px;
}
.row.gutters-md [class*='col'] {
    padding-left:  36px;
    padding-right: 36px;
}
.row.gutters-lg {
    margin-left:  -46px;
    margin-right: -46px;
}
.row.gutters-lg [class*='col'] {
    padding-left:  46px;
    padding-right: 46px;
}
.row.gutters-normal {
    margin-left:  -10px;
    margin-right: -10px;
}
.row.gutters-normal [class*='col'] {
    padding-left:  10px;
    padding-right: 10px;
}
/*----------------------------------------------------------------------------*/
/*#VIDEO*/
/*----------------------------------------------------------------------------*/

.video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px; /* if needed */
    height: 0;
}

.video iframe {
    position: absolute;
    top:  0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*----------------------------------------------------------------------------*/
/*#FONT COLOR*/
/*----------------------------------------------------------------------------*/

.txt--white { color: #fff; }
.txt--black { color: #000; }
.txt--red { color: var(--red)!important; }

/*----------------------------------------------------------------------------*/
/*#BACKGROUND STYLE*/
/*----------------------------------------------------------------------------*/
.bg--white { background-color: #fff; }

.bg--properties {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

/*----------------------------------------------------------------------------*/
/*#PADDING STYLE*/
/*----------------------------------------------------------------------------*/

/*padding top/left/right/bottom --> { p-- } */
.p--0 { padding: 0!important; }

/*padding top/left/right/bottom --> { pt-- / pl-- / pr-- / pb-- } */
.pb--0 { padding-bottom: 0; }

/*padding left-right/top-bottom --> { p-lr-- / p-tb-- } */
.py--0 {
    padding-top:    0;
    padding-bottom: 0;
}

/*----------------------------------------------------------------------------*/
/*#MARGIN STYLE*/
/*----------------------------------------------------------------------------*/

/*margin top/left/right/bottom --> { m-- } */
.m--0 { margin: 0!important; }
.m--auto {
    margin-left:  auto;
    margin-right: auto;
}

/*margin top/left/right/bottom --> { mt-- / ml-- / mr-- / mb-- } */
.mb--0  { margin-bottom: 0!important; }

/*margin left-right/top-bottom --> { m-lr-- / m-tb-- } */
.my--0 {
    margin-top:    0;
    margin-bottom: 0;
}

/*----------------------------------------------------------------------------*/
/*#BUTTON STYLE*/
/*----------------------------------------------------------------------------*/

.btn {
  -webkit-transition: all .3s ease-in-out;
      -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
  text-align: center;
}
.btn-primary {
  padding: 19px 40px;
  border-radius: 100vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fluid-body);
  line-height: 1;
  box-shadow: none !important;
  outline: 0 !important;
  transition: 0.3s ease-in-out;
  background-color: var(--red);
  color: #fff!important;
  min-width: 216px;
  border: 0;
  text-align: center;
  font-weight: bold;
}
.btn-primary:hover {
  color: #fff!important;
  background-color: #000;
}
.btn-primary.btn-submit {
  padding: 20px 40px;
  height: 60px;
}
.btn-primary.btn-grey {
  background-color: #9C9CA9;
}
.btn-primary.btn-grey:hover {
  background-color: var(--red);
}
.btn-arrow {
  padding: 25px 100px 25px 50px;
  border-radius: 100vw;
  display: inline-flex;
  align-items: center;
  /* justify-content: center; */
  font-size: var(--fluid-h3);
  line-height: 1;
  box-shadow: none !important;
  outline: 0 !important;
  transition: 0.3s ease-in-out;
  background-color: #fff;
  color: var(--red)!important;
  min-width: 500px;
  border: 1px solid var(--red);
  font-weight: bold;
  position: relative;
  text-align: left;
}
.btn-arrow:after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: 50px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background-image: url('../images/arrow-btn.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all .3s ease-in-out;
}
.btn-arrow:hover {
  background-color: var(--red);
  color: #fff!important;
}
.btn-arrow:hover:after {
  filter: brightness(0) invert(1);
}

/*----------------------------------------------------------------------------*/
/*#GLOBAL STYLE*/
/*----------------------------------------------------------------------------*/
html, body {
  overflow-x: clip;
}
body { 
  font-family: 'Inter', sans-serif;
  font-size: var(--fluid-body);
  line-height: 1.9;
  color: var(--l-black);
  /* background-color: #F8F8F8; */
  background-color: #FFF;
}

.site-container {
/*   max-width: 1920px; */
  margin-left: auto;
  margin-right: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 { 
  font-weight: 400;
  margin-bottom: 50px;
  color: var(--black);
}

h1 { font-size: var(--fluid-h1); line-height: 1;   }
h2 { font-size: var(--fluid-h2); line-height: 1.2; }
h3 { font-size: var(--fluid-h3); line-height: 1.2; }
h4 { font-size: var(--fluid-h4); line-height: 1.2; }
h5 { font-size: var(--fluid-h5); line-height: 1.2; }
h6 { font-size: var(--fluid-h6); line-height: 1.2; }

.txt--xxs { font-size: var(--fluid-sm); line-height: 1.2; }
.txt--xs  { font-size: var(--fluid-h6); line-height: 1.2; }
.txt--sm  { font-size: var(--fluid-h5); line-height: 1.2; }
.txt--md  { font-size: var(--fluid-h4); line-height: 1.2; }
.txt--lg  { font-size: var(--fluid-h3); line-height: 1.2; }
.txt--xl  { font-size: var(--fluid-h2); line-height: 1.2; }
.txt--xxl { font-size: var(--fluid-h1); line-height: 1;   }

p:not(:last-child) {
  /* margin-bottom: calc(var(--linehight) * var(--fs-body)); */
  margin-bottom: 1.9em;
}

ul:not(:last-child),
ol:not(:last-child) {
  margin-bottom: 1.9em;
}

ul:not(.menu):not(.sub-menu):not(.slick-dots):not(.select2-results__options):not(.footer-menu) {
  list-style: disc;
  list-style-position: inside;
}

ol:not(.menu):not(.sub-menu):not(.slick-dots):not(.select2-results__options):not(.footer-menu) {
  list-style: decimal;
  list-style-position: inside;
}

a,a:visited {
  color: inherit;
  transition: .3s ease-in-out
}
a:hover {
  color: var(--red)
}

img {
  display: block
}

.red-shadow {
  position: relative;
}
.red-shadow::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 50%;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  box-shadow: 0px 5px 80px 0px #FF291D26;
  z-index: -1;
}
.red-shadow.w-80::after {
  width: 80%;
}

/*----------------------------------------------------------------------------*/
/*#CUSTOM STYLES*/ 
/*----------------------------------------------------------------------------*/

/* HEADER */
.site-header {
  position: fixed;
  width: 100%;
  z-index: 999;
  transition: 0.3s ease-in-out;
  top: 0;
  left: 0;
  padding: 48px 0;
}
.admin-bar .site-header {
  top: 32px;
}
.site-header {
  padding: 25px 0;
  background: rgba(244, 244, 244, 0.6);
  box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.site-header > .wrap {
  width: 100%;
  max-width: 1770px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.site-header .title-area {
  max-width: 114px!important;
  width: 100%;
  z-index: 1000;
}
.site-header .title-area svg {
  width: 100%;
  display: block;
}
.site-header .nav-primary {
  margin-left: auto;
  margin-right: 120px;
}
.menu-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.menu-primary li {
  margin-bottom: 0 !important;
  font-size: var(--fluid-body);
  font-weight: 500;
  position: relative;
  cursor: pointer;
}
.menu-primary li:not(:last-child) {
  margin-right: 60px;
}
.menu-primary li:before {
  bottom: -5px;
}
/* .menu-primary li a:hover {
  color: var(--red);
} */
.menu-primary .sub-menu {
  top: calc(100% + 5px);
}
.menu-primary li.current-menu-item,
.menu-primary li.current-menu-parent,
.menu-primary li:hover {
  color: var(--red);
}
.menu-primary li a {
  position: relative;
  z-index: 2;
}
.menu-primary .sub-menu {
  position: absolute;
  width: auto;
  min-width: calc(100% + 60px);
  left: 0;
  top: calc(100% + 15px);
  padding: 15px 0;
  background-color: #fff;
  box-shadow: 0 0 8px 0 rgb(0 0 0 / 9%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  z-index: 0;
}
.menu-primary li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}
.sub-menu li {
  padding: 6px 20px !important;
  font-size: var(--fluid-sm);
  white-space: nowrap;
  margin-right: 0 !important;
}
.sub-menu li:before {
  display: none;
}
.sub-menu li a {
  color: #000 !important;
  transition: 0.3s ease-in-out;
}
.sub-menu li a:hover {
  color: var(--main-red) !important;
}
.sub-menu li.current-menu-item a {
  color: var(--main-red) !important;
}
.menu-primary li .sub-menu-toggle {
  display: none !important;
}
.site-header .contact-btn-header .search-box {
  margin-right: 120px;
}
.site-header .contact-btn-header .toggle-header-search .search-icon {
  width: 24px;
  display: block;
  transition: all .15s ease-in-out;
  position: relative;
  z-index: 1000;
}
.site-header .contact-btn-header .toggle-header-search .search-icon:hover {
  filter: invert(58%) sepia(86%) saturate(7453%) hue-rotate(344deg) brightness(93%) contrast(117%);
}

.header-search-wrap {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1500;
}
.search-visible .header-search-wrap {
  opacity: 1;
  pointer-events: all;
}
.header-search-wrap:target {
  opacity: 1;
  pointer-events: all;
}
.header-search-wrap .search-form {
  max-width: 600px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-search-wrap .search-form-input {
  padding: 0;
  border: 0;
  border-bottom: 2px solid #FF1D1D;
  background-color: transparent;
  width: 100%;
  cursor: default;
  color: #fff;
  padding: 20px 0 20px 0;
  margin-bottom: 30px;
  /* text-align: center; */
}
.header-search-wrap .search-form-input::-webkit-input-placeholder {
  color: rgba(255,255,255,0.5)!important;
  /* text-align: center; */
  /* padding-left: 30px; */
}
.header-search-wrap .search-form-input::-moz-placeholder {
  color: rgba(255,255,255,0.5)!important;
  /* text-align: center; */
  /* padding-left: 30px; */
}
.header-search-wrap .search-form-input::placeholder {
  color: rgba(255,255,255,0.5)!important;
  /* text-align: center; */
  /* padding-left: 30px; */
}
.header-search-wrap .search-form-input::-webkit-search-cancel-button {
  filter: brightness(0);
  cursor: pointer;
  margin: 0 10px;
  padding: 2px;
}
.header-search-wrap .search-form-input:-internal-autofill-selected {
  background-color: transparent!important;
  color: #fff!important;
}
.header-search-wrap .search-form-input:-webkit-autofill,
.header-search-wrap .search-form-input:-webkit-autofill:hover, 
.header-search-wrap .search-form-input:-webkit-autofill:focus {
  border: none!important;
  -webkit-text-fill-color: #000!important;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  font-size: 19px!important;
  padding-left: 20px;
}
.header-search-wrap .search-form-submit {
padding: 20px 40px;
  border-radius: 100vw;
  border: 2px solid var(--red);
  display: inline-flex;
  font-size: 18px;
  line-height: 1;
text-align: center;
  box-shadow: none !important;
  outline: 0 !important;
  transition: .3s ease-in-out;
  background-color: var(--red);
-webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
color: #fff;
}
.header-search-wrap .search-form-submit:hover,
.header-search-wrap .search-form-submit:focus {
  background-color: #FF1D1D;
  color: #fff;
}
.toggle-header-search.close {
  position: absolute;
  z-index: 100;
  top: 15px;
  right: 15px;
  padding: 0;
  display: inline-block;
  line-height: 1;
}
.header-search-wrap:target .toggle-header-search.close {
  -webkit-transform: none;
  transform: none;
}
.toggle-header-search .search-icon {
  width: 20px;
  display: block;
}
.toggle-header-search.close .search-icon {
  position: absolute;
  top: calc(50% - 5px);
  right: 0;
  -webkit-transform: scale(3);
  transform: scale(3);
}
.toggle-header-search .close-icon svg {
  width: 25px;
}
.toggle-header-search .close-icon svg rect {
  fill: #fff;
}

/* FOOTER */
.footer {
  background-color: var(--l-black);
  padding-top: 82px;
  color: #fff;
  font-weight: 400;
}
.footer .footer-logo {
  max-width: 114px!important;
  margin-bottom: 45px;
}
.footer .footer-logo svg g > *:not(.logo-red) {
  fill: #fff!important;
}
.footer :is(h1, h2, h3, h4, h5, h6) {
  color: #fff;
}
.footer .footer-info-title {
  margin-bottom: 40px;
}
.footer .footer-link {
  display: flex;
  align-items: center;
  font-size: var(--fluid-h5);
}
.footer .footer-link img {
  width: 22px;
  margin-right: 16px;
}
.footer .footer-link a:hover {
  color: var(--red);
}
.footer .newsletter .newsletter-title {
  margin-bottom: 35px;
}
.footer .newsletter button {
  margin-left: 20px;
}
.footer .social-footer {
  margin-top: 50px;
  /* margin-right: 45px; */
  margin-left: auto;
  display: inline-flex;
}
.footer .footer-bottom {
  font-size: var(--fluid-h6);
  font-weight: 300;
  margin-top: 35px;
  padding: 30px 0;
  border-top: 1px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer-bottom .footer-menu {
  display: flex;
  align-items: center;
}
.footer .footer-bottom .footer-menu li:not(:last-child) {
  margin-right: 64px;
}
.footer .footer-bottom .footer-menu li a:hover {
  color: var(--red);
}

/* FORM INPUTS */
.form-group {
  margin-bottom: 20px;
}
.form-group.not-valid-margin {
  margin-bottom: 50px;
}
.form-control {
  width: 100%;
  border: 1px solid #d9d9d9;
  outline: none;
  background-color: #fff;
  color: var(--l-black);
  border-radius: 100vw;
  height: 50px;
  font-size: var(--fluid-h6);
  padding: 10px 35px;
  font-weight: 300;
  /* letter-spacing: 0.05em; */
}
.form-control::-webkit-input-placeholder {
  color: #979797!important;
  transition: .3s ease-in-out;
}
.form-control::-moz-placeholder {
  color: #979797!important;
  transition: .3s ease-in-out;
}
.form-control::placeholder {
  color: #979797!important;
  transition: .3s ease-in-out;
}
.newsletter .form-control {
  height: 60px;
}
.newsletter .form-control::-webkit-input-placeholder {
  color: #000!important;
  transition: .3s ease-in-out;
}
.newsletter .form-control::-moz-placeholder {
  color: #000!important;
  transition: .3s ease-in-out;
}
.newsletter .form-control::placeholder {
  color: #000!important;
  transition: .3s ease-in-out;
}
.form-control:focus::-webkit-input-placeholder { 
  color: transparent!important;
}
.form-control:focus::-moz-placeholder { 
  color: transparent!important;
}
.form-control:focus::placeholder { 
  color: transparent!important;
}
textarea.form-control {
  border-radius: 36px;
  min-height: 100px;
  resize: none;
}
/* .brochure-form textarea.form-control {
  min-height: 240px;
} */
.terms-holder {
  margin-top: 60px;
}
.brochure-newsletter-checkbox {
	text-align: right;
}
.brochure-newsletter-checkbox .checkboxes {
	justify-content: flex-end;
}
.checkboxes {
  display: flex;
  align-items: center;
  gap: 45px;
}
.checkboxes label {
  display: inline-flex;
  /* align-items: center; */
  line-height: 1.5;
  position: relative;
}
.checkboxes.align-top-text label {
  align-items: flex-start;
}
.checkboxes label span {
  margin-left: 13px;
}
.checkboxes.align-top-text label span {
  margin-top: -4px;
}
input[type="checkbox"], input[type="radio"] {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border: 1px solid #60606C;
  border-radius: 0;
  appearance: none;
}
input[type="checkbox"]:checked~span:after,
input[type="radio"]:checked~span:after {
  content: '';
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  /* border: 1px solid #60606C; */
  background-color: var(--red);
  left: 5px;
  top: 5px;
}
.wpcf7-not-valid-tip {
  margin-left: 1.7em;
  font-size: var(--fluid-sm);
}
.terms-holder .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7-radio {
  display: flex;
  gap: 45px;
}

.label-attach {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.label-attach .attach-icon {
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("../images/attach-icon.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  cursor: pointer;
}
.label-attach .wpcf7-form-control-wrap{
  position: relative;
  display: block;
  width: 100%;
  max-width: 30%;
}
.label-attach .wpcf7-form-control-wrap:before {
  content: "Attach CV*";
  position: absolute;
  left: 0;
  color: #979797!important;
  cursor: pointer;
  width: 100%;
}
.label-attach .wpcf7-form-control-wrap.item-added {
  opacity: 0;
  width: 0;
}
.label-attach #Attach_CV {
  visibility: hidden;
  width: 100%;
}
.label-attach #file-selected {
  font-size: var(--fluid-sm);
  white-space: nowrap;
  max-width: 200px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.label-attach .wpcf7-not-valid-tip {
  position: absolute;
  margin-left: 0;
  bottom: -43px;
  left: -34px;
  white-space: nowrap;
}

/* SOCIAL ITEMS */
.social-media-links .social-item {
  width: 26px;
}
.social-media-links .social-item:not(:last-child) {
  margin-right: 20px;
}
.social-media-links .social-item svg {
  width: 100%;
}

/* CAREER FOOTER SECTION */
.career-footer-section {
  overflow: hidden;
  position: relative;
  padding: 80px 0;
  background-color: var(--red);
  z-index: 1;
}
.career-footer-section .career--circle {
  top: 50%;
  right: -421px;
  transform: translateY(-50%);
  position: absolute;
  width: 1600px;
  height: 1600px;
  background-color: #fff;
  border-radius: 100%;
  z-index: 2;
}
.career-footer-content {
  position: relative;
  z-index: 3;
}

/* HERO SECTION */
.hero_section {
  min-height: 782px;
  overflow: hidden;
  position: relative;
  padding: 180px 0 90px 0px;
}
.hero--arrow_down {
	position: absolute;
	width: 70px;
	height: 70px;
	background-color: #fff;
	border-radius: 50%;
	background-image: url('../images/down-arrow.png');
	background-size: 50px 50px;
	background-position: center 12px;
	background-repeat: no-repeat;
	bottom: 30px;
	right: 100px;
	z-index: 10;
	animation: MoveUpDown 1s linear infinite;
}
@keyframes MoveUpDown {
  0%, 100% {
    bottom: 30px;
  }
  50% {
    bottom: 40px;
  }
}
.hero_section .hero--circle {
  top: 50%;
  left: -268px;
  transform: translateY(-50%);
  position: absolute;
  width: 1384px;
  height: 1384px;
  /* clip-path: inset(0 round 0px 50% 50% 0); */
  background-color: #fff;
  border-radius: 100%;
  z-index: 2;
}
.hero_section .hero--circle:before {
  content: '';
  position: absolute;
  width: 234px;
  height: 234px;
  border-radius: 100%;
  background: linear-gradient(63.37deg, rgba(255, 29, 29, 0.6) 7.93%, rgba(255, 29, 29, 0) 86.86%);
  right: -88px;
  top: calc(50% + 140px);
  mix-blend-mode: multiply;
}
.hero_section .hero--circle:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: linear-gradient(63.37deg, rgba(255, 29, 29, 0.6) 7.93%, rgba(255, 29, 29, 0) 86.86%);
  right: -90px;
  top: 50%;
  mix-blend-mode: multiply;
}

/* .hero_section:before {
  content: '';
  position: absolute;
  width: 234px;
  height: 234px;
  border-radius: 100%;
  background: linear-gradient(63.37deg, rgba(255, 29, 29, 0.6) 7.93%, rgba(255, 29, 29, 0) 86.86%);
  left: calc(50% + 80px);
  bottom: 20px;
  mix-blend-mode: multiply;
  z-index: 3;
}
.hero_section:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: linear-gradient(63.37deg, rgba(255, 29, 29, 0.6) 7.93%, rgba(255, 29, 29, 0) 86.86%);
  left: calc(50% + 190px);
  bottom: 280px;
  mix-blend-mode: multiply;
  z-index: 3;
} */

.hero_section .hero_section-content {
  width: 100%;
  height: 100%;
  z-index: 3;
  position: relative;
}
.hero_section .hero_section-content .hero_section-content--text {
  max-width: 57%;
}
.hero_section .hero_section-image {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  overflow: hidden;
}
.hero_section .hero_section-image img {
  width: 100%;
  height: 100%;
  object-position: top center;
  object-fit: cover;
}
.single-product .hero_section {
	min-height: 550px;
    overflow: hidden;
    position: relative;
    padding: 90px 0 90px 0px;
    background-color: rgba(255, 255, 255, .3);
    backdrop-filter: blur(4px);
    border-radius: var(--b-radius);
    margin-top: 154px;
	margin-bottom: 80px;
	margin-left: auto;
	margin-right: auto;
	max-width: calc(100% - 60px);
}
.single-product .hero_section .hero--circle {
    width: 100%;
    height: 100%;
    left: 0;
    background-color: initial;
    border-radius: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 55%);
}
.single-product .hero_section .hero--circle,
.single-product .hero_section .hero--circle:before,
.single-product .hero_section .hero--circle:after {
    display: none;
}
.single-product .hero_section-content .hero_section-content--text {
    max-width: 50%;
}
.single-product .hero_section-image:before {
    content: '';
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 85%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* TRAININGS PAGE */
.trainings-loop-section {
  padding: 150px 0;
}
#mobileShowFilter {
  display: none;
}
.trainings-wrapper .course-clmn {
  margin-bottom: 40px;
}
.course-item {
  border-radius: var(--b-radius);
  border: 1px solid #D9D9D9;
  overflow: hidden;
  height: 100%;
  display: flex;
  background-color: #fff;
  text-align: left;
}
.course-item > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.course-item .course-img {
  overflow: hidden;
  position: relative;
  height: 250px;
}
.course-item .course-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: .8s ease-in-out;
}
.course-item:hover .course-img img {
  transform: scale(1.08);
  -webkit-transform: scale(1.05);
}
.course-item .course-info {
  padding: 40px 25px;
}
.course-item .course-info .course-expertise {
  margin-bottom: 20px;
  color: var(--red);
  font-size: var(--fluid-sm);
  display: block;
}
.course-item .course-info .course-title {
  font-weight: bold;
  margin-bottom: 25px;
  transition: .3s ease-in-out;
}
.course-item:hover .course-info .course-title {
  color: var(--red);
}
.course-item .course-data {
  position: relative;
  /* padding-bottom: 40px;
  border-bottom: 2px solid #9C9CA9 */
}
/* .course-item .course-data:before {
  content: '';
  position: absolute;
  width: 116px;
  height: 5px;
  background-color: var(--red);
  border-radius: 100vw;
  bottom: -3px;
  left: 0;
} */
.course-data .course-info-icon {
  margin-right: 18px;
}
.course-data .course-info__type .course-info-icon,
.course-data .course-info__date .course-info-icon {
  margin-left: 5px;
  margin-right: 23px;
}
.course-data .course-info__type .course-info-icon img {
  width: 20px;
}
.course-data .course-info__intensity .course-info-icon img {
  width: 30px;
}
.course-data .course-info__date .course-info-icon img {
  width: 20px;
}
.course-data .course-info__price {
  margin-top: 30px;
}
.course-data .course-info-title {
  font-weight: bold;
  font-size: var(--fluid-h6);
}


.trainings-filter {
  margin-bottom: 76px;
}
#filterForm {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
}
#filterForm .custom-select {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 16.34%;
}
#filterForm .custom-select label {
  font-weight: bold;
  font-size: var(--fluid-h5);
  line-height: 1;
  margin-bottom: 15px;
}

 .select2-container {
  width: 100%;
}
 .select2-container--default .select2-selection {
  border: 1px solid #D9D9D9!important;
  border-radius: 100vw!important;
  background-color: #fff !important;
  height: 50px;
  color: var(--l-black);
  font-size: var(--fluid-sm);
  padding: 10px 35px;
  font-weight: 300;
  display: flex;
  align-items: center;
}
.regular-form .select2-container--default .select2-selection {
  height: 50px;
  color: var(--l-black);
  font-size: var(--fluid-h6);
}
.select2-container--default .select2-selection .select2-selection__arrow {
  /* height: 20px; */
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  width: 18px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#filterForm .custom-select.cs-training-type .select2-container--default .select2-selection .select2-selection__arrow {
  background-image: url("../images/training-type-course.svg");
  width: 22px;
}
#filterForm .custom-select.cs-expertise .select2-container--default .select2-selection .select2-selection__arrow {
  background-image: url("../images/expertise-course.svg");
}
#filterForm .custom-select.cs-partner .select2-container--default .select2-selection .select2-selection__arrow {
  background-image: url("../images/partner-course.svg");
}
#filterForm .custom-select.cs-location .select2-container--default .select2-selection .select2-selection__arrow {
  background-image: url("../images/location-course.svg");
  width: 16px;
}
#filterForm .custom-select.cs-month .select2-container--default .select2-selection .select2-selection__arrow,
#filterCalendar .custom-select.cs-month .select2-container--default .select2-selection .select2-selection__arrow {
  background-image: url("../images/calendar-course.svg");
  width: 16px;
}
.select2-container--default .select2-selection .select2-selection__arrow b {
  display: none;
}
.select2-container--default .select2-selection .select2-selection__rendered {
  color: #979797 !important;
  line-height: auto !important;
  padding-left: 0 !important;
}
.regular-form .select2-container--default .select2-selection .select2-selection__rendered {
  color: var(--l-black) !important;
}
.regular-form .select2-container--default .select2-selection .select2-selection__arrow {
  background-image: url("../images/arrow-down.svg");
  width: 15px;
}
.regular-form .select2-container--default .select2-selection .select2-selection__placeholder{
  color: #979797 !important;
  line-height: auto !important;
  padding-left: 0 !important;
}
.select2-dropdown {
  margin-top: 0 !important;
  background-color: #fff;
  /* border-radius: 16px!important; */
  border: 1px solid #979797 !important;
  overflow: hidden;
}
.select2-dropdown li {
  background-color: transparent !important;
  color: #000 !important;
  padding: 6px 15px;
  font-size: var(--fluid-sm);
}
/* .select2-dropdown li:not(:last-child) {
  border-bottom: 1px solid #d2d2d2;
} */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--red) !important;
  color: #fff !important;
}
.select2-dropdown .select2-results__options {
  list-style: none !important;
}
/* width */
.select2-dropdown .select2-results__options::-webkit-scrollbar {
  width: 5px;
}
/* Track */
.select2-dropdown .select2-results__options::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
/* Handle */
.select2-dropdown .select2-results__options::-webkit-scrollbar-thumb {
  background: #d2d2d2; 
}
/* Handle on hover */
.select2-dropdown .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #9f9f9f; 
}
.show-all-wrapper {
  margin-top: 50px;
}

/* SINGLE PRODUCT PAGE */
.single-product-section {
  padding: 150px 0;
/*   background-color: #F8F8F8; */
  position: relative;
}
/* .single-product-section:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 510px;
  height: 100%;
  background-color: #fff;
} */
.single-product-section hr {
  height: 5px;
  background-color: var(--red);
  margin: 100px 0;
  box-shadow: none;
  outline: none;
  border: none!important;
}
.single-product-subtitle {
  margin-bottom: 20px;
}
/* .course-info-clmn {
	text-align: center;
} */
.course-info-clmn .course-data:not(:last-child) {
  margin-bottom: 50px;
}
.course-info-clmn .training-advisor-info {
  line-height: 1.5;
  font-size: var(--fluid-h6);
}
.course-info-clmn .training-advisor-info img {
    margin-bottom: 30px;
    max-width: 250px;
/*     margin-left: auto;
    margin-right: auto; */
    width: 100%;
    border-radius: var(--b-radius);
}
.course-info-clmn .training-advisor-info .advisor-title {
  margin-bottom: 30px;
}
.course-info-clmn .training-advisor-info .advisor-tel {
  margin-bottom: 0;
}
.course-info-clmn .training-advisor-info .advisor-email {
  margin-bottom: 30px;
}
.course-info-clmn .partner-info img {
  max-width: 260px;
/*  max-height: 70px;*/
  width: 100%;
}
.course-info-clmn .calendar-link {
  border-radius: var(--b-radius);
/*  background-color: #fff;*/
/*   padding: 100px 50px; */
  max-width: 350px;
}
.course-info-clmn .course-info__wrap {
/*     border: 1px solid #dbdbdb;
    border-radius: 100vw;
    padding: 5px 20px; */
	margin-bottom: 10px;
	text-align: left;
}
.course-info-clmn .course-info__wrap .course-info-title {
    font-weight: 400;
    font-size: var(--fluid-sm);
}
.course-info-clmn .course-info__price {
/*   justify-content: center; */
}
.tab-buttons {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  background-color: #e4e4e4;
  border-radius: 100vw;
}
.tab-buttons .tab-box {
  flex: 1;
  display: flex;
}
.tab-buttons .tab__title {
  background-color: transparent;
  color: var(--l-black)!important;
  font-size: var(--fluid-h6);
  font-weight: 500;
  min-width: auto;
  padding: 25px 10px;
  flex: 1;
  cursor: pointer;
}
.tab-buttons .tab__title.active,
.tab-buttons .tab__title:hover {
  background-color: var(--red)!important;
  color: #fff!important;
}
.tabs-wrapper .tab__content {
  display: none;
}
.tabs-wrapper .tab__content.active {
  display: block;
}
.tab-content-container {
	margin-bottom: 80px;
    background-color: #fff;
    padding: 30px;
    border-radius: var(--b-radius);
}
.brochure-form {
  padding: 80px 60px;
  /* background-color: #fff; */
  position: relative;
}
.brochure-form > .form-holder{
  position: relative;
  z-index: 2;
}
.brochure-form:after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(63.37deg, rgba(255, 29, 29, 0.6) 7.93%, rgba(255, 29, 29, 0) 86.86%);
  transform: rotate(75deg);
  bottom: -150px;
  right: -150px;
  border-radius: 100%;
  z-index: 0;
}
.brochure-form:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(240 240 240 / 60%);
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: var(--b-radius);
	backdrop-filter: blur(4px);;
}
.submit-button-holder {
  margin-top: 45px;
}
.submit-button-holder.mobile-margin-top {
  margin-top: 0;
}
.related-courses .carousel-nav {
  margin-top: 80px;
  justify-content: center;
}
.related-courses .slick-slide {
    margin: 0 10px;
	height: auto!important;
}
.related-courses .slick-list {
    margin: 0 -10px;
}
.related-courses .slick-track {
    margin: 0;
	display: flex!important;
}

/* HOME PAGE */
.partners-carousel-section{
  padding: 60px 0;
}
.partners-carousel-section .partners-carousel-wrapper {
  gap: 40px;
  overflow: hidden;
}
.partners-carousel-section .slick-track {
  /* background-color: #F8F8F8; */
  background-color: #FFF;
}
.partners-carousel-section .slick-slide {
  margin: 0 40px;
}
.partners-carousel-section .slick-list {
  margin: 0 -40px;
}
.partners-carousel-section .slick-track {
  display: flex;
  align-items: center;
}
.partners-section .partner-logo-wrapper .logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.partners-carousel-section .partners-carousel-wrapper .partner-logo {
  mix-blend-mode: darken;
}
.partners-carousel-section .partners-carousel-wrapper .partner-logo img {
  max-height: 80px;
  min-height: 60px;
  width: auto;
  height: auto;
}
.solutions-section .solutions-wrapper {
  background-color: #fff;
  padding: 140px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.solutions-section .solutions-wrapper:before {
  content: '';
  position: absolute;
  width: 210px;
  height: 210px;
  bottom: -105px;
  right: 80px;
  background: linear-gradient(63.37deg, rgba(255, 29, 29, 0.6) 7.93%, rgba(255, 29, 29, 0) 86.86%);
  border-radius: 100%;
  opacity: .9;
}
.solutions-section .solutions-wrapper:after {
  content: '';
  position: absolute;
  width: 62px;
  height: 62px;
  bottom: 120px;
  right: 50px;
  transform: rotate(-90deg);
  background: linear-gradient(63.37deg, rgba(255, 29, 29, 0.6) 7.93%, rgba(255, 29, 29, 0) 86.86%);
  border-radius: 100%;
  opacity: .9;
}
.solutions-section .solutions-wrapper .solutions-wrapper-container {
  max-width: 1150px;
  text-align: center;
}
.solutions-section .solutions-wrapper .solution-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}
.courses-section {
  padding: 120px 0;
  text-align: center;
}
.courses-section .courses-wrapper {
  margin-top: 70px;
  margin-bottom: 100px;
  position: relative;
}
.courses-section .courses-wrapper:before {
  content: '';
  position: absolute;
  width: 210px;
  height: 210px;
  top: -128px;
  left: 60px;
  background: linear-gradient(63.37deg, rgba(255, 29, 29, 0.6) 7.93%, rgba(255, 29, 29, 0) 86.86%);
  border-radius: 100%;
  opacity: .9;
}
.mentors-section .mentors-section-wrapper {
  padding: 0 140px;
  display: flex;
  gap: 130px;
  position: relative;
}
.mentors-section .mentors-section-wrapper .red-circle-asset-big {
  content: '';
  position: absolute;
  width: 210px;
  height: 210px;
  bottom: 0;
  left: 518px;
  background: linear-gradient(63.37deg, rgba(255, 29, 29, 0.6) 7.93%, rgba(255, 29, 29, 0) 86.86%);
  border-radius: 100%;
  opacity: .9;
}
.mentors-section .mentors-section-wrapper .red-circle-asset-small {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  bottom: 210px;
  left: 716px;
  background: linear-gradient(63.37deg, rgba(255, 29, 29, 0.6) 7.93%, rgba(255, 29, 29, 0) 86.86%);
  border-radius: 100%;
  opacity: .9;
}
.mentors-section .mentors-section-wrapper.red-shadow::after {
  top: calc(800px - 50%);
}
.mentors-section .mentors-section-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  background-color: #fff;
}
.mentors-section .section-info {
  max-width: 600px;
  position: relative;
  z-index: 2;
  margin-top: 165px;
}
.mentors-section .mentors-wrapper {
  flex: 1;
  position: relative;
  top: 100px;
  z-index: 2;
}
.mentors-section .mentors-wrapper .mentor-box {
  display: block;
  color: #fff;
  position: relative;
}
.mentors-section .mentors-wrapper .mentor-box:not(:first-child) {
  margin-bottom: 30px;
}
.mentors-section .mentors-wrapper .mentor-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--red);
  border-radius: var(--b-radius);
}
.mentors-section .mentors-wrapper .mentor-box .mentor-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--b-radius);
  height: 0;
  padding-top: 126%;
  transition: all .3s ease-in-out;
  top: 0;
  left: 0;
}
.mentors-section .mentors-wrapper .mentor-box .mentor-image img {
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.mentors-section .mentors-wrapper .mentor-box .mentor-image .mentor-info {
  position: absolute;
  width: 100%;
  bottom: 30px;
  padding-left: 24px;
  color: #fff;
  z-index: 1;
  opacity: 0;
  transition: all .3s ease-in-out;
}
.mentors-section .mentors-wrapper .mentor-box:hover .mentor-image {
  top: -14px;
  left: -16px;
}
.mentors-section .mentors-wrapper .mentor-box:hover .mentor-image .mentor-info  {
  opacity: 1;
}

.testimonials-carousel .slick-list {
	overflow: initial;
}
.testimonials-carousel .slick-track {
	display: flex!important;
}
.testimonials-section {
  padding: 50px 0 150px 0;
}
.testimonial-box {
  background-color: #fff;
  display: flex!important;
  position: relative;
	height: auto!important;
}
.testimonial-image {
  flex: 0 0 600px;
  max-width: 600px;
  width: 100%;
  position: relative;
  display: none;
}
.testimonial-image img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}
.testimonial-info-wrapper {
  padding: 80px 150px 50px;
	background-color: #F8F8F8;
	flex: 0 0 100%;
	text-align: center;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
}
.testimonial-title {
  margin-bottom: 14px;
}
.testimonial-subtitle {
  text-transform: uppercase;
  font-weight: 600;
}
.testimonial-info-carousel {
	margin-bottom: auto;
}
.testimonial-box .carousel-nav {
  margin-top: 60px;
 justify-content: center;
}
.carousel-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.carousel-arrow {
  width: 60px;
  height: 60px;
  border: 1px solid var(--black);
  border-radius: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease-in-out;
  cursor: pointer;
}
.carousel-arrow:before {
  content: '';
  width: 20px;
  height: 16px;
  background-image: url('../images/carousel-arrow.svg');
  background-repeat: no-repeat;
  background-size: contain;
  transition: all .3s ease-in-out;
}
.carousel-arrow.carousel-next:before {
  transform: rotate(-180deg);
}
.carousel-arrow:hover {
  background-color: var(--red);
  border-color: var(--red);
}
.carousel-arrow:hover:before {
  filter: brightness(0) invert(1);
}

.logo-tab-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.logo-tab-buttons .logo-tab-btn .logo-tab-title {
  font-size: var(--fluid-h3);
  position: relative;
  padding: 10px 15px;
  border-bottom: 2px solid #9C9CA9;
  cursor: pointer;
}
.logo-tab-buttons .logo-tab-btn .logo-tab-title:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--red);
  border-radius: 100vw;
  opacity: 0;
  transition: all .3s ease-in-out;
}
.logo-tab-buttons .logo-tab-btn .logo-tab-title.active:before {
  opacity: 1;
}
.logo-tab-content {
  display: none;
}
.logo-tab-content.active {
  display: block;
}
.logo-tab-content .logo-wrap {
  height: 100px;
  padding: 10px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  border-radius: 12px;
  overflow: hidden;
}
.logo-tab-content .logo-wrap img {
  max-height: 100%;
  max-width: 260px;
  width: auto;
  height: auto;
}

.blog-section {
  padding: 80px 0 170px 0;
  position: relative;
  z-index: 2;
}
.blog-section:before {
  content: '';
  position: absolute;
  width: 210px;
  height: 210px;
  bottom: -105px;
  right: 133px;
  background: linear-gradient(63.37deg, rgba(255, 29, 29, 0.6) 7.93%, rgba(255, 29, 29, 0) 86.86%);
  border-radius: 100%;
  opacity: .9;
}
.blog-section:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: 142px;
  right: 130px;
  background: linear-gradient(63.37deg, rgba(255, 29, 29, 0.6) 7.93%, rgba(255, 29, 29, 0) 86.86%);
  border-radius: 100%;
  opacity: .9;
}
.blog-section .blog-posts-wrapper {
  margin-bottom: 80px;
}

/* BLOG PAGE */
.blog-page-section {
  padding: 200px 0 130px 0;
}
.blog-page-section .blog-posts-wrapper {
  margin-top: 120px;
}
.blog-page-section .blog-posts-wrapper .mobile-pagination {
  margin-top: 60px;
}
.blog-page-section .blog-posts-wrapper .post-clmn {
  margin-bottom: 60px;
}

/* SINGLE BLOG PAGE */
.single-post .hero_section .hero--circle:before,
.single-post .hero_section .hero--circle:after {
  display: none;
}
.single-post-content-section {
  padding: 140px 0;
}
.single-post-content-section .post-content-wrapper {
  max-width: 855px;
  margin: 0 auto;
}
.single-post-content-section .post-content-wrapper hr.custom-devider {
  height: 1px;
  background-color: #D9D9D9;
  margin: 100px 0 50px 0;
  box-shadow: none;
  outline: none;
  border: none!important;
}
.single-post-content-section .post-content-wrapper .wp-block-image,
.single-post-content-section .post-content-wrapper .wp-block-embed,
.single-post-content-section .post-content-wrapper .wp-block-video {
  width: 100%;
  margin: 1.9em 0;
  position: relative;
}
.single-post-content-section .post-content-wrapper .wp-block-embed__wrapper,
.single-post-content-section .post-content-wrapper .wp-block-video {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.single-post-content-section .post-content-wrapper .wp-block-embed iframe,
.single-post-content-section .post-content-wrapper .wp-block-video video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}
.single-post-content-section .blog-post-bottom-navigation a .carousel-arrow {
  margin-right: 20px;
}
.single-post-content-section .blog-post-bottom-navigation a .carousel-arrow.carousel-next {
  margin-right: 0;
  margin-left: 20px;
}
.single-post-content-section .blog-post-bottom-navigation a:hover .carousel-arrow {
  background-color: var(--red);
  border-color: var(--red);
}
.single-post-content-section .blog-post-bottom-navigation a:hover .carousel-arrow:before {
  filter: brightness(0) invert(1);
}
.single-post-content-section .author-box {
  background-color: #fff;
  border-radius: var(--b-radius);
  margin-top: 80px;
  padding: 80px;
}
.single-post-content-section .author-box .social-media-links {
  margin-top: 26px;
}
.single-post-content-section .author-box .twitter-logo{
  width: 24px;
}

/* TEAM PAGE */
.team-section {
  padding: 140px 0;
}
.team-section .team-section-info {
  max-width: 650px;
  margin: 0 auto;
  margin-bottom: 120px;
  text-align: center;
}
.team-section .team-clmn {
  margin-bottom: 110px;
}
.team-section .team-member-box .team-member-image {
  margin-bottom: 45px;
}
.team-section .team-member-box .team-member-image img {
  border-radius: var(--b-radius);
  width: 100%;
  height: auto;
}
.team-section .team-member-box .team-member-info .tm-title {
  margin-bottom: 8px;
}

/* TRAINING CALENDAR PAGE */
.training-calendar-section {
  padding: 100px 0 40px 0;
}
.training-calendar-section .filter-wrapper{
  margin-bottom: 20px;
}
.training-calendar-section .calendar-title {
  margin-bottom: 0;
}
#filterCalendar {
	gap: 30px;
}
.training-calendar-section #filterCalendar .custom-select {
  width: 270px;
}
.training-calendar-section .training-calendar {
  border-radius: var(--b-radius);
  background-color: #fff;
  /* max-width: 1435px; */
  max-height: 842px;
  overflow: auto;
}
.training-calendar-section .training-calendar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
/* Track */
.training-calendar-section .training-calendar::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
/* Handle */
.training-calendar-section .training-calendar::-webkit-scrollbar-thumb {
  background: #d2d2d2; 
}
/* Handle on hover */
.training-calendar-section .training-calendar::-webkit-scrollbar-thumb:hover {
  background: #9f9f9f; 
}
.training-calendar-section .training-calendar .calendar-top {
  padding: 30px 0 30px 40px;
  width: 1435px;
  border-bottom: 1px solid #ACACAC;
}
.training-calendar-section .training-calendar .calendar-course-row {
  padding: 22px 0px 22px 40px;
  width: 1435px;
}
.training-calendar-section .training-calendar .calendar-course-row:not(:last-child) {
  border-bottom: 1px solid #ACACAC;
}
.training-calendar-section .training-calendar .title-clmn {
  flex: 0 0 394px;
  padding-right: 20px;
}
.training-calendar-section .training-calendar .field-clmn {
  flex: 0 0 230px;
  padding-right: 20px;
}
.training-calendar-section .training-calendar .place-clmn {
  flex: 0 0 215px;
  padding-right: 20px;
}
.training-calendar-section .training-calendar .level-clmn {
  flex: 0 0 254px;
  padding-right: 20px;
}
.training-calendar-section .training-calendar .date-clmn {
  flex: 0 0 300px;
  padding-right: 40px;
}
.training-calendar-section .training-calendar .course-data .course-info-icon {
  margin-left: 0;
}
.training-calendar-section .training-calendar .course-data .course-info-icon img {
  height: auto;
  max-width: fit-content;
}
.training-calendar-section .training-calendar .course-data .course-info-title {
  font-size: var(--fluid-sm);
}
.download-calendar-pdf {
  margin-top: 30px;
}
.faq_section {
  padding: 0 0 140px 0;
}
.faq-wrapper {
  background-color: #fff;
  padding: 60px 120px 100px 120px;
  border-radius: var(--b-radius);
}
.accordion__title {	
	width: 100%;
  border: 0;
  outline: 0;
  box-shadow: none;
  border-bottom: 1px solid var(--red);
  background-color: transparent;
  display: block;
  border-radius: 0 !important;
	cursor: pointer;
  position: relative;
	padding: 40px 105px 10px 0;
}
.accordion__title h5 {
  font-size: var(--fluid-h3);
  margin-bottom: 0;
  transition: all .3s ease-in-out;
}
.accordion__title.active h5 {
  font-size: var(--fluid-h3);
  margin-bottom: 0;
  color: #9C9CA9;
}
.accordion__title::before {
  content: '';
  position: absolute;
  bottom: 18px;
  right: 40px;
  width: 25px;
  height: 25px;
  background-image: url('../images/arrow-btn.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  transition: .3s ease-in-out;
	filter: brightness(1);
  opacity: 1;
}
.accordion__title.active::before {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
	filter: grayscale(1) invert(61%) sepia(1%) saturate(2734%) hue-rotate(202deg) brightness(130%) contrast(89%);
}
/* .accordion__title:not(:first-child) {
    margin-top: 30px;
} */
.accordion__content {
	font-size: var(--fs-20);
  padding: 60px 0 20px 0;
}
.accordion__content:not(.active) {
  display: none;
}

/* EXPERTISE & SERVICES PAGE */
.service-expertise-section {
  padding: 100px 0 140px 0;
}
.service-expertise-section .sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 180px;
}
/* .service-expertise-section .accordion {
  margin-top: 83px;
} */
.service-expertise-section .underline-title {
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 130px;
}
.service-expertise-section .underline-title:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 220px;
  height: 5px;
  background-color: var(--red);
}
.service-expertise-section .images-wrapper {
  max-width: 560px;
  position: relative;
}
.service-expertise-section .images-wrapper::before {
  content: '';
  position: absolute;
  width: 234px;
  height: 234px;
  border-radius: 100%;
  background: linear-gradient(63.37deg, rgba(255, 29, 29, 0.6) 7.93%, rgba(255, 29, 29, 0) 86.86%);
  right: -70px;
  bottom: -40px;
}
.service-expertise-section .images-wrapper::after {
  content: '';
  position: absolute;
  width: 63px;
  height: 63px;
  border-radius: 100%;
  background: linear-gradient(63.37deg, rgba(255, 29, 29, 0.6) 7.93%, rgba(255, 29, 29, 0) 86.86%);
  top: -63px;
  left: 40px;
}
.service-expertise-section .changing-image {
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
  border-radius: 100%;
  overflow: hidden;
}
.service-expertise-section .changing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-in-out;
}
.service-expertise-section .changing-image img.active {
  opacity: 1;
  visibility: visible;
}

/* PARTNERS PAGE */
.partners-section {
  padding: 140px 0;
}
.partners-section .partners-section-info {
  margin: 0 auto;
  margin-bottom: 120px;
  text-align: center;
}
.partners-section .partner-logo-wrapper {
  margin-bottom: 40px;
  background-color: #fff;
  border-radius: var(--b-radius);
  padding: 100px;
}
.partners-section .partner-logo-wrapper .logo-wrap {
  margin: 40px 0;
  mix-blend-mode: darken;
}
.partners-section .partner-logo-wrapper .logo-wrap img {
  max-height: 80px;
  height: auto;
}

/* CAREERS & CONTACT PAGE */
.careers-section {
  padding: 140px 0;
}
.careers-section .careers-top-info {
 margin-bottom: 100px;
}
.company-location-section {
  padding-bottom: 140px;
}
.company-location-section .location-box {
  padding: 60px 40px;
  background-color: #fff;
  border-radius: var(--b-radius);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ABOUT PAGE */
.round-image-wrapper {
  max-width: 600px;
  position: relative;
}
.round-image-wrapper::before {
  content: '';
  position: absolute;
  width: 234px;
  height: 234px;
  border-radius: 100%;
  background: linear-gradient(63.37deg, rgba(255, 29, 29, 0.6) 7.93%, rgba(255, 29, 29, 0) 86.86%);
  right: 0;
  bottom: -50px;
  z-index: 1;
  mix-blend-mode: multiply;
}
.round-image-wrapper::after {
  content: '';
  position: absolute;
  width: 63px;
  height: 63px;
  border-radius: 100%;
  background: linear-gradient(63.37deg, rgba(255, 29, 29, 0.6) 7.93%, rgba(255, 29, 29, 0) 86.86%);
  top: -0;
  left: 0;
  z-index: 1;
  mix-blend-mode: multiply;
}
.round-image {
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
  border-radius: 100%;
  overflow: hidden;
}
.round-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.classroom-section {
  padding: 180px 0 0 0;
}
.classroom-section .round-image-wrapper {
  margin-left: auto;
}
.classroom-section .round-image-wrapper::after {
  display: none;
}
.renowned-section {
  padding: 180px 0;
}
.renowned-section .round-image-wrapper::after {
  top: 94px;
  left: 23px;
}
.renowned-section .round-image-wrapper::before {
  right: auto;
  left: 0;
}

.three-i-section {
  overflow: hidden;
  padding: 160px 0;
}
.three-i-model {
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
  margin: 0 auto;
}
.three-i-model .model__circle {
  border: 1px solid #282828;
  border-radius: 50%;
}
.three-i-model .planet {
  width: 78px;
  height: 78px;
  background-color: #ff1d1d;
  border-radius: 50%;
  position: absolute;
  padding: 15px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.three-i-model .planet:before {
  content: "";
  width: 75px;
  height: 75px;
  border: 1px solid #ff1d1d;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: 0.3s ease-in-out;
}
.three-i-model .planet.active:before,
.three-i-model .planet:hover:before {
  width: 120px;
  height: 120px;
  border: 1px solid #282828;
}
.three-i-model .planet:after {
  content: attr(data-tooltip);
  position: absolute;
  top: -70px;
  left: 50%;
  text-transform: uppercase;
  font-size: 26px;
  width: auto;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  opacity: 0;
  transition: 0.2s ease-in-out;
}
.three-i-model .planet:hover:after {
  opacity: 1;
}
.three-i-model .planet.active:after {
  opacity: 1;
}
.three-i-model .planet.active {
  background-color: #ff1d1d;
}
.three-i-model .planet:hover {
  background-color: #ff1d1d;
}
.three-i-model .planet .planet__icon {
  width: 100%;
}
.three-i-model .planet .planet__info {
  display: none;
}
.three-i-model .three-i-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 100px 50px;
  background-color: #fff;
  border: 2px solid #ff1d1d;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}
.three-i-model .three-i-modal__content.active {
  opacity: 1;
  pointer-events: all;
}
.three-i-model .three-i-modal__content .close--modal {
  width: 50px;
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
.three-i-model .three-i-modal__content .planet__info {
  display: block;
}
.three-i-model .three-i-model--outer__circle {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: orb 350s linear infinite;
  animation: orb 350s linear infinite;
}
.three-i-model .three-i-model--outer__circle .outer__circle--planet {
  left: 10px;
  bottom: 130px;
  -webkit-animation: reverse-orb 350s linear infinite;
  animation: reverse-orb 350s linear infinite;
}
.three-i-model .three-i-model--middle__circle {
  width: 66%;
  height: 0;
  padding-bottom: 66%;
  position: absolute;
  top: calc(50% - 225px);
  left: calc(50% - 228px);
  -webkit-animation: orb 200s linear infinite;
  animation: orb 200s linear infinite;
}
.three-i-model .three-i-model--middle__circle .middle__circle--planet {
  left: 70px;
  top: 0px;
  -webkit-animation: reverse-orb 200s linear infinite;
  animation: reverse-orb 200s linear infinite;
}
.three-i-model .three-i-model--inner__circle {
  width: 32%;
  height: 0;
  padding-bottom: 32%;
  position: absolute;
  top: calc(50% - 110px);
  left: calc(50% - 112px);
  -webkit-animation: orb 100s linear infinite;
  animation: orb 100s linear infinite;
}
.three-i-model .three-i-model--inner__circle .inner__circle--planet {
  right: 0px;
  bottom: 150px;
  -webkit-animation: reverse-orb 100s linear infinite;
  animation: reverse-orb 100s linear infinite;
}
.three-i-model .model__circle.paused {
  -webkit-animation-play-state: paused !important;
  -moz-animation-play-state: paused !important;
  -o-animation-play-state: paused !important;
  animation-play-state: paused !important;
}
.three-i-model .model__circle.paused .planet {
  -webkit-animation-play-state: paused !important;
  -moz-animation-play-state: paused !important;
  -o-animation-play-state: paused !important;
  animation-play-state: paused !important;
}
.three-i-model .moon {
  width: 30px;
  height: 30px;
  background-color: #282828;
  border-radius: 50%;
  position: absolute;
}
.three-i-model .three-i-model--outer__circle .outer__circle--moon {
  right: 25px;
  top: 165px;
}
.three-i-model .three-i-model--middle__circle .middle__circle--moon {
  right: 70px;
  bottom: 32px;
}
.three-i-model .three-i-model--inner__circle .inner__circle--moon {
  left: 15px;
  top: 170px;
}
@-webkit-keyframes orb {
  from {
      transform: rotate(0);
  }
  to {
      transform: rotate(-360deg);
  }
}
@keyframes orb {
  from {
      transform: rotate(0);
  }
  to {
      transform: rotate(-360deg);
  }
}
@-webkit-keyframes reverse-orb {
  from {
      transform: rotate(0);
  }
  to {
      transform: rotate(360deg);
  }
}
@keyframes reverse-orb {
  from {
      transform: rotate(0);
  }
  to {
      transform: rotate(360deg);
  }
}

.business-section {
  overflow: hidden;
  position: relative;
}
.business-section .business-section-content {
  width: 100%;
  height: 100%;
  z-index: 3;
  position: relative;
  padding: 165px 0;
}
.business-section .business-section-content .business-section-content--text {
  max-width: 700px;
  margin-left: auto;
}
.business-section .business-section-image {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 58%;
  height: 100%;
  overflow: hidden;
}
.business-section .business-section-image img {
  width: 100%;
  height: 100%;
  object-position: top left;
  object-fit: cover;
}
.business-section .business--circle {
  top: 50%;
  right: -370px;
  transform: translateY(-50%);
  position: absolute;
  width: 1466px;
  height: 1466px;
  background-color: #fff;
  border-radius: 100%;
  z-index: 2;
}
.legal-section {
  padding: 300px 0 140px 0;
}
.popup-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.7);
	z-index: 1000;
	overflow-y: auto;
	padding: 100px 30px;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease-in-out;
}
.popup-modal.active {
	opacity: 1;
	visibility: visible;
}
.popup-box {
	background-color: #fff;
	border-radius: var(--b-radius);
	padding: 40px;
	position: relative;
	max-width: 575px;
	margin-left: auto;
	margin-right: auto;
}
.popup-box .close_modal {
	position: absolute;
    top: -15px;
    right: -15px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    background-color: red;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.member-info {font-size:14px;}

.course-modules{
    margin-bottom: 30px;
}
.course-modules h4{

    padding: 15px 20px;
    background: #e4e4e4;
    border-radius: 6px;
    margin: 0 -20px 20px;
}
.course-modules div p{
    margin: 0 0 15px;
}





















