@media (min-width: 1600px) {
  .container-fluid {
    padding-left: 100px;
    padding-right: 100px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
}

.btn.btn-primary,
.btn.btn-secondary {
  border-radius: 99px;
  font-family: Syncopate, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
}

.btn.btn-transparent {
  border: 1px solid #95a3a8;
  border-radius: 99px;
  font-family: Syncopate, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-left: 25px;
  padding-right: 25px;
}

.btn.btn-arrow {
  align-items: center;
  justify-content: center;
}

.btn.btn-arrow:after {
  content: "\f105";
  font-family: "Font Awesome 6 Free", sans-serif;
  padding-left: 10px;
  font-size: 18px;
  font-weight: 700;
}

.header {
  position: relative;
  z-index: 99;
}

.header-nav li a {
  border: 1px solid transparent;
  overflow: hidden;
}

.header-nav li a:hover,
.header-nav li.active a {
  border: 1px solid var(--color-primary);
}

.header-nav li a::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: var(--color-primary);
  clip-path: circle(0% at 50% calc(50%));
  transition: clip-path 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.header-nav li a:hover::before,
.header-nav li.active a::before {
  clip-path: circle(100% at 50% 50%);
}

.header-nav li:last-child a {
  border: 1px solid #052732;
}

.header-nav li:last-child a:hover,
.header-nav li.active:last-child a {
  border: 1px solid var(--color-primary);
}

.header-nav li:last-child a:after {
  content: "\f105";
  font-family: "Font Awesome 6 Free", sans-serif;
  padding-left: 10px;
  font-size: 18px;
  font-weight: 900;
}

.header-nav .dropdown li a {
  border-radius: 0;
}

.header-nav .dropdown li:last-child a {
  border: 0;
}

.header-nav li:last-child a:after {
  display: none;
}

.header-nav .dropdown li a {
  border-radius: 0;
}

.slide .slide-text {
  background-color: transparent;
  bottom: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 30px;
  text-align: center;
  z-index: 10;
  width: 100%;
  text-transform: uppercase;
}

.slide .slide-text h2 {
  font-size: 65px;
  color: #fff;
  font-weight: 700;
}

.slide .slide-text h5 {
  font-size: 25px;
  color: #fff;
  font-weight: 700;
}

.oasis-training {
  background-color: var(--color-secondary);
  color: #fff;
  padding: 100px 0;
}

.oasis-training .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

.oasis-training h2 {
  font-size: 100px;
}

.scroll-content {
  position: relative;
  width: 100vw;
  height: 100px;
  max-width: 100%;
  overflow-x: hidden;
}

.scroll-content-inner {
  font-size: 100px;
  line-height: 100px;
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: scrollRightToLeft 32s linear infinite;
}

@keyframes scrollRightToLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.shadow-md {
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.175) !important;
}

.apprenticeship {
  padding-top: 150px;
  position: relative;
}

.apprenticeships-overlay {
  background-color: var(--color-primary);
  clip-path: polygon(40% 0, 85% 0, 70% 75%, 2% 75%, 0 30%);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.apprenticeship h2 {
  margin-bottom: 50px;
}

.apprenticeship h4 {
  font-family: Montserrat, sans-serif;
  text-transform: none;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 30px;
}

.apprenticeship .img-carve {
  clip-path: polygon(100% 0, 100% 85%, 25% 100%, 0 85%, 0 0);
}

.apprenticeship .button-arrow {
  margin-bottom: 15px;
}

.apprenticeship .shadow {
  transition: all 0.5s ease-in-out;
  transform: scale(0.98);
}

.apprenticeship .shadow:hover {
  /*background-color: #01509F;*/
  transform: scale(1.13);
}

.stand-course {
  margin: 250px 0;
  position: relative;
}

.stand-course h2 {
  margin-bottom: 100px;
}

.stand-course h3 {
  font-size: 40px;
  margin-bottom: 30px;
}

.stand-alone-list {
  margin-bottom: 250px;
}

.stand-alone-list-inner {
  position: relative;
  z-index: 2;
}

.stand-course-overlay {
  transition: all 0.5s ease-in-out;
}

.stand-alone-content {
  overflow: hidden;
  background-color: #fff;
  padding: 50px 30px;
  background-image: url("../img/shadow.png");
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100% auto;
}

.stand-alone-content .number {
  font-size: 30px;
}

.stand-alone-content .stand-course-thumb {
  position: absolute;
  top: 0;
  right: 220px;
  visibility: hidden;
  max-height: 350px;
  overflow: hidden;
}

.stand-alone-content .button-arrow {
  visibility: hidden;
}

.stand-alone-list .stand-alone-list-inner:hover .stand-alone-content {
  background-color: transparent;
}

.stand-alone-list .stand-alone-list-inner.last:hover .stand-alone-content {
  background: none;
}

.stand-alone-list .stand-alone-list-inner:hover .stand-course-overlay {
  background-color: var(--color-primary);
  position: absolute;
  width: 100%;
  height: 500px;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 60%);
  top: -50px;
}

.stand-alone-list .stand-alone-list-inner:hover .stand-alone-content .stand-course-thumb,
.stand-alone-list .stand-alone-list-inner:hover .stand-alone-content .button-arrow {
  visibility: visible;
}

.we-support-inner {
  margin-top: -180px;
  z-index: 1;
}

.we-support .img-carve {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

.we-support-inner-overlay {
  background-color: var(--color-primary);
  clip-path: polygon(25% 0, 85% 0, 75% 100%, 0 70%);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.we-support-text {
  padding: 150px 160px 200px;
}

.button-arrow {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.button-arrow a:after {
  content: "";
  width: 35px;
  height: 35px;
  border: 1px solid #0a0a0a;
  position: absolute;
  border-radius: 99px;
  right: -10px;
  top: -3px;
  z-index: -1;
}

.button-arrow:after {
  content: "";
  width: 35px;
  height: 35px;
  border: 1px solid #0a0a0a;
  position: absolute;
  border-radius: 99px;
  right: -10px;
  top: -3px;
  z-index: -1;
  transition: clip-path 1s cubic-bezier(0.65, 0, 0.35, 1);
  clip-path: circle(0% at 50% calc(50%));
}

.button-arrow:hover a:after {
  border: 1px solid #1acbff;
}

.button-arrow:hover:after {
  background-color: #1acbff;
  border: 1px solid #1acbff;

  clip-path: circle(100% at 50% 50%);
  transition: clip-path 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.employment-skills {
  margin: 250px 0;
}

.about-training {
  margin: 100px 0;
}

.overlay-about-training {
  background-color: #f5f3f1;
  clip-path: polygon(30% 15%, 80% 15%, 65% 90%, 0 60%);
  /*clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);*/
  height: 100%;
  position: absolute;
  top: 110px;
  left: 0;
  width: 100%;
  z-index: -1;
}

.about-training .mt-n1 {
  margin-top: -3.5rem !important;
  z-index: -1;
  position: relative;
}

.about-with-us {
  position: relative;
  padding: 200px 0 250px;
  margin-bottom: -150px;
}

.about-with-us-overlay {
  background-color: #f5f3f1;
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.testimonials-slide {
  margin: 100px 0;
  padding: 50px 0;
}

.testimonial-overlay {
  background-color: var(--color-primary);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
  height: 100%;
  position: absolute;
  top: 110px;
  left: 0;
  width: 100%;
  z-index: -1;
}

.testimonial-item {
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
}

/* vertically middle testimonial button */

.testimonials-slide .testimonial-button-prev,
.testimonials-slide .testimonial-button-next {
  position: absolute;
  top: 70%;
  transform: translateY(-70%);
}

.testimonials-slide .testimonial-button-prev {
  left: -50px;
}

.testimonials-slide .testimonial-button-next {
  right: -50px;
}

.testimonials-slide .testimonial-button-prev img {
  transform: rotate(180deg);
}

.testimonials-slide .testimonial-button-next:after,
.testimonials-slide .testimonial-button-prev:after {
  content: "";
  width: 35px;
  height: 35px;
  border: 1px solid #0a0a0a;
  position: absolute;
  border-radius: 99px;
  right: -10px;
  top: -3px;
  z-index: -1;
  transition: each-in-out 0.5s;
}

.testimonials-slide .testimonial-button-prev:after {
  left: -7px;
  right: auto;
}

.testimonials-slide .testimonial-button-next:hover:after,
.testimonials-slide .testimonial-button-prev:hover:after {
  background-color: #ffffff;
}

.page-banner {
  padding: 100px 0;
}

.page-banner-overlay {
  background-color: #f5f3f1;
  clip-path: polygon(30% 0, 80% 0, 55% 75%, 0 50%);
  height: 100%;
  position: absolute;
  top: -220px;
  left: 0;
  width: 100%;
  z-index: -1;
}

.page-banner h1 {
  font-size: 120px;
  margin-bottom: -80px;
}

.page-banner .mt-n1 {
  margin-top: -3.5rem !important;
  z-index: -1;
  position: relative;
}

.who-can-start .number {
  font-size: 25px;
  font-weight: 500;
  position: relative;
  width: 60px;
  text-align: center;
  margin-bottom: 30px;
}

.who-can-start .number .number-overlay {
  background-color: var(--color-primary);
  clip-path: polygon(0 50%, 100% 0, 100% 84%, 0% 100%);
  height: 100%;
  position: absolute;
  left: 0;
  width: 60px;
  top: 15px;
  z-index: -1;
}

.latest-vacancies {
  background-color: #f5f3f1;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0% 100%);
  padding-top: 150px;
  padding-bottom: 150px;
}

.benefits-of-skills {
  margin: 100px 0;
  position: relative;
}

.benefits-of-skills-overlay {
  background-color: #f5f3f1;
  clip-path: polygon(50% 20%, 80% 20%, 50% 100%, 5% 90%, 0 70%);
  height: 100%;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -50px;
  z-index: -1;
}

.services-box {
  margin: 100px 0;
}

.services-box h5 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 30px;
  font-family: Montserrat, sans-serif;
  text-transform: none;
}

.services-box .card {
  cursor: pointer;
}

.services-box .card:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: #e8e3dd;  */
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 30%,
      #f5f5f5 50%,
      #e8e3dd 100%);
  z-index: 1;
  transition: ease-in-out 0.5s;
}

.services-box .card:hover:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 30%,
      #1acbff 50%,
      #1acbff 100%);
  z-index: 1;
}

.services-box .card .card-body {
  position: relative;
  z-index: 2;
}

.services-box .button-arrow a:after {
  background: #1acbff;
  border: 1px solid #1acbff;
}

.services-box .button-arrow:hover:after {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  clip-path: circle(100% at 50% 50%);
  transition: clip-path 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.stand-alone-courses {
  position: relative;
  padding-top: 100px;
}

.stand-alone-courses-overlay {
  background-color: #f5f3f1;
  clip-path: polygon(0 25%, 70% 0, 80% 70%, 25% 70%);
  height: 100%;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  z-index: -1;
}

.stand-course .btn {
  border: 1px solid #8b9b9f;
  width: 100%;
  color: #334f57;
  font-weight: 400;
  font-size: 35px;
  padding: 25px;
}

.stand-course .btn:hover {
  color: #ffffff;
}

.stand-course .btn:after {
  font-size: 30px;
}

.contact-form .form-control:focus {
  box-shadow: none;
}

.contact-form .form-control {
  border: 0;
  border-bottom: 2px solid #000;
  border-radius: 0;
  padding: 10px 0;
  text-transform: uppercase;
  color: #052732;
}

.contact-form ::placeholder {
  color: #052732;
}

.partner {
  padding: 100px 0;
}

.partner h2 {
  margin-bottom: 50px;
}

.partner .swiper-wrapper {
  transition-timing-function: linear;
}

.footer {
  background-color: #000;
  clip-path: polygon(0 150px, 100% 0, 100% 100%, 0% 100%);
  padding-top: 150px;
}

.social .fa-brands {
  border-radius: 0;
  width: 25px;
  height: 25px;
  font-size: 16px;
  line-height: 25px;
}

.download-card {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}

.download-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.key-policies .card-body {
  display: flex;
  flex-direction: column;
}

/*@media (min-width:320px) {*/
/*    h2 {font-size: 25px;}*/
/*    .oasis-training h2 {font-size: 40px;}*/
/*    .stand-alone-content .stand-course-thumb img {width: 100%;}*/
/*    .scroll-content-inner {font-size: 80px;}*/
/*    .apprenticeship h2 {font-size:22px;}*/
/*    .apprenticeship h4 {font-size: 18px;}*/
/*    .stand-course h3 {font-size: 15px;}*/
/*    .stand-alone-content .number {font-size: 14px;}*/
/*    .header-main .navbar {max-width: 320px}*/
/*    .header-nav li a {white-space: normal;}*/
/*    .we-support-text {padding: 15px;}*/
/*    .testimonials-slide .testimonial-button-prev,*/
/*    .testimonials-slide .testimonial-button-next {display: none;}*/
/*    .partner h2 {font-size: 22px;}*/
/*    .footer-middle h3 {font-size: 20px;}*/
/*    .footer {clip-path: polygon(0 80px, 100% 0, 100% 100%, 0% 100%);padding-top: 80px;font-size: 12px;}*/
/*    .footer-bottom {font-size: 12px;}*/

/*    .btn.btn-primary, .btn.btn-secondary {font-size: 12px;padding: 5px 15px;}*/
/*    .btn.btn-arrow:after {font-size: 12px;}*/

/*}*/

@media (max-width: 1750px) {
  .header-nav li a {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 13px;
  }

  .apprenticeship h4 {
    font-size: 20px;
  }
}

@media (max-width: 1600px) {
  .employment-skills {
    margin: 150px 0;
  }

  .testimonials-slide .testimonial-button-prev {
    left: 0;
    z-index: 1;
  }

  .testimonials-slide .testimonial-button-next {
    right: 0;
    z-index: 1;
  }

  .footer-bottom {
    font-size: 14px;
  }
}

@media (max-width: 1400px) {
  h2 {
    font-size: 60px;
  }

  h3 {
    font-size: 40px;
  }

  .header-nav li a {
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 400;
  }

  .slide .slide-text h2 {
    font-size: 50px;
  }

  .oasis-training h2 {
    font-size: 80px;
  }

  .scroll-content-inner {
    font-size: 80px;
    line-height: 80px;
  }

  .apprenticeship h4 {
    font-size: 16px;
  }

  .apprenticeship {
    padding-top: 100px;
  }

  .stand-course {
    margin: 150px 0;
  }

  .stand-alone-list .stand-alone-list-inner:hover .stand-course-overlay {
    height: 400px;
  }

  .stand-alone-content .stand-course-thumb img {
    height: 300px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .page-banner h1 {
    font-size: 70px;
    margin-bottom: -50px;
  }
}

@media (max-width: 1199px) {
  h2 {
    font-size: 50px;
  }

  .header-nav li a {
    font-weight: 600;
    font-size: 16px;
    white-space: normal;
    line-height: 22px;
    padding: 10px;
  }

  .header-nav li:last-child a {
    border: 0;
  }

  .header-nav .dropdown ul {
    margin: 0;
    padding: 0 10px;
  }

  .stand-course h3 {
    font-size: 30px;
  }

  .about-training .mt-n1 {
    margin-top: -2.5rem !important;
  }

  .footer-middle h3 {
    font-size: 25px;
  }

  .who-can-start .w-50 {
    width: 100% !important;
  }

  .latest-vacancies h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .oasis-training {
    padding: 50px 0;
  }

  .oasis-training h2 {
    font-size: 60px;
  }

  .scroll-content-inner {
    font-size: 60px;
    line-height: 60px;
  }

  .stand-alone-content .stand-course-thumb {
    right: 100px;
  }

  .stand-title {
    width: 50%;
  }

  .stand-alone-content .stand-course-thumb img {
    height: 250px;
  }

  .who-can-start h3 {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 40px;
  }

  .slide .slide-text h5 {
    font-size: 20px;
  }

  .slide .slide-text h2 {
    font-size: 30px;
  }

  .btn.btn-primary,
  .btn.btn-secondary {
    font-size: 14px;
  }

  .btn.btn-arrow:after {
    font-size: 14px;
  }

  .oasis-training h2 {
    font-size: 45px;
  }

  .scroll-content-inner {
    font-size: 45px;
    line-height: 45px;
  }

  .apprenticeships-overlay {
    clip-path: polygon(30% 0, 85% 0, 80% 75%, 30% 75%, 0 30%);
  }

  .stand-course h2 {
    margin-bottom: 30px;
  }

  .stand-course h3 {
    font-size: 20px;
  }

  .stand-alone-list .stand-alone-list-inner:hover .stand-course-overlay {
    height: 300px;
    top: -15px;
  }

  .stand-alone-content {
    padding: 30px;
  }

  .stand-alone-content .stand-course-thumb {
    right: 80px;
  }

  .stand-alone-content .stand-course-thumb img {
    height: 150px;
  }

  .stand-alone-content .number {
    font-size: 18px;
  }

  .we-support-text {
    padding: 50px;
    text-align: center;
  }

  .we-support-inner-overlay {
    clip-path: polygon(15% 0, 90% 0, 90% 100%, 0 85%);
  }

  .we-support-inner {
    margin-top: -80px;
  }

  .overlay-about-training {
    clip-path: polygon(15% 15%, 100% 25%, 90% 90%, 0 82%);
  }

  .testimonials-slide .testimonial-button-prev,
  .testimonials-slide .testimonial-button-next {
    position: absolute;
    top: auto;
    transform: none;
  }

  .testimonials-slide .testimonial-button-next {
    right: 8%;
  }

  .testimonials-slide .testimonial-button-prev {
    left: 8%;
  }

  .footer {
    clip-path: polygon(0 100px, 100% 0, 100% 100%, 0% 100%);
  }

  .page-banner {
    padding: 50px 0;
  }

  .page-banner h1 {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .services-box {
    margin: 50px 0;
  }

  .services-box h5 {
    font-size: 20px;
  }

  .about-with-us {
    padding: 100px 0 150px;
  }

  .about-with-us-overlay {
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 16px;
  }

  h5 {
    font-size: 14px;
  }

  .slide .slide-text h5 {
    font-size: 12px;
  }

  .slide .slide-text h2 {
    font-size: 18px;
  }

  .btn.btn-primary,
  .btn.btn-secondary {
    font-size: 12px;
    padding: 5px 10px;
  }

  .btn.btn-arrow:after {
    font-size: 12px;
  }

  .oasis-training h2 {
    font-size: 30px;
  }

  .scroll-content {
    height: 40px;
  }

  .scroll-content-inner {
    font-size: 30px;
    line-height: 30px;
  }

  .stand-course h3 {
    margin-bottom: 0;
    font-size: 16px;
  }

  .stand-alone-content .stand-course-thumb {
    right: 20px;
    top: 80px;
  }

  .stand-course .btn {
    padding: 15px;
    font-size: 18px;
  }

  .footer-middle {
    font-size: 12px;
  }

  .footer-middle h3 {
    font-size: 20px;
  }

  .page-banner h1 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .who-can-start h3 {
    font-size: 20px;
  }

  .latest-vacancies h2 {
    font-size: 25px;
  }
}