@import url("https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Roboto:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
html {
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  color: #333;
  scroll-behavior: smooth;
  font-size: 14px; }
  html body {
    overflow-y: hidden;
    font-family: "Roboto", serif;
    margin: 0;
    padding: 0;
    color: #333;
    overflow-x: hidden !important;
    scroll-behavior: smooth; }
    html body * {
      font-family: "Roboto", serif; }
    html body h1,
    html body h2,
    html body h3,
    html body h4,
    html body h5,
    html body h6 {
      color: #333;
      margin-bottom: 0;
      font-family: "Roboto", serif; }
    html body p,
    html body a,
    html body ul li {
      margin-bottom: 0;
      color: rgba(51, 51, 51, 0.65); }
    html body input,
    html body button,
    html body textarea,
    html body label {
      margin-bottom: 0; }
    html body a {
      text-decoration: none !important;
      color: #333; }
      html body a:hover {
        color: #333; }
    html body ul {
      padding: 0;
      margin: 0;
      list-style-type: none; }
    html body img {
      width: 100%;
      max-width: 100%; }
    html body .btn:active,
    html body .btn:focus,
    html body .form-control:active,
    html body .form-control:focus {
      box-shadow: none; }
    html body button:focus {
      outline: 0; }
    html body textarea {
      resize: none; }
    html body .contains-everything {
      position: relative;
      min-height: 100vh; }
    html body .btn {
      cursor: pointer; }
    html body .marg {
      margin-top: 70px;
      margin-bottom: 70px; }
    html body .mart {
      margin-top: 70px; }
    html body .marb {
      margin-bottom: 70px; }
    html body .pad {
      padding-top: 70px;
      padding-bottom: 70px; }
    html body .padb {
      padding-bottom: 70px; }
    html body .padt {
      padding-top: 70px; }
    html body .max-800 {
      max-width: 800px; }
    html body input[type=number]::-webkit-inner-spin-button,
    html body input[type=number]::-webkit-outer-spin-button {
      appearance: none;
      margin: 0; }

.custom_btn {
  height: 38px;
  line-height: 38px;
  padding: 0 2rem;
  border-radius: 30px;
  background: linear-gradient(to right bottom, #f05624, rgba(240, 86, 36, 0.8));
  color: #fff;
  letter-spacing: 0.65px; }
  .custom_btn.w {
    background: transparent;
    color: #f05624;
    line-height: 36px;
    border: 2px solid #f05624; }
    .custom_btn.w:hover {
      color: #f05624; }
  .custom_btn.sm {
    height: 32px;
    line-height: 32px;
    font-size: 13px;
    border-radius: 30px; }
  .custom_btn:hover {
    color: #fff; }
  @media (max-width: 375px) {
    .custom_btn.open-popper {
      padding: 0 10px; } }

.btn.btn-link {
  color: #f05624; }

.contain {
  margin: 0 7.5%; }

.title {
  font-size: 24px;
  font-weight: bold;
  font-family: "Roboto", serif; }

.subtitle {
  font-size: 18px;
  font-weight: 400;
  font-family: "Roboto", serif; }

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  height: 0;
  width: 0;
  opacity: 0; }

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666; }

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff; }

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #f05624;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease; }

[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0); }

[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1); }

.bg {
  background: #effcfc; }

.page-title {
  height: 200px;
  background: linear-gradient(to right bottom, #f05624, rgba(240, 86, 36, 0.8)), url(../images/pattern.jpg) no-repeat;
  background-size: cover;
  background-position: top;
  display: flex;
  align-items: center; }
  .page-title h1 {
    color: #fff;
    font-weight: bold;
    font-size: 50px; }

.form-group {
  margin-bottom: 0; }

header {
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  z-index: 2;
  position: relative; }
  header .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px; }
    header .wrapper .logo {
      height: 60px; }
      header .wrapper .logo img {
        height: 100%;
        max-width: 180px;
        object-fit: contain; }
    header .wrapper .menu ul {
      display: flex;
      align-items: center;
      justify-content: flex-end; }
      header .wrapper .menu ul li a {
        display: block;
        font-weight: bold;
        font-size: 15px;
        padding: 0 1.25rem;
        transition: all 0.2 ease-in-out; }
        header .wrapper .menu ul li a:hover, header .wrapper .menu ul li a.active, header .wrapper .menu ul li a.num {
          color: #f05624; }
        header .wrapper .menu ul li a.var {
          font-size: 13px; }
          header .wrapper .menu ul li a.var:hover {
            color: #fff; }

.main .wrapper .courses-wrap {
  flex: 1.5; }
  .main .wrapper .courses-wrap .courses .title-area {
    padding: 1.35rem 1.25rem;
    background: linear-gradient(to right bottom, rgba(51, 51, 51, 0.1), rgba(51, 51, 51, 0.15));
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media (max-width: 767px) {
      .main .wrapper .courses-wrap .courses .title-area {
        flex-wrap: wrap; }
        .main .wrapper .courses-wrap .courses .title-area .btn {
          margin-top: 10px; } }
    .main .wrapper .courses-wrap .courses .title-area h1 {
      font-size: 17px;
      font-weight: bold;
      color: #333; }
    .main .wrapper .courses-wrap .courses .title-area p {
      color: #333;
      opacity: 0.65;
      font-weight: 300; }
.main .wrapper .img-wrap {
  height: 350px;
  background: url(../images/scalisisafetystatement.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5%; }
  .main .wrapper .img-wrap::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1; }
  .main .wrapper .img-wrap h1 {
    position: relative;
    z-index: 2;
    color: #fff; }
    @media (max-width: 767px) {
      .main .wrapper .img-wrap h1 {
        font-size: 24px; } }
.main .wrapper .courses-row {
  display: flex; }
  .main .wrapper .courses-row .ccolumn.left {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media (max-width: 991px) {
      .main .wrapper .courses-row .ccolumn.left {
        width: 100%; } }
    .main .wrapper .courses-row .ccolumn.left .nav {
      border: 0;
      padding: 0;
      border-radius: 0; }
      .main .wrapper .courses-row .ccolumn.left .nav .nav-link {
        border: 0;
        border-radius: 0;
        padding: 1.35rem 1.25rem;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        background: rgba(0, 0, 0, 0.025); }
        .main .wrapper .courses-row .ccolumn.left .nav .nav-link.active {
          background: linear-gradient(to right bottom, #f05624, rgba(240, 86, 36, 0.75)); }
          .main .wrapper .courses-row .ccolumn.left .nav .nav-link.active * {
            color: #fff; }
        .main .wrapper .courses-row .ccolumn.left .nav .nav-link .text-left h3 {
          font-size: 15px;
          font-weight: 600;
          padding-bottom: 5px; }
        .main .wrapper .courses-row .ccolumn.left .nav .nav-link .text-left p {
          font-size: 14px;
          font-weight: 300; }
        .main .wrapper .courses-row .ccolumn.left .nav .nav-link i {
          width: 30px;
          text-align: right;
          font-size: 20px;
          color: #333;
          opacity: 0.35; }
  .main .wrapper .courses-row .ccolumn.right {
    width: 60%;
    background: rgba(240, 86, 36, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05); }
    @media (max-width: 991px) {
      .main .wrapper .courses-row .ccolumn.right {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        z-index: 9;
        background: #FEF7F4;
        width: 100vw;
        height: 100vh;
        overflow-y: auto; } }
    .main .wrapper .courses-row .ccolumn.right.open {
      display: block; }
    .main .wrapper .courses-row .ccolumn.right .heading-area {
      display: flex;
      align-items: center;
      padding-bottom: 1rem; }
    .main .wrapper .courses-row .ccolumn.right .cbox {
      display: flex;
      padding: 8px 0; }
      .main .wrapper .courses-row .ccolumn.right .cbox .form-check {
        margin-left: -20px; }
    .main .wrapper .courses-row .ccolumn.right .w-60 {
      width: 60%; }
    .main .wrapper .courses-row .ccolumn.right .w-20 {
      width: 20%; }
    .main .wrapper .courses-row .ccolumn.right p, .main .wrapper .courses-row .ccolumn.right label {
      color: #000 !important;
      font-weight: 300 !important;
      font-size: 14px; }
      .main .wrapper .courses-row .ccolumn.right p strong, .main .wrapper .courses-row .ccolumn.right label strong {
        font-weight: bold; }
    .main .wrapper .courses-row .ccolumn.right label {
      padding-left: 6px;
      padding-right: 6px; }
.main .wrapper .support {
  padding: 1.35rem 1.25rem;
  background: linear-gradient(to right bottom, #f05624, rgba(240, 86, 36, 0.675)); }
  .main .wrapper .support h1 {
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    padding-bottom: 8px; }
  .main .wrapper .support p {
    color: #fff;
    opacity: 0.65;
    font-weight: 400; }

.close-slider {
  background: linear-gradient(to right bottom, #f05624, rgba(240, 86, 36, 0.8));
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-left: auto;
  margin-bottom: 30px;
  padding: 0 !important;
  display: none; }
  @media (max-width: 991px) {
    .close-slider {
      display: block; } }
  .close-slider img {
    height: 15px;
    width: 15px;
    object-fit: contain;
    object-position: center;
    filter: invert(1); }

.popper {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  z-index: 10;
  background: rgba(0, 0, 0, 0.35);
  align-items: center;
  justify-content: center;
  display: none; }
  .popper.open {
    display: flex; }
  .popper .close-popper {
    background: linear-gradient(to right bottom, #f05624, rgba(240, 86, 36, 0.8));
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-left: auto;
    margin-bottom: 30px;
    padding: 0 !important;
    display: block; }
    .popper .close-popper img {
      height: 15px;
      width: 15px;
      object-fit: contain;
      object-position: center;
      filter: invert(1); }
  .popper .wrapper {
    background: #fff;
    width: 500px;
    max-width: 95%;
    max-height: 95%;
    border-radius: 1rem; }
    .popper .wrapper h1 {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 1rem; }
    .popper .wrapper .form-grp {
      margin-bottom: 1rem; }
      .popper .wrapper .form-grp label {
        font-size: 13px;
        margin-bottom: 4px;
        text-transform: uppercase; }
      .popper .wrapper .form-grp .form-control {
        height: 50px;
        background: rgba(240, 86, 36, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.1);
        font-size: 16px; }
