@font-face {
  font-family: 'Roboto';
  src: url('webfonts/Roboto-Light.ttf') format('truetype');
  font-weight: 300;
}
@font-face {
  font-family: 'Roboto';
  src: url('webfonts/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Roboto';
  src: url('webfonts/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
}
@font-face {
  font-family: 'Roboto';
  src: url('webfonts/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
}
@keyframes ani-rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes zoominoutsinglefeatured {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}
* {
  box-sizing: border-box;
  font-family: Roboto;
  font-size: 14px;
}
p {
  line-height: 1.8;
  margin: 0;
  color: #919191;
  width: 100%;
}
p strong,
p b {
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  width: 100%;
}
h2 {
  font-size: 32px;
  font-weight: 600;
  font-style: normal;
}
.container {
  width: 100%;
}
.flex-container {
  display: flex;
  margin: auto;
}
body {
  margin: 0;
}
.input-error .icon {
  background-image: linear-gradient(-26deg, #cc2424 -8%, #7f0000 100%) !important;
}
.input-error label {
  color: red!important;
}
.input-error input,
.input-error .phonecode-field,
.input-error select {
  border: 1px solid #fb5050 !important;
}
.input-error .country-code {
  border: none !important;
}
.input-error ::-webkit-input-placeholder {
  /* Edge */
  color: red;
}
.input-error :-ms-input-placeholder {
  /* Edge */
  color: red;
}
.location-hide {
  display: none !important;
}
.pointer {
  cursor: pointer;
}
.heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.heading h2 {
  font-size: 26px;
  color: #00607F;
  position: relative;
  padding-bottom: 18px;
}
.heading h2 span {
  font-size: 26px;
  color: #FEB500;
}
.heading h2:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 22px;
  background-image: url(../img/master/heading-bg.png);
  background-repeat: no-repeat;
  left: 0;
  bottom: -6px;
}
.center-heading h2 {
  text-align: center;
}
.center-heading h2:after {
  background-position: center;
}
.white-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.white-heading h2 {
  font-size: 22px;
  color: #FFF;
  position: relative;
  padding-bottom: 16px;
  margin-right: auto;
  width: fit-content;
  width: -moz-fit-content;
}
.orange-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.orange-heading h2 {
  font-size: 22px;
  color: #FEB500;
  position: relative;
  padding-bottom: 16px;
  margin-right: auto;
  width: fit-content;
  width: -moz-fit-content;
}
.orange-heading h2:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 14px;
  background-image: url(../img/master/white-orange.png);
  background-repeat: no-repeat;
  left: 0;
  bottom: 0;
}
.black-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.black-heading h2 {
  font-size: 22px;
  color: #FFF;
  position: relative;
  padding-bottom: 16px;
  width: auto;
}
.black-heading h2:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 14px;
  background-image: url(../img/master/blue-orange.png);
  background-repeat: no-repeat;
  left: 0;
  bottom: 0;
}
.blue-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.blue-heading h2 {
  font-size: 26px;
  color: #00607F;
  position: relative;
  padding-bottom: 16px;
  width: fit-content;
  width: -moz-fit-content;
}
.blue-heading h2:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 14px;
  background-image: url(../img/master/blue-orange.png);
  background-repeat: no-repeat;
  left: 0;
  bottom: 0;
}
.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.buttons .orange-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  background-image: linear-gradient(-90deg, #FEB500, #FC9701);
  border-radius: 30px;
  text-decoration: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 19px;
  outline: 0;
  border: none;
  cursor: pointer;
}
.buttons .orange-btn img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.buttons .orange-btn:hover {
  background-image: linear-gradient(-90deg, #FC9701, #FEB500);
}
.buttons .blue-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  background-image: linear-gradient(-108deg, #505858 -30%, #00607F 39%);
  border-radius: 30px;
  text-decoration: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 19px;
  outline: 0;
  border: none;
  cursor: pointer;
}
.buttons .blue-btn img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.buttons .blue-btn:hover {
  background-image: linear-gradient(-90deg, #00607F, #505858);
}
.buttons .white-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  border: 2px solid #FFF;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  background: transparent;
  border-radius: 30px;
  text-decoration: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 19px;
  cursor: pointer;
}
.buttons .white-btn img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.enquireSuccess {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  background-color: #FFF;
  box-shadow: 0 0 10px #c1c1c1;
  background-image: url(../img/master/bg-left.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 75px;
}
.enquireSuccess span {
  margin: 7px 0px;
  display: flex;
  text-align: center;
  justify-content: center;
}
.enquireSuccess .text-real {
  font-size: 22px;
  color: #00607F;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.enquireSuccess .enqus {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  text-align: center;
  color: #00607F;
}
.enquireSuccess .enqus a {
  color: #FEB500;
  margin-left: 12px;
}
.enquireSuccess .buttons {
  margin: 1rem 0;
}
.enquireSuccess .buttons i {
  color: #FFF;
  margin-right: 10px;
}
.enquireSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  background-color: #FFF;
  padding: 3rem 2rem;
  background-image: url(../img/master/bg-left.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 75px;
  width: 100%;
  border-radius: 10px;
  z-index: 1;
}
.enquireSection h2 {
  color: #00607F;
  padding-bottom: 1rem;
  font-size: 25px;
  text-align: center;
}
.enquireSection p {
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
}
.enquireSection .note {
  line-height: 1.6;
}
.enquireSection .buttons {
  margin-top: 1rem;
}
.enquireSection .buttons .button-yellow {
  padding: 16px 86px 16px 30px;
}
.enquireSection .buttons .button-yellow:after {
  height: 72px;
}
.enquireSection .note {
  padding-top: 1rem;
}
.enquireSection .note a {
  color: #FC9701;
  font-weight: 700;
}
nav {
  width: 100%;
}
.pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 20px;
  border-radius: 4px;
  width: 100%;
  height: fit-content;
}
.pagination > li {
  display: flex;
  flex-direction: row;
  margin-right: 10px;
  margin-bottom: 1rem;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  padding: 4px 12px;
  margin-left: -1px;
  line-height: 1.8;
  color: #000000;
  text-decoration: none;
  box-shadow: 0 0 8px #e1e1e1;
  font-size: 14px;
  font-weight: 500;
  background: #FFF;
  border-right: 2px solid #FC9701;
}
.pagination > li > a:hover {
  background-color: #FFF;
  box-shadow: 0 0 8px #c0c0c0;
  border-right: 2px solid #00607F;
  font-weight: 600;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  background: linear-gradient(to bottom right, #00607F, #505858);
  color: #FFF;
  border-right: none;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  background: linear-gradient(to bottom right, #00607F, #505858);
  color: #FFF;
  border-right: none;
}
.pagination > .disabled > a,
.pagination > .disabled > span,
.pagination > .disabled > a:focus,
.pagination > .disabled > span:focus,
.pagination > .disabled > a:hover,
.pagination > .disabled > span:hover {
  cursor: not-allowed;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:focus,
.pagination > .active > span:focus,
.pagination > .active > a:hover,
.pagination > .active > span:hover {
  z-index: 1;
  color: #000000;
  cursor: default;
  box-shadow: 0 0 8px #c0c0c0;
  background-color: #FFF;
  border-right: 2px solid #00607F;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
input[type=number] {
  -moz-appearance: textfield;
}
form,
.form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
form .input-container,
.form .input-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #787878;
  margin-bottom: 1rem;
  position: relative;
}
form .input-container .icon,
.form .input-container .icon {
  width: 34px;
  position: absolute;
  left: 5px;
  height: 34px;
  top: 5px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(-26deg, #24c6cc -8%, #00607f 100%);
  border-radius: 50%;
}
form .input-container .icon img,
.form .input-container .icon img {
  width: 19px;
  height: 18px;
}
form .input-container .icon .email,
.form .input-container .icon .email {
  width: 20px;
  height: 16px;
}
form .input-container .icon .phonenumber,
.form .input-container .icon .phonenumber {
  width: 18px;
  height: 18px;
}
form .input-container label,
.form .input-container label {
  margin-bottom: 14px;
}
form .input-container .input-tag,
.form .input-container .input-tag {
  width: 100%;
  padding: 12px;
  outline: none;
  border: none;
  box-shadow: 0 0 10px #dcdcdc;
  border: 1px solid #dcdcdc;
  border-radius: 100px;
  padding-left: 15px;
  font-size: 14px;
  color: #606060;
}
form .input-container textarea,
.form .input-container textarea {
  height: 75px;
  resize: none;
  padding: 12px;
  width: 100%;
  border-radius: 13px;
  padding-left: 15px;
  box-shadow: 0 0 10px #dcdcdc;
  border: 1px solid #dcdcdc;
  font-size: 14px;
  outline: none;
  color: #606060;
  overflow: auto;
}
form .input-container .phonecode-field,
.form .input-container .phonecode-field {
  display: flex;
  background-color: #FFF;
}
form .input-container .phonecode-field select,
.form .input-container .phonecode-field select {
  width: 53px;
  border: none;
  margin-right: 0.5rem;
  outline: 0;
  border-right: 1px solid #919191;
  box-shadow: none;
  color: #a0a0a0;
  background-color: transparent;
}
form .input-container .phonecode-field span,
.form .input-container .phonecode-field span {
  display: flex;
  align-items: center;
  color: #a0a0a0;
  font-size: 14px;
  background-color: transparent;
  min-width: 36px;
}
form .input-container .phonecode-field .telephone,
.form .input-container .phonecode-field .telephone {
  padding: 0px 0px 0px 8px;
  outline: none;
  border: none !important;
  color: #606060;
  background-color: transparent;
  width: 100%;
}
form .input-container .phonecode-field .hidden-field,
.form .input-container .phonecode-field .hidden-field {
  z-index: -1;
  width: 0;
  height: 0;
  pointer-events: none;
  overflow: hidden;
}
form .input-container .phonecode-field .hidden-field input,
.form .input-container .phonecode-field .hidden-field input {
  border: none;
  padding: 0;
}
form .input-container ::-webkit-input-placeholder,
.form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #a0a0a0;
}
form .input-container :-ms-input-placeholder,
.form .input-container :-ms-input-placeholder {
  /* Edge */
  color: #a0a0a0;
}
form .consent,
.form .consent {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-left: 0;
  color: #8d8282;
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 0.3rem;
}
form .consent input,
.form .consent input {
  margin-left: 0;
}
form .consent p,
.form .consent p {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 5px;
}
form .consent label,
.form .consent label {
  display: flex;
  align-self: center;
  width: 100%;
  line-height: 1.4;
  font-size: 12px;
  color: #919191;
  cursor: pointer;
}
form .consent strong,
.form .consent strong {
  font-size: 12px;
}
form .consent-error p,
.form .consent-error p {
  color: red;
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 8px;
}
.breadcrums {
  display: flex;
  flex-direction: row;
  background: #00607F;
  position: relative;
  color: #FFF;
  padding: 10px 20px;
  margin-right: auto;
  margin-top: 1.5rem;
}
.breadcrums ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.breadcrums ul li {
  list-style: none;
  padding-right: 5px;
  font-size: 14px;
  font-weight: 600;
}
.banner {
  display: flex;
  flex-direction: column;
  background-image: url(../img/master/banner-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
.banner .logo-section {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.banner .logo-section .logo-container {
  display: flex;
  flex-direction: row;
  padding: 3rem 1.5rem;
  padding-top: 1rem;
  padding-bottom: 0;
}
.banner .logo-section .logo-container .logo-image {
  display: flex;
  width: 100%;
}
.banner .logo-section .logo-container .logo-image .logo {
  width: 170px;
}
.banner .logo-section .logo-container .content-bar {
  display: flex;
}
.banner .logo-section .logo-container .content-bar .top-bar {
  display: none;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding-right: 24px;
}
.banner .logo-section .logo-container .content-bar .top-bar .buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.banner .logo-section .logo-container .content-bar .top-bar .buttons .orange-btn {
  margin-right: 15px;
}
.banner .logo-section .logo-container .content-bar .top-bar .buttons .blue-btn {
  margin-right: 24px;
}
.banner .logo-section .logo-container .content-bar .top-bar .cart-top {
  display: none;
}
.banner .logo-section .logo-container .content-bar .top-bar .award {
  display: flex;
  margin-right: 1.2rem;
}
.banner .logo-section .logo-container .content-bar .top-bar .award img {
  width: 60px;
  height: 60px;
}
.banner .logo-section .logo-container .content-bar .menu {
  display: flex;
  z-index: 1;
  align-items: center;
}
.banner .logo-section .logo-container .content-bar .menu img {
  width: 37px;
  height: 26px;
}
.banner .logo-section .logo-container .content-bar .menu a img {
  width: 32px;
}
.banner .logo-section .logo-container .content-bar .menu.active {
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.047);
}
.banner .logo-section .logo-container .content-bar .menu.active ~ .links .linksbar-angle {
  padding: 0 15px 15px;
  right: 0;
  z-index: 100;
}
.banner .logo-section .logo-container .content-bar .links {
  display: flex;
  flex-direction: column;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle {
  width: 80%;
  transition: all 0.5s;
  max-height: 130vh;
  position: fixed;
  top: 0;
  right: -80%;
  z-index: 2;
  background-image: linear-gradient(-90deg, #505858, #00607F);
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-toggle {
  position: relative;
  padding-top: 15px;
  display: block;
  font-weight: 500;
  text-align: right;
  color: #FFF;
  text-decoration: underline;
  font-size: 15px;
  font-weight: 600;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-toggle i {
  font-size: 14px;
  margin-right: 3px;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container {
  flex-direction: column;
  list-style: none;
  margin: 0;
  width: 100%;
  padding-left: 0;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar {
  display: flex;
  flex-direction: row;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  width: 100%;
  padding-left: 0;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul .links-li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  line-height: 1;
  padding: 0.4rem;
  padding-bottom: 0;
  padding-right: 0;
  padding-left: 0;
  border-bottom: 1px solid #ffffff42;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul .links-li .active {
  color: #FC9701;
  font-weight: 600;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul .links-li .link {
  display: flex;
  color: #FFF;
  font-weight: 500;
  padding: 0.5em 0;
  position: relative;
  z-index: 1;
  align-items: center;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul .links-li .link:hover {
  color: #FC9701;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul .links-li .link .fas {
  display: none;
  padding-right: 5px;
  width: 24px;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul .links-li:last-child {
  border-bottom: none;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul #menucourse .down {
  display: none;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar .menu-right {
  display: none;
  flex-direction: row;
  background-color: #FEB500;
  width: 29%;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar .menu-right .search-btn {
  display: flex;
  border: none;
  background-color: #F2F2F2;
  padding: 7px 15px;
  text-align: center;
  outline: none;
  align-items: center;
  justify-content: center;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar .menu-right .search-btn img {
  width: 20px;
  height: 20px;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar .menu-right .phone-link {
  display: flex;
  flex-direction: row;
  padding: 12px;
  width: 100%;
  padding-right: 24px;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar .menu-right .phone-link a {
  display: flex;
  flex-direction: row;
  color: #FFF;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar .menu-right .phone-link a img {
  width: 25px;
  height: 25px;
  margin-right: 8px;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar .menu-right .phone-link:hover a img {
  animation: tada 1s infinite;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .review-bar {
  display: none;
  flex-direction: row;
  background-image: linear-gradient(140deg, #505858 -5%, #00607F 100%);
  color: #FFF;
  padding: 10px 24px 10px 10px;
  height: 100%;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .review-bar ul {
  display: flex;
  list-style: none;
  margin: 0;
  width: 100%;
  padding-left: 0;
  flex-direction: row;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .review-bar ul li {
  display: flex;
  flex-direction: row;
  color: #FFF;
  width: 50%;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .review-bar ul li .rating {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .review-bar ul li .rating img {
  width: 24px;
  height: 21px;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .review-bar ul li span {
  font-size: 13px;
  font-style: italic;
  font-weight: 600;
}
.banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .review-bar ul .rating-li {
  justify-content: flex-end;
}
.banner .logo-section .dropdown-sec {
  display: none;
  position: absolute;
  width: 100%;
  top: 179px;
  margin: 2px 0 0;
  font-size: 14px;
  list-style: none;
  background-color: #FFF;
  padding: 0;
  min-height: 215px;
  justify-content: flex-start;
  flex-direction: column;
  background-image: url(../img/master/menu-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  z-index: 3;
}
.banner .logo-section .dropdown-sec .navbar {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  color: #000000;
  padding: 2rem;
  width: 100%;
}
.banner .logo-section .dropdown-sec .navbar .menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-right: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.24);
}
.banner .logo-section .dropdown-sec .navbar .menu .list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-bottom: 1px dotted #00607F;
  position: relative;
  width: 100%;
}
.banner .logo-section .dropdown-sec .navbar .menu .list:last-child {
  border-bottom: 0;
}
.banner .logo-section .dropdown-sec .navbar .menu .list span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14px;
  font-size: 13px;
}
.banner .logo-section .dropdown-sec .navbar .category-menu {
  width: 205px;
  background-image: linear-gradient(120deg, #f8f8f8 55%, #dfdfdf 98%);
}
.banner .logo-section .dropdown-sec .navbar .category-menu .cat-active {
  background-color: #00607F;
  color: #FFF;
}
.banner .logo-section .dropdown-sec .navbar .category-menu .cat-active:before {
  position: absolute;
  content: '';
  top: 16px;
  right: -15px;
  border-left: 12px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 15px solid #00607F;
  transform: rotate(90deg);
}
.banner .logo-section .dropdown-sec .navbar .topic-menu {
  width: 205px;
  background-image: linear-gradient(120deg, #FEFEFE 55%, #F8F8F8 98%);
}
.banner .logo-section .dropdown-sec .navbar .topic-menu .topic-menu-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.banner .logo-section .dropdown-sec .navbar .topic-menu .topic-menu-list .topicList {
  border-bottom: 1px dotted #FEB500;
}
.banner .logo-section .dropdown-sec .navbar .topic-menu .topic-menu-list .topicList:last-child {
  border-bottom: 0;
}
.banner .logo-section .dropdown-sec .navbar .topic-menu .topic-menu-list .topicList:hover {
  background-color: #1290a2;
  color: #FFF;
}
.banner .logo-section .dropdown-sec .navbar .topic-menu .topic-menu-list .topicList:hover:before {
  position: absolute;
  content: '';
  top: 16px;
  right: -15px;
  border-left: 11px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid #1290a2;
  transform: rotate(90deg);
}
.banner .logo-section .dropdown-sec .navbar .topic-menu .topic-menu-list .topic-active {
  background-color: #1290a2;
  color: #FFF;
}
.banner .logo-section .dropdown-sec .navbar .topic-menu .topic-menu-list .topic-active:before {
  position: absolute;
  content: '';
  top: 16px;
  right: -15px;
  border-left: 11px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid #1290a2;
  transform: rotate(90deg);
}
.banner .logo-section .dropdown-sec .navbar .course-menu-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #FFF;
  padding: 14px;
  width: 429px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.24);
}
.banner .logo-section .dropdown-sec .navbar .course-menu-section .course-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  align-self: flex-start;
  margin-right: 0;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  min-height: 144px;
}
.banner .logo-section .dropdown-sec .navbar .course-menu-section .course-menu .course-menu-list {
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.banner .logo-section .dropdown-sec .navbar .course-menu-section .course-menu .course-menu-list .courseList {
  color: #373737;
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
  width: 50%;
  line-height: 1.4;
  font-size: 13px;
}
.banner .logo-section .dropdown-sec .navbar .course-menu-section .course-menu .course-menu-list .courseList img {
  width: 18px;
  height: 14px;
  margin-right: 6px;
  margin-top: 5px;
}
.banner .logo-section .dropdown-sec .navbar .course-menu-section .bottomList {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.banner .logo-section .dropdown-sec .navbar .course-menu-section .bottomList .clients {
  padding: 0;
}
.banner .logo-section .dropdown-sec .navbar .course-menu-section .bottomList .clients .client-list {
  width: 100%;
}
.banner .logo-section .dropdown-sec .navbar .course-menu-section .bottomList .clients .client-list li {
  width: 63px;
  height: 57px;
}
.banner .logo-section .dropdown-sec .navbar .course-menu-section .bottomList .clients .client-list li img {
  width: 33px;
}
.banner .fixed-header {
  display: none;
}
.banner .filters-fixed {
  display: none;
}
.banner .banner-section {
  padding: 3rem 1.5rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.banner .banner-section .banner-content {
  display: flex;
  flex-direction: column;
}
.banner .banner-section .banner-content .detail {
  display: flex;
  flex-direction: column;
}
.banner .banner-section .banner-content .detail h1 {
  margin-bottom: 1.5rem;
  font-size: 22px;
  color: #00607F;
}
.banner .banner-section .banner-content .detail p {
  color: #919191;
  font-size: 13px;
}
.banner .banner-section .banner-content .detail .search-bar {
  margin: 2rem 0;
  display: flex;
  width: 100%;
}
.banner .banner-section .banner-content .detail .search-bar form {
  display: flex;
  width: 100%;
}
.banner .banner-section .banner-content .detail .search-bar form .search {
  width: 100%;
  position: relative;
  top: 0px;
  outline: 0px;
  background-color: #FFF;
  border-radius: 30px;
  box-shadow: 0 0 11px rgba(0, 96, 127, 0.29);
}
.banner .banner-section .banner-content .detail .search-bar form .search .search-input {
  width: 100%;
  position: relative;
  top: 0;
  outline: 0;
  background-color: #FFF;
  padding: 15px;
  padding-right: 48px;
  border: 0;
  border-radius: 30px;
}
.banner .banner-section .banner-content .detail .search-bar form .search .search-input::-ms-clear {
  display: none;
}
.banner .banner-section .banner-content .detail .search-bar form .search .search-button {
  background-color: #00607F;
  border: 0;
  right: 7px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  position: absolute;
  top: 6px;
  width: 36px;
  outline: 0;
  padding: 8px 9px;
  margin: 0;
  color: #FFF;
  font-weight: 500;
  justify-content: center;
  align-items: center;
  border-radius: 137px;
}
.banner .banner-section .banner-content .detail .search-bar form .search .search-button img {
  width: 20px;
}
.banner .banner-section .banner-content .courses {
  display: flex;
  flex-direction: column;
}
.banner .banner-section .banner-content .courses .courses-list {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.banner .banner-section .banner-content .courses .courses-list a {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 8px;
  padding-left: 20px;
  align-items: center;
  margin-bottom: 1rem;
  border-radius: 30px;
  color: #FFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
}
.banner .banner-section .banner-content .courses .courses-list a:nth-child(even) {
  background-image: linear-gradient(#FC9701, #FEB500);
}
.banner .banner-section .banner-content .courses .courses-list a:nth-child(even):hover {
  background-image: linear-gradient(#FEB500, #FC9701);
}
.banner .banner-section .banner-content .courses .courses-list a:nth-child(odd) {
  background-image: linear-gradient(#0162A7, #3E9FB2);
}
.banner .banner-section .banner-content .courses .courses-list a:nth-child(odd):hover {
  background-image: linear-gradient(#3E9FB2, #0162A7);
}
.banner .banner-section .banner-content .courses .courses-list a:last-child {
  margin-bottom: 0;
}
.banner .banner-section .banner-content .courses .courses-list a .bg-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  width: 42px;
  height: 42px;
  border-radius: 100%;
}
.banner .banner-section .banner-content .courses .courses-list a .bg-circle img {
  width: 22px;
}
.banner .banner-section .banner-content .courses .courses-list a h3 {
  width: 80%;
}
.banner .banner-section .banner-content .courses .viewall {
  display: none;
  width: 50%;
  height: 254px;
  background-image: url(../img/homepage/viewall.png);
  background-size: 100% 85%;
  background-repeat: no-repeat;
  background-position: center;
}
.banner .banner-section .banner-content .right-image {
  display: none;
  background-image: url(../img/location/right-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.banner .banner-section .down-arrow {
  position: absolute;
  bottom: -37px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.banner .banner-section .down-arrow a {
  display: flex;
}
.banner .banner-section .down-arrow a img {
  width: 68px;
  height: 75px;
}
.footer {
  display: flex;
  flex-direction: column;
  background-image: url(../img/master/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 10.5rem;
}
.footer:before {
  display: none;
  content: '';
  position: absolute;
  background-color: #f1f1f1;
  width: 100%;
  height: 140px;
  left: 0;
  top: 0;
}
.footer .footer-container {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
}
.footer .footer-container .footer-logo {
  display: none;
  flex-direction: column;
  margin-bottom: 2rem;
  z-index: 1;
  width: 100%;
}
.footer .footer-container .footer-logo img {
  width: 200px;
}
.footer .footer-container .footer-info {
  display: flex;
  flex-direction: column;
  z-index: 1;
  color: #FFF;
}
.footer .footer-container .footer-info .otherlinks {
  display: flex;
  flex-direction: column;
}
.footer .footer-container .footer-info .otherlinks .footer-contact {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 2rem;
}
.footer .footer-container .footer-info .otherlinks .footer-contact .contact-list {
  display: flex;
  flex-direction: column;
}
.footer .footer-container .footer-info .otherlinks .footer-contact .contact-list .contact-info {
  display: flex;
  margin-bottom: 1rem;
}
.footer .footer-container .footer-info .otherlinks .footer-contact .contact-list .contact-info .c-image {
  display: flex;
  flex-direction: column;
  margin-right: 12px;
}
.footer .footer-container .footer-info .otherlinks .footer-contact .contact-list .contact-info .c-image img {
  width: 25px;
}
.footer .footer-container .footer-info .otherlinks .footer-contact .contact-list .contact-info .c-text-para {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.footer .footer-container .footer-info .otherlinks .footer-contact .contact-list .contact-info .c-text-para .c-heading {
  font-weight: 700;
  font-size: 16px;
  color: #FFF;
}
.footer .footer-container .footer-info .otherlinks .footer-contact .contact-list .contact-info .c-text-para .c-detail {
  color: #FFF;
}
.footer .footer-container .footer-info .otherlinks .footer-contact .contact-list .contact-info .c-text {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.footer .footer-container .footer-info .otherlinks .footer-contact .contact-list .contact-info .c-text .c-heading {
  font-weight: 700;
  font-size: 16px;
  color: #FFF;
}
.footer .footer-container .footer-info .otherlinks .footer-contact .contact-list .contact-info:last-child {
  margin-bottom: 0;
}
.footer .footer-container .footer-info .otherlinks .footer-contact .contact-list .contact-info:hover .c-image img,
.footer .footer-container .footer-info .otherlinks .footer-contact .contact-list .contact-info:hover .c-text-para img,
.footer .footer-container .footer-info .otherlinks .footer-contact .contact-list .contact-info:hover .c-text img {
  animation: tada 1s infinite;
}
.footer .footer-container .footer-info .otherlinks .footer-contact .contact-list .contact-info:hover .c-image a,
.footer .footer-container .footer-info .otherlinks .footer-contact .contact-list .contact-info:hover .c-text-para a,
.footer .footer-container .footer-info .otherlinks .footer-contact .contact-list .contact-info:hover .c-text a {
  color: #FEB500;
}
.footer .footer-container .footer-info .otherlinks .footer-links {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 2rem;
}
.footer .footer-container .footer-info .otherlinks .footer-links a {
  display: flex;
  margin-bottom: 6px;
}
.footer .footer-container .footer-info .otherlinks .footer-links a:before {
  content: '';
  background-image: url(../img/master/quick-links.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  width: 20px;
  height: 22px;
  margin-right: 7px;
}
.footer .footer-container .footer-info .otherlinks .footer-links a:hover {
  color: #FEB500;
}
.footer .footer-container .footer-info .otherlinks .footer-blog {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.footer .footer-container .footer-info .otherlinks .footer-blog .blog-list {
  display: flex;
  flex-direction: column;
  width: 100%!important;
  overflow: hidden;
}
.footer .footer-container .footer-info .otherlinks .footer-blog .blog-list .blog-info {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 1rem;
}
.footer .footer-container .footer-info .otherlinks .footer-blog .blog-list .blog-info:last-child {
  margin-bottom: 0;
}
.footer .footer-container .footer-info .otherlinks .footer-blog .blog-list .blog-info img {
  margin-right: 10px;
  margin-top: 4px;
}
.footer .footer-container .footer-info .otherlinks .footer-blog .blog-list .blog-info .b-text {
  display: flex;
  flex-direction: column;
}
.footer .footer-container .footer-info .otherlinks .footer-blog .blog-list .blog-info .b-text .b-ques {
  color: #FFF;
  line-height: 1.4;
}
.footer .footer-container .footer-info .otherlinks .footer-blog .blog-list .blog-info .b-text .b-ques:hover {
  color: #FEB500;
}
.footer .footer-container .footer-info .otherlinks .footer-blog .blog-list .blog-info .b-text .readmore {
  font-weight: 600;
  color: #FEB500;
}
.footer .footer-container .footer-info .copyright {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 2rem;
  justify-content: center;
}
.footer .footer-container .social-media {
  display: flex;
  flex-direction: column;
  width: 100%;
  z-index: 1;
}
.footer .footer-container .social-media .media-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
}
.footer .footer-container .social-media .media-list a {
  margin-right: 20px;
}
.footer .footer-container .social-media .media-list a:last-child {
  margin-right: 0;
}
.footer .footer-container .social-media .media-list a img {
  width: 45px;
}
.footer .social-side {
  display: none;
}
.footer .footer-content {
  padding: 1rem;
  background-color: #e9e9e9;
  box-shadow: 0 0 10px #c1c1c1;
}
.footer .footer-content p {
  color: #000000;
  text-align: center;
}
.quick-links {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
}
.blocker {
  z-index: 102;
}
.modal-blocker {
  width: 100%;
  z-index: 4;
  padding: 0;
  max-width: 400px;
}
.modal-blocker .modal-body {
  display: flex;
  flex-direction: row;
}
.modal-blocker .modal-body .modal-form {
  width: 100%;
  min-height: 300px;
  z-index: 1;
  border-radius: 5px;
  padding: 2rem;
  background-color: #00607f;
}
.modal-blocker .modal-body .modal-form form {
  color: #FFF;
  margin-bottom: 0;
  justify-content: center;
  align-items: center;
}
.modal-blocker .modal-body .modal-form form .title {
  color: #FFF;
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  width: fit-content;
}
.modal-blocker .modal-body .modal-form form .input-container .input-tag {
  padding-left: 46px;
  font-size: 13px;
}
.modal-blocker .modal-body .modal-form form .input-container textarea {
  padding-left: 46px;
  font-size: 13px;
}
.modal-blocker .modal-body .modal-form form .buttons {
  margin-top: 1rem;
}
.modal-blocker .modal-body .modal-form form .consent p,
.modal-blocker .modal-body .modal-form form .consent label {
  color: #FFF;
}
.modal-blocker a.close-modal {
  background-image: url(../img/master/close-btn.png);
  z-index: 1;
  top: -18px;
  right: -16px;
  width: 40px;
  height: 40px;
}
.blocker .search-modal {
  background-color: transparent;
  box-shadow: none;
}
.blocker .search-modal .modal-body .modal-form {
  min-height: 260px;
  background-color: transparent;
}
.blocker .search-modal .modal-body .modal-form .heading {
  width: 100%;
}
.blocker .search-modal .modal-body .modal-form .heading .title {
  font-size: 22px;
  margin-bottom: 0;
  padding-bottom: 0;
  width: 100%;
}
.blocker .search-modal .modal-body .modal-form .heading .title span {
  font-size: 22px;
}
.blocker .search-modal .modal-body .modal-form .heading .title::after {
  display: none;
}
.blocker .search-modal .modal-body .modal-form .search {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.blocker .search-modal .modal-body .modal-form .search img {
  display: none;
  width: 18px;
  height: 18px;
  position: absolute;
  right: 14px;
  z-index: 1;
}
.blocker .search-modal .modal-body .modal-form .search .form-input {
  width: 100%;
  position: relative;
  top: 0;
  outline: 0;
  color: #000000;
  font-size: 13px;
  background-color: #FFFFFF;
  border: 0;
  padding: 14px;
  height: 48px;
  box-shadow: 0 0 6px #cccccc;
}
.blocker .search-modal .modal-body .modal-form .search .search-button {
  background: #FEB500;
  width: 50%;
  justify-content: center;
  align-items: center;
  padding: 14px;
  right: 0;
  margin: 0;
  color: #fff;
  font-weight: 500;
  height: 48px;
  outline: 0;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  border-radius: 0;
  border: none;
  margin-top: 1.5rem;
  font-size: 15px;
  font-weight: 400;
}
.blocker .search-modal .modal-body .modal-form .searched-list {
  display: none;
  flex-direction: row;
  width: 100%;
  margin-top: 12px;
  height: 274px;
  overflow: hidden;
}
.blocker .search-modal .modal-body .modal-form .searched-list .courses-list {
  background: #00607F;
}
.blocker .search-modal .modal-body .modal-form .searched-list .please-wait {
  text-align: center;
}
.blocker .search-modal .modal-body .modal-form .searched-list .category-list {
  background: #FFF;
}
.blocker .search-modal .modal-body .modal-form .searched-list .category-list a {
  color: #000000;
}
.blocker .search-modal .modal-body .modal-form .searched-list .listing {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 16px;
  overflow-y: scroll;
}
.blocker .search-modal .modal-body .modal-form .searched-list .listing .black-heading h2 {
  color: #000000;
}
.blocker .search-modal .modal-body .modal-form .searched-list .listing .orange-heading h2 {
  color: #FFF;
}
.blocker .search-modal .modal-body .modal-form .searched-list .listing .courseSearchList {
  display: flex;
  flex-direction: column;
}
.blocker .search-modal .modal-body .modal-form .searched-list .listing a {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
  width: 100%;
  position: relative;
  justify-content: flex-start;
}
.blocker .search-modal .modal-body .modal-form .searched-list .listing a:last-child {
  margin-bottom: 0;
}
.blocker .search-modal .modal-body .modal-form .searched-list .listing a span {
  padding-left: 20px;
}
.blocker .search-modal .modal-body .modal-form .searched-list .listing a:after {
  content: '';
  position: absolute;
  background-image: url(../img/master/check-circle-outline.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  top: 3px;
  left: 0;
}
.blocker .search-modal .close-modal {
  background-image: url(../img/master/search-close.png);
  width: 28px;
  height: 28px;
  top: 12px;
  right: 5px;
}
.hide {
  display: none;
}
.bottom-bar {
  background: #FC9701;
  box-shadow: 0 -10px 15px rgba(0, 0, 0, 0.09803922);
  width: 100%;
  padding: 10px;
  position: fixed;
  bottom: 0;
  z-index: 100;
  display: flex;
  justify-content: space-around;
}
.bottom-bar .bottom-list {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-around;
}
.bottom-bar .bottom-list a {
  display: flex;
}
.bottom-bar .bottom-list a img {
  width: 25px;
}
.cookie-div {
  background-image: linear-gradient(0deg, #00607F 25%, #505858 110%);
  position: fixed;
  bottom: 45px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 99;
  width: 100%;
  padding: 10px 10px;
  border-top: 1px solid #00607F;
}
.cookie-div p {
  font-size: 12px;
  color: #FFF;
}
.cookie-div p a {
  font-size: 13px;
  cursor: pointer;
  color: #FEB500;
  font-weight: bold;
}
.cookie-div span {
  font-size: 15px;
  color: #FFF;
  padding: 5px 10px;
  border: 2px solid #FEB500;
  text-align: center;
}
.cookie-div span a {
  color: #ffff;
}
.cookie-div span:hover {
  background-color: #FC9701;
}
::-webkit-scrollbar {
  width: 5px;
  height: 4px;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #c3c3c3;
}
::-webkit-scrollbar-thumb {
  background: #00607F;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #00607f9c;
}
.ui-menu-item .ui-menu-item-wrapper {
  margin-bottom: 0.8rem !important;
  color: #00607F;
}
.ui-menu-item .ui-menu-item-wrapper:hover {
  border: none;
  color: #FEB500;
  background-color: transparent;
}
.ui-autocomplete-category {
  padding: 10px 0;
  color: #00607F;
  font-weight: 700;
}
.ui-autocomplete-category:nth-child(1) {
  padding-top: 0;
}
#ui-id-1 {
  max-height: 50vh;
  overflow-y: scroll;
  padding: 1rem!important;
  overflow-x: hidden;
}
#ui-id-1 li div {
  padding: 0!important;
  margin: 0;
}
#ui-id-1 #ui-id-2 {
  border: none;
  background-color: transparent!important;
}
.home-list {
  width: 89%!important;
}
.search-list {
  width: 87%!important;
}
.blog-list {
  width: 74%!important;
}
.ui-widget-content {
  border: 1px solid #ddd;
  background: #FFF;
  color: #000000;
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
}
/*BAck to top*/
#scroll {
  z-index: 12;
  position: fixed;
  right: 10px;
  bottom: 56px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #FC9701;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  box-shadow: 0 0 5px #c1c1c1;
}
#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #ffffff;
}
#scroll:hover {
  background-color: #00607F;
}
.scene {
  width: 100%;
  height: 100%;
  perspective: 600;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
}
.scene svg {
  width: 130px;
  height: 130px;
}
.scene text {
  font-size: 4px;
}
@media (min-width : 375px) {
  .blog-list {
    width: 77.5% !important;
  }
  .search-list {
    width: 89%!important;
  }
}
@media (min-width : 425px) {
  .blog-list {
    width: 80.5% !important;
  }
  .search-list {
    width: 90%!important;
  }
}
@media (min-width : 768px) {
  .banner .logo-section {
    padding-right: 0;
  }
  .banner .logo-section .container {
    position: relative;
  }
  .banner .logo-section .logo-container {
    padding: 3rem 2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-right: 0;
  }
  .banner .logo-section .logo-container .logo-image {
    width: 24%;
    align-items: center;
  }
  .banner .logo-section .logo-container .logo-image a .logo {
    width: 140px;
  }
  .banner .logo-section .logo-container .content-bar {
    width: 85%;
    flex-direction: column;
  }
  .banner .logo-section .logo-container .content-bar .menu {
    display: none;
  }
  .banner .logo-section .logo-container .content-bar .top-bar {
    display: flex;
  }
  .banner .logo-section .logo-container .content-bar .top-bar .cart-top {
    display: flex;
    position: relative;
  }
  .banner .logo-section .logo-container .content-bar .top-bar .cart-top .cart-icon {
    display: flex;
  }
  .banner .logo-section .logo-container .content-bar .top-bar .cart-top .cart-icon img {
    width: 30px;
    margin-right: 14px;
  }
  .banner .logo-section .logo-container .content-bar .top-bar .cart-top .cart-icon .cart-count {
    position: absolute;
    top: -10px;
    right: 6px;
    display: flex;
    background: #FC9701;
    width: 20px;
    height: 20px;
    justify-content: center;
    border-radius: 50%;
    color: #FFF;
    font-weight: 600;
  }
  .banner .logo-section .logo-container .content-bar .links .linksbar-angle {
    display: flex;
    transition: none;
    align-items: center;
    flex-direction: row;
    width: 100%;
    color: #00607F;
    background-image: none;
    max-height: 88px;
    top: 18px;
    position: relative;
    right: 0;
  }
  .banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-toggle {
    display: none;
  }
  .banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container {
    display: flex;
    justify-content: flex-start;
    font-size: 14px;
    padding-left: 0;
  }
  .banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar {
    display: flex;
    flex-direction: row;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 42px;
    background-color: #FFF;
    padding-left: 10px;
  }
  .banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    font-size: 14px;
    width: 100%;
  }
  .banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul .links-li {
    padding: 0 0.3rem;
    position: relative;
    border-bottom: none;
  }
  .banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul .links-li .link {
    align-items: center;
    color: #00607F;
    font-size: 12px;
  }
  .banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul .links-li .link .fas {
    display: none;
  }
  .banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul .links-li:nth-child(1) {
    padding-left: 0;
  }
  .banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul .contact-li {
    display: none;
  }
  .banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul #menucourse {
    padding: 0 0.1rem;
    justify-content: center;
    align-items: center;
  }
  .banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul #menucourse .down {
    font-size: 9px;
    display: flex;
    margin-left: 3px;
  }
  .banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .review-bar {
    display: flex;
  }
  .banner .logo-section .logo-container .content-bar .links .linksbar-angle:after {
    content: '';
    position: absolute;
    width: 85px;
    height: 65px;
    z-index: -1;
    top: -12px;
    left: -14px;
    background-color: #FEB500;
    box-shadow: 0 0 11px rgba(251, 179, 0, 0.79);
  }
  .banner .cartLogo .cart-drop-down {
    display: none!important;
  }
  .banner .slideInDown {
    display: flex!important;
  }
  .banner .cart-drop-down {
    display: none;
    background-color: #FFF;
    box-shadow: 0 0 4px #fea901;
    color: #00607F;
    position: absolute;
    top: 46px;
    right: 6px;
    flex-direction: column;
    margin: 0;
    z-index: 104;
  }
  .banner .cart-drop-down:before {
    background-image: url(../img/master/overlay-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 36px;
    height: 18px;
    position: absolute;
    top: -18px;
    right: 0px;
    z-index: 0;
    content: '';
  }
  .banner .cart-drop-down .cart-list {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin: 0;
    padding-bottom: 0;
  }
  .banner .cart-drop-down .cart-list li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 448px;
    flex-wrap: wrap;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
  }
  .banner .cart-drop-down .cart-list li:last-child {
    border: none;
  }
  .banner .cart-drop-down .cart-list li:last-child ul {
    padding-bottom: 0!important;
  }
  .banner .cart-drop-down .cart-list li a {
    display: flex;
    align-items: center;
    color: #00607F;
    font-weight: 500;
    font-size: 16px;
  }
  .banner .cart-drop-down .cart-list li a img:first-child {
    width: 24px;
    height: 22px;
    margin-left: 8px;
  }
  .banner .cart-drop-down .cart-list li a img:last-child {
    width: 24px;
    height: 22px;
    margin-right: 8px;
  }
  .banner .cart-drop-down .cart-list li a:hover {
    color: #FC9701;
  }
  .banner .cart-drop-down .cart-list li span {
    width: 20px;
    display: flex;
    justify-content: center;
  }
  .banner .cart-drop-down .cart-list li span i {
    color: #FC9701;
    font-size: 18px;
  }
  .banner .cart-drop-down .cart-list li span:hover i {
    color: #00607F;
  }
  .banner .cart-drop-down .cart-list .cart-item ul {
    margin: 0;
    width: 100%;
    background-color: #FFF;
    padding: 6px 0 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .banner .cart-drop-down .cart-list .cart-item ul li {
    padding: 0;
    width: auto;
    border: none;
    margin: 0;
    color: #FC9701;
  }
  .banner .cart-drop-down .cart-list .cart-item ul li span {
    width: auto;
    color: #000000;
    margin-left: 5px;
  }
  .banner .cart-drop-down .cart-list .cart-item ul .delegate {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 5px;
  }
  .banner .cart-drop-down .cart-list .cart-item ul .delegate div {
    display: flex;
    flex-direction: row;
  }
  .banner .cart-drop-down .cart-list .cart-item ul .delegate .cour-amt span {
    font-size: 16px;
    font-weight: 900;
    margin-left: 0;
  }
  .banner .cart-drop-down .cart-list .cart-item ul .delegate .cour-amt .text {
    margin-left: 0;
    color: #FC9701;
    font-weight: 400;
  }
  .banner .cart-drop-down .cart-list .cart-item ul .delegate .delegate-inner {
    align-items: center;
  }
  .banner .cart-drop-down .cart-list .cart-item ul .delegate .delegate-inner p {
    color: #FC9701;
    margin-right: 0.5rem;
  }
  .banner .cart-drop-down .cart-list .cart-item ul .delegate .delegate-inner .count {
    align-items: center;
    justify-content: center;
  }
  .banner .cart-drop-down .cart-list .cart-item ul .delegate .delegate-inner .count .minus {
    margin-right: 10px;
    color: #FFFFFF;
    font-size: 30px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: #00607F;
  }
  .banner .cart-drop-down .cart-list .cart-item ul .delegate .delegate-inner .count .digitJS {
    color: #000000;
    margin-left: 0px;
  }
  .banner .cart-drop-down .cart-list .cart-item ul .delegate .delegate-inner .count .plus {
    background: #00607F;
    margin-left: 10px;
    color: #FFFFFF;
    font-size: 20px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
  }
  .banner .cart-drop-down .cart-list .cart-item a {
    width: calc(100% - 30px);
  }
  .banner .cart-drop-down .cart-list .emptycart {
    display: flex;
    flex-direction: column;
    color: #FC9701;
    border-bottom: 1px solid #eaeaea !important;
    padding-bottom: 10px;
    margin-bottom: 0;
  }
  .banner .cart-drop-down .cart-list .emptycart i {
    font-size: 70px;
    margin: 1rem 0;
    color: #00607F;
  }
  .banner .cart-drop-down .checkout {
    display: flex;
    flex-direction: column;
  }
  .banner .cart-drop-down .checkout .checkout-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-top: 1px solid #e0e0e0;
    padding: 10px;
    background: #ececec;
  }
  .banner .cart-drop-down .checkout .checkout-top .heading {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
  }
  .banner .cart-drop-down .checkout .checkout-top .price {
    color: #00607F;
    font-size: 16px;
    font-weight: 600;
  }
  .banner .cart-drop-down .checkout .checkout-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between !important;
    align-items: center;
    padding: 10px;
  }
  .banner .cart-drop-down .checkout .checkout-bottom a {
    display: flex;
    align-items: center;
    color: #00607F;
    font-weight: 500;
    font-size: 15px;
  }
  .banner .cart-drop-down .checkout .checkout-bottom a img:first-child {
    width: 24px;
    height: 22px;
    margin-left: 8px;
  }
  .banner .cart-drop-down .checkout .checkout-bottom a img:last-child {
    width: 24px;
    height: 22px;
    margin-right: 8px;
  }
  .banner .cart-drop-down .checkout .checkout-bottom a:hover {
    color: #FC9701;
  }
  .banner .cart-drop-down .checkout .checkout-bottom .blue-btn {
    margin-right: 0!important;
    color: #FFF;
  }
  .banner .cart-drop-down .checkout .checkout-bottom .blue-btn:hover {
    color: #FFF;
  }
  .banner .cart-drop-down .checkout .checkout-bottom span {
    width: 20px;
    display: flex;
    justify-content: center;
  }
  .banner .cart-drop-down .checkout .checkout-bottom span i {
    color: #00607F;
  }
  .banner .cart-drop-down .checkout .checkout-bottom span:hover i {
    color: #FC9701;
  }
  .banner .fixed-header {
    display: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #FFF;
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 0;
    left: 0;
  }
  .banner .fixed-header .header-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .banner .fixed-header .header-menu .top-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 3rem 2rem;
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
  .banner .fixed-header .header-menu .top-bar .logo-image {
    display: flex;
    width: 170px;
    height: 48px;
  }
  .banner .fixed-header .header-menu .top-bar .logo-image a {
    width: 130px;
    height: 40px;
  }
  .banner .fixed-header .header-menu .top-bar .logo-image a .logo {
    width: 68%;
  }
  .banner .fixed-header .header-menu .top-bar ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    width: calc(100% - 154px);
  }
  .banner .fixed-header .header-menu .top-bar ul li {
    list-style: none;
    display: flex;
    flex-direction: row;
    padding-left: 1rem;
  }
  .banner .fixed-header .header-menu .top-bar ul li a {
    display: flex;
    flex-direction: row;
    color: #00607F;
    font-weight: 500;
    width: 100%;
    align-items: center;
  }
  .banner .fixed-header .header-menu .top-bar ul li:first-child {
    padding-left: 0;
  }
  .banner .fixed-header .header-menu .top-bar ul .contact-link {
    flex-grow: 1;
  }
  .banner .fixed-header .header-menu .top-bar ul .quote-link {
    display: none;
    background-image: linear-gradient(-108deg, #2bdbdc -30%, #00607f 39%);
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    line-height: 0;
    height: 37px;
    border-radius: 4px;
    margin-left: 1.5rem;
  }
  .banner .fixed-header .header-menu .top-bar ul .quote-link a {
    color: #FFF;
  }
  .banner .fixed-header .header-menu .top-bar ul .quote-link a i {
    width: 15px;
    margin-left: 0.5rem;
    font-size: 14px;
    color: #FFF;
  }
  .banner .fixed-header .header-menu .top-bar ul .cart-link {
    display: flex;
    position: relative;
  }
  .banner .fixed-header .header-menu .top-bar ul .cart-link .cart-icon img {
    width: 30px;
    margin-right: 0px;
  }
  .banner .fixed-header .header-menu .top-bar ul .cart-link .cart-icon .cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    display: flex;
    background: #FC9701;
    width: 20px;
    height: 20px;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 600;
  }
  .banner .fixed-header .header-menu .top-bar ul .cart-link .cart-drop-down {
    right: 0;
  }
  .banner .fixed-header .header-menu .top-bar ul .cart-link .cart-drop-down .cart-list {
    flex-direction: column;
    padding: 10px;
    padding-bottom: 0;
    width: 100%;
  }
  .banner .fixed-header .header-menu .top-bar ul .cart-link .cart-drop-down .cart-list .cart-item {
    padding-left: 0;
  }
  .banner .fixed-header .header-menu .top-bar ul .cart-link .cart-drop-down .cart-list .cart-item a {
    width: calc(100% - 30px);
  }
  .banner .fixed-header .header-menu .top-bar ul .cart-link .cart-drop-down .cart-list .cart-item ul {
    padding: 6px 0 10px;
    width: 100%;
    align-items: flex-start;
  }
  .banner .fixed-header .header-menu .top-bar ul .cart-link .cart-drop-down .cart-list .cart-item ul .delegate {
    padding-left: 0;
  }
  .banner .fixed-header .header-menu .top-bar ul .cart-link .cart-drop-down .cart-list .cart-item ul .delegate .delegate-inner .count .minus,
  .banner .fixed-header .header-menu .top-bar ul .cart-link .cart-drop-down .cart-list .cart-item ul .delegate .delegate-inner .count .plus {
    width: 20px;
  }
  .banner .fixed-header .header-menu .top-bar ul .cart-link .cart-drop-down .cart-list .emptycart {
    flex-direction: column;
    color: #FC9701;
    border-bottom: 1px solid #eaeaea !important;
    padding-bottom: 10px;
    margin-bottom: 0;
  }
  .banner .fixed-header .header-menu .top-bar ul .cart-link .cart-drop-down .checkout .checkout-bottom a {
    width: auto;
  }
  .banner .fixed-header .header-menu .top-bar ul .call-link,
  .banner .fixed-header .header-menu .top-bar ul .email-link {
    display: flex;
  }
  .banner .fixed-header .header-menu .top-bar ul .call-link a .icon,
  .banner .fixed-header .header-menu .top-bar ul .email-link a .icon {
    width: 28px;
    height: 28px;
    margin-right: 6px;
    background-color: #00607F;
    border-radius: 63%;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  .banner .fixed-header .header-menu .top-bar ul .call-link a .icon i,
  .banner .fixed-header .header-menu .top-bar ul .email-link a .icon i {
    display: flex;
    width: 18px;
    font-size: 14px;
    color: #FFF;
    margin-top: 2px;
  }
  .banner .fixed-header .header-menu .top-bar ul .call-link a .text,
  .banner .fixed-header .header-menu .top-bar ul .email-link a .text {
    display: none;
  }
  .banner .fixed-header .header-menu .top-bar ul .email-link a .icon {
    background-color: #FC9701 !important;
    margin-right: 0;
  }
  .banner .fixed-header .header-menu .top-bar ul .email-link a .icon i {
    margin-top: 0;
    margin-left: 5px;
  }
  .banner .fixed-header .header-menu .filters-fixed {
    display: flex;
    z-index: 101;
    background: #f1f1f1;
    padding: 3rem 2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 0.5px 2px #c1c1c1;
    border-top: 1px solid #c1c1c1;
    cursor: auto;
    flex-direction: row;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    align-items: center;
  }
  .banner .fixed-header .header-menu .filters-fixed .select-fliters {
    justify-content: space-between;
    flex-direction: row;
    display: flex;
    width: 100%;
  }
  .banner .fixed-header .header-menu .filters-fixed .select-fliters .select-dropdown {
    width: 27%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .banner .fixed-header .header-menu .filters-fixed .select-fliters .select-dropdown p {
    font-weight: 800;
    padding-bottom: 0.3rem;
    line-height: 1.4;
    font-size: 12px;
    color: #000000;
  }
  .banner .fixed-header .header-menu .filters-fixed .select-fliters .select-dropdown select {
    padding: 5px 34px 5px 10px;
    color: #787878;
    font-weight: 500;
    width: 100%;
    border-radius: 5px;
    font-size: 12px;
    border: 1px solid #dbe2e8;
    outline: 0px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background: url(../img/topic/select-arrow.svg) no-repeat;
    background-position: 96% center;
    background-color: #FFF;
  }
  .banner .fixed-header .header-menu .filters-fixed .select-fliters .select-dropdown select::-ms-expand {
    display: none;
  }
  .banner .fixed-header .header-menu .filters-fixed .select-fliters .buttons .orange-btn {
    margin-top: 1rem;
    padding: 4px 20px;
  }
  .banner .fixed-header .header-menu .filters-fixed .select-fliters .buttons .orange-btn img {
    width: 18px;
    height: 16px;
  }
  .banner .animated {
    animation-duration: 1s;
  }
  .banner .banner-section {
    padding: 3rem 2rem;
  }
  .banner .banner-section .banner-content {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    margin-bottom: 0rem;
  }
  .banner .banner-section .banner-content .detail {
    width: 50%;
    margin-bottom: 0;
  }
  .banner .banner-section .banner-content .detail .buttons {
    justify-content: flex-start;
  }
  .banner .banner-section .banner-content .right-image {
    display: flex;
  }
  .banner .banner-section .banner-content .courses {
    width: 50%;
    padding-left: 2rem;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .banner .banner-section .banner-content .courses .courses-list {
    margin-top: 0;
  }
  .banner .banner-section .down-arrow {
    bottom: -32px;
  }
  .banner .banner-section .down-arrow a img {
    width: 60px;
    height: 60px;
  }
  .breadcrums:after {
    display: none;
  }
  .enquireSuccess .enqus {
    flex-direction: row;
    justify-content: center;
  }
  .footer {
    padding-bottom: 4rem;
  }
  .footer:before {
    background-color: transparent;
    background-repeat: no-repeat;
    top: 0px;
    background-size: 40% 90%;
    height: 195px;
    background-image: url(../img/master/wave-left-md.png);
  }
  .footer .footer-container {
    padding: 3rem 2rem;
  }
  .footer .footer-container .footer-logo {
    margin-top: -1rem;
  }
  .footer .footer-container .footer-info .otherlinks {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer .footer-container .footer-info .otherlinks .footer-contact {
    width: 36%;
  }
  .footer .footer-container .footer-info .otherlinks .footer-links {
    width: 31%;
  }
  .footer .footer-container .footer-info .otherlinks .footer-blog {
    width: 31%;
  }
  .footer .footer-container .footer-info .copyright {
    text-align: center;
    margin-bottom: 1rem;
  }
  .footer .footer-container .social-media .media-list {
    justify-content: center;
    align-items: center;
  }
  .footer .footer-container .social-media .orange-heading {
    display: none;
  }
  .quick-links {
    padding: 3rem 2rem;
  }
  .social-side {
    display: block;
    position: fixed;
    bottom: 35%;
    right: 0px;
    z-index: 13;
  }
  .social-side .side-call {
    color: #ffffff;
    font-size: 18px;
    padding: 12px;
    width: 100%;
    display: block;
    font-weight: bold;
    background: #FC9701;
    margin-bottom: 5px;
    position: relative;
    text-align: center;
  }
  .social-side .side-call .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #FFF;
    color: #000000;
    text-align: center;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    top: 6px;
    right: 43px;
    font-size: 14px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
  }
  .social-side .side-call .tooltiptext:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #FFF;
  }
  .social-side .side-call:hover {
    background-image: linear-gradient(-90deg, #FEB500, #FC9701);
  }
  .social-side .side-call:hover .tooltiptext {
    visibility: visible;
  }
  .social-side .side-chat {
    color: #ffffff;
    font-size: 18px;
    padding: 12px;
    width: 100%;
    display: block;
    font-weight: bold;
    background: #FC9701;
    margin-bottom: 5px;
    text-align: center;
    position: relative;
  }
  .social-side .side-chat .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #FFF;
    color: #000000;
    text-align: center;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    top: 6px;
    right: 43px;
    font-size: 14px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
  }
  .social-side .side-chat .tooltiptext:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #FFF;
  }
  .social-side .side-chat:hover {
    background-image: linear-gradient(-90deg, #FEB500, #FC9701);
  }
  .social-side .side-chat:hover .tooltiptext {
    visibility: visible;
  }
  .social-side .side-enq {
    color: #ffffff;
    font-size: 18px;
    padding: 12px;
    width: 100%;
    display: block;
    font-weight: bold;
    background: #FC9701;
    text-align: center;
    position: relative;
  }
  .social-side .side-enq .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #FFF;
    color: #000000;
    text-align: center;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    top: 6px;
    right: 43px;
    font-size: 14px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
  }
  .social-side .side-enq .tooltiptext:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #FFF;
  }
  .social-side .side-enq:hover {
    background-image: linear-gradient(-90deg, #FEB500, #FC9701);
  }
  .social-side .side-enq:hover .tooltiptext {
    visibility: visible;
  }
  .bottom-bar {
    display: none;
  }
  .cookie-div {
    flex-direction: row;
    justify-content: space-around;
    bottom: 0px;
  }
  .cookie-div p {
    width: 70%;
  }
  .cookie-div span {
    width: 18%;
    height: fit-content;
  }
  .blocker .search-modal {
    max-width: 700px;
    top: 18px;
  }
  .blocker .search-modal .modal-body .modal-form .heading h1 {
    text-align: left;
  }
  .blocker .search-modal .modal-body .modal-form .search {
    flex-direction: row;
    flex-wrap: wrap;
    box-shadow: 0 0 4px #cccccc;
  }
  .blocker .search-modal .modal-body .modal-form .search img {
    display: flex;
  }
  .blocker .search-modal .modal-body .modal-form .search .form-input {
    width: 100%;
    box-shadow: none;
  }
  .blocker .search-modal .modal-body .modal-form .search .search-button {
    display: none;
  }
  .blocker .search-modal .modal-body .modal-form .searched-list {
    display: flex;
  }
  .blocker .search-modal .close-modal {
    top: 29px;
    right: 27px;
  }
  #scroll {
    right: 20px;
    bottom: 90px;
  }
  .home-list {
    width: 46.5% !important;
  }
  .blog-list {
    width: 85.5% !important;
  }
  .search-list {
    width: 92.7% !important;
  }
}
@media (min-width : 1024px) {
  .blog-list {
    width: 25%!important;
  }
  .home-list {
    width: 41.5% !important;
  }
  .search-list {
    width: 58.7% !important;
  }
  .banner .logo-section .logo-container .logo-image a .logo {
    width: 180px;
  }
  .banner .logo-section .logo-container .content-bar {
    width: 92%;
  }
  .banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul {
    width: 74%;
  }
  .banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar .menu-right {
    display: flex;
    width: 27%;
  }
  .banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar .menu-right .search-btn {
    padding: 7px 12px;
  }
  .banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar .menu-right .phone-link {
    padding: 10px;
    padding-right: 24px;
  }
  .banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar .menu-right .phone-link a {
    font-size: 11px;
  }
  .banner .logo-section .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar .menu-right .phone-link a img {
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }
  .banner .logo-section .dropdown-sec {
    z-index: 99;
  }
  .banner .logo-section .dropdown-sec .navbar .course-menu-section {
    width: 72%;
  }
  .banner .logo-section .dropdown-sec .navbar .course-menu-section .course-menu {
    min-height: 185px;
  }
  .banner .logo-section .dropdown-sec .navbar .course-menu-section .bottomList .clients .client-list li {
    width: 92px;
  }
  .banner .fixed-header .header-menu .top-bar ul li {
    padding-left: 1rem;
  }
  .banner .fixed-header .header-menu .top-bar ul .quote-link {
    display: flex;
  }
  .banner .fixed-header .header-menu .top-bar ul .cart-link {
    display: flex;
  }
  .banner .fixed-header .header-menu .filters-fixed .select-fliters .select-dropdown {
    width: 29%;
  }
  .banner .banner-section .banner-content .detail {
    width: 44%;
  }
  .banner .banner-section .banner-content .detail h1 {
    font-size: 26px;
  }
  .banner .banner-section .banner-content .detail p {
    font-size: 14px;
  }
  .banner .banner-section .banner-content .courses {
    flex-direction: row;
    flex-wrap: wrap;
    width: 56%;
    padding-left: 2rem;
  }
  .banner .banner-section .banner-content .courses .courses-list {
    width: 50%;
    position: relative;
  }
  .banner .banner-section .banner-content .courses .courses-list a {
    padding: 5px;
    padding-left: 20px;
    position: absolute;
    width: 100%;
  }
  .banner .banner-section .banner-content .courses .courses-list a:nth-child(1) {
    top: 6px;
    left: 14px;
  }
  .banner .banner-section .banner-content .courses .courses-list a:nth-child(2) {
    top: 70px;
  }
  .banner .banner-section .banner-content .courses .courses-list a:nth-child(3) {
    top: 138px;
  }
  .banner .banner-section .banner-content .courses .courses-list a:nth-child(4) {
    top: 206px;
    left: 14px;
  }
  .banner .banner-section .banner-content .courses .viewall {
    display: flex;
  }
  .banner .banner-section .down-arrow {
    bottom: -33px;
  }
  .footer {
    padding-bottom: 4.5rem;
  }
  .footer:before {
    display: block;
    background-image: url(../img/master/wave-left-md.png);
    background-size: 18% 60%;
  }
  .footer .footer-container {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
  .footer .footer-container .footer-logo {
    display: flex;
    width: 14%;
    margin-top: -2rem;
  }
  .footer .footer-container .footer-logo img {
    width: 110px;
  }
  .footer .footer-container .footer-info {
    width: 85%;
  }
  .footer .footer-container .footer-info .otherlinks {
    margin-bottom: 1rem;
    margin-left: 0.5rem;
  }
  .footer .footer-container .footer-info .otherlinks .footer-contact {
    width: 32%;
    margin-bottom: 0;
  }
  .footer .footer-container .footer-info .otherlinks .footer-links {
    margin-bottom: 0;
    width: 25%;
  }
  .footer .footer-container .footer-info .otherlinks .footer-blog {
    margin-bottom: 0;
    width: 40%;
  }
  .footer .footer-container .footer-info .copyright {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .footer .footer-container .social-media {
    width: 100%;
    justify-content: flex-end;
  }
  .search-popup .modal-content .modal-body form {
    width: 50%;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  .blog-list {
    width: 305px !important;
  }
  .home-list {
    width: 527px!important;
  }
  .search-list {
    width: 56.5% !important;
  }
  .breadcrums:after {
    display: flex;
  }
  .cookie-div span {
    width: 10%;
  }
  .buttons .orange-btn,
  .buttons .white-btn,
  .buttons .blue-btn {
    font-size: 18px;
  }
  .banner .logo-section {
    position: relative;
  }
  .banner .logo-section .container {
    position: static;
  }
  .banner .logo-section .container .logo-container {
    padding: 0;
  }
  .banner .logo-section .container .logo-container .logo-image {
    margin-top: 4.5rem;
  }
  .banner .logo-section .container .logo-container .content-bar .top-bar {
    margin-bottom: 5rem;
    padding-right: 0;
    margin-left: 15px;
  }
  .banner .logo-section .container .logo-container .content-bar .links {
    position: absolute;
    right: 0;
    top: 52px;
    width: 70%;
  }
  .banner .logo-section .container .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul {
    width: 70%;
  }
  .banner .logo-section .container .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul .links-li {
    padding-left: 0.5rem;
  }
  .banner .logo-section .container .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul .links-li .link {
    font-size: 13px;
  }
  .banner .logo-section .container .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar .menu-right {
    width: 32%;
  }
  .banner .logo-section .container .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar .menu-right .phone-link a {
    font-size: 14px;
  }
  .banner .logo-section .container .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar .menu-right .phone-link a img {
    width: 25px;
    height: 25px;
    margin-right: 8px;
  }
  .banner .logo-section .container .logo-container .content-bar .links .linksbar-angle .menu-container .review-bar {
    padding: 10px 75px 10px 15px;
  }
  .banner .logo-section .container .dropdown-sec {
    width: 88%;
    margin-right: auto;
    top: 151px;
  }
  .banner .logo-section .container .dropdown-sec .navbar .menu .list span {
    font-size: 14px;
  }
  .banner .logo-section .container .dropdown-sec .navbar .course-menu-section {
    justify-content: space-between;
  }
  .banner .logo-section .container .dropdown-sec .navbar .course-menu-section .course-menu {
    min-height: 250px;
  }
  .banner .logo-section .container .dropdown-sec .navbar .course-menu-section .course-menu .course-menu-list .courseList {
    font-size: 14px;
  }
  .banner .logo-section .container .dropdown-sec .navbar .course-menu-section .bottomList {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .banner .logo-section .container .dropdown-sec .navbar .course-menu-section .bottomList .clients {
    margin-bottom: 0;
  }
  .banner .logo-section .container .dropdown-sec .navbar .course-menu-section .bottomList .clients .client-list li {
    width: 82px;
  }
  .banner .logo-section .container .dropdown-sec .navbar .course-menu-section .bottomList .clients .client-list li img {
    width: 46px;
  }
  .banner .logo-section .container .dropdown-sec .navbar .course-menu-section .bottomList .clients .client-list li .logo-img {
    width: 70px;
  }
  .banner .logo-section .container .dropdown-sec .navbar .course-menu-section .bottomList .buttons {
    width: 204px;
  }
  .banner .fixed-header .header-menu .top-bar {
    width: 1200px;
    margin: 0 auto;
    padding: 4rem 0rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .banner .fixed-header .header-menu .top-bar ul .call-link a .text,
  .banner .fixed-header .header-menu .top-bar ul .email-link a .text {
    display: flex;
  }
  .banner .fixed-header .header-menu .top-bar ul .email-link a .icon {
    margin-right: 6px;
  }
  .banner .fixed-header .header-menu .filters-fixed {
    padding: 4rem 0rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .banner .fixed-header .header-menu .filters-fixed .select-fliters {
    width: 1200px;
    margin: 0 auto;
  }
  .banner .banner-section {
    padding: 4rem 0rem;
  }
  .banner .banner-section .banner-content .detail {
    margin-bottom: 0;
  }
  .banner .banner-section .banner-content .courses .courses-list a:nth-child(1) {
    top: -9px;
  }
  .banner .banner-section .banner-content .courses .courses-list a:nth-child(2) {
    top: 64px;
  }
  .banner .banner-section .banner-content .courses .courses-list a:nth-child(3) {
    top: 144px;
  }
  .banner .banner-section .banner-content .courses .courses-list a:nth-child(4) {
    top: 219px;
  }
  .banner .banner-section .banner-content .courses .viewall {
    background-size: contain;
  }
  .footer {
    padding-bottom: 6rem;
    margin-top: 5rem;
    background-image: url(../img/master/footer-bg.png);
    background-size: 100% 100%;
  }
  .footer .container {
    width: 100%;
    padding: 0 4rem;
  }
  .footer:before {
    background-image: none;
  }
  .footer .footer-container {
    position: relative;
    padding: 4rem 0rem;
    padding-bottom: 0rem;
  }
  .footer .footer-container .footer-logo {
    margin-top: -2.7rem;
  }
  .footer .footer-container .footer-logo img {
    width: 145px;
  }
  .footer .footer-container .footer-info {
    width: 80%;
  }
  .footer .footer-container .footer-info .otherlinks {
    margin-left: 2rem;
  }
  .footer .footer-container .footer-info .otherlinks .footer-links {
    width: 20%;
  }
  .footer .footer-container .footer-info .otherlinks .footer-blog {
    width: 44%;
  }
  .footer .footer-container:before {
    background-size: contain;
  }
  .footer .footer-container .social-media {
    position: absolute;
    bottom: 4px;
    right: -36px;
    margin-bottom: 0;
    width: 18%;
  }
  .footer .footer-container .social-media .orange-heading {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .footer .footer-container .social-media .orange-heading h2 {
    color: #000000;
    margin-left: auto;
    margin-right: 0;
  }
  .footer .footer-container .social-media .orange-heading h2::after {
    background-image: url(../img/master/blue-orange.png);
  }
  .footer .footer-container .social-media .media-list {
    justify-content: flex-end;
  }
  .footer .footer-container .social-media .media-list a:last-child {
    margin-right: 0;
  }
  .footer .footer-content {
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
  }
  .footer .footer-content p {
    width: 1200px;
    margin: 0 auto;
  }
  .quick-links {
    padding: 4rem 0rem;
  }
  #scroll {
    right: 34px;
    bottom: 124px;
  }
}
@media (min-width : 1440px) {
  .banner .logo-section .container .dropdown-sec {
    width: 81%;
  }
  .banner .logo-section .container .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul {
    width: 67%;
  }
  .banner .logo-section .container .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar .menu-right {
    width: 39%;
  }
  .banner .logo-section .container .logo-container .content-bar .links .linksbar-angle .menu-container .review-bar ul .rating-li {
    width: 41%;
  }
}
@media (min-width : 1600px) {
  .banner .logo-section .container .dropdown-sec {
    width: 79%;
  }
  .banner .logo-section .container .logo-container .content-bar .links {
    width: 66%;
  }
  .banner .logo-section .container .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul {
    width: 59%;
  }
  .banner .logo-section .container .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar .menu-right {
    width: 41%;
  }
  .banner .logo-section .container .logo-container .content-bar .links .linksbar-angle .menu-container .review-bar ul .rating-li {
    width: 33.5%;
  }
}
@media (min-width : 1800px) {
  .banner .logo-section .container .dropdown-sec {
    width: 76%;
  }
  .banner .logo-section .container .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar ul {
    width: 54%;
  }
  .banner .logo-section .container .logo-container .content-bar .links .linksbar-angle .menu-container .menu-bar .menu-right {
    width: 47%;
  }
  .banner .logo-section .container .logo-container .content-bar .links .linksbar-angle .menu-container .review-bar ul .rating-li {
    width: 23%;
  }
}
.home-banner {
  background-image: url(../img/master/banner-mob.svg);
}
.category-section {
  padding: 3rem 1.5rem;
}
.category-section .category-container {
  display: flex;
  flex-direction: column;
}
.category-section .category-container .heading {
  justify-content: center;
  align-items: center;
}
.category-section .category-container .category-list {
  display: flex;
  flex-direction: column;
}
.category-section .category-container .category-list .lists {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
  margin-bottom: 0;
  flex-wrap: wrap;
  background-image: url(../img/homepage/category-mob.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 272px;
  align-self: center;
}
.category-section .category-container .category-list .lists a {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  bottom: 0;
  background: #FFF;
  display: flex;
  border-radius: 22px;
  flex-direction: column;
  width: 105px;
  height: 105px;
  transform: rotate(45deg);
  justify-content: center;
  position: relative;
  margin-bottom: 5.5rem;
  overflow: hidden;
}
.category-section .category-container .category-list .lists a:nth-child(9),
.category-section .category-container .category-list .lists a:nth-child(10) {
  margin-bottom: 4rem;
}
.category-section .category-container .category-list .lists a .icon {
  display: flex;
  background-image: linear-gradient(-90deg, #505858 -30%, #00607F 92%);
  padding: 15px;
  width: 55px;
  height: 55px;
  position: absolute;
  top: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 70px;
  border-top-right-radius: 6px;
}
.category-section .category-container .category-list .lists a .icon img {
  transform: rotate(-45deg);
  width: 28px;
  margin-top: -2px;
  margin-left: -2px;
}
.category-section .category-container .category-list .lists a .list-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  transform: rotate(-45deg);
  position: absolute;
  top: 34px;
  left: 14px;
}
.category-section .category-container .category-list .lists a .list-content h3 {
  margin-bottom: 1rem;
  text-align: center;
  height: 38px;
}
.category-section .category-container .category-list .lists a .list-content .right-arrow {
  background-color: #FEB500;
  display: flex;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  width: 22px;
  padding: 4px;
  border-radius: 30px;
}
.category-section .category-container .category-list .lists a .list-content .right-arrow img {
  width: 100%;
  height: 100%;
}
.delivery-methods {
  padding: 3rem 1.5rem;
  background: linear-gradient(120deg, #f8f8f8 55%, #dfdfdf 98%);
}
.delivery-methods .delivery-sec {
  display: flex;
  flex-direction: column;
}
.delivery-methods .delivery-sec a {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.delivery-methods .delivery-sec a .delivery-left {
  display: flex;
  justify-content: center;
  background-color: #FEB500;
  padding: 14px 18px;
  border-radius: 0 30px;
  width: 80px;
}
.delivery-methods .delivery-sec a .delivery-left img {
  width: 40px;
  height: 40px;
}
.delivery-methods .delivery-sec a .delivery-right {
  display: flex;
  flex-direction: column;
  width: calc(100% - 102px);
}
.delivery-methods .delivery-sec a .delivery-right h3 {
  color: #00607F;
  font-size: 20px;
  margin-bottom: 6px;
}
.delivery-methods .delivery-sec a .delivery-right p {
  line-height: 1.6;
}
.delivery-methods .delivery-sec a:last-child {
  margin-bottom: 0;
}
.query-section {
  padding: 3rem 1.5rem;
  padding-bottom: 0;
}
.query-section .query-container {
  display: flex;
  flex-direction: column;
  position: relative;
}
.query-section .query-container:before {
  content: '';
  width: 65px;
  height: 65px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
  background-color: #FFF;
  background-image: url(../img/homepage/call-link.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 62% 62%;
  position: absolute;
  top: 38%;
  right: 0;
  left: 0;
  margin: auto;
  border-radius: 50%;
}
.query-section .query-container .contact-container {
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  background-image: url(../img/homepage/contact-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
}
.query-section .query-container .contact-container h3 {
  font-size: 20px;
  margin-bottom: 1rem;
  color: #00607F;
  text-align: center;
}
.query-section .query-container .contact-container form {
  width: 100%;
}
.query-section .query-container .contact-container .contact-form {
  display: flex;
}
.query-section .query-container .contact-container .contact-form .input-field {
  padding: 10px;
  margin-bottom: 1rem;
  border: none;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.22);
  border-radius: 4px;
  outline: none;
}
.query-section .query-container .contact-container .contact-form .submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  background-color: #FEB500;
  border-radius: 8px;
  text-decoration: none;
  outline: none;
  border: none;
  width: 140px;
  margin: auto;
  cursor: pointer;
}
.query-section .query-container .call-container {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1rem;
  background-image: url(../img/homepage/call-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  color: #FFF;
  margin-top: 2rem;
  align-items: center;
}
.query-section .query-container .call-container h3 {
  font-size: 20px;
  margin-bottom: 1rem;
  text-align: center;
  color: #FFF;
}
.query-section .query-container .call-container .call-link {
  font-size: 17px;
}
.query-section .query-container .call-container .call-link a {
  font-size: 17px;
  font-weight: 600;
  color: #feb500;
}
.query-section .query-container .call-container .call-link a:hover {
  color: #919191;
}
.chooseus {
  padding: 3rem 1.5rem;
}
.chooseus .chooseus-container {
  display: flex;
  flex-direction: column;
}
.chooseus .chooseus-container .data-analytics {
  display: flex;
  order: 1;
  height: 100%;
}
.chooseus .chooseus-container .data-analytics img {
  width: 100%;
  height: 100%;
}
.chooseus .chooseus-container .chooseus-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.chooseus .chooseus-container .chooseus-content .chooseus-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.chooseus .chooseus-container .chooseus-content .chooseus-list .middle-list {
  display: flex;
  flex-direction: column;
  order: 2;
}
.chooseus .chooseus-container .chooseus-content .chooseus-list .top-list {
  order: 1;
}
.chooseus .chooseus-container .chooseus-content .chooseus-list .bottom-list {
  order: 3;
}
.chooseus .chooseus-container .chooseus-content .chooseus-list .list {
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.16);
  padding: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
  border-radius: 6px;
}
.chooseus .chooseus-container .chooseus-content .chooseus-list .list .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background-color: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  padding: 10px 12px;
  border-radius: 50px;
  width: 60px;
  height: 60px;
}
.chooseus .chooseus-container .chooseus-content .chooseus-list .list .icon img {
  width: 35px;
  height: 35px;
}
.chooseus .chooseus-container .chooseus-content .chooseus-list .list h3 {
  color: #00607F;
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}
.chooseus .chooseus-container .chooseus-content .chooseus-list .list p {
  line-height: 1.6;
  text-align: center;
}
.facts {
  padding: 3rem 1.5rem;
  background-image: url(../img/homepage/fact-mob.svg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 5rem;
}
.facts .facts-circle {
  display: none;
}
.facts .facts-circle img {
  position: absolute;
}
.facts .facts-circle img:nth-child(1) {
  left: -49px;
  top: 7px;
  width: 12%;
  animation: zoominoutsinglefeatured 3s linear infinite;
}
.facts .facts-circle img:nth-child(2) {
  right: 268px;
  top: 170px;
  width: 11%;
  animation: zoominoutsinglefeatured 3s linear infinite;
}
.facts .facts-circle img:nth-child(3) {
  top: 360px;
  width: 12%;
  right: 0px;
  animation: zoominoutsinglefeatured 3s linear infinite;
}
.facts .facts-section {
  display: flex;
  flex-direction: column;
  color: #FFF;
  position: relative;
}
.facts .facts-section .some-facts {
  display: flex;
  flex-direction: column;
  margin-top: 14rem;
}
.facts .facts-section .some-facts .facts-text {
  display: flex;
  flex-direction: column;
}
.facts .facts-section .some-facts .facts-text p {
  color: #FFF;
  margin-bottom: 2.5rem;
}
.facts .facts-section .some-facts .facts-text h3 {
  margin: 1rem 0;
  font-size: 24px;
  margin-top: 0;
}
.facts .facts-section .some-facts .facts-figure {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 1;
}
.facts .facts-section .some-facts .facts-figure .facts-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 48%;
  margin-bottom: 3rem;
}
.facts .facts-section .some-facts .facts-figure .facts-item .image {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 5px #c1c1c1;
  margin-bottom: 2rem;
}
.facts .facts-section .some-facts .facts-figure .facts-item .image img {
  width: 32px;
}
.facts .facts-section .some-facts .facts-figure .facts-item .image::after {
  position: absolute;
  content: '';
  left: -9px;
  top: -10px;
  bottom: -9px;
  width: 131%;
  box-shadow: 0 0 5px #c1c1c1;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: -1;
  border-radius: 50%;
}
.facts .facts-section .some-facts .facts-figure .facts-item .image::before {
  position: absolute;
  content: '';
  left: -19px;
  top: -19px;
  bottom: -18px;
  width: 166%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: -1;
  border-radius: 50%;
}
.facts .facts-section .some-facts .facts-figure .facts-item p {
  color: #FFF;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  line-height: 1.4;
}
.facts .facts-section .some-facts .facts-figure .facts-item h3 {
  font-size: 16px;
  text-align: center;
}
.facts .facts-section .some-facts .facts-figure .facts-item:nth-child(3),
.facts .facts-section .some-facts .facts-figure .facts-item:nth-child(4) {
  margin-bottom: 0;
}
.facts .facts-section .some-facts .facts-figure .facts-item:hover .image img {
  transition: all 0.8s ease-in, color 0.3s ease-in-out;
  transform: rotate(360deg);
}
.facts .facts-section .offer-section {
  display: flex;
  position: absolute;
  top: -75px;
  align-self: center;
}
.facts .facts-section .offer-section .offers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  width: 250px;
  height: 250px;
  position: relative;
  border-radius: 50%;
  z-index: 1;
  background-image: url(../img/homepage/offers.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.facts .facts-section .offer-section .offers::before {
  content: '';
  border-radius: 50%;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 0 5px #c1c1c1;
  position: absolute;
  z-index: 0;
}
.facts .facts-section .offer-section .offers p {
  width: 90%;
  text-align: center;
  margin-bottom: 10px;
  color: #000000;
  font-weight: 800;
}
.facts .facts-section .offer-section .offers .buttons {
  z-index: 1;
}
.facts .facts-section .offer-section .offers .buttons .blue-btn {
  font-size: 18px;
  padding: 8px 24px;
}
.facts .facts-section .offer-section .offers .buttons .blue-btn img {
  height: 20px;
}
.review-section {
  padding: 3rem 1.5rem;
  background-image: linear-gradient(#fffff5 52.2%, #ecf8ff 47%);
}
.review-section .review-container {
  display: flex;
  flex-direction: column;
}
.review-section .review-container .testimonial {
  padding: 0;
}
.review-section .review-container .testimonial p {
  color: #505B6D;
  line-height: 1.6;
  margin-bottom: 2rem;
  margin-top: 2rem;
  text-align: center;
}
.review-section .review-container .testimonial .para {
  color: #919191;
  margin: 1rem 0;
  text-align: center;
}
.review-section .review-container .testimonial .trusted {
  color: #00607F;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1rem;
  margin-top: 0;
  text-align: center;
}
.review-section .review-container .testimonial h3 {
  color: #FEB500;
  font-size: 21px;
  text-align: center;
}
.review-section .review-container .testimonial .user-image {
  display: none;
  position: relative;
}
.review-section .review-container .testimonial .user-image img {
  position: absolute;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  border: 2px solid #707070;
}
.review-section .review-container .testimonial .user-image img:nth-child(1) {
  top: 19rem;
  left: -24rem;
}
.review-section .review-container .testimonial .user-image img:nth-child(2) {
  top: 18rem;
  left: 18rem;
}
.review-section .review-container .testimonial .user-image img:nth-child(3) {
  top: 25rem;
  left: -15rem;
}
.review-section .review-container .testimonial .user-image img:nth-child(4) {
  top: 25rem;
  left: 11rem;
}
.review-section .review-container .testimonial .testimonials-box {
  display: flex;
  flex-direction: column;
  margin: 1rem 0 2.5rem;
  width: 100%;
  padding: 0 1.5rem;
  position: relative;
}
.review-section .review-container .testimonial .testimonials-box::before {
  content: '';
  background-image: url(../img/homepage/testimonial-mob.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}
.review-section .review-container .testimonial .testimonials-box .items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.review-section .review-container .testimonial .testimonials-box .items .img {
  width: 110px;
  height: 110px;
  position: relative;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}
.review-section .review-container .testimonial .testimonials-box .items .img:before {
  border-radius: 100%;
  content: '';
  background-image: linear-gradient(-108deg, #505858 -30%, #00607F 39%);
  padding: 5px;
  width: 106px;
  height: 106px;
  top: -3px;
  left: -3px;
  position: absolute;
  z-index: -1;
}
.review-section .review-container .testimonial .testimonials-box .items .img img {
  border: 0;
  border-radius: 50%;
  display: flex;
  align-self: center;
  margin: 0;
  width: 100%;
}
.review-section .review-container .testimonial .testimonials-box .items .user-review {
  font-style: italic;
  margin-bottom: 2rem;
  text-align: center;
}
.review-section .review-container .testimonial .testimonials-box .items .user-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
.review-section .review-container .testimonial .testimonials-box .items .user-info img {
  width: 28px;
  margin-bottom: 1rem;
}
.review-section .review-container .testimonial .testimonials-box .items .user-info .user-name {
  color: #00607F;
  font-size: 16px;
}
.review-section .review-container .testimonial .testimonials-box .items .user-info .user-desig {
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 14px;
  text-align: center;
}
.review-section .review-container .testimonial .testimonials-box .owl-nav {
  display: none;
}
.review-section .review-container .testimonial .testimonials-box .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.review-section .review-container .testimonial .testimonials-box .owl-dots .owl-dot {
  background-color: #E4E4E4;
  border-radius: 50%;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  outline: 0;
}
.review-section .review-container .testimonial .testimonials-box .owl-dots .owl-dot.active {
  background-color: #00607F;
}
.review-section .review-container .contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.review-section .review-container .contact-form form {
  width: 100%;
}
.review-section .review-container .contact-form form .buttons {
  margin-top: 1rem;
}
.training {
  padding: 3rem 1.5rem;
  background: #21c0c8;
}
.training .training-bg {
  display: none;
}
.training .training-bg img {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  animation: ani-rotate 50s linear infinite;
  display: flex;
  right: 11px;
  width: 490px;
  top: -17px;
}
.training .training-section {
  display: flex;
  flex-direction: column;
}
.training .training-section .training-content {
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.training .training-section .training-content .course-heading {
  color: #00607F;
  margin-bottom: 0.5rem;
  font-style: italic;
  font-weight: 600;
}
.training .training-section .training-content p {
  color: #FFF;
}
.training .training-section .training-content .course-detaill {
  margin-bottom: 1.5rem;
  color: #FFF;
}
.training .training-section .training-content .buttons {
  justify-content: flex-start;
  margin-top: 2rem;
}
.training .training-section .training-content .buttons a {
  width: 130px;
  min-width: 130px;
}
.training .training-section .training-content .buttons .white-btn {
  margin-right: 1rem;
}
.training .training-section .training-content .buttons .white-btn img {
  height: 100%;
}
.training .training-section .training-content .buttons .orange-btn {
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  border-left: transparent;
}
.training .training-section .training-content .rating-container {
  display: flex;
  flex-direction: column;
  color: #FFF;
  margin-top: 1.5rem;
}
.training .training-section .training-content .rating-container h3 {
  font-size: 20px;
}
.training .training-section .training-content .rating-container .points-section {
  display: flex;
  align-items: center;
}
.training .training-section .training-content .rating-container .points-section h2 {
  font-size: 42px;
  margin-right: 1.5rem;
  width: 30%;
}
.training .training-section .training-content .rating-container .points-section .rating-sec {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.training .training-section .training-content .rating-container .points-section .rating-sec .rating {
  display: flex;
}
.training .training-section .training-content .rating-container .points-section .rating-sec .rating img {
  width: 14px;
}
.training .training-section .training-content .rating-container .points-section .rating-sec .rating-points {
  font-size: 15px;
  font-weight: bold;
}
.training .training-section .training-img {
  display: none;
}
.training .training-section .training-img img {
  width: 480px;
  height: 100%;
}
.clients {
  padding: 3rem 1.5rem;
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
  justify-content: center;
  align-items: center;
}
.clients .client-list {
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
}
.clients .client-list li {
  list-style: none;
  display: flex;
  align-items: center;
  width: 115px;
  height: 90px;
  justify-content: space-around;
}
.clients .client-list li img {
  width: 70px;
}
#ui-id-2 {
  width: 78%;
  list-style: none;
  padding: 0;
  margin: 0;
  outline: 0;
  max-height: 60vh;
  background-color: #FFF;
  border-top: 1px solid #c5c5c51f;
}
#ui-id-2 .ui-autocomplete-category {
  color: #00607F;
  font-weight: 700;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 5px;
  font-size: 16px;
  padding: 8px;
}
#ui-id-2 .ui-menu-item {
  padding: 3px;
}
#ui-id-2 .ui-menu-item .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px 0.4em;
}
@media (min-width : 768px) {
  .home-banner {
    background-image: url(../img/master/banner-md.svg);
  }
  .home-banner .banner-section .banner-content .courses .courses-list a .bg-circle {
    width: 35px;
    height: 35px;
  }
  .home-banner .banner-section .banner-content .courses .courses-list a .bg-circle img {
    width: 20px;
  }
  .category-section {
    padding: 3rem 2rem;
  }
  .category-section .category-container p {
    text-align: center;
  }
  .category-section .category-container .heading h2 {
    text-align: center;
  }
  .category-section .category-container .heading h2::after {
    background-position: center;
  }
  .category-section .category-container .category-list {
    justify-content: center;
  }
  .category-section .category-container .category-list .lists {
    background-image: url(../img/homepage/category-lg.png);
    justify-content: center;
    width: 100%;
  }
  .category-section .category-container .category-list .lists a {
    width: 122px;
    height: 122px;
    margin-right: 2rem;
    margin-left: 1.5rem;
  }
  .category-section .category-container .category-list .lists a:nth-child(9),
  .category-section .category-container .category-list .lists a:nth-child(10) {
    margin-bottom: 5.5rem;
  }
  .category-section .category-container .category-list .lists a .icon {
    width: 72px;
    height: 72px;
    top: -3px;
    left: 0;
    padding: 18px;
  }
  .category-section .category-container .category-list .lists a .icon img {
    width: 30px;
  }
  .category-section .category-container .category-list .lists a .list-content {
    top: 46px;
    left: 20px;
  }
  .category-section .category-container .category-list .lists a .list-content h3 {
    min-height: 38px;
  }
  .delivery-methods {
    padding: 3rem 2rem;
  }
  .delivery-methods .delivery-sec {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .delivery-methods .delivery-sec a {
    width: 48%;
  }
  .delivery-methods .delivery-sec a .delivery-left img {
    width: 35px;
    height: 35px;
  }
  .delivery-methods .delivery-sec a:nth-child(3) {
    margin-bottom: 0;
  }
  .delivery-methods .delivery-sec a:nth-child(4) {
    margin-bottom: 0;
  }
  .query-section {
    padding: 3rem 2rem;
    padding-bottom: 0;
  }
  .query-section .query-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .query-section .query-container:before {
    top: 26%;
  }
  .query-section .query-container .contact-container {
    width: calc(50% - 5px);
    padding: 2rem 3rem;
  }
  .query-section .query-container .contact-container .contact-form {
    justify-content: center;
  }
  .query-section .query-container .contact-container .contact-form .input-field {
    margin-bottom: 0;
    width: 77%;
  }
  .query-section .query-container .contact-container .contact-form .submit-btn {
    width: 97px;
    margin: auto;
    padding: 10px 12px;
  }
  .query-section .query-container .call-container {
    width: calc(50% - 5px);
    margin-top: 0;
    padding: 2rem 3rem;
  }
  .chooseus {
    padding: 3rem 2rem;
    padding-bottom: 0!important;
  }
  .chooseus .chooseus-container .data-analytics {
    width: 60%;
    margin: auto;
    height: 380px;
    margin-bottom: 7rem;
    margin-top: 2rem;
  }
  .chooseus .chooseus-container .chooseus-content {
    background-image: url(../img/homepage/chooseus-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: calc(91% - 20px) 29px;
  }
  .chooseus .chooseus-container .chooseus-content .chooseus-list {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .chooseus .chooseus-container .chooseus-content .chooseus-list .list {
    width: 48%;
    min-height: 205px;
    justify-content: center;
  }
  .chooseus .chooseus-container .chooseus-content .chooseus-list .top-list {
    order: 1;
  }
  .chooseus .chooseus-container .chooseus-content .chooseus-list .bottom-list {
    order: 2;
  }
  .chooseus .chooseus-container .chooseus-content .chooseus-list .middle-list {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    order: 3;
  }
  .facts {
    padding: 3rem 2rem;
    padding-top: 0;
  }
  .facts .facts-section .offer-section {
    top: -73px;
    right: 7%;
  }
  .facts .facts-section .some-facts {
    margin-top: 10rem;
  }
  .facts .facts-section .some-facts .facts-figure .facts-item {
    margin-bottom: 0;
    width: 15%;
  }
  .review-section {
    padding: 3rem 2rem;
    background-image: linear-gradient(#fff5 49%, #ecf8ff 49%);
  }
  .review-section .review-container .testimonial {
    align-items: center;
  }
  .review-section .review-container .testimonial .user-image {
    display: flex;
  }
  .review-section .review-container .testimonial .testimonials-box {
    margin: 1.5rem 0 3rem;
  }
  .review-section .review-container .testimonial .testimonials-box::before {
    background-image: url(../img/homepage/testimonial-md.png);
    background-size: 100% 100%;
  }
  .review-section .review-container .testimonial .testimonials-box .owl-dots {
    margin-bottom: 0;
  }
  .review-section .review-container .contact-form {
    background-image: url(../img/homepage/getintouch-bg.png);
    background-position: calc(21% - -38px) 87px;
    background-size: 400px;
    background-repeat: no-repeat;
    width: 60%;
    margin: auto;
    margin-top: 4rem;
  }
  .review-section .review-container .contact-form form .input-container .input-tag {
    padding: 10px 12px;
  }
  .training {
    padding: 3rem 2rem;
    position: relative;
    padding-bottom: 2rem;
    background-image: url(../img/homepage/onlinetraining-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
  }
  .training .training-section .training-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .training .training-section .training-content .para + p + p {
    padding-bottom: 2rem;
  }
  .training .training-section .training-content p {
    width: 100%;
  }
  .training .training-section .training-content .course-detaill {
    margin-bottom: 3rem;
    color: #505b6d;
  }
  .training .training-section .training-content .buttons {
    order: 2;
    width: 40%;
  }
  .training .training-section .training-content .rating-container {
    order: 1;
    margin-top: 0;
  }
  .clients {
    padding: 3rem 2rem;
  }
  .clients .client-list {
    justify-content: space-around;
    width: 100%;
  }
  .clients .client-list li .logo-img {
    width: 78%;
  }
}
@media (min-width : 1024px) {
  .home-banner {
    background-image: url(../img/master/banner-lg.png);
  }
  .category-section .category-container .category-list .lists a {
    margin-left: 2rem;
  }
  .query-section .query-container {
    justify-content: center;
  }
  .query-section .query-container .contact-container {
    width: calc(42% - 5px);
  }
  .query-section .query-container .contact-container h3 {
    font-size: 22px;
  }
  .query-section .query-container .call-container {
    width: calc(42% - 5px);
    margin-left: 2rem;
  }
  .query-section .query-container .call-container h3 {
    font-size: 22px;
  }
  .query-section .query-container .call-container .call-link a {
    font-size: 20px;
  }
  .chooseus .chooseus-container .data-analytics {
    margin-bottom: 2rem;
    width: 46%;
  }
  .chooseus .chooseus-container .chooseus-content {
    background-position: calc(21% - -130px) 32px;
    background-size: 682px;
    padding-bottom: 3rem;
  }
  .chooseus .chooseus-container .chooseus-content .chooseus-list {
    justify-content: space-around;
  }
  .chooseus .chooseus-container .chooseus-content .chooseus-list .middle-list {
    order: 2;
    width: 28%;
  }
  .chooseus .chooseus-container .chooseus-content .chooseus-list .middle-list .list {
    width: 100%;
  }
  .chooseus .chooseus-container .chooseus-content .chooseus-list .middle-list .list:nth-child(1) {
    margin-bottom: 2rem;
  }
  .chooseus .chooseus-container .chooseus-content .chooseus-list .top-list {
    margin-top: -6rem;
  }
  .chooseus .chooseus-container .chooseus-content .chooseus-list .bottom-list {
    margin-top: 5rem;
    order: 3;
  }
  .chooseus .chooseus-container .chooseus-content .chooseus-list .list {
    width: 28%;
    margin-bottom: 0;
  }
  .facts {
    background-image: url(../img/homepage/fact-lg.png);
    background-size: 100% 100%;
    position: relative;
  }
  .facts .facts-circle {
    display: flex;
    position: relative;
  }
  .facts .facts-section .offer-section {
    top: 20px;
  }
  .facts .facts-section .offer-section .offers {
    width: 280px;
    height: 280px;
  }
  .facts .facts-section .offer-section .offers p {
    width: 78%;
  }
  .facts .facts-section .some-facts {
    margin-top: 8rem;
    width: 70%;
  }
  .facts .facts-section .some-facts .facts-text {
    width: 70%;
  }
  .review-section {
    background-image: none;
  }
  .review-section .review-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .review-section .review-container .testimonial {
    width: calc(100% - 493px);
    order: 2;
  }
  .review-section .review-container .testimonial p {
    width: 90%;
  }
  .review-section .review-container .testimonial .trusted {
    margin-bottom: 0.5rem;
    font-size: 16px;
  }
  .review-section .review-container .testimonial h3 {
    font-size: 22px;
  }
  .review-section .review-container .testimonial .user-image img:nth-child(1) {
    top: 17rem;
    left: -21rem;
  }
  .review-section .review-container .testimonial .user-image img:nth-child(2) {
    top: 17rem;
    left: 12rem;
  }
  .review-section .review-container .testimonial .user-image img:nth-child(3) {
    top: 23rem;
    left: -13rem;
  }
  .review-section .review-container .testimonial .user-image img:nth-child(4) {
    top: 23rem;
    left: 7rem;
  }
  .review-section .review-container .testimonial .testimonials-box {
    padding-bottom: 3rem;
    margin: 0;
    margin-right: 4rem;
  }
  .review-section .review-container .testimonial .testimonials-box::before {
    background-size: contain;
    top: 25px;
  }
  .review-section .review-container .testimonial .testimonials-box .items {
    margin-bottom: 1rem;
  }
  .review-section .review-container .testimonial .testimonials-box .items .img {
    width: 90px;
    height: 90px;
  }
  .review-section .review-container .testimonial .testimonials-box .items .img:before {
    width: 86px;
    height: 86px;
  }
  .review-section .review-container .testimonial .testimonials-box .items .user-review {
    margin-bottom: 1rem;
  }
  .review-section .review-container .testimonial .testimonials-box .items .user-info img {
    margin-bottom: 10px;
  }
  .review-section .review-container .testimonial .testimonials-box .items .user-info .user-name {
    margin-bottom: 10px;
  }
  .review-section .review-container .contact-form {
    width: 375px;
    margin: 0;
    order: 1;
    justify-content: flex-start;
    background-position: calc(21% - -32px) 138px;
    background-size: 336px;
  }
  .training:before {
    height: 47%;
  }
  .training .training-bg {
    display: flex;
    position: relative;
  }
  .training .training-bg img {
    right: 55px;
    width: 395px;
  }
  .training .training-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .training .training-section .training-content {
    width: 48%;
  }
  .training .training-section .training-content .buttons {
    order: 1;
    width: 100%;
  }
  .training .training-section .training-content .rating-container {
    order: 2;
    width: 100%;
    margin-top: 1.5rem;
  }
  .training .training-section .training-img {
    display: flex;
    right: 0;
    z-index: 2;
  }
  .clients .client-list li .logo-img {
    width: 100%;
  }
  .ourclients.home-client {
    padding-top: 3rem !important;
  }
}
@media (min-width : 1366px) {
  .home-section {
    padding-top: 6rem!important;
  }
  .category-section {
    padding: 4rem 0rem;
  }
  .category-section .category-container .category-list .lists a {
    width: 145px;
    height: 145px;
    margin-right: 4rem;
  }
  .category-section .category-container .category-list .lists a .list-content h3 {
    font-size: 16px;
    min-height: 42px;
  }
  .delivery-methods {
    padding: 4rem 0rem;
    background-image: url(../img/homepage/delivery-bg.png), linear-gradient(120deg, #f8f8f8 55%, #dfdfdf 98%);
    background-size: 27% 100%,100% 100%;
    background-repeat: no-repeat;
    position: relative;
  }
  .delivery-methods .delivery-sec {
    padding-left: 6rem;
  }
  .delivery-methods .delivery-sec a:nth-child(1) {
    padding-left: 1.2rem;
  }
  .delivery-methods .delivery-sec a:nth-child(2) {
    padding-left: 1rem;
  }
  .delivery-methods .delivery-sec a:nth-child(3) {
    padding-left: 6.5rem;
  }
  .delivery-methods .delivery-sec a:nth-child(4) {
    padding-left: 8rem;
  }
  .query-section {
    padding: 4rem 0rem;
    padding-bottom: 0;
  }
  .query-section .query-container .contact-container {
    width: calc(33% - 5px);
  }
  .query-section .query-container .call-container {
    margin-left: 3rem;
    width: calc(33% - 5px);
  }
  .chooseus {
    padding: 4rem 0rem;
  }
  .chooseus .chooseus-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .chooseus .chooseus-container .data-analytics {
    width: 410px;
    margin: 0;
    margin-top: 3rem;
  }
  .chooseus .chooseus-container .chooseus-content {
    background-position: calc(21% - 20px) 51px;
    background-size: 650px;
    width: calc(100% - 558px);
    order: 2;
    padding-bottom: 0;
  }
  .chooseus .chooseus-container .chooseus-content .heading {
    margin-left: -5rem;
  }
  .chooseus .chooseus-container .chooseus-content .chooseus-list .list {
    width: 33%;
  }
  .chooseus .chooseus-container .chooseus-content .chooseus-list .list .icon img {
    width: 32px;
  }
  .chooseus .chooseus-container .chooseus-content .chooseus-list .list h3 {
    font-size: 15px;
  }
  .chooseus .chooseus-container .chooseus-content .chooseus-list .list p {
    font-size: 13px;
  }
  .chooseus .chooseus-container .chooseus-content .chooseus-list .middle-list {
    width: 33%;
  }
  .chooseus .chooseus-container .chooseus-content .chooseus-list .top-list {
    margin-left: -5rem;
  }
  .facts {
    padding-top: 0;
  }
  .facts .facts-circle img:nth-child(1) {
    top: 20px;
  }
  .facts .facts-circle img:nth-child(2) {
    right: 277px;
    top: 265px;
  }
  .facts .facts-circle img:nth-child(3) {
    width: 8%;
    top: 370px;
  }
  .facts .facts-section .offer-section {
    top: 82px;
  }
  .facts .facts-section .some-facts {
    width: 62%;
  }
  .review-section {
    padding: 4rem 0rem;
  }
  .review-section .review-container .testimonial .user-image img:nth-child(1) {
    top: 14rem;
    left: -25rem;
  }
  .review-section .review-container .testimonial .user-image img:nth-child(2) {
    top: 14rem;
    left: 22rem;
  }
  .review-section .review-container .testimonial .user-image img:nth-child(3) {
    top: 22rem;
    left: -17rem;
  }
  .review-section .review-container .testimonial .user-image img:nth-child(4) {
    top: 22rem;
    left: 12rem;
  }
  .review-section .review-container .testimonial .testimonials-box {
    width: 80%;
    margin-right: 0;
  }
  .training {
    padding: 4rem 0rem;
    padding-bottom: 2rem;
  }
  .training:before {
    height: 45%;
  }
  .training .training-bg img {
    right: calc(16% - 74px);
    width: 440px;
    top: -52px;
  }
  .training .training-section .training-content .buttons a {
    width: 144px;
  }
  .training .training-section .training-img {
    width: 44%;
    justify-content: center;
  }
  .ourclients.home-client {
    padding: 4rem 0rem !important;
  }
}
@media (min-width : 1440px) {
  .delivery-methods {
    background-size: contain;
  }
  .delivery-methods .delivery-sec {
    padding-left: 6rem;
  }
  .delivery-methods .delivery-sec a {
    padding-left: 0!important;
  }
}
.banner.blogimage .banner-section .banner-content .right-image {
  background-image: url(../img/blog/blog.png) !important;
}
.blog {
  padding: 3rem 1.5rem;
  background-image: url('../img/blog/wave.png');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
.blog .blog-content {
  display: flex;
  flex-direction: column;
}
.blog .blog-content .blog-left {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.blog .blog-content .blog-left .blog-container {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  box-shadow: 0 0 10px #dadada;
  background-image: url(../img/blog/left-wave.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  background-color: #ffffff;
  margin-bottom: 2rem !important;
  border-radius: 10px 10px 20px 20px;
  border-bottom: 4px solid #00607F;
}
.blog .blog-content .blog-left .blog-container:last-child {
  margin-bottom: 0;
}
.blog .blog-content .blog-left .blog-container .blog-detail {
  display: flex;
  flex-direction: column;
}
.blog .blog-content .blog-left .blog-container .blog-detail .admin {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  width: 100%;
  justify-content: flex-start;
}
.blog .blog-content .blog-left .blog-container .blog-detail .admin .admin-detail {
  display: flex;
  align-items: center;
  width: 47%;
  margin-right: 1rem;
}
.blog .blog-content .blog-left .blog-container .blog-detail .admin .admin-detail:last-child {
  margin-right: 0;
}
.blog .blog-content .blog-left .blog-container .blog-detail .admin .admin-detail img {
  width: 20px;
  margin-right: 8px;
}
.blog .blog-content .blog-left .blog-container .blog-detail .admin .admin-detail span {
  font-size: 12px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.blog .blog-content .blog-left .blog-container:last-child {
  margin-bottom: 0;
}
.blog .blog-content .blog-left .blog-container .left-side {
  display: none;
  height: 220px;
}
.blog .blog-content .blog-left .blog-container .left-side img {
  width: 100%;
  height: 100%;
}
.blog .blog-content .blog-left .blog-container .right-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.blog .blog-content .blog-left .blog-container .right-side .blog-name {
  padding-bottom: 0.5rem;
  font-size: 16px ;
  font-weight: 600;
  height: 65px;
}
.blog .blog-content .blog-left .blog-container .right-side .blog-content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 5.8rem;
}
.blog .blog-content .blog-left .blog-container .right-side .blog-content h1,
.blog .blog-content .blog-left .blog-container .right-side .blog-content h2,
.blog .blog-content .blog-left .blog-container .right-side .blog-content h3,
.blog .blog-content .blog-left .blog-container .right-side .blog-content ul,
.blog .blog-content .blog-left .blog-container .right-side .blog-content li {
  font-size: 14px;
  color: #919191;
  display: flex;
  line-height: 1.5;
}
.blog .blog-content .blog-left .blog-container .right-side .blog-content img {
  display: none;
}
.blog .blog-content .blog-left .blog-container .right-side .blog-content h1,
.blog .blog-content .blog-left .blog-container .right-side .blog-content h2,
.blog .blog-content .blog-left .blog-container .right-side .blog-content h3,
.blog .blog-content .blog-left .blog-container .right-side .blog-content a {
  font-weight: 600;
}
.blog .blog-content .blog-left .blog-container .right-side .blog-content p {
  font-size: 14px;
  line-height: 1.5;
}
.blog .blog-content .blog-left .blog-container .right-side .blog-content p a {
  color: #000000;
  font-size: 14px;
  margin-top: 5px;
}
.blog .blog-content .blog-left .blog-container .right-side .blog-detail .buttons {
  justify-content: flex-start;
}
.blog .blog-content .blog-right {
  display: flex;
  flex-direction: column;
}
.blog .blog-content .blog-right .heading h1:after {
  background-image: url(../img/blog/line.png);
  bottom: -8px;
}
.blog .blog-content .blog-right .buttons {
  margin: 2rem 0;
}
.blog .blog-content .blog-right .buttons .blue-btn {
  width: 100%;
  border-radius: 0;
}
.blog .blog-content .blog-right .category-div {
  box-shadow: 0 0 10px #d6d6d6;
  margin-bottom: 2rem;
  padding: 2rem 1.5rem;
  background-image: linear-gradient(180deg, #f8f8f8 50%, #eaeaea 85%);
}
.blog .blog-content .blog-right .category-div .heading {
  margin-bottom: 0rem;
}
.blog .blog-content .blog-right .category-div .cat-content {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog .blog-content .blog-right .category-div .cat-content li {
  display: flex;
  width: 100%;
  border-bottom-style: dotted;
  border-bottom-color: #D2D2D2;
  border-bottom-width: 2px;
}
.blog .blog-content .blog-right .category-div .cat-content li:last-child {
  border-bottom-style: none;
}
.blog .blog-content .blog-right .category-div .cat-content li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  width: 100%;
}
.blog .blog-content .blog-right .category-div .cat-content li a img {
  width: 28px;
  margin-right: 10px;
  filter: brightness(0.5);
}
.blog .blog-content .blog-right .category-div .cat-content li a .cat-detail {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.blog .blog-content .blog-right .category-div .cat-content li a .cat-detail p {
  font-size: 14px;
  font-weight: 500;
}
.blog .blog-content .blog-right .category-div .cat-content li a .cat-detail span {
  font-size: 16px;
  font-weight: 600;
  color: #00607F;
}
.blog .blog-content .blog-right .category-div .cat-content li:last-child {
  margin-bottom: 0;
}
.blog .blog-content .blog-right .blog-search {
  margin-bottom: 0!important;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.blog .blog-content .blog-right .blog-search .search {
  width: 100%;
}
.blog .blog-content .blog-right .blog-search .heading {
  width: 100%;
}
.blog .blog-content .blog-right .blog-search .recent-blog-content {
  width: 100%;
}
.blog .blog-content .blog-right .tags {
  box-shadow: 0 0 10px #d6d6d6;
  padding: 2rem 1.5rem;
  background-image: linear-gradient(180deg, #f8f8f8 50%, #eaeaea 85%);
}
.blog .blog-content .blog-right .tags ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.blog .blog-content .blog-right .tags ul li {
  display: flex;
  margin-bottom: 1rem;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
}
.blog .blog-content .blog-right .tags ul li a {
  background-color: #FFF;
  border: 1px solid #b5b5b5;
  display: flex;
  padding: 0.5rem;
  font-size: 12px;
  font-weight: 500;
}
.blog .blog-content .blog-right .tags ul li:hover a {
  color: #00607F;
  font-weight: 900;
}
.blog .enquiry-now {
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding-top: 2rem;
  flex-direction: column;
}
.blog .enquiry-now .content {
  margin-bottom: 2rem;
}
.blog .enquiry-now .content p {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  color: #00607F;
  line-height: 1.3;
}
@media (min-width : 768px) {
  .blog {
    padding: 3rem 2rem;
  }
  .blog .blog-content .blog-left {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1rem;
  }
  .blog .blog-content .blog-left .blog-container {
    width: 48%;
    margin: 0;
  }
  .blog .blog-content .blog-left .blog-container .right-side .blog-name h3 {
    font-size: 16px;
    min-height: 42px;
  }
  .blog .blog-content .blog-left .blog-container .blog-detail .admin .admin-detail {
    width: 150px;
  }
  .blog .blog-content .blog-right .category-div {
    padding: 2rem;
  }
  .blog .blog-content .blog-right .category-div .heading {
    margin-bottom: 0.5rem;
  }
  .blog .blog-content .blog-right .tags {
    padding: 1rem;
  }
  .blog .blog-content .blog-right .tags ul li:last-child {
    margin-bottom: 1rem;
  }
  .blog .blog-content .blog-right .blog-search .recent-blog-content {
    width: 48%;
  }
  .blog .blog-content .blog-right .blog-search .recent-blog-content:nth-last-child(1) {
    margin-bottom: 0;
  }
  .blog .blog-content .blog-right .blog-search .recent-blog-content .recent-image {
    display: none;
    width: 170px;
  }
  .blog .enquiry-now {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .blog .enquiry-now .content {
    margin-bottom: 0;
    width: 70%;
  }
  .blog .enquiry-now .content p {
    text-align: left!important;
  }
  .blog .enquiry-now .buttons {
    width: 30%;
    justify-content: flex-end;
  }
}
@media (min-width : 1024px) {
  .blog .blog-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
  }
  .blog .blog-content .blog-left {
    width: 65%;
    margin-bottom: 0rem;
  }
  .blog .blog-content .blog-left .blog-container {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
    background-position: right;
  }
  .blog .blog-content .blog-left .blog-container .blog-detail {
    flex-direction: row;
    justify-content: space-between;
    margin: 1rem 0;
    width: 97%;
  }
  .blog .blog-content .blog-left .blog-container .blog-detail .admin {
    width: calc(100% - 100px);
    margin: 0;
  }
  .blog .blog-content .blog-left .blog-container .left-side {
    width: 26%;
    margin-bottom: 0;
    height: auto;
  }
  .blog .blog-content .blog-left .blog-container .right-side .blog-name {
    height: auto;
  }
  .blog .blog-content .blog-left .blog-container .right-side .blog-detail .buttons {
    width: 180px;
    justify-content: flex-end;
  }
  .blog .blog-content .blog-right {
    width: 32%;
    position: sticky;
    top: 125px;
    height: fit-content;
  }
  .blog .blog-content .blog-right .category-div {
    padding: 2rem 1.5rem;
  }
  .blog .blog-content .blog-right .recent-blog .recent-blog-content {
    width: 100%;
    max-height: inherit;
  }
  .blog .blog-content .blog-right .recent-blog .recent-blog-content:nth-last-child(2) {
    margin-bottom: 2rem;
  }
  .blog .blog-content .blog-right .tags {
    padding: 2rem 1.5rem;
  }
  #ui-id-2 {
    width: 267px;
  }
}
@media (min-width : 1366px) {
  .blog {
    padding: 4rem 0rem;
  }
  .blog .blog-content {
    margin-top: 1rem;
  }
  .blog .blog-content .blog-left {
    width: 65%;
  }
  .blog .blog-content .blog-left .blog-container .blog-detail .admin {
    justify-content: flex-start;
  }
  .blog .blog-content .blog-right {
    width: 30%;
  }
}
.form-touch {
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.form-touch .form-list {
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  color: #919191;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.19);
  padding: 1.5rem;
  border-radius: 12px;
}
.form-touch .form-list .form-left {
  display: flex;
  flex-direction: column;
}
.form-touch .form-list .form-left form {
  display: flex;
  flex-direction: column;
}
.form-touch .form-list .form-left .input-container {
  margin-bottom: 1rem;
}
.form-touch .form-list .form-left .input-container label {
  margin-bottom: 8px;
  font-weight: bold;
  color: #00607F;
}
.form-touch .form-list .form-left .input-container .input-tag,
.form-touch .form-list .form-left .input-container .address {
  background-color: #f7f7f7;
  box-shadow: none;
  padding: 10px;
  border: 1px solid transparent;
}
.form-touch .form-list .form-left .buttons {
  margin-top: 1rem;
  justify-content: flex-start;
}
.form-touch .form-list .form-left .buttons .orange-btn {
  outline: none;
  border: none;
}
.form-touch .form-list .form-right {
  display: none;
  flex-direction: column;
  width: 38%;
}
.form-touch .form-list .form-right .contact-graph {
  width: 100%;
  display: flex;
  margin-bottom: 1rem;
}
.form-touch .form-list .form-right .contact-graph img {
  width: 100%;
  height: 100%;
}
.form-touch .form-list .form-right .cont-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.form-touch .form-list .form-right .cont-info:last-child {
  margin-bottom: 0;
}
.form-touch .form-list .form-right .cont-info span {
  display: flex;
  width: 25px;
  margin-right: 10px;
}
.form-touch .form-list .form-right .cont-info span img {
  width: 100%;
  height: 100%;
}
.form-touch .form-list .form-right .cont-info p {
  width: 82%;
  justify-content: flex-start;
}
.form-touch .form-list .form-right .cont-info a {
  justify-content: flex-start;
}
.findus {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
}
.findus .findus-container {
  display: flex;
  flex-direction: column;
  position: relative;
}
.findus .findus-container .findus-left {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  background-color: #2e7b95;
  color: #FFF;
  align-items: flex-start;
  z-index: 2;
}
.findus .findus-container .findus-left .heading h1 {
  color: #FFF;
}
.findus .findus-container .findus-left p {
  margin-bottom: 1.5rem;
  color: #FFF;
}
.findus .findus-container .findus-right {
  display: flex;
  flex-direction: column;
  height: 324px;
  z-index: 1;
}
.findus .findus-container .findus-right .map-inner {
  display: flex;
  height: 324px;
}
.findus .findus-container .findus-right .map-inner iframe {
  display: flex;
  height: 100%;
  width: 100%;
}
.testimonial {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
}
.testimonial .testimonial-container {
  display: flex;
  flex-direction: column;
  background-image: url(../img/contact/testimonial-mob.png);
  background-size: contain;
  background-repeat: no-repeat;
  justify-content: center;
  align-items: center;
}
.testimonial .testimonial-container .testimonial-section {
  display: flex;
  flex-direction: column;
  position: relative;
}
.testimonial .testimonial-container .testimonial-section .testimonial-list {
  display: flex;
  flex-direction: column;
  padding: 4rem 1rem 2rem;
  width: 100%;
}
.testimonial .testimonial-container .testimonial-section .testimonial-list .testimonial-detail {
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
  padding: 1rem;
  padding-top: 3rem;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 100%;
}
.testimonial .testimonial-container .testimonial-section .testimonial-list .testimonial-detail .testi-img {
  display: flex;
  flex-direction: column;
  border-radius: 50%;
  background-color: #FFF;
  position: absolute;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
  align-items: center;
  justify-content: center;
  top: -43px;
  left: 0;
  right: 0;
  margin: auto;
  width: 65px;
  padding: 12px;
  height: 65px;
}
.testimonial .testimonial-container .testimonial-section .testimonial-list .testimonial-detail .testi-img .test-icon {
  width: 40px;
}
.testimonial .testimonial-container .testimonial-section .testimonial-list .testimonial-detail .testi-img .quote {
  position: absolute;
  top: 0;
  left: -13px;
  width: 32px;
  height: 32px;
}
.testimonial .testimonial-container .testimonial-section .testimonial-list .testimonial-detail .testi-detail {
  display: flex;
  flex-direction: column;
  color: #878787;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.testimonial .testimonial-container .testimonial-section .testimonial-list .testimonial-detail .testi-detail p {
  margin-bottom: 8px;
  text-align: center;
  height: 360px;
}
.testimonial .testimonial-container .testimonial-section .testimonial-list .testimonial-detail .testi-detail p + p {
  display: none;
}
.testimonial .testimonial-container .testimonial-section .testimonial-list .testimonial-detail .testi-detail h3 {
  color: #00607F;
  font-size: 18px;
  text-align: center;
}
.testimonial .testimonial-container .testimonial-section .testimonial-list .testimonial-detail .testi-detail .designation {
  height: auto;
  margin-bottom: 0;
}
.testimonial .testimonial-container .testimonial-section .owl-nav {
  display: flex;
  width: 100px;
  justify-content: space-between;
  align-self: center;
}
.testimonial .testimonial-container .testimonial-section .owl-nav .owl-prev {
  height: 40px;
  width: 40px;
  background-image: url(../img/contact/left-arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  outline: 0;
}
.testimonial .testimonial-container .testimonial-section .owl-nav .owl-prev span {
  display: none;
}
.testimonial .testimonial-container .testimonial-section .owl-nav .owl-next {
  height: 40px;
  width: 40px;
  outline: 0;
  background-image: url(../img/contact/right-arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.testimonial .testimonial-container .testimonial-section .owl-nav .owl-next span {
  display: none;
}
.shareus {
  display: flex;
  flex-direction: column;
  background-color: #FCFCFC;
  padding: 3rem 1.5rem;
}
.shareus .shareus-container {
  display: flex;
  flex-direction: column;
}
.shareus .shareus-container .social-media {
  display: flex;
  flex-direction: column;
  width: 260px;
  margin: auto;
  height: 270px;
  margin-top: 4rem;
  order: 2;
}
.shareus .shareus-container .social-media::before {
  content: '';
  position: absolute;
  background-image: url(../img/contact/socialmedia-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 270px;
}
.shareus .shareus-container .social-media .media-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}
.shareus .shareus-container .social-media .media-list a {
  display: flex;
  flex-direction: column;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: absolute;
}
.shareus .shareus-container .social-media .media-list a img {
  width: 27px;
}
.shareus .shareus-container .social-media .media-list a:nth-child(1) {
  top: -23px;
  left: 100px;
  box-shadow: 0 3px 4px #00d523;
}
.shareus .shareus-container .social-media .media-list a:nth-child(2) {
  top: 64px;
  left: -18px;
  box-shadow: 0 3px 4px #3b5998;
}
.shareus .shareus-container .social-media .media-list a:nth-child(2) img {
  width: 25px;
}
.shareus .shareus-container .social-media .media-list a:nth-child(3) {
  top: 194px;
  left: 15px;
  box-shadow: 0 3px 4px #c4302b;
}
.shareus .shareus-container .social-media .media-list a:nth-child(4) {
  top: 191px;
  left: 202px;
  box-shadow: 0 3px 4px #0e76a8;
}
.shareus .shareus-container .social-media .media-list a:nth-child(4) img {
  width: 19px;
}
.shareus .shareus-container .social-media .media-list a:nth-child(5) {
  top: 50px;
  left: 219px;
  box-shadow: 0 3px 4px #00acee;
}
.shareus .shareus-container .social-media .media-list a:nth-child(5) img {
  width: 28px;
}
.shareus .shareus-container .shareus-content {
  display: flex;
  flex-direction: column;
  order: 1;
}
.shareus .shareus-container .shareus-content p {
  color: #878787;
  margin-bottom: 2rem;
  text-align: center;
}
.shareus .shareus-container .shareus-content .buttons .blue-btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 19px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.ourclients {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
}
.ourclients .client-container {
  display: flex;
  flex-direction: column;
}
.ourclients .client-container p {
  text-align: center;
  margin-bottom: 1.5rem;
}
.ourclients .client-container .client-section {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 272px;
  align-self: center;
}
.ourclients .client-container .client-section .client-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  width: 130px;
}
.ourclients .client-container .client-section .client-list:last-child {
  margin-bottom: 0;
}
.ourclients .client-container .client-section .client-list .client-icon {
  display: flex;
  flex-direction: column;
  border-radius: 50%;
  background-color: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
  width: 65px;
  height: 65px;
  align-items: center;
  justify-content: center;
}
.ourclients .client-container .client-section .client-list .client-icon img {
  width: 36px;
}
.ourclients .client-container .client-section .client-list p {
  text-align: center;
  margin-top: 1rem;
  color: #878787;
  line-height: 1.4;
}
.ourclients .client-container .buttons {
  margin-top: 2rem;
}
@media (min-width: 320px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .form-touch .form-list .form-right .contact-graph img {
    height: 90%;
  }
  .shareus .shareus-container .social-media .media-list a {
    width: 44px;
    height: 44px;
  }
}
@media (min-width : 768px) {
  .contact-us .banner-section .banner-content .right-image {
    background-image: url(../img/contact/contact-bg.png);
  }
  .form-touch {
    padding: 3rem 2rem;
    background-image: url(../img/contact/dots.png), url(../img/contact/dots.png);
    background-position: calc(0% - 54px) -77px, calc(100% - -75px) 163px;
    background-repeat: no-repeat;
    background-size: 180px,180px;
  }
  .form-touch .form-list {
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
    padding: 2rem;
  }
  .form-touch .form-list .form-left {
    width: 50%;
  }
  .form-touch .form-list .form-right {
    display: flex;
    width: 45%;
  }
  .form-touch .form-list .form-right .contact-graph {
    align-self: flex-start;
    height: 100%;
  }
  .findus .findus-container {
    flex-direction: row;
  }
  .findus .findus-container .findus-left {
    padding: 3rem 1rem 3rem 2rem;
    width: 290px;
    position: relative;
    height: 324px;
  }
  .findus .findus-container .findus-right {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
  }
  .findus .findus-container .findus-right .map-inner iframe {
    width: 63%;
    margin-left: auto;
  }
  .testimonial {
    padding: 3rem 2rem;
    padding-bottom: 1rem;
  }
  .testimonial .testimonial-container {
    background-image: url(../img/contact/testimonial-lg.png);
    background-size: cover;
    background-position: bottom;
  }
  .testimonial .testimonial-container .testimonial-section {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .testimonial .testimonial-container .testimonial-section .testimonial-list .testimonial-detail .testi-detail p {
    height: 300px;
  }
  .testimonial .testimonial-container .testimonial-section .owl-nav {
    position: absolute;
    top: -63px;
    right: 0;
  }
  .shareus {
    padding: 3rem 2rem;
  }
  .shareus .shareus-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .shareus .shareus-container .heading h2 {
    text-align: left;
  }
  .shareus .shareus-container .heading h2::after {
    background-position: left;
  }
  .shareus .shareus-container .buttons {
    justify-content: flex-start;
  }
  .shareus .shareus-container .social-media {
    order: 1;
    margin-top: 0;
    margin-bottom: 0;
  }
  .shareus .shareus-container .shareus-content {
    width: 56%;
    padding-left: 2rem;
    order: 2;
  }
  .shareus .shareus-container .shareus-content p {
    text-align: left;
  }
  .ourclients {
    padding: 3rem 2rem;
  }
  .ourclients .client-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ourclients .client-container .heading {
    order: 1;
  }
  .ourclients .client-container .heading h2 {
    text-align: left;
  }
  .ourclients .client-container .heading h2::after {
    background-position: left;
  }
  .ourclients .client-container p {
    text-align: left;
    order: 3;
  }
  .ourclients .client-container .client-section {
    order: 4;
    justify-content: space-between;
    width: 100%;
  }
  .ourclients .client-container .client-section .client-list {
    margin-bottom: 0;
  }
  .ourclients .client-container .buttons {
    order: 2;
    width: auto;
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
}
@media (min-width : 1024px) {
  .form-touch {
    background-position: calc(0% - 54px) -112px, calc(100% - -93px) 144px;
    background-size: 255px,250px;
  }
  .form-touch .form-list {
    width: 80%;
    margin: auto;
  }
  .form-touch .form-list .form-right .cont-info:last-child {
    margin-bottom: 0;
  }
  .findus .findus-container .findus-right .map-inner iframe {
    width: 72%;
  }
  .shareus .shareus-container .shareus-content {
    width: 64%;
  }
  .ourclients {
    padding-top: 1rem !important;
  }
  .ourclients .client-container .client-section .client-list {
    width: 180px;
  }
  .testimonial .testimonial-container .testimonial-section .testimonial-list .testimonial-detail .testi-detail p {
    height: 310px;
  }
}
@media (min-width : 1366px) {
  .form-touch {
    padding: 4rem 0rem;
    background-position: calc(0% - 36px) -154px, calc(100% - -56px) 115px;
    background-size: 320px,280px;
  }
  .form-touch .form-list {
    width: 78%;
  }
  .form-touch .form-list .form-left {
    width: 50%;
  }
  .form-touch .form-list .form-right {
    width: 40%;
  }
  .findus .container {
    width: 100%;
  }
  .findus .findus-container .findus-left {
    padding: 3rem 2rem 3rem 5.5rem;
    width: 375px;
  }
  .findus .findus-container .findus-right .map-inner iframe {
    width: 73%;
  }
  .shareus {
    padding: 4rem 0rem;
  }
  .testimonial {
    padding: 4rem 0rem;
    padding-bottom: 0rem;
  }
  .testimonial .testimonial-container {
    background-size: 100% 100%;
  }
  .testimonial .testimonial-container .testimonial-section .testimonial-list {
    padding: 4rem 2rem 2rem;
  }
  .testimonial .testimonial-container .testimonial-section .testimonial-list .testimonial-detail .testi-detail p {
    height: 286px;
  }
  .ourclients {
    padding: 4rem 0rem;
  }
}
@media (min-width : 1440px) {
  .findus {
    box-shadow: none;
  }
  .findus .container {
    width: 1200px;
  }
  .findus .findus-container .findus-left {
    position: inherit;
  }
  .findus .findus-container .findus-right .map-inner iframe {
    width: 830px;
  }
}
.blogimage .banner-section .banner-content .detail .detail-inner strong {
  color: #919191;
  font-weight: normal;
}
.blogimage .banner-section .banner-content .detail .detail-inner p:first-of-type,
.blogimage .banner-section .banner-content .detail .detail-inner h1:first-of-type {
  display: block;
}
.blogimage .banner-section .banner-content .detail .detail-inner p,
.blogimage .banner-section .banner-content .detail .detail-inner img,
.blogimage .banner-section .banner-content .detail .detail-inner h1,
.blogimage .banner-section .banner-content .detail .detail-inner h2,
.blogimage .banner-section .banner-content .detail .detail-inner h3,
.blogimage .banner-section .banner-content .detail .detail-inner h4,
.blogimage .banner-section .banner-content .detail .detail-inner ul {
  display: none ;
}
.blogdetail .blog-content .blog-left .blog-container {
  box-shadow: none;
  padding: 0;
  width: 100%;
  background-image: none;
  justify-content: flex-start;
  border-bottom: none;
  border-radius: 0;
}
.blogdetail .blog-content .blog-left .blog-container .left-side {
  height: auto;
  width: 100%;
}
.blogdetail .blog-content .blog-left .blog-container .left-side img {
  height: auto;
}
.blogdetail .blog-content .blog-left .blog-container .right-side {
  padding: 0;
}
.blogdetail .blog-content .blog-left .blog-container .right-side p {
  font-size: 14px;
  margin-bottom: 5px;
  word-break: break-word;
}
.blogdetail .blog-content .blog-left .blog-container .right-side p strong {
  font-size: 16px;
  margin-bottom: 5px;
}
.blogdetail .blog-content .blog-left .blog-container .right-side .small {
  width: auto;
}
.blogdetail .blog-content .blog-left .blog-container .right-side ol {
  padding-left: 1rem;
}
.blogdetail .blog-content .blog-left .blog-container .right-side img {
  width: auto;
  height: auto;
  max-width: 270px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.blogdetail .blog-content .blog-left .blog-container .right-side table {
  width: auto!important;
}
.blogdetail .blog-content .blog-left .blog-container .right-side aside img {
  width: auto;
}
.blogdetail .blog-content .blog-left .blog-container .right-side blockquote {
  margin: 0;
  padding: 0;
}
.blogdetail .blog-content .blog-left .blog-container .right-side section,
.blogdetail .blog-content .blog-left .blog-container .right-side iframe {
  width: 100%;
}
.blogdetail .blog-content .blog-left .blog-container .right-side h1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.blogdetail .blog-content .blog-left .blog-container .right-side h2,
.blogdetail .blog-content .blog-left .blog-container .right-side h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 16px;
  color: #000000;
}
.blogdetail .blog-content .blog-left .blog-container .right-side div,
.blogdetail .blog-content .blog-left .blog-container .right-side p {
  color: #919191;
}
.blogdetail .blog-content .blog-left .blog-container .right-side ul {
  padding-left: 2rem;
}
.blogdetail .blog-content .blog-right .buttons {
  margin: 2rem 0;
}
@media (min-width : 768px) {
  .blogdetail .blog-content .blog-left .blog-container {
    width: 100%;
  }
  .blogdetail .blog-content .blog-left .blog-container .blog-detail .admin {
    justify-content: flex-start;
  }
  .blogdetail .blog-content .blog-left .blog-container .right-side img {
    max-width: 700px;
  }
}
@media (min-width : 1024px) {
  .blogdetail .blog-content .blog-left .blog-container {
    flex-direction: column;
    background-color: transparent;
  }
  .blogdetail .blog-content .blog-left .blog-container .blog-detail {
    width: 100%;
    margin-top: 0rem;
    margin-bottom: 1rem;
  }
  .blogdetail .blog-content .blog-left .blog-container .blog-detail .admin {
    width: 100%;
  }
  .blogdetail .blog-content .blog-left .blog-container .left-side {
    margin-bottom: 1rem;
  }
  .blogdetail .blog-content .blog-left .blog-container .right-side {
    width: 100%;
  }
  .blogdetail .blog-content .blog-left .blog-container .right-side img {
    max-width: 600px;
  }
}
@media (min-width : 1366px) {
  .blogdetail .blog-content .blog-left .blog-container .right-side img {
    max-width: auto;
    width: 60%;
  }
}
.location-section .banner-section .breadcrum {
  color: #FFF;
  position: absolute;
  left: 0px;
  bottom: 20px;
  background: #00607F;
  padding: 10px 20px;
}
.location-section .banner-section .breadcrum:after {
  content: '';
  position: absolute;
  top: 0;
  border-top: 39.5px solid #00607F;
  border-right: 40px solid transparent;
  left: 140px;
}
.location-introduction {
  padding: 3rem 1.5rem;
  background-image: linear-gradient(#FFF 50%, #F2F2F2);
}
.location-introduction .buttons {
  justify-content: flex-start;
  margin-top: 1rem;
}
.location-introduction .intro-main p a {
  color: #00607F;
  font-weight: 600 ;
}
.popular-location {
  padding: 3rem 1.5rem;
}
.popular-location .popular-location-outer {
  display: flex;
  flex-direction: column;
}
.popular-location .popular-location-outer .popular-location-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px #cbcbcb;
  margin-bottom: 2rem;
}
.popular-location .popular-location-outer .popular-location-inner:last-child {
  margin-bottom: 0;
}
.popular-location .popular-location-outer .popular-location-inner .location-image {
  display: flex;
  position: relative;
}
.popular-location .popular-location-outer .popular-location-inner .location-image:after {
  content: '';
  background-image: url(../img/location/location-curve.png);
  background-repeat: no-repeat;
  background-size: 101% 100%;
  height: 45px;
  width: 100%;
  bottom: -3px;
  right: 0;
  position: absolute;
}
.popular-location .popular-location-outer .popular-location-inner .location-image img {
  width: 100%;
  height: 250px;
}
.popular-location .popular-location-outer .popular-location-inner .location-name {
  display: flex;
}
.popular-location .popular-location-outer .popular-location-inner .location-name .location-content {
  display: flex;
  flex-direction: column;
  padding: 0 10px 15px 15px;
  background: #FFF;
  align-items: flex-start;
  margin-top: -1.5rem;
  width: 100%;
}
.popular-location .popular-location-outer .popular-location-inner .location-name .location-content .link {
  font-size: 20px;
  font-weight: 800;
  color: #00607F;
  z-index: 1;
}
.popular-location .popular-location-outer .popular-location-inner .location-name .location-content .location-det {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  height: 78px;
  overflow: hidden;
  width: 100%;
}
.popular-location .popular-location-outer .popular-location-inner .location-name .location-content .location-det p {
  height: 100%;
}
.popular-location .popular-location-outer .popular-location-inner .location-name .location-content .location-det p,
.popular-location .popular-location-outer .popular-location-inner .location-name .location-content .location-det span,
.popular-location .popular-location-outer .popular-location-inner .location-name .location-content .location-det h1,
.popular-location .popular-location-outer .popular-location-inner .location-name .location-content .location-det h2,
.popular-location .popular-location-outer .popular-location-inner .location-name .location-content .location-det h3 {
  color: #919191;
  font-size: 12px;
  padding: 10px 0;
}
.popular-location .popular-location-outer .popular-location-inner .location-name .location-content .location-det ul {
  display: none;
}
.popular-location .popular-location-outer .popular-location-inner .location-name .location-content .location-det p + p {
  display: none;
}
.popular-location .popular-location-outer .popular-location-inner .location-name .location-content .location-det strong {
  display: none;
}
.popular-location .popular-location-outer .popular-location-inner .location-name .location-content:hover .link {
  color: #FC9701;
  transition: 0.4s;
}
.explore-our-map {
  background-color: #F9F9F9;
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  overflow: hidden;
  padding-bottom: 0;
}
.explore-our-map .heading {
  align-items: center;
}
.explore-our-map .map-outer {
  display: flex;
  flex-direction: column;
}
.explore-our-map .map-outer .left-images {
  height: 355px;
  position: relative;
  display: none;
}
.explore-our-map .map-outer .left-images img {
  position: absolute;
}
.explore-our-map .map-outer .left-images img:nth-child(1) {
  top: 10px;
  left: 89px;
  width: 200px;
}
.explore-our-map .map-outer .left-images img:nth-child(2) {
  top: 160px;
  left: -46px;
  width: 150px;
}
.explore-our-map .map-outer .left-images img:nth-child(3) {
  top: 224px;
  right: -22px;
  width: 170px;
}
.explore-our-map .map-outer .map-inner {
  display: flex;
  height: 350px;
}
.explore-our-map .map-outer .map-inner img {
  width: 100%;
}
.explore-our-map .map-outer .map-inner iframe {
  display: flex;
  width: 100%;
  height: 100%;
  border: 0;
}
.explore-our-map .map-outer .right-images {
  display: none;
  height: 355px;
  position: relative;
}
.explore-our-map .map-outer .right-images img {
  position: absolute;
}
.explore-our-map .map-outer .right-images img:nth-child(1) {
  top: 10px;
  left: 0;
  width: 200px;
}
.explore-our-map .map-outer .right-images img:nth-child(2) {
  top: 156px;
  left: 192px;
  width: 162px;
}
.explore-our-map .map-outer .right-images img:nth-child(3) {
  top: 268px;
  right: 114px;
  width: 170px;
}
.location-list {
  padding: 3rem 1.5rem;
}
.location-list .heading {
  margin-bottom: 2rem;
}
.location-list .heading form .location-search {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 0;
}
.location-list .heading form .location-search .search-button {
  background-color: transparent;
  border: 0;
  right: 3px;
  border-radius: 0;
  box-sizing: border-box;
  cursor: pointer;
  height: 43px;
  position: absolute;
  width: 36.4px;
  outline: 0;
  top: 0;
}
.location-list .heading form .location-search .search-button img {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.location-list .location-list-outer {
  display: flex;
  flex-direction: column;
}
.location-list .location-list-outer .location-names {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.location-list .location-list-outer .location-names .location-list-inner {
  display: flex;
  width: 100%;
  box-shadow: 0 0 10px #d9d9d9;
  position: relative;
}
.location-list .location-list-outer .location-names .location-list-inner .left {
  display: flex;
  width: 85%;
  background-color: #eee;
  padding: 10px;
  border: 4px solid #FFF;
  align-items: center;
  border-right: 0;
}
.location-list .location-list-outer .location-names .location-list-inner .left img {
  width: 24px;
  margin-right: 10px;
}
.location-list .location-list-outer .location-names .location-list-inner .left span {
  font-size: 16px;
  font-weight: 700;
  color: #00607F;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 62%;
}
.location-list .location-list-outer .location-names .location-list-inner .right {
  display: flex;
  position: absolute;
  width: 75px;
  background-image: url(../img/location/side-shape.png);
  background-size: cover;
  justify-content: center;
  align-items: center;
  right: 0;
  height: 52px;
}
.location-list .location-list-outer .location-names .location-list-inner .right img {
  width: 14px;
}
.location-list .location-list-outer .location-names .location-list-inner:hover .right img {
  animation: shake 5s infinite;
}
.location-list .location-list-outer .location-names:last-child {
  margin-bottom: 0;
}
.location-list .no-result {
  display: none;
  font-weight: bold;
  font-size: 28px;
  color: #000000;
}
.our-blogs {
  background-color: #fbfbfb;
  padding: 3rem 1.5rem;
}
.our-blogs .blog-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
}
.our-blogs .blog-container .all-blogs {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.our-blogs .blog-container .all-blogs .blogs {
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 0 10px #d9d9d9;
  margin-bottom: 2rem;
  min-height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.our-blogs .blog-container .all-blogs .blogs:nth-child(1) {
  background-image: url('../img/location/blog-1.jpg');
}
.our-blogs .blog-container .all-blogs .blogs:nth-child(2) {
  background-image: url('../img/location/blog-2.jpg');
}
.our-blogs .blog-container .all-blogs .blogs:nth-child(3) {
  background-image: url('../img/location/blog-3.jpg');
}
.our-blogs .blog-container .all-blogs .blogs:nth-child(4) {
  background-image: url('../img/location/blog-4.jpg');
}
.our-blogs .blog-container .all-blogs .blogs .image {
  display: flex;
}
.our-blogs .blog-container .all-blogs .blogs .image img {
  width: 100%;
}
.our-blogs .blog-container .all-blogs .blogs .blog-name {
  background-color: rgba(254, 181, 0, 0.6);
  transition: height 0.4s linear;
  height: 22%;
  padding: 20px;
  position: absolute;
  width: 100%;
  bottom: 0;
  color: #FFF;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.our-blogs .blog-container .all-blogs .blogs .blog-name span {
  font-size: 16px;
  font-weight: 700;
  width: 100%;
}
.our-blogs .blog-container .all-blogs .blogs .blog-name img {
  display: none;
}
.our-blogs .blog-container .all-blogs .blogs .blog-name .read-more {
  display: none;
  overflow: hidden;
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  border: 1px solid #feb050;
  padding: 5px;
}
.our-blogs .blog-container .all-blogs .blogs .blog-name .hidden-content {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.our-blogs .blog-container .all-blogs .blogs .blog-name .hidden-content img {
  display: flex;
  width: 30px;
  margin-bottom: 1rem;
}
.our-blogs .blog-container .all-blogs .blogs .blog-name .hidden-content p {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  color: #FFF;
  overflow: hidden;
}
.our-blogs .blog-container .all-blogs .blogs .blog-name .hidden-content h2,
.our-blogs .blog-container .all-blogs .blogs .blog-name .hidden-content h3 {
  font-size: 16px;
}
.our-blogs .blog-container .all-blogs .blogs .blog-name .hidden-content p + p {
  display: none;
}
.our-blogs .blog-container .all-blogs .blogs .blog-name .hidden-content .blog-textt {
  height: 60px;
}
.our-blogs .blog-container .all-blogs .blogs .blog-name .hidden-content .blog-textt p {
  margin-bottom: 1rem;
  color: #FFF;
  overflow: hidden;
}
.our-blogs .blog-container .all-blogs .blogs .blog-name:hover {
  background-color: rgba(0, 96, 127, 0.6);
  height: 100%;
  position: absolute;
  flex-direction: column;
  padding: 1rem;
  overflow-y: hidden;
}
.our-blogs .blog-container .all-blogs .blogs .blog-name:hover a {
  display: flex;
  color: #feb050;
  font-weight: 700;
}
.our-blogs .blog-container .all-blogs .blogs .blog-name:hover a i {
  padding: 4px 0 0 8px;
}
.our-blogs .blog-container .all-blogs .blogs .blog-name:hover .hidden-content {
  display: block;
  height: 160px;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
}
.our-blogs .blog-container .all-blogs .blogs .blog-name:hover .hidden-content img {
  display: flex;
}
.our-blogs .blog-container .all-blogs .blogs .blog-name:hover .hidden-content span {
  margin-bottom: 1rem;
}
.our-blogs .blog-container .all-blogs .blogs .blog-name:hover .hidden-content ul {
  margin: 0;
  margin-top: -14px;
}
@media (min-width : 768px) {
  .location-section .banner-section .banner-content .right-image {
    background-image: url(../img/location/banner-bg.png);
  }
  .location-introduction {
    padding: 3rem 2rem;
  }
  .popular-location {
    padding: 3rem 2rem;
  }
  .popular-location .heading {
    align-items: center;
  }
  .popular-location .popular-location-outer {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .popular-location .popular-location-outer .popular-location-inner {
    width: 48%;
    margin-right: 2rem;
    margin-bottom: 0;
  }
  .popular-location .popular-location-outer .popular-location-inner:nth-child(even) {
    margin-right: 0;
  }
  .popular-location .popular-location-outer .popular-location-inner:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }
  .explore-our-map {
    padding: 3rem 2rem;
  }
  .explore-our-map .map-outer {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .explore-our-map .map-outer .left-images {
    width: 20%;
    height: 233px;
    display: flex;
  }
  .explore-our-map .map-outer .left-images img:nth-child(1) {
    top: 10px;
    left: 36px;
    width: 121px;
  }
  .explore-our-map .map-outer .left-images img:nth-child(2) {
    top: 100px;
    left: -61px;
    width: 123px;
  }
  .explore-our-map .map-outer .left-images img:nth-child(3) {
    top: 173px;
    right: 20px;
    width: 82px;
  }
  .explore-our-map .map-outer .map-inner {
    width: 57%;
    height: inherit;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.22);
  }
  .explore-our-map .map-outer .right-images {
    display: flex;
    width: 20%;
    height: 233px;
  }
  .explore-our-map .map-outer .right-images img:nth-child(1) {
    top: 8px;
    left: 25px;
    width: 120px;
  }
  .explore-our-map .map-outer .right-images img:nth-child(2) {
    top: 96px;
    left: 80px;
    width: 123px;
  }
  .explore-our-map .map-outer .right-images img:nth-child(3) {
    top: 191px;
    right: 38px;
    width: 110px;
  }
  .location-list {
    padding: 3rem 2rem;
  }
  .location-list .location-list-outer {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .location-list .location-list-outer .location-names {
    width: 33%;
    padding: 0 1rem;
  }
  .our-blogs {
    padding: 3rem 2rem;
  }
  .our-blogs .blog-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .our-blogs .blog-container .heading {
    order: 1;
    width: 50%;
  }
  .our-blogs .blog-container .all-blogs {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    order: 3;
  }
  .our-blogs .blog-container .all-blogs .blogs {
    width: 48%;
  }
  .our-blogs .blog-container .buttons {
    order: 2;
    width: 50%;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
  }
}
@media (min-width : 1024px) {
  .location-list .heading {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .location-list .heading form {
    width: 28%;
  }
  .location-list .heading form .location-search {
    margin-top: 0;
  }
  .popular-location .popular-location-outer .popular-location-inner {
    width: 31%;
  }
  .popular-location .popular-location-outer .popular-location-inner:nth-child(even) {
    margin-right: 2rem;
  }
  .popular-location .popular-location-outer .popular-location-inner:nth-child(3n) {
    margin-right: 0px;
  }
  .explore-our-map .map-outer .left-images {
    width: 28%;
  }
  .explore-our-map .map-outer .left-images img:nth-child(1) {
    left: 69px;
  }
  .explore-our-map .map-outer .left-images img:nth-child(3) {
    top: 132px;
    right: 57px;
  }
  .explore-our-map .map-outer .map-inner {
    width: 44%;
  }
  .explore-our-map .map-outer .right-images {
    width: 28%;
  }
  .explore-our-map .map-outer .right-images img:nth-child(1) {
    top: 8px;
    left: 42px;
    width: 133px;
  }
  .explore-our-map .map-outer .right-images img:nth-child(2) {
    top: 73px;
    left: 232px;
    width: 123px;
  }
  .explore-our-map .map-outer .right-images img:nth-child(3) {
    top: 136px;
    right: 69px;
    width: 110px;
  }
  .our-blogs .blog-container .all-blogs .blogs {
    width: 23%;
    margin-bottom: 0;
  }
}
@media (min-width : 1366px) {
  .location-section .banner-section {
    padding: 6rem 0;
    padding-bottom: 2rem;
  }
  .location-section .banner-section .banner-content .detail {
    width: 47%;
  }
  .location-section .banner-section .banner-content .right-image {
    width: 47%;
  }
  .location-section .banner-section .banner-content .right-image .email-banner {
    padding-bottom: 1.8rem;
    padding-left: 18%;
    width: 100%;
  }
  .location-section .banner-section .banner-content .right-image .email-banner h4 {
    width: 91%;
    margin-bottom: 1.7rem;
  }
  .location-section .banner-section .banner-content .right-image .email-banner .set {
    margin-bottom: 0.5rem;
  }
  .location-section .banner-section .banner-content .right-image .email-banner .email-banner-inner {
    width: 91%;
    padding-right: 5rem;
  }
  .location-section .banner-section .banner-content .right-image .email-banner .email-banner-inner .left-email {
    width: 50%;
  }
  .location-section .banner-section .banner-content .right-image .email-banner .email-banner-inner .right-email {
    display: flex;
    width: 50%;
  }
  .location-section .banner-section .breadcrum {
    padding-left: 72px;
  }
  .location-section .banner-section .breadcrum:after {
    left: 200px;
  }
  .location-introduction {
    padding: 4rem 0rem;
  }
  .popular-location {
    padding: 4rem 0rem;
  }
  .popular-location .popular-location-outer .popular-location-inner {
    width: 23%;
  }
  .popular-location .popular-location-outer .popular-location-inner:nth-child(3n) {
    margin-right: 2rem;
  }
  .popular-location .popular-location-outer .popular-location-inner:nth-child(4n) {
    margin-right: 0;
  }
  .popular-location .popular-location-outer .popular-location-inner:nth-child(n + 5) {
    margin-bottom: 0;
  }
  .explore-our-map {
    padding: 4rem 0rem;
  }
  .explore-our-map .map-outer .left-images {
    width: 25%;
  }
  .explore-our-map .map-outer .left-images img:nth-child(1) {
    left: 115px;
    width: 157px;
  }
  .explore-our-map .map-outer .left-images img:nth-child(2) {
    top: 113px;
    left: -75px;
    width: 148px;
  }
  .explore-our-map .map-outer .left-images img:nth-child(3) {
    top: 175px;
    right: 21px;
    width: 148px;
  }
  .explore-our-map .map-outer .map-inner {
    width: 50%;
  }
  .explore-our-map .map-outer .right-images {
    width: 25%;
  }
  .explore-our-map .map-outer .right-images img:nth-child(1) {
    top: 29px;
    width: 155px;
    left: 5px;
  }
  .explore-our-map .map-outer .right-images img:nth-child(2) {
    top: 126px;
    left: 261px;
    width: 132px;
  }
  .explore-our-map .map-outer .right-images img:nth-child(3) {
    top: 182px;
    right: 30%;
    width: 136px;
  }
  .location-list {
    padding: 4rem 0rem;
  }
  .location-list .location-list-outer .location-names {
    width: 20%;
  }
  .location-list .location-list-outer .location-names:nth-last-child(3),
  .location-list .location-list-outer .location-names:nth-last-child(4),
  .location-list .location-list-outer .location-names:nth-last-child(2) {
    margin-bottom: 0;
  }
  .our-blogs {
    padding: 4rem 0rem;
  }
}
.location-detail {
  padding: 3rem 1.5rem;
}
.location-detail .detail-main {
  display: flex;
  flex-direction: column;
}
.location-detail .heading h2 {
  color: #00607f;
}
.location-detail .location-right {
  padding: 2rem;
  border: 1px solid #d7d7d7;
  margin-top: 2rem;
}
.location-detail .location-right a {
  padding-top: 10px ;
  padding-bottom: 4px;
  display: flex;
  flex-direction: row;
  margin-bottom: 6px;
  font-weight: 500;
  color: #696868;
  border-bottom-style: dotted;
  border-bottom-color: #d2d2d2;
  border-bottom-width: 2px;
}
.location-detail .location-right a:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.location-detail .location-right a:first-child {
  padding-top: 0;
}
.location-detail .location-right a:before {
  content: '';
  background-image: url(../img/training-dates/book.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  left: 0;
  width: 20px;
  height: 22px;
  margin-right: 7px;
  min-width: 20px;
}
.location-detail .location-right a:hover {
  color: #00607F;
  transition: 0.3s;
  font-weight: 700;
  border-bottom-color: #00607F;
}
.venue-features {
  padding: 3rem 1.5rem;
  background-color: #F2F2F2;
}
.venue-features .venue-container {
  display: flex;
  flex-direction: column;
}
.venue-features .venue-container .venue-detail {
  display: flex;
  flex-direction: column;
}
.venue-features .venue-container .features-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
  padding-bottom: 3rem;
}
.venue-features .venue-container .features-list .features-point {
  display: flex;
  width: 275px;
  margin-bottom: 2rem;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.21);
  background-color: #FFF;
}
.venue-features .venue-container .features-list .features-point:last-child {
  margin-bottom: 0;
}
.venue-features .venue-container .features-list .features-point .content {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1.5rem;
  background-color: #FFF;
}
.venue-features .venue-container .features-list .features-point .content .icon {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  margin-right: 16px;
  background-color: #F9F9F9;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.17);
}
.venue-features .venue-container .features-list .features-point .content .icon img {
  width: 30px;
  height: 23px;
}
.venue-features .venue-container .features-list .features-point .content h3 {
  display: flex;
  align-items: center;
  font-size: 17px;
  text-align: center;
  color: #919191;
}
.venue-features .venue-container .features-list .features-point .content:hover .icon img {
  transition: all 0.8s ease-in, color 0.3s ease-in-out;
  transform: rotate(360deg);
}
.about-training {
  padding: 3rem 1.5rem;
}
.about-training .intro-training a {
  color: #00607F;
  font-weight: 600 ;
}
.about-training .intro-training p:last-child {
  margin-top: 1rem;
}
.loc-form {
  padding: 3rem 1.5rem;
  padding-top: 0;
  padding-bottom: 5rem;
}
.loc-form .loc-container {
  display: flex;
  flex-direction: column;
}
.loc-form .loc-container .left-bar {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.loc-form .loc-container .left-bar .find-loc {
  display: flex;
  flex-direction: column;
}
.loc-form .loc-container .left-bar .choose-us {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.loc-form .loc-container .left-bar .choose-us .blue-heading {
  margin-bottom: 2rem;
}
.loc-form .loc-container .left-bar .choose-us .chooseus-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.loc-form .loc-container .left-bar .choose-us .chooseus-list .list {
  display: flex;
  flex-direction: row;
  margin-bottom: 2rem;
  width: 100%;
}
.loc-form .loc-container .left-bar .choose-us .chooseus-list .list img {
  width: 49px;
  height: 49px;
  margin-right: 16px;
}
.loc-form .loc-container .left-bar .choose-us .chooseus-list .list .content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.loc-form .loc-container .left-bar .choose-us .chooseus-list .list .content h3 {
  font-size: 20px;
}
.loc-form .loc-container .left-bar .choose-us .chooseus-list .list:nth-child(3) img {
  height: 50px;
}
.loc-form .loc-container .left-bar .choose-us .chooseus-list .list:hover img {
  transition: all 0.8s ease-in, color 0.3s ease-in-out;
  transform: rotate(360deg);
}
.loc-form .loc-container .right-bar {
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  box-shadow: 0 0 10px #e2e2e2;
  padding: 2rem 2rem;
  position: relative;
  border-radius: 14px;
  width: 100%;
}
.loc-form .loc-container .right-bar::before {
  position: absolute;
  content: '';
  right: 0;
  top: 16px;
  bottom: -26px;
  width: 92%;
  left: 0;
  border-radius: 14px;
  background-color: rgba(245, 245, 245, 0.5);
  box-shadow: 0 0 10px #e2e2e2;
  z-index: -1;
  margin: auto;
}
.loc-form .loc-container .right-bar::after {
  position: absolute;
  content: '';
  right: 0;
  top: 15px;
  bottom: -13px;
  left: 0;
  width: 96%;
  border-radius: 14px;
  background-color: rgba(243, 243, 243, 0.7);
  z-index: -1;
  box-shadow: 0 0 10px #c1c1c1;
  margin: auto;
}
.loc-form .loc-container .right-bar h2 {
  font-size: 22px;
  text-align: center;
  color: #00607F;
  margin-bottom: 1.5rem;
}
.loc-form .loc-container .right-bar form .input-container {
  position: relative;
}
.loc-form .loc-container .right-bar form .input-container .input-tag {
  padding-left: 46px;
  font-size: 13px;
}
.loc-form .loc-container .right-bar form .input-container textarea {
  border-radius: 23px;
  padding-left: 46px;
  font-size: 13px;
  overflow: auto;
}
.loc-form .loc-container .right-bar form .consent {
  color: #919191;
}
.loc-form .loc-container .right-bar form .buttons {
  width: 100%;
  margin-top: 1.5rem;
}
.loc-form .loc-container .right-bar form .buttons .orange-btn {
  min-width: 140px;
  justify-content: flex-start;
}
@media (min-width: 375px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .loc-form .loc-container .left-bar .choose-us .chooseus-list .list img {
    height: 39px;
  }
}
@media (min-width : 768px) {
  .location-detail {
    padding: 3rem 2rem;
  }
  .location-detail .detail-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .location-detail .detail-main .location-left {
    width: 48%;
  }
  .location-detail .detail-main .location-right {
    margin-top: 0;
    width: 48%;
    position: sticky;
    top: 0;
  }
  .venue-features {
    padding: 3rem 2rem;
  }
  .venue-features .container {
    background-image: url(../img/locationdetail/feature-grid.png), url(../img/locationdetail/feature-grid.png), url(../img/locationdetail/feature-grid.png);
    background-position: calc(0% - -719px) -9px, calc(0% - -683px) 448px, calc(0% - -93px) 31px;
    background-size: 63px, 104px, 39px;
    background-repeat: no-repeat;
  }
  .venue-features .venue-container .features-list {
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    align-items: center;
    flex-wrap: wrap;
    height: 350px;
  }
  .venue-features .venue-container .features-list::before {
    content: '';
    position: absolute;
    background-image: url(../img/locationdetail/features-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    bottom: 50px;
    right: 0;
    width: 96%;
    height: 100%;
  }
  .venue-features .venue-container .features-list .features-point {
    width: 200px;
    position: relative;
    margin-bottom: 0;
    justify-content: space-around;
    z-index: 1;
  }
  .venue-features .venue-container .features-list .features-point .content {
    padding: 13px;
    justify-content: space-around;
  }
  .venue-features .venue-container .features-list .features-point .content .icon {
    padding: 8px;
    margin-right: 0;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(1) {
    top: 0;
    left: 165px;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(1) .content .icon {
    order: 2;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(1) .content h3 {
    min-height: 48px;
    order: 1;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(1):before {
    z-index: -1;
    position: absolute;
    content: '';
    top: -25px;
    left: -28px;
    height: 40px;
    width: 62px;
    background-image: url(../img/locationdetail/feature-grid.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(2) {
    top: 0;
    right: -248px;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(2) .content .icon {
    order: 2;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(2) .content h3 {
    order: 1;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(2):before {
    z-index: -1;
    position: absolute;
    content: '';
    bottom: -13px;
    right: -20px;
    height: 40px;
    width: 62px;
    background-image: url(../img/locationdetail/feature-grid.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(3) {
    top: 118px;
    left: -475px;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(3):before {
    z-index: -1;
    position: absolute;
    content: '';
    bottom: -13px;
    right: -20px;
    height: 40px;
    width: 62px;
    background-image: url(../img/locationdetail/feature-grid.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(4) {
    top: -17px;
    right: -379px;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(4):before {
    z-index: -1;
    position: absolute;
    content: '';
    top: -25px;
    left: -28px;
    height: 40px;
    width: 62px;
    background-image: url(../img/locationdetail/feature-grid.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(4) .content h3 {
    margin-left: 1rem;
  }
  .about-training {
    padding: 3rem 2rem;
  }
  .loc-form {
    padding: 3rem 2rem;
    background-image: linear-gradient(#00607f, #00607f);
    background-repeat: no-repeat;
    background-size: 100% 17%;
    background-position: top;
  }
  .loc-form .loc-container {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .loc-form .loc-container .left-bar .find-loc .heading h2 {
    color: #FFF;
  }
  .loc-form .loc-container .left-bar .find-loc p {
    color: #FFF;
  }
  .loc-form .loc-container .left-bar .choose-us {
    margin-top: 3rem;
  }
  .loc-form .loc-container .left-bar .choose-us .chooseus-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .loc-form .loc-container .left-bar .choose-us .chooseus-list .list {
    width: 48%;
  }
  .loc-form .loc-container .left-bar .choose-us .chooseus-list .list img {
    width: 42px;
    height: 46px;
  }
  .loc-form .loc-container .right-bar form {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .loc-form .loc-container .right-bar form .input-container {
    width: 48%;
  }
  .loc-form .loc-container .right-bar form .input-container .input-tag {
    padding-left: 46px;
  }
  .loc-form .loc-container .right-bar form .input-container textarea {
    padding-left: 46px;
  }
  .loc-form .loc-container .right-bar form .message {
    width: 100%;
  }
}
@media (min-width: 768px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .venue-features .venue-container .features-list .features-point:nth-child(1) {
    top: -114px;
    left: 209px;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(2) {
    top: 50px;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(4) {
    top: -117px;
    right: 0;
  }
}
@media (min-width : 1024px) {
  .location-detail .detail-main .location-left {
    width: 60%;
  }
  .location-detail .detail-main .location-right {
    width: 35%;
  }
  .venue-features .container {
    background-position: calc(0% - -971px) -10px, calc(0% - 29px) 229px, calc(0% - -93px) 30px;
    background-size: 63px, 104px, 39px;
  }
  .venue-features .venue-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .venue-features .venue-container .venue-detail {
    width: 38%;
    padding-bottom: 0;
  }
  .venue-features .venue-container .features-list {
    height: 283px;
    width: 632px;
  }
  .venue-features .venue-container .features-list::before {
    bottom: 20px;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(1) {
    top: 5px;
    left: 100px;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(2) {
    right: 0;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(3) {
    top: 15px;
    left: 33px;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(4) {
    top: 0;
    right: 89px;
  }
  .loc-form {
    background-size: 100% 30%;
  }
  .loc-form .loc-container {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .loc-form .loc-container .left-bar {
    width: 52%;
  }
  .loc-form .loc-container .left-bar .choose-us .chooseus-list .list img {
    width: 50px;
    height: 47px;
  }
  .loc-form .loc-container .right-bar {
    width: 424px;
    align-self: flex-start;
  }
}
@media (min-width: 1024px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .venue-features .venue-container .features-list .features-point:nth-child(1) {
    top: 10px;
    left: 0px;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(2) {
    top: 0px;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(3) {
    top: 16px;
    left: 30px;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(4) {
    top: 0px;
    right: 89px;
  }
}
@media (min-width : 1366px) {
  .location-detail {
    padding: 4rem 0rem;
  }
  .location-detail .detail-main .location-left {
    width: 70%;
  }
  .location-detail .detail-main .location-right {
    width: 28%;
  }
  .venue-features .container {
    background-position: calc(0% - -497px) 204px, calc(0% - 41px) 234px, calc(0% - -134px) 39px;
    background-size: 63px, 104px, 57px;
  }
  .venue-features .venue-container .venue-detail {
    padding: 4rem 0rem;
    width: 42%;
  }
  .venue-features .venue-container .features-list {
    padding: 4rem 0rem;
    width: 722px;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(1) {
    top: -22px;
    left: 132px;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(2) {
    right: -254px;
    top: -31px;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(3) {
    top: 104px;
    left: -452px;
  }
  .venue-features .venue-container .features-list .features-point:nth-child(4) {
    right: -383px;
  }
  .about-training {
    padding: 4rem 0rem;
  }
  .loc-form {
    padding: 4rem 0rem;
    background-size: 100% 32%;
  }
  .loc-form .loc-container .left-bar {
    width: 56%;
  }
  .loc-form .loc-container .right-bar {
    width: 487px;
  }
}
.category-banner {
  background-image: url(../img/category/banner-bg.png);
}
.category-banner .banner-section .banner-content .courses {
  display: none;
}
.library {
  padding: 3rem 1.5rem;
}
.library .lib-container {
  display: flex;
  flex-direction: column;
}
.library .lib-container .top-fold {
  display: flex;
  flex-direction: column;
}
.library .lib-container .top-fold .heading {
  margin-bottom: 2rem;
}
.library .lib-container .top-fold .select-dropdown {
  display: none;
  width: 200px;
}
.library .lib-container .top-fold .select-dropdown select {
  width: 100%;
  height: 50px;
  background: #FFF;
  padding: 15px 20px 15px 10px;
  color: #919191;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid #dbe2e8;
  outline: 0px;
  box-shadow: 5px 5px 10px 0 rgba(46, 61, 73, 0.05);
  cursor: pointer;
}
.library .lib-container .top-fold .select-dropdown select option {
  width: 100%;
}
.library .lib-container .bottom-fold {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
}
.library .lib-container .bottom-fold .filter-section {
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.14);
}
.library .lib-container .bottom-fold .filter-section #filters {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding: 1rem;
}
.library .lib-container .bottom-fold .filter-section #filters img {
  width: 22px;
  height: 12px;
  margin-right: 14px;
}
.library .lib-container .bottom-fold .filter-section #filters h3 {
  font-size: 16px;
}
.library .lib-container .bottom-fold .filter-section .filter-bar {
  display: none;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  height: 270px;
  overflow-y: scroll;
}
.library .lib-container .bottom-fold .filter-section .filter-bar ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  width: 100%;
  padding-left: 0;
}
.library .lib-container .bottom-fold .filter-section .filter-bar ul li {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  border-bottom: 1px solid #D5D5D5;
  font-weight: 500;
}
.library .lib-container .bottom-fold .filter-section .filter-bar ul li:first-child {
  border-top: 1px solid #D5D5D5;
}
.library .lib-container .bottom-fold .filter-section .filter-bar ul li:last-child {
  border-bottom: 0;
}
.library .lib-container .bottom-fold .filter-section .filter-bar ul li a {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.library .lib-container .bottom-fold .right-section {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
}
.library .lib-container .bottom-fold .right-section .topic-list {
  display: flex;
  flex-direction: column;
}
.library .lib-container .bottom-fold .right-section .topic-list .content-bar {
  display: flex;
  flex-direction: column;
  padding: 16px;
  width: 275px;
  border: 1px solid #DCDCDC;
  border-radius: 10px;
  background-color: #FFF;
  position: relative;
  background-image: url(../img/category/topic-bg.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  box-shadow: 0 0 5px #dcdcdc;
  margin-top: 2rem;
  width: 100%;
}
.library .lib-container .bottom-fold .right-section .topic-list .content-bar:nth-child(1) {
  margin-top: 0;
}
.library .lib-container .bottom-fold .right-section .topic-list .content-bar .topic-content {
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.library .lib-container .bottom-fold .right-section .topic-list .content-bar .topic-content a {
  color: #000000;
}
.library .lib-container .bottom-fold .right-section .topic-list .content-bar .topic-content p {
  color: #000000;
  text-align: center;
}
.library .lib-container .bottom-fold .right-section .topic-list .content-bar .topic-content p + p {
  display: none;
}
.library .lib-container .bottom-fold .right-section .topic-list .content-bar a {
  color: #00607F;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 4px;
  align-self: center;
  height: 60px;
}
.library .lib-container .bottom-fold .right-section .topic-list .content-bar a span {
  position: relative;
}
.library .lib-container .bottom-fold .right-section .topic-list .content-bar a span:before {
  content: '';
  position: absolute;
  top: 1px;
  background-image: url(../img/category/topic-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 18px;
  height: 18px;
  right: -27px;
}
.library .lib-container .bottom-fold .right-section .topic-list .content-bar .readmore {
  margin-bottom: 0;
}
.library .lib-container .bottom-fold .right-section .topic-list .content-bar:hover span:before {
  background-image: url(../img/category/topic-right-orange.png);
  transition: 0.3s;
}
.library .lib-container .bottom-fold .right-section .topic-list .content-bar:hover .readmore {
  color: #FC9701;
  transition: 0.3s;
}
.popular-course {
  padding: 3rem 1.5rem;
  position: relative;
  background-color: #fbfbfb;
}
.popular-course:before {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #fbfbfb;
  left: 0;
}
.popular-course .pop-container {
  display: flex;
  flex-direction: column;
}
.popular-course .pop-container heading {
  order: 1;
}
.popular-course .pop-container .buttons {
  justify-content: flex-start;
  z-index: 1;
  order: 3;
}
.popular-course .pop-container .popular-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  order: 2;
}
.popular-course .pop-container .popular-section a {
  width: 100%;
  height: 72px;
  display: flex;
  padding: 15px;
  justify-content: flex-start;
  align-items: center;
  background-color: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.14);
  border-radius: 0px 50px 50px 0px;
  position: relative;
  padding-left: 55px;
  margin-bottom: 2rem;
}
.popular-course .pop-container .popular-section a:before {
  content: '';
  background-image: url(../img/category/pop-right.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: -13px;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  background-position: center;
}
.popular-course .pop-container .popular-section a .number {
  display: flex;
  padding: 22px 16px;
  position: absolute;
  background-image: linear-gradient(140deg, #2bdbdc -5%, #00607f 100%);
  color: #FFF;
  left: 0;
  top: 0;
  border-radius: 0px 32px 32px 0px;
  font-size: 22px;
  font-weight: 800;
  bottom: 0;
}
.popular-course .pop-container .popular-section a .text {
  font-weight: bold;
  font-size: 16px;
  width: 89%;
}
.fact-figure {
  padding: 3rem 1.5rem;
  position: relative;
}
.fact-figure:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../img/category/fact-dots.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  width: 120px;
  height: 120px;
  z-index: -1;
}
.fact-figure:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../img/category/fact-dots.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  width: 120px;
  height: 120px;
  z-index: -1;
}
.fact-figure .fact-container {
  display: flex;
  flex-direction: column;
}
.fact-figure .fact-container .fig-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.fact-figure .fact-container .fig-list .list {
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  background-color: #FFF;
  background-image: url(../img/category/fig-list.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 43%;
  box-shadow: 7px 2px 11px #dcdcdc;
  width: 111px;
  height: 111px;
  border-radius: 50%;
  margin-bottom: 2rem;
  justify-content: center;
  align-items: center;
  margin-right: 2rem;
}
.fact-figure .fact-container .fig-list .list:nth-child(2) {
  margin-right: 0;
}
.fact-figure .fact-container .fig-list .list:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
.fact-figure .fact-container .fig-list .list:nth-last-child(2) {
  margin-bottom: 0;
}
.fact-figure .fact-container .fig-list .list h2 {
  font-size: 24px;
  color: #000000;
  text-align: center;
}
.fact-figure .fact-container .fig-list .list p {
  font-size: 15px;
  min-height: 42px;
  font-weight: 600;
  color: #FEB500;
  line-height: 1.4;
  text-align: center;
}
@media (min-width : 768px) {
  .category-banner {
    background-position: bottom;
    background-size: cover;
  }
  .category-banner .banner-section .banner-content .courses {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-image: url(../img/category/right-bg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    height: auto;
    width: 60%;
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
  }
  .category-banner .banner-section .banner-content .courses a {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    right: 13%;
    top: 85%;
  }
  .category-banner .banner-section .banner-content .courses a img {
    width: 25px;
    margin-right: 10px;
  }
  .category-banner .banner-section .banner-content .courses a p {
    font-size: 22px;
    color: #FFF;
    font-weight: 500;
  }
  .library {
    padding: 3rem 2rem;
  }
  .library .lib-container .top-fold {
    flex-direction: row;
    justify-content: space-between;
  }
  .library .lib-container .top-fold .select-dropdown {
    display: flex;
    width: 34%;
  }
  .library .lib-container .bottom-fold {
    flex-direction: row;
    justify-content: space-between;
  }
  .library .lib-container .bottom-fold .filter-section {
    width: 205px;
  }
  .library .lib-container .bottom-fold .filter-section .filter-bar {
    display: flex;
    justify-content: flex-start;
    height: 421px;
    overflow-x: hidden;
  }
  .library .lib-container .bottom-fold .filter-section .filter-bar ul li {
    position: relative;
  }
  .library .lib-container .bottom-fold .filter-section .filter-bar ul li:hover {
    background-color: #FEB500;
    color: #FFF;
  }
  .library .lib-container .bottom-fold .filter-section .filter-bar ul li .topic-active {
    background-color: #FEB500;
    color: #FFF;
  }
  .library .lib-container .bottom-fold .right-section {
    width: 70%;
    margin-top: 0;
    height: 474px;
    overflow-x: hidden;
  }
  .library .lib-container .bottom-fold .right-section .topic-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .library .lib-container .bottom-fold .right-section .topic-list .content-bar {
    width: 227px;
    margin-left: 0.8rem;
  }
  .library .lib-container .bottom-fold .right-section .topic-list .content-bar .topic-content {
    height: 122px;
    overflow: hidden;
  }
  .library .lib-container .bottom-fold .right-section .topic-list .content-bar .topic-content p {
    display: flex;
    flex-direction: column;
  }
  .library .lib-container .bottom-fold .right-section .topic-list .content-bar .topic-content p + p {
    display: none;
  }
  .library .lib-container .bottom-fold .right-section .topic-list .content-bar:nth-child(2) {
    margin-top: 0;
  }
  .popular-course {
    padding: 3rem 2rem;
  }
  .popular-course .pop-container .heading {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .popular-course .pop-container .popular-section {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .popular-course .pop-container .popular-section a {
    width: 47%;
    margin-bottom: 3rem;
  }
  .popular-course .pop-container .popular-section a:before {
    right: -19px;
  }
  .popular-course .pop-container .popular-section a .text {
    width: 100%;
  }
  .fact-figure {
    padding: 3rem 2rem;
  }
  .fact-figure .fact-container .fig-list .list {
    width: 148px;
    height: 148px;
    margin-bottom: 0;
  }
  .fact-figure .fact-container .fig-list .list:nth-child(2) {
    margin-right: 2rem;
  }
}
@media (min-width : 1024px) {
  .category-banner .banner-section .banner-content .courses {
    background-position: bottom;
  }
  .category-banner .banner-section .banner-content .courses a {
    right: 21%;
    top: 83%;
  }
  .library .lib-container .bottom-fold .right-section {
    width: 77%;
  }
  .library .lib-container .bottom-fold .right-section .topic-list .content-bar {
    width: 234px;
  }
  .library .lib-container .bottom-fold .right-section .topic-list .content-bar:nth-child(3) {
    margin-top: 0;
  }
  .popular-course:before {
    border-radius: 156px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .popular-course .pop-container .popular-section {
    justify-content: flex-start;
    align-items: center;
  }
  .popular-course .pop-container .popular-section a {
    width: 30%;
    margin-right: 3rem;
  }
  .popular-course .pop-container .popular-section a:nth-child(3) {
    margin-right: 0;
  }
  .popular-course .pop-container .popular-section a:nth-child(6) {
    margin-right: 0;
  }
  .popular-course .pop-container .popular-section a:nth-child(9) {
    margin-right: 0;
  }
  .fact-figure {
    height: 425px;
  }
  .fact-figure:after {
    content: '';
    top: 17px;
    background-size: contain;
    width: 220px;
    height: 264px;
  }
  .fact-figure:before {
    content: '';
    background-image: url(../img/category/fact-fig.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    width: 277px;
    height: 284px;
    bottom: 27px;
    left: -7px;
  }
  .fact-figure .fact-container .heading h2 {
    text-align: left;
  }
  .fact-figure .fact-container .heading h2::after {
    background-position: left;
  }
  .fact-figure .fact-container .fig-list {
    width: 760px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
  }
  .fact-figure .fact-container .fig-list .list {
    position: relative;
    margin-right: 0;
  }
  .fact-figure .fact-container .fig-list .list:nth-child(1) {
    bottom: -95px;
    left: 22px;
  }
  .fact-figure .fact-container .fig-list .list:nth-child(1):before {
    position: absolute;
    content: '';
    top: -93px;
    left: 99px;
    background-image: url(../img/category/li1.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: rotate(-13deg);
  }
  .fact-figure .fact-container .fig-list .list:nth-child(2) {
    top: -27px;
    left: 38px;
  }
  .fact-figure .fact-container .fig-list .list:nth-child(2):before {
    position: absolute;
    content: '';
    top: 0;
    left: 132px;
    background-image: url(../img/category/li1.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: rotate(49deg);
  }
  .fact-figure .fact-container .fig-list .list:nth-child(3) {
    bottom: -87px;
    left: 42px;
  }
  .fact-figure .fact-container .fig-list .list:nth-child(3):before {
    position: absolute;
    content: '';
    top: -8px;
    left: 97px;
    background-image: url(../img/category/li1.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: rotate(-177deg);
  }
  .fact-figure .fact-container .fig-list .list:nth-child(4) {
    top: -29px;
    left: 35px;
  }
}
@media (min-width : 1366px) {
  .category-banner .banner-section {
    padding: 6rem 0;
  }
  .category-banner .banner-section .banner-content .courses {
    background-position: bottom;
    width: 58%;
  }
  .category-banner .banner-section .banner-content .courses a {
    right: 25%;
    top: 84%;
  }
  .library {
    padding: 4rem 0rem;
  }
  .library .lib-container .bottom-fold .filter-section {
    width: 250px;
  }
  .library .lib-container .bottom-fold .filter-section .filter-bar {
    height: 518px;
  }
  .library .lib-container .bottom-fold .right-section {
    height: 566px;
  }
  .library .lib-container .bottom-fold .right-section .topic-list .content-bar {
    margin: 0 0 2rem 2rem;
    width: 264px;
  }
  .popular-course {
    padding: 4rem 0rem;
  }
  .popular-course .pop-container .popular-section a {
    width: 31%;
  }
  .fact-figure {
    padding: 4rem 0rem;
  }
  .fact-figure::after {
    width: 250px;
    height: 283px;
  }
  .fact-figure::before {
    width: 326px;
    height: 320px;
    bottom: 25px;
    left: -17px;
  }
  .fact-figure .fact-container .fig-list .list:nth-child(1) {
    bottom: -85px;
    left: -73px;
  }
  .fact-figure .fact-container .fig-list .list:nth-child(1):before {
    top: -98px;
    left: 136px;
    transform: rotate(4deg);
  }
  .fact-figure .fact-container .fig-list .list:nth-child(2) {
    left: -8px;
    top: -29px;
  }
  .fact-figure .fact-container .fig-list .list:nth-child(2):before {
    left: 165px;
    transform: rotate(62deg);
    top: 29px;
  }
  .fact-figure .fact-container .fig-list .list:nth-child(3) {
    bottom: -88px;
    left: 55px;
  }
  .fact-figure .fact-container .fig-list .list:nth-child(3):before {
    top: -21px;
    left: 111px;
    transform: rotate(-175deg);
  }
  .fact-figure .fact-container .fig-list .list:nth-child(4) {
    top: -33px;
    left: 90px;
  }
}
@media (min-width : 1440px) {
  .fact-figure::before,
  .fact-figure::after {
    content: none;
  }
}
@media (min-width : 1600px) {
  .category-banner .banner-section .banner-content .courses {
    background-image: url(../img/category/right-bg-xxl.svg);
  }
}
.banner.trainingdates .banner-section .banner-content .right-image {
  background-image: url(../img/training-dates/training-dates.png) !important;
}
.training-dates {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.5rem;
  background-color: #f9f9f9;
}
.training-dates .training-content {
  display: flex;
  flex-direction: column;
}
.training-dates .training-content p {
  color: #919191;
}
.training-dates .buttons {
  margin-top: 1.5rem;
  justify-content: flex-start;
}
.schedule {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.5rem;
}
.schedule .schedule-inner {
  display: flex;
  flex-direction: column;
}
.schedule .schedule-inner .schedule-left {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.schedule .schedule-inner .schedule-left .select {
  display: flex;
  width: 100%;
  margin-bottom: 2rem;
}
.schedule .schedule-inner .schedule-left .select select {
  -webkit-appearance: none;
  width: 100%;
  border-radius: 50px;
  border: none;
  box-shadow: 0 0 10px #cecece;
  padding: 12px 20px;
  outline: none;
  background: url(../img/training-dates/down-arrow.svg) no-repeat;
  background-position: 95% center;
  background-size: 18px;
}
.schedule .schedule-inner .schedule-left .calender-outer {
  display: flex;
  flex-direction: column;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
  margin-bottom: 2rem;
  padding: 1rem;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender a {
  font-size: 20px;
  padding: 1rem 0;
  color: #000000;
  font-weight: 500;
  padding-top: 0;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-head {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px;
  background-color: #f9f9f9;
  justify-content: space-between;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-head span {
  width: 100%;
  color: #00607F;
  font-weight: 700;
  padding-bottom: 0.5rem;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-head .left {
  display: flex;
  width: 58%;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-head .left .icon {
  display: flex;
  margin-right: 6px;
  border-right: 1px solid #d0d0d0;
  padding-right: 4px;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-head .left .icon img {
  width: 20px;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-head .left .date {
  display: flex;
  flex-direction: column;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-head .left .date h3 {
  font-size: 12px;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-head .right {
  display: flex;
  width: 40%;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-head .right h3 {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
  margin-right: 0.8rem;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-head .right .icon {
  margin-left: 4px;
  padding-left: 4px;
  border-left: 1px solid #d0d0d0;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-head .right .icon img {
  width: 20px;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-head .show-dates {
  font-size: 12px;
  color: #FC9701;
  border-bottom: 1px solid #000000;
  width: auto;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-head:hover span {
  color: #FC9701;
  transition: 0.3s;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-head:hover .show-dates {
  color: #00607F;
  transition: 0.3s;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-list {
  display: none;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-list ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  list-style: none;
  margin: 0;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-list ul li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
  background-color: #FFF;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-list ul li .left {
  display: flex;
  width: 58%;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-list ul li .left .icon {
  display: flex;
  margin-right: 6px;
  border-right: 1px solid #d0d0d0;
  padding-right: 4px;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-list ul li .left .icon img {
  width: 20px;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-list ul li .left .date {
  display: flex;
  flex-direction: column;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-list ul li .left .date h3 {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-list ul li .left .date:hover h3 {
  color: #00607F;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-list ul li .right {
  display: flex;
  width: 40%;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-list ul li .right h3 {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-list ul li .right .icon {
  margin-left: 4px;
  padding-left: 4px;
  border-left: 1px solid #d0d0d0;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-list ul li .right .icon img {
  width: 22px;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-list ul li:nth-child(odd) {
  background-color: #FFF;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-list ul li:nth-child(even) {
  background-color: #f9f9f9;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .active + .dates-list {
  display: flex;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender .pagination {
  justify-content: flex-end;
}
.schedule .schedule-inner .schedule-left .calender-outer .calender:hover a {
  color: #00607F;
  transition: 0.3s;
}
.schedule .schedule-inner .schedule-right {
  display: flex;
  flex-direction: column;
}
.schedule .schedule-inner .schedule-right .popular-courses {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
}
.schedule .schedule-inner .schedule-right .popular-courses .orange-heading {
  margin-bottom: 0rem;
}
.schedule .schedule-inner .schedule-right .popular-courses .orange-heading h2 {
  color: #00607F;
}
.schedule .schedule-inner .schedule-right .popular-courses .orange-heading h2:after {
  background-image: url(../img/training-dates/double-lines.svg);
}
.schedule .schedule-inner .schedule-right .popular-courses .course-lists {
  display: flex;
  flex-direction: column;
}
.schedule .schedule-inner .schedule-right .popular-courses .course-lists a {
  padding-top: 10px ;
  padding-bottom: 4px;
  display: flex;
  flex-direction: row;
  margin-bottom: 6px;
  font-weight: 500;
  color: #696868;
  border-bottom-style: dotted;
  border-bottom-color: #d2d2d2;
  border-bottom-width: 2px;
}
.schedule .schedule-inner .schedule-right .popular-courses .course-lists a img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.schedule .schedule-inner .schedule-right .popular-courses .course-lists a:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.schedule .schedule-inner .schedule-right .popular-courses .course-lists a:first-child {
  padding-top: 0;
}
.schedule .schedule-inner .schedule-right .popular-courses .course-lists a:hover {
  color: #00607F;
  transition: 0.3s;
  font-weight: 700;
  border-bottom-color: #00607F;
}
.schedule .schedule-inner .schedule-right .enquiry {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
  padding: 1rem;
}
.schedule .schedule-inner .schedule-right .enquiry .orange-heading {
  margin-bottom: 1.5rem;
}
.schedule .schedule-inner .schedule-right .enquiry .orange-heading h2 {
  color: #00607F;
  font-size: 18px;
  padding-bottom: 0;
}
.schedule .schedule-inner .schedule-right .enquiry .orange-heading h2:after {
  content: none;
  background-image: url(../img/training-dates/double-lines.svg);
}
.schedule .schedule-inner .schedule-right .enquiry form .input-container .input-tag,
.schedule .schedule-inner .schedule-right .enquiry form .input-container .address {
  padding-left: 46px;
}
.schedule .schedule-inner .schedule-right .enquiry form .buttons {
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0.5rem;
}
@media (min-width : 768px) {
  .schedule {
    flex-direction: row;
  }
  .schedule .schedule-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .schedule .schedule-inner .schedule-left {
    width: 56%;
  }
  .schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-head .right {
    justify-content: flex-end;
    width: 39%;
    margin-top: 0;
  }
  .schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-head .right .icon {
    padding-left: 8px;
  }
  .schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-list ul li {
    flex-direction: row;
  }
  .schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-list ul li .left {
    width: 48%;
  }
  .schedule .schedule-inner .schedule-left .calender-outer .calender .calender-dates .dates-list ul li .right {
    width: 39%;
    margin-top: 0;
  }
  .schedule .schedule-inner .schedule-right {
    width: 40%;
    position: sticky;
    top: 122px;
    height: fit-content;
  }
  .schedule .schedule-inner .schedule-right .popular-courses {
    padding: 1.5rem;
    margin-top: 0;
  }
  .schedule .schedule-inner .schedule-right .enquiry {
    padding: 1.5rem;
  }
  .schedule .schedule-inner .schedule-right .enquiry form .input-container {
    width: 100%;
  }
}
@media (min-width : 1366px) {
  .schedule .schedule-inner .schedule-left {
    width: 68%;
  }
  .schedule .schedule-inner .schedule-left .select select {
    background-position: 98% center;
  }
  .schedule .schedule-inner .schedule-right {
    width: 29%;
    top: 152px;
  }
}
.topic-banner .banner-section .banner-content .detail .topic-logo {
  background-image: url(../img/topic/graybg.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
}
.topic-banner .banner-section .banner-content .detail .topic-logo img {
  width: 120px;
  height: 50px;
}
.topic-banner .banner-section .banner-content .courses {
  display: flex;
}
.topic-banner .banner-section .banner-content .courses .buttons {
  margin-top: 1rem;
  justify-content: flex-start;
}
.topic-banner .banner-section .banner-content .courses .buttons .orange-btn img {
  margin-left: 8px;
  margin-right: 0;
}
.topic-banner .banner-section .banner-content .courses ul {
  padding-left: 0px;
  list-style: none;
  margin-top: 2rem;
}
.topic-banner .banner-section .banner-content .courses ul li {
  display: none;
  padding: 0px 0px 15px 32px;
  background: url(../img/topic/check-black.svg) no-repeat 0px 5px transparent;
  list-style-type: none;
  vertical-align: middle;
  line-height: 1.4;
}
.topic-banner .banner-section .banner-content .courses ul li:nth-child(1) {
  display: flex;
}
.topic-banner .banner-section .banner-content .courses ul li:nth-child(2) {
  display: flex;
}
.topic-banner .banner-section .banner-content .courses ul li:nth-child(3) {
  display: flex;
}
.topic-banner .banner-section .banner-content .courses ul li:nth-child(4) {
  display: flex;
}
.courses-section {
  padding: 3rem 1.5rem;
}
.courses-section .cour-detail {
  display: flex;
  flex-direction: column;
}
.courses-section .cour-detail .cour-left {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
  height: 308px;
  overflow-y: auto;
  padding: 5px 10px;
}
.courses-section .cour-detail .cour-left .cour-content {
  display: flex;
  background-color: #FFF;
  box-shadow: 0 0 8px #e0dfdf;
  padding: 0.5rem 1rem;
  background-image: url(../img/topic/wave-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  margin-bottom: 1rem;
  justify-content: space-between;
  align-items: center;
}
.courses-section .cour-detail .cour-left .cour-content:last-child {
  margin-bottom: 0;
}
.courses-section .cour-detail .cour-left .cour-content img {
  width: 55px;
  margin-left: -6px;
}
.courses-section .cour-detail .cour-left .cour-content p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 55px);
}
.courses-section .cour-detail .cour-left .cour-content p span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 90%;
}
.courses-section .cour-detail .cour-left .cour-content p .rightarrow {
  width: 8px;
  margin-left: 0;
}
.courses-section .cour-detail .cour-left .cour-content:hover {
  box-shadow: 0 0 20px #e0dfdf;
}
.courses-section .cour-detail .cour-left .cour-content:hover p .rightarrow {
  animation: shake 3s infinite;
}
.courses-section .cour-detail .cour-right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-image: url(../img/topic/right-image.svg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: -0.6rem;
  margin-top: 1rem;
}
.courses-section .cour-detail .cour-right .fact-circle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 1rem 0rem;
  width: 130px;
  height: 130px;
  position: relative;
  margin-bottom: 2rem;
  box-shadow: 0 0 12px #cccccc;
}
.courses-section .cour-detail .cour-right .fact-circle p {
  font-weight: 500;
  color: #FFF;
  text-align: center;
}
.courses-section .cour-detail .cour-right .fact-circle span {
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
}
.courses-section .cour-detail .cour-right .fact-circle:before {
  content: '';
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  width: 140px;
  height: 140px;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
}
.courses-section .cour-detail .cour-right .fact-circle:nth-child(1),
.courses-section .cour-detail .cour-right .fact-circle:nth-child(3) {
  margin-right: 1rem;
}
.courses-section .cour-detail .cour-right .fact-circle:nth-child(1) {
  background-image: linear-gradient(150deg, #1A6A84 30%, #D0EAFE);
}
.courses-section .cour-detail .cour-right .fact-circle:nth-child(1):before {
  background-image: url(../img/topic/blue.png);
}
.courses-section .cour-detail .cour-right .fact-circle:nth-child(2) {
  background-image: linear-gradient(150deg, #FFCE54 30%, #F1D9A0);
}
.courses-section .cour-detail .cour-right .fact-circle:nth-child(2):before {
  background-image: url(../img/topic/yellow.png);
}
.courses-section .cour-detail .cour-right .fact-circle:nth-child(3) {
  background-image: linear-gradient(311deg, #ff9b9b 30%, #ffa53e);
  margin-bottom: 0;
}
.courses-section .cour-detail .cour-right .fact-circle:nth-child(3):before {
  background-image: url(../img/topic/pink.png);
}
.courses-section .cour-detail .cour-right .fact-circle:nth-child(4) {
  background-image: linear-gradient(150deg, #4B57F1 30%, #CCD0FF);
  margin-bottom: 0;
}
.courses-section .cour-detail .cour-right .fact-circle:nth-child(4):before {
  background-image: url(../img/topic/violet.png);
}
.courses-section .cour-detail .cour-right .new-offers {
  width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: wrap;
  background-color: #f3f3f3;
  box-shadow: 0 0 10px #f1f1f1;
  border-radius: 10px;
  padding: 2rem;
  position: relative;
}
.courses-section .cour-detail .cour-right .new-offers .heart-like-our {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(-108deg, #505858 -30%, #00607F 39%);
  border-radius: 95% 0 0 0;
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 38px;
  height: 38px;
}
.courses-section .cour-detail .cour-right .new-offers .heart-like-our .heart {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -6px;
  margin-right: -9px;
}
.courses-section .cour-detail .cour-right .new-offers .heart-like-our .fas {
  color: #FFF;
  font-size: 15px;
}
.courses-section .cour-detail .cour-right .new-offers h3 {
  color: #00607F;
  font-size: 18px;
}
.courses-section .cour-detail .cour-right .new-offers h3 span {
  color: #FC9701;
  font-size: 18px;
}
.courses-section .cour-detail .cour-right .new-offers p {
  padding: 1rem 0;
}
.courses-section .cour-detail .cour-right .new-offers .image {
  width: 100%;
  height: 100px;
  margin-bottom: 1rem;
}
.course-info {
  padding: 3rem 1.5rem;
  background-image: url(../img/topic/bg-course.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.course-info .news-tabs {
  display: flex;
  flex-direction: column;
}
.course-info .news-tabs .tabs {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.course-info .news-tabs .tabs .tabjs-container {
  display: flex;
  flex-direction: column;
}
.course-info .news-tabs .tabs .tabjs-container .tab-head {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  margin-left: 3rem;
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch {
  display: flex;
  align-items: center;
  width: 66%;
  color: #FFFFFF;
  cursor: pointer;
  padding: 10px 2rem;
  background-color: #00607F;
  position: relative;
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch:before {
  content: '';
  position: absolute;
  border-bottom: 44px solid #00607f;
  border-right: 30px solid transparent;
  right: -30px;
  top: 0;
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch:after {
  content: '';
  position: absolute;
  width: 43px;
  height: 43px;
  background-image: url(../img/topic/tab-lines.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: -48px;
  top: 0;
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch .circle {
  display: flex;
  position: absolute;
  z-index: 0;
  left: -35px;
  top: 0;
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch .circle:after {
  position: absolute;
  content: '';
  left: -6px;
  top: -5px;
  width: 50px;
  height: 50px;
  box-shadow: 0 0 5px #929292;
  background-color: #5798C5;
  z-index: -1;
  border-radius: 50%;
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch .circle:before {
  position: absolute;
  content: '';
  left: -11px;
  top: -10px;
  width: 60px;
  height: 60px;
  background-color: #96BEDB;
  z-index: -1;
  border-radius: 50%;
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch .circle .blue {
  display: flex;
  height: 38px;
  width: 38px;
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch .circle .orange {
  display: none;
  height: 38px;
  width: 38px;
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch .co-text {
  font-size: 18px;
  font-weight: 600;
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch:hover {
  background-color: #FC9701;
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch:hover:before {
  border-bottom: 44px solid #FC9701;
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch:hover:after {
  background-image: url(../img/topic/orange-line.svg);
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch:hover .circle .blue {
  display: none;
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch:hover .circle .orange {
  display: flex;
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch:hover .circle:after {
  background-color: #feb500;
  box-shadow: 0 0 5px rgba(251, 179, 0, 0.79);
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch:hover .circle:before {
  background-color: #fba21f;
  box-shadow: 0 0 5px rgba(187, 187, 186, 0.79);
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .active {
  background-color: #FC9701;
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .active:before {
  border-bottom: 44px solid #FC9701;
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .active:after {
  background-image: url(../img/topic/orange-line.svg);
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .active .circle .blue {
  display: none;
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .active .circle .orange {
  display: flex;
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .active .circle:after {
  background-color: #feb500;
  box-shadow: 0 0 5px rgba(251, 179, 0, 0.79);
}
.course-info .news-tabs .tabs .tabjs-container .tab-head .active .circle:before {
  background-color: #fba21f;
  box-shadow: 0 0 5px rgba(187, 187, 186, 0.79);
}
.course-info .news-tabs .tabs .tabjs-container .tab-order:nth-child(1) {
  order: 1;
}
.course-info .news-tabs .tabs .tabjs-container .tab-order:nth-child(2) {
  order: 3;
}
.course-info .news-tabs .tabs .tabjs-container .tab-order:nth-child(3) {
  order: 5;
}
.course-info .news-tabs .tabs .tabjs-container .tab-order:nth-child(4) {
  order: 2;
}
.course-info .news-tabs .tabs .tabjs-container .tab-order:nth-child(5) {
  order: 4;
}
.course-info .news-tabs .tabs .tabjs-container .tab-order:nth-child(6) {
  order: 6;
}
.course-info .news-tabs .tabs .tabjs-container .moreless {
  position: relative;
  justify-content: flex-end;
  margin-bottom: 0;
}
.course-info .news-tabs .tabs .tabjs-container .moreless::after {
  position: absolute;
  content: '';
  border-bottom: 2px solid #ccc;
  width: 99%;
  left: 0;
  top: 50%;
}
.course-info .news-tabs .tabs .tabjs-container .moreless .showmorecontent {
  z-index: 1;
}
.course-info .news-tabs .tabs .tabjs-container .moreless .showmorecontent img {
  width: 18px;
}
.course-info .news-tabs .tabs .tabjs-container .scroll-height {
  display: flex;
  flex-direction: column;
  max-height: 395px;
  overflow: hidden;
}
.course-info .news-tabs .tabs .tabjs-container .toggle {
  max-height: 100% !important;
}
.course-info .news-tabs .tabs .tabjs-container .tab-content {
  display: flex;
  flex-direction: column;
  margin: 0 0 2rem 0;
  width: 100%;
}
.course-info .news-tabs .tabs .tabjs-container .tab-content img {
  max-width: 270px;
  width: auto;
  height: auto;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.course-info .news-tabs .tabs .tabjs-container .tab-content ul,
.course-info .news-tabs .tabs .tabjs-container .tab-content ol {
  padding-left: 1.7rem;
  color: #919191;
  margin: 0;
  margin-bottom: 6px;
}
.course-info .news-tabs .tabs .tabjs-container .tab-content ul li,
.course-info .news-tabs .tabs .tabjs-container .tab-content ol li {
  font-weight: normal;
}
.course-info .news-tabs .tabs .tabjs-container .tab-content ul li p,
.course-info .news-tabs .tabs .tabjs-container .tab-content ol li p,
.course-info .news-tabs .tabs .tabjs-container .tab-content ul li div,
.course-info .news-tabs .tabs .tabjs-container .tab-content ol li div {
  margin-bottom: 0;
}
.course-info .news-tabs .tabs .tabjs-container .tab-content h2,
.course-info .news-tabs .tabs .tabjs-container .tab-content h3,
.course-info .news-tabs .tabs .tabjs-container .tab-content h4,
.course-info .news-tabs .tabs .tabjs-container .tab-content h5 {
  margin-bottom: 0.5rem;
  color: #000000;
  font-weight: 600;
  line-height: 1.4;
}
.course-info .news-tabs .tabs .tabjs-container .tab-content h2 strong,
.course-info .news-tabs .tabs .tabjs-container .tab-content h3 strong,
.course-info .news-tabs .tabs .tabjs-container .tab-content h4 strong,
.course-info .news-tabs .tabs .tabjs-container .tab-content h5 strong {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}
.course-info .news-tabs .tabs .tabjs-container .tab-content a {
  color: #00607F;
}
.course-info .news-tabs .tabs .tabjs-container .tab-content a span {
  color: #FFF;
}
.course-info .news-tabs .tabs .tabjs-container .tab-content p,
.course-info .news-tabs .tabs .tabjs-container .tab-content div {
  font-size: 14px;
  text-align: justify;
  color: #919191;
  margin-bottom: 6px;
  line-height: 1.6;
}
.course-info .news-tabs .tabs .tabjs-container .tab-content p strong,
.course-info .news-tabs .tabs .tabjs-container .tab-content div strong {
  color: #000000;
}
.course-info .news-tabs .tabs .tabjs-container .tab-content h3 {
  font-size: 18px;
}
.course-info .news-tabs .tabs .tabjs-container .tab-content h2 {
  font-size: 20px;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 2rem;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 1rem 0;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle a h3 {
  margin: 1rem 0;
  color: #00607F;
  font-size: 18px;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle p {
  font-size: 14px;
  text-align: justify;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates {
  display: flex;
  flex-direction: column;
  margin: 1rem 0;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-head {
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px;
  background-color: #F2F2F2;
  justify-content: space-between;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-head span {
  width: 100%;
  color: #00607F;
  font-weight: 700;
  padding-bottom: 0.5rem;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-head .left {
  display: flex;
  width: 48%;
  flex-wrap: wrap;
  align-items: center;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-head .left .icon {
  display: flex;
  margin-right: 7px;
  border-right: 1px solid #d0d0d0;
  padding-right: 4px;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-head .left .icon img {
  width: 20px;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-head .left .date {
  display: flex;
  flex-direction: column;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-head .left .date h3 {
  font-size: 12px;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-head .left .date span {
  font-size: 10px;
  color: #FC9701;
  border-bottom: 1px solid #000000;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-head .right {
  display: flex;
  width: 48%;
  justify-content: flex-end;
  align-items: center;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-head .right h3 {
  font-size: 12px;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-head .right .icon {
  margin-right: 4px;
  padding-right: 4px;
  border-right: 1px solid #d0d0d0;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-head .right .icon img {
  width: 20px;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-list {
  display: none;
  width: 100%;
  justify-content: space-between;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-list ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  list-style: none;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-list ul li {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
  background-color: #FFF;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-list ul li .left {
  display: flex;
  width: 48%;
  flex-wrap: wrap;
  align-items: center;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-list ul li .left .icon {
  display: flex;
  margin-right: 7px;
  border-right: 1px solid #d0d0d0;
  padding-right: 4px;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-list ul li .left .icon img {
  width: 20px;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-list ul li .left .date {
  display: flex;
  flex-direction: column;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-list ul li .right {
  display: flex;
  width: 48%;
  justify-content: flex-end;
  align-items: center;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-list ul li .right h3 {
  font-size: 12px;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-list ul li .right .icon {
  margin-right: 4px;
  padding-right: 4px;
  border-right: 1px solid #d0d0d0;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-list ul li .right .icon img {
  width: 22px;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-list ul li:nth-child(odd) {
  background-color: #FFF;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-list ul li:nth-child(even) {
  background-color: #f9f9f9;
}
.course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .active + .dates-list {
  display: flex;
}
.course-info .news-tabs .tabs .tabjs-container .faq-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 1rem 0 2rem 0;
  justify-content: center;
}
.course-info .news-tabs .tabs .tabjs-container .faq-content .faq-container {
  display: flex;
  flex-direction: column;
}
.course-info .news-tabs .tabs .tabjs-container .faq-content .faq-container .faq-firstfold {
  display: flex;
  flex-direction: column;
}
.course-info .news-tabs .tabs .tabjs-container .faq-content .faq-container .faq-firstfold .faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.course-info .news-tabs .tabs .tabjs-container .faq-content .faq-container .faq-firstfold .faq-list a {
  color: #00607F;
  font-weight: 600;
}
.course-info .news-tabs .tabs .tabjs-container .faq-content .faq-container .faq-firstfold .faq-list img {
  width: 100%;
}
.course-info .news-tabs .tabs .tabjs-container .faq-content .faq-container .faq-firstfold .faq-list .list {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.18);
  width: 100%;
  margin-bottom: 2rem;
  background-color: #F8F8F8;
  border-radius: 20px;
  cursor: pointer;
}
.course-info .news-tabs .tabs .tabjs-container .faq-content .faq-container .faq-firstfold .faq-list .list .faq-ques {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 1;
}
.course-info .news-tabs .tabs .tabjs-container .faq-content .faq-container .faq-firstfold .faq-list .list .faq-ques p {
  color: #000000;
  font-weight: 600;
}
.course-info .news-tabs .tabs .tabjs-container .faq-content .faq-container .faq-firstfold .faq-list .list .faq-ques img {
  width: 28px;
  height: 28px;
}
.course-info .news-tabs .tabs .tabjs-container .faq-content .faq-container .faq-firstfold .faq-list .list .faq-ques .cross {
  display: none;
}
.course-info .news-tabs .tabs .tabjs-container .faq-content .faq-container .faq-firstfold .faq-list .list .faq-ans {
  display: none;
  color: #919191;
  margin-top: 6px;
  z-index: 1;
}
.course-info .news-tabs .tabs .tabjs-container .faq-content .faq-container .faq-firstfold .faq-list .faq-active {
  position: relative;
  background-color: #FFF;
}
.course-info .news-tabs .tabs .tabjs-container .faq-content .faq-container .faq-firstfold .faq-list .faq-active .active .open {
  display: none;
}
.course-info .news-tabs .tabs .tabjs-container .faq-content .faq-container .faq-firstfold .faq-list .faq-active .active .cross {
  display: flex;
}
.course-info .news-tabs .tabs .tabjs-container .faq-content .faq-container .faq-firstfold .faq-list .faq-active .active + .faq-ans {
  display: flex;
}
.course-info .news-tabs .tabs .tabjs-container .faq-content .faq-container .faq-firstfold .faq-list .faq-active::before {
  content: '';
  position: absolute;
  width: 110px;
  height: 110px;
  background-image: url(../img/course/faq-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
}
.course-info .news-tabs .tabs .tabjs-container .faq-content .faq-container .faq-lastfold {
  display: flex;
  flex-direction: column;
}
.course-info .news-tabs .tabs .tabjs-container .faq-content .faq-container .faq-lastfold p {
  color: #000000;
  margin-bottom: 1rem;
  text-align: center;
}
.calender-section {
  padding: 3rem 1.5rem;
}
.calender-section .calendar-heading {
  margin-bottom: 3rem;
}
.calender-section .calendar-heading .heading {
  margin-bottom: 0;
}
.calender-section .filter-top {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background-color: #FFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
  margin-bottom: 1rem;
  border-radius: 5px;
  cursor: pointer;
}
.calender-section .filter-top .heading {
  margin-bottom: 0;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.calender-section .filter-top .heading h2 {
  background-image: none;
  padding: 0;
  font-size: 18px;
  color: #00607F;
}
.calender-section .filter-top .heading h2::after {
  content: none;
}
.calender-section .filter-top .heading i {
  color: #00607F;
}
.calender-section .filter-top .form-div {
  display: none;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 0;
}
.calender-section .filter-top .form-div .select-fliters {
  display: flex;
  flex-direction: column;
}
.calender-section .filter-top .form-div .select-fliters .select-dropdown {
  margin-bottom: 1rem;
}
.calender-section .filter-top .form-div .select-fliters .select-dropdown p {
  font-weight: 500;
  padding-bottom: 0.5rem;
  color: #000000;
}
.calender-section .filter-top .form-div .select-fliters .select-dropdown select {
  background-color: #FFF;
  padding: 8px 36px 8px 10px;
  color: #787878;
  font-weight: 500;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #828282;
  outline: 0px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../img/topic/select-arrow.svg) no-repeat;
  background-position: 96% center;
}
.calender-section .calender-container {
  display: flex;
  flex-direction: column;
}
.calender-section .calender-container .calender-left {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
  align-items: center;
}
.calender-section .calender-container .calender-left .training-modes {
  display: flex;
  justify-content: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #FFF;
  box-shadow: 0 0 20px #f3f1f1;
  border-radius: 10px;
  padding: 3rem 1rem 3rem 1rem;
  position: relative;
  width: 87%;
}
.calender-section .calender-container .calender-left .training-modes span {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  box-shadow: 0 0 10px #f1f1f1;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  position: absolute;
  top: -33px;
}
.calender-section .calender-container .calender-left .training-modes span img {
  width: 30px;
}
.calender-section .calender-container .calender-left .training-modes .modes {
  display: flex;
  background-color: #FFF;
  box-shadow: 0 0 10px #f1f1f1;
  padding: 1rem;
  border-radius: 10px;
  width: 46%;
  background-image: url(../img/topic/mode-orange.svg);
  background-size: 225px;
  background-repeat: no-repeat;
  background-position: -44px;
  margin-bottom: 1rem;
  cursor: pointer;
}
.calender-section .calender-container .calender-left .training-modes .modes:nth-child(2) {
  margin-right: auto;
}
.calender-section .calender-container .calender-left .training-modes .modes p {
  font-weight: 600;
}
.calender-section .calender-container .calender-left .training-modes .modes:nth-last-child(1),
.calender-section .calender-container .calender-left .training-modes .modes:nth-last-child(2) {
  margin-bottom: 0;
}
.calender-section .calender-container .calender-left .training-modes .modes:hover {
  background-image: url(../img/topic/mode-blue.svg);
}
.calender-section .calender-container .calender-left .training-modes .active {
  background-image: url(../img/topic/mode-blue.svg);
}
.calender-section .calender-container .calender-left .keypoints {
  display: none;
  flex-wrap: wrap;
  background-color: #FFF;
  box-shadow: 0 0 20px #f3f1f1;
  border-radius: 10px;
  position: relative;
  padding: 3rem 1rem 3rem 1rem;
  margin-bottom: 2rem;
  width: 87%;
  justify-content: center;
}
.calender-section .calender-container .calender-left .keypoints .heart-like-our {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(-108deg, #505858 -30%, #00607F 39%);
  border-radius: 95% 0 0 0;
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 38px;
  height: 38px;
}
.calender-section .calender-container .calender-left .keypoints .heart-like-our .heart {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -6px;
  margin-right: -9px;
}
.calender-section .calender-container .calender-left .keypoints .heart-like-our .fas {
  color: #FFF;
  font-size: 15px;
}
.calender-section .calender-container .calender-left .keypoints h3 {
  color: #00607F;
  font-size: 18px;
  text-align: center;
}
.calender-section .calender-container .calender-left .keypoints .key {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  box-shadow: 0 0 10px #f1f1f1;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  position: absolute;
  top: -33px;
}
.calender-section .calender-container .calender-left .keypoints .key img {
  width: 22px;
}
.calender-section .calender-container .calender-left .keypoints .learner {
  display: flex;
  margin-top: 1rem;
  width: 100%;
}
.calender-section .calender-container .calender-left .keypoints .learner img {
  margin-right: 10px;
  width: 25px;
}
.calender-section .calender-container .calender-left .keypoints .learner p {
  color: #FC9701;
}
.calender-section .calender-container .calender-left .keypoints .learn {
  margin: 1rem 0;
  width: 146px;
}
.calender-section .calender-container .calender-left .keypoints .cour-info {
  display: flex;
  width: 100%;
  padding-top: 0;
}
.calender-section .calender-container .calender-left .keypoints .cour-info p {
  font-weight: 600;
  color: #00607F;
}
.calender-section .calender-container .calender-left .keypoints .cour-info p span {
  margin-left: 5px;
  font-weight: 400;
  color: #000000;
}
.calender-section .calender-container .calender-left .buttons {
  display: none;
}
.calender-section .calender-container .calender-right {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.calender-section .calender-container .calender-right .price-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.calender-section .calender-container .calender-right .price-section .dates-prices {
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  box-shadow: 0 0 10px #f1f1f1;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 2rem;
}
.calender-section .calender-container .calender-right .price-section .dates-prices:last-child {
  margin-bottom: 0!important;
}
.calender-section .calender-container .calender-right .price-section .dates-prices .top-name {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #707070;
}
.calender-section .calender-container .calender-right .price-section .dates-prices .top-name h3 {
  color: #00607F;
  font-size: 18px;
}
.calender-section .calender-container .calender-right .price-section .dates-prices .top-name p {
  font-size: 12px;
  color: #8F8E8E;
  margin-bottom: 5px;
}
.calender-section .calender-container .calender-right .price-section .dates-prices .price-content {
  display: flex;
  margin: 10px 0;
}
.calender-section .calender-container .calender-right .price-section .dates-prices .price-content .details {
  width: 70%;
}
.calender-section .calender-container .calender-right .price-section .dates-prices .price-content .details .location,
.calender-section .calender-container .calender-right .price-section .dates-prices .price-content .details .duration,
.calender-section .calender-container .calender-right .price-section .dates-prices .price-content .details .date {
  display: flex;
  align-items: center;
  padding-bottom: 6px;
}
.calender-section .calender-container .calender-right .price-section .dates-prices .price-content .details .location img,
.calender-section .calender-container .calender-right .price-section .dates-prices .price-content .details .duration img,
.calender-section .calender-container .calender-right .price-section .dates-prices .price-content .details .date img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.calender-section .calender-container .calender-right .price-section .dates-prices .price-content .details .location p,
.calender-section .calender-container .calender-right .price-section .dates-prices .price-content .details .duration p,
.calender-section .calender-container .calender-right .price-section .dates-prices .price-content .details .date p {
  color: #8F8E8E;
  line-height: 1.4;
}
.calender-section .calender-container .calender-right .price-section .dates-prices .price-content .price {
  width: 30%;
  display: flex;
  justify-content: center;
}
.calender-section .calender-container .calender-right .price-section .dates-prices .price-content .price span {
  font-size: 16px;
  font-weight: 600;
  color: #FC9701;
}
.calender-section .calender-container .calender-right .price-section .dates-prices .buttons {
  justify-content: space-between;
}
.calender-section .calender-container .calender-right .price-section .dates-prices .buttons .orange-btn {
  padding: 10px 17px;
}
.calender-section .calender-container .calender-right .price-section .dates-prices .buttons .orange-btn img {
  width: 18px;
}
.calender-section .calender-container .calender-right .price-section .dates-prices .buttons .blue-btn {
  padding: 10px 9px;
}
.calender-section .calender-container .calender-right .price-section .dates-prices .buttons .blue-btn img {
  width: 18px;
}
.calender-section .calender-container .calender-right #classroom-block .dates-prices:last-child,
.calender-section .calender-container .calender-right #virtual-block .dates-prices:last-child {
  margin-bottom: 0!important;
}
.calender-section .calender-container .calender-right .onsite-schedule {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking {
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  background-color: #FFF;
  padding: 3rem 2rem;
  height: fit-content;
  border-radius: 12px;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .onsite-heading {
  margin-bottom: 2rem;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .onsite-heading h1 {
  font-size: 22px;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .onsite-heading h1:after {
  height: 14px;
  background-image: url(../img/master/blue-orange.png);
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .onsite-heading .sub-heading {
  margin-top: 1.5rem;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .onsite-form-detail {
  display: flex;
  flex-direction: column;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .onsite-form-detail .buttons {
  width: 100%;
  margin-top: 1.5rem;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .user-detail {
  width: 100%;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .user-detail .heading {
  display: flex;
  flex-direction: column;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .user-detail .heading h1 {
  font-size: 18px;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .user-detail .heading h1 span {
  font-size: 18px;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .user-detail .form-heading {
  font-weight: 600;
  margin-bottom: 1rem;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .user-detail .input-container .input-tag {
  padding-left: 46px;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .user-detail .input-container .icon .address {
  width: 16px;
  height: 17px;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .user-detail .input-container textarea {
  padding-left: 46px;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate h3 {
  font-size: 18px;
  color: #00607F;
  margin-bottom: 1.5rem;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate h3 span {
  font-size: 18px;
  color: #FEB500;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate .delegate-count {
  display: flex;
  flex-direction: column;
  background-image: url(../img/course/circle-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  align-items: center;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate .delegate-count .select-emp-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate .delegate-count .select-emp {
  width: 90%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 10px 10px;
  border-radius: 6px;
  box-shadow: 0 0 14px #e2e2e2;
  margin-bottom: 1.5rem;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  background-image: url(../img/course/delegate-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate .delegate-count .select-emp:hover {
  box-shadow: inset 0px 0px 0 4px #FEB500;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate .delegate-count .select-emp .hide {
  display: none;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate .delegate-count .select-emp img {
  margin-bottom: 1rem;
  width: 54px;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate .delegate-count .select-emp span,
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate .delegate-count .select-emp p {
  font-weight: 700;
  color: #000000;
  font-size: 14px;
  width: 100%;
  text-align: center;
  line-height: 1.4;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate .delegate-count .active {
  box-shadow: inset 0px 0px 0 4px #FEB500;
}
.calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate .delegate-count #error-delegate {
  font-weight: 700;
}
.calender-section .calender-container .calender-right .onsite-schedule #next-form {
  display: none;
}
.calender-section .calender-container .calender-right .onsite-schedule #next-form .buttons {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}
.calender-section .calender-container .calender-right .onsite-schedule #next-form .buttons .blue-btn {
  padding: 10px 13px;
}
.calender-section .calender-container .calender-right .onsite-schedule #next-form .buttons .orange-btn {
  padding: 10px 18px;
}
.calender-section .calender-container .calender-right .online-schedule {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}
.calender-section .calender-container .calender-right .online-schedule:before {
  content: '';
  position: absolute;
  background-image: url(../img/course/online-schedule-mob.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  width: 100%;
  height: 155px;
  bottom: 0;
  right: 0;
  z-index: 0;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking {
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  background-color: #FFF;
  padding: 3rem 2rem;
  height: fit-content;
  border-radius: 12px;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .addon {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .addon .heading {
  margin-bottom: 1rem;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .addon .heading h1 {
  font-size: 20px;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .addon .heading h1 span {
  font-size: 20px;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .addon .feature-sec {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .addon .feature-sec .online-feature {
  display: flex;
  align-items: flex-start;
  padding: 9px 0;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .addon .feature-sec .online-feature .feature-tickbox {
  display: flex;
  margin-right: 12px;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .addon .feature-sec .online-feature .feature-tickbox label {
  cursor: pointer;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .addon .feature-sec .online-feature .feature-tickbox label input[type="checkbox"] {
  display: none;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .addon .feature-sec .online-feature .feature-tickbox label input[type="checkbox"] + .cr {
  position: relative;
  background: #FFF;
  width: 22px;
  height: 22px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .addon .feature-sec .online-feature .feature-tickbox label input[type="checkbox"] + .cr .cr-icon {
  position: absolute;
  font-size: 16px;
  line-height: 0;
  top: 48%;
  left: 20%;
  color: #00607F;
  transform: scale(3) rotateZ(-20deg);
  opacity: 0;
  transition: all 0.3s ease-in;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .addon .feature-sec .online-feature .feature-tickbox label input[type="checkbox"]:checked + .cr .cr-icon {
  transform: scale(1) rotateZ(0deg);
  opacity: 1;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .addon .feature-sec .online-feature .feature-text {
  color: #707070;
  font-size: 15px;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .package-text {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .package-text .heading h1 {
  font-size: 20px;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .package-text .heading h1 span {
  font-size: 20px;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .package-text .package-off {
  display: flex;
  flex-direction: column;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .package-text .package-off p {
  background: url(../../img/course/tick-mobile.png) no-repeat 0 8px transparent;
  padding: 3px 0 4px 26px;
  background-size: 20px;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .price-addon {
  display: flex;
  z-index: 0;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .price-addon .addon-text {
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  background-image: linear-gradient(190deg, #FFFFFF, #F3F3F3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.21);
  border-radius: 6px;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .price-addon .addon-text h2 {
  font-size: 20px;
  text-align: center;
  width: 100%;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .price-addon .addon-text .total-price {
  display: flex;
  color: #FEB500;
  font-weight: 500;
  font-size: 35px;
  line-height: 1.4;
  justify-content: center;
  padding: 1.5rem 0;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .price-addon .addon-text .total-price span {
  font-weight: 500;
  font-size: 35px;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .price-addon .addon-text .buttons {
  width: 100%;
  flex-direction: column;
}
.calender-section .calender-container .calender-right .online-schedule .online-booking .price-addon .addon-text .buttons .orange-btn {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.whychoose-us {
  padding: 3rem 1.5rem;
  background-image: url(../img/topic/choose.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.whychoose-us .heading {
  align-items: center;
}
.whychoose-us .sub-heading {
  text-align: center;
  margin-bottom: 1rem;
}
.whychoose-us .choose-main {
  display: flex;
  flex-direction: column;
}
.whychoose-us .choose-main .choose-select {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background-color: #FFF;
  box-shadow: 0 0 15px #d0d0d0;
  margin-bottom: 2rem;
}
.whychoose-us .choose-main .choose-select:last-child {
  margin-bottom: 0;
}
.whychoose-us .choose-main .choose-select .choose-head {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.whychoose-us .choose-main .choose-select .choose-head img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.whychoose-us .choose-main .choose-select .choose-head h3 {
  color: #00607F;
  font-size: 16px;
}
.features-section {
  padding: 3rem 1.5rem;
}
.features-section .features-content {
  display: flex;
  flex-direction: column;
}
.features-section .features-content .last {
  margin-top: 2rem;
}
.features-section .features-content .common .content-feature {
  display: flex;
  margin-bottom: 1rem;
  align-items: flex-start;
  min-height: 128px;
}
.features-section .features-content .common .content-feature:last-child {
  margin-bottom: 0;
}
.features-section .features-content .common .content-feature .info-content {
  display: flex;
  flex-direction: column;
  width: 84%;
  margin: 0.5rem 0 0;
}
.features-section .features-content .common .content-feature .info-content h3 {
  font-size: 16px;
  color: #00607F;
}
.features-section .features-content .common .content-feature .info-content p {
  margin: 0.5rem 0;
  font-size: 13px;
}
.features-section .features-content .common .content-feature img {
  width: 75px;
  margin-right: 10px;
}
.features-section .features-content .common .content-feature:nth-child(2) .info-content h3 {
  color: #FEB500;
}
.features-section .features-content .middle {
  display: none;
}
.years {
  padding: 3rem 1.5rem;
  background-color: #F9F9F9;
}
.years .experience-detail {
  display: flex;
  flex-direction: column;
}
.years .experience-detail .years-left {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}
.years .experience-detail .years-left .bg-design {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 230px;
}
.years .experience-detail .years-left .bg-design img {
  width: 100%;
  height: 220px;
  z-index: 99;
}
.years .experience-detail .years-left .bg-design:after {
  content: '';
  width: 245px;
  height: 245px;
  background-color: #FFF;
  border: 18px solid #FC9701;
  position: absolute;
  right: -25px;
  top: -30px;
  z-index: 1;
}
.years .experience-detail .years-right {
  padding: 4rem 0 0 0;
  display: flex;
  flex-direction: column;
}
.years .experience-detail .years-right .buttons {
  justify-content: space-between;
  margin-top: 2rem;
  width: 272px;
}
.years .experience-detail .years-right .buttons .orange-btn {
  width: 121px;
}
.years .experience-detail .years-right .years-points {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  margin-top: 3rem;
  border: 2px dotted #5E5E5E;
}
.years .experience-detail .years-right .years-points .year-main {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  justify-content: center;
}
.years .experience-detail .years-right .years-points .year-main:last-child span {
  left: 45px;
}
.years .experience-detail .years-right .years-points .year-main h3 {
  color: #5E5E5E;
  font-size: 20px;
  font-weight: bold;
  width: inherit;
}
.years .experience-detail .years-right .years-points .year-main span {
  color: #FC9701;
  font-size: 25px;
  font-weight: 800;
  margin-left: 5px;
}
.years .experience-detail .years-right .years-points .year-main p {
  color: #5E5E5E;
  font-size: 16px;
  font-weight: 500;
  margin-left: 1rem;
  width: inherit;
}
.years .experience-detail .years-right .years-points .year-main:last-child {
  margin-bottom: 0;
}
@media (min-width : 375px) {
  .courses-section .cour-detail .cour-right .fact-circle:nth-child(1),
  .courses-section .cour-detail .cour-right .fact-circle:nth-child(3) {
    margin-right: 3rem;
  }
}
@media (min-width : 768px) {
  .topic-banner .banner-section .banner-content .detail .topic-logo {
    width: 93%;
    padding: 1rem 0.5rem;
  }
  .topic-banner .banner-section .banner-content .courses {
    height: auto;
  }
  .topic-banner .banner-section .banner-content .courses ul {
    margin-top: -2rem;
    width: 52%;
    margin-left: auto;
  }
  .topic-banner .banner-section .banner-content .courses ul li {
    padding: 0px 0px 0px 32px;
    background: url(../img/topic/check.svg) no-repeat 0 5px transparent;
  }
  .topic-banner .banner-section .banner-content .courses ul li p {
    color: #FFF;
  }
  .topic-banner .banner-section .banner-content .courses .buttons a {
    right: 14%;
    top: 81%;
  }
  .topic-banner .banner-section .banner-content .courses .buttons a img {
    margin-left: 10px;
  }
  .courses-section {
    padding: 3rem 2rem;
  }
  .courses-section .cour-detail {
    flex-direction: row;
    justify-content: space-between;
  }
  .courses-section .cour-detail .cour-left {
    width: 52%;
    margin-bottom: 0rem;
  }
  .courses-section .cour-detail .cour-right {
    width: 42%;
    margin-top: 0;
  }
  .courses-section .cour-detail .cour-right .fact-circle {
    margin-bottom: 0;
    margin-left: 0;
  }
  .courses-section .cour-detail .cour-right .fact-circle:nth-child(1),
  .courses-section .cour-detail .cour-right .fact-circle:nth-child(3) {
    margin-right: 1rem;
  }
  .courses-section .cour-detail .cour-right .fact-circle:nth-child(1) {
    margin-top: -6rem;
  }
  .courses-section .cour-detail .cour-right .fact-circle:nth-child(2) {
    margin-top: -3rem;
  }
  .courses-section .cour-detail .cour-right .fact-circle:nth-child(3) {
    margin-top: -3rem;
  }
  .course-info {
    padding: 3rem 2rem;
  }
  .course-info .news-tabs {
    margin-top: 3rem;
  }
  .course-info .news-tabs .tabs .tabjs-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .course-info .news-tabs .tabs .tabjs-container .tab-head {
    margin-bottom: 0;
    margin-right: 5rem;
  }
  .course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch {
    width: 100%;
  }
  .course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch:before {
    top: 0;
    border-bottom: 44px solid #00607F;
  }
  .course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch:after {
    height: 48px;
    right: -51px;
    top: 1px;
  }
  .course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch .co-text {
    width: 90%;
  }
  .course-info .news-tabs .tabs .tabjs-container .tab-head .active:before {
    border-bottom: 44px solid #FC9701;
  }
  .course-info .news-tabs .tabs .tabjs-container .tab-order:nth-child(2) {
    order: 2;
  }
  .course-info .news-tabs .tabs .tabjs-container .tab-order:nth-child(3) {
    order: 3;
    margin-right: 0;
  }
  .course-info .news-tabs .tabs .tabjs-container .tab-order:nth-child(4) {
    order: 4;
  }
  .course-info .news-tabs .tabs .tabjs-container .tab-order:nth-child(5) {
    order: 5;
  }
  .course-info .news-tabs .tabs .tabjs-container .tab-order:nth-child(6) {
    order: 6;
  }
  .course-info .news-tabs .tabs .tabjs-container .tab-content {
    margin: 2rem 0 2rem 0;
    margin-bottom: 0;
  }
  .course-info .news-tabs .tabs .tabjs-container .tab-content img {
    max-width: 470px;
  }
  .course-info .news-tabs .tabs .tabjs-container .courses-content {
    margin: 2rem 0 0rem 0;
  }
  .course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-head .right {
    justify-content: flex-end;
  }
  .course-info .news-tabs .tabs .tabjs-container .courses-content .text-toggle .course-dates .dates-head .right .icon {
    padding-right: 8px;
  }
  .course-info .news-tabs .tabs .tabjs-container .faq-content {
    margin: 4rem 0 2rem 0;
  }
  .calender-section {
    padding: 3rem 2rem;
  }
  .calender-section .filter-top {
    top: 3.6rem;
  }
  .calender-section .filter-top .heading {
    display: none;
  }
  .calender-section .filter-top .form-div {
    display: flex;
    margin-top: 0;
  }
  .calender-section .filter-top .form-div .select-fliters {
    justify-content: space-between;
    flex-direction: row;
  }
  .calender-section .filter-top .form-div .select-fliters .select-dropdown {
    width: 27%;
    margin-bottom: 0;
  }
  .calender-section .filter-top .form-div .select-fliters .buttons {
    margin-top: 2rem;
  }
  .calender-section .calender-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 2rem;
  }
  .calender-section .calender-container .calender-left {
    width: 44%;
    align-items: flex-start;
    top: 10rem;
    position: sticky;
    height: fit-content;
  }
  .calender-section .calender-container .calender-left .keypoints,
  .calender-section .calender-container .calender-left .buttons {
    display: flex;
  }
  .calender-section .calender-container .calender-left .training-modes {
    margin-bottom: 5rem;
  }
  .calender-section .calender-container .calender-right {
    width: 55%;
  }
  .calender-section .calender-container .calender-right .price-section .dates-prices .buttons .orange-btn {
    padding: 10px 22px;
  }
  .calender-section .calender-container .calender-right .price-section .dates-prices .buttons .blue-btn {
    padding: 10px 14px;
  }
  .calender-section .calender-container .calender-right .online-schedule .online-booking .price-addon .addon-text .buttons {
    display: flex;
    flex-direction: row;
  }
  .calender-section .calender-container .calender-right .online-schedule .online-booking .price-addon .addon-text .buttons .orange-btn,
  .calender-section .calender-container .calender-right .online-schedule .online-booking .price-addon .addon-text .buttons .blue-btn {
    padding: 10px 15px;
    margin: 0;
  }
  .calender-section .calender-container .calender-right .online-schedule .online-booking .price-addon .addon-text .buttons .blue-btn {
    margin-right: 2rem;
  }
  .calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .onsite-form-detail .buttons {
    justify-content: flex-end;
  }
  .calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate .delegate-count {
    flex-direction: row;
  }
  .calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate .delegate-count .select-emp-list {
    align-items: flex-start;
  }
  .calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate .delegate-count .select-emp {
    width: 72%;
  }
  .calender-section .calender-container .calender-right .onsite-schedule #next-form {
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .calender-section .calender-container .calender-right .onsite-schedule #next-form .buttons .blue-btn {
    padding: 10px 18px;
  }
  .calender-section .calender-container .calender-right .onsite-schedule #next-form .buttons .orange-btn {
    padding: 10px 23px;
  }
  .whychoose-us {
    padding: 3rem 2rem;
  }
  .whychoose-us .sub-heading {
    margin-bottom: 2rem;
  }
  .whychoose-us .choose-main {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .whychoose-us .choose-main .choose-select {
    width: 48%;
  }
  .whychoose-us .choose-main .choose-select:nth-last-child(1) {
    margin-bottom: 0;
  }
  .whychoose-us .choose-main .choose-select:nth-last-child(2) {
    margin-bottom: 0;
  }
  .features-section {
    padding: 3rem 2rem;
  }
  .features-section .features-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .features-section .features-content .last {
    margin-top: 0;
  }
  .features-section .features-content .common {
    width: 48%;
  }
  .years {
    padding: 3rem 2rem;
  }
  .years .experience-detail {
    flex-direction: row;
    justify-content: space-between;
  }
  .years .experience-detail .years-left {
    width: 30%;
    display: flex;
  }
  .years .experience-detail .years-left .bg-design:after {
    width: 175px;
    right: -34px;
  }
  .years .experience-detail .years-right {
    padding: 0;
    width: 60%;
  }
  .years .experience-detail .years-right .buttons {
    width: 66%;
  }
  .years .experience-detail .years-right .years-points {
    flex-direction: row;
    border: none;
    border-top: 2px dotted #5e5e5e;
  }
  .years .experience-detail .years-right .years-points .year-main {
    flex-direction: column;
    width: 31%;
    margin: 0;
  }
  .years .experience-detail .years-right .years-points .year-main p {
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    width: 100%;
    margin: 0 !important;
  }
  .years .experience-detail .years-right .years-points .year-main h3 {
    margin: 0;
    width: 100%;
    font-size: 26px;
  }
  .years .experience-detail .years-right .years-points .year-main:last-child {
    margin-left: 0;
  }
  .years .experience-detail .years-right .years-points .year-main:last-child p {
    margin-left: 1rem;
  }
}
@media (min-width : 1024px) {
  .topic-banner .banner-section .banner-content .courses ul {
    width: 59%;
    margin-right: 2rem;
  }
  .topic-banner .banner-section .banner-content .courses ul li {
    padding: 0px 0px 10px 32px;
  }
  .topic-banner .banner-section .banner-content .courses .buttons a {
    right: 19%;
    top: 75%;
  }
  .courses-section .cour-detail .cour-left {
    width: 55%;
  }
  .courses-section .cour-detail .cour-right {
    justify-content: space-around;
  }
  .courses-section .cour-detail .cour-right .new-offers {
    width: 326px;
  }
  .courses-section .cour-detail .cour-right .fact-circle {
    width: 140px;
    height: 140px;
  }
  .courses-section .cour-detail .cour-right .fact-circle:before {
    width: 150px;
    height: 150px;
  }
  .course-info .news-tabs .tabs .tabjs-container .tab-head {
    width: 16%;
  }
  .course-info .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch {
    padding: 10px 0rem 10px 3rem;
  }
  .calender-section .calender-container .calender-left {
    margin-top: 2rem;
    width: 28%;
  }
  .calender-section .calender-container .calender-left .training-modes {
    width: 100%;
  }
  .calender-section .calender-container .calender-left .keypoints {
    width: 100%;
    padding: 2rem;
  }
  .calender-section .calender-container .calender-right {
    width: 68%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .calender-section .calender-container .calender-right .price-section {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .calender-section .calender-container .calender-right .price-section .dates-prices {
    width: 48%;
  }
  .calender-section .calender-container .calender-right .onsite-schedule {
    width: 100%;
  }
  .calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .onsite-form-detail {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .user-detail {
    width: 45%;
  }
  .calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate {
    width: 48%;
    margin-top: 0;
  }
  .calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate .delegate-count .select-emp-list {
    align-items: flex-start;
  }
  .calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate .delegate-count .select-emp-list .select-emp {
    width: 80%;
  }
  .calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate .delegate-count .select-emp {
    width: 66%;
  }
  .calender-section .calender-container .calender-right .onsite-schedule #next-form {
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .calender-section .calender-container .calender-right .online-schedule:before {
    background-image: url(../img/course/online-schedule-lg.png);
    width: 550px;
    height: 300px;
  }
  .calender-section .calender-container .calender-right .online-schedule .online-booking {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .calender-section .calender-container .calender-right .online-schedule .online-booking .addon {
    width: 48%;
  }
  .calender-section .calender-container .calender-right .online-schedule .online-booking .package-text {
    width: 48%;
  }
  .calender-section .calender-container .calender-right .online-schedule .online-booking .price-addon {
    width: 100%;
  }
  .calender-section .calender-container .calender-right .online-schedule .online-booking .price-addon .addon-text {
    width: 80%;
  }
  .whychoose-us .choose-main {
    width: 75%;
    margin: auto;
  }
  .whychoose-us .choose-main .choose-select {
    width: 48%;
  }
  .features-section {
    padding: 4rem 2rem;
  }
  .features-section .heading {
    display: none;
  }
  .features-section .features-content {
    position: relative;
    align-items: inherit;
  }
  .features-section .features-content .common {
    width: calc(100% - 350px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .features-section .features-content .common .content-feature {
    position: absolute;
    width: 100%;
  }
  .features-section .features-content .common .content-feature .info-content {
    justify-content: flex-end;
    align-items: flex-end;
  }
  .features-section .features-content .common .content-feature .info-content p {
    text-align: right;
    line-height: 1.4;
  }
  .features-section .features-content .first .content-feature {
    flex-direction: row-reverse;
  }
  .features-section .features-content .first .content-feature .info-content h3 {
    text-align: right;
  }
  .features-section .features-content .first .content-feature img {
    margin-right: 0;
    margin-left: 10px;
  }
  .features-section .features-content .first .content-feature:nth-child(1) {
    top: -2px;
    right: -57px;
  }
  .features-section .features-content .first .content-feature:nth-child(2) {
    top: 136px;
    right: -3px;
  }
  .features-section .features-content .first .content-feature:nth-child(3) {
    left: 62px;
    bottom: -50px;
  }
  .features-section .features-content .middle {
    display: flex;
    width: 350px;
  }
  .features-section .features-content .middle img {
    width: 350px;
    height: 350px;
  }
  .features-section .features-content .last .content-feature {
    flex-direction: row;
  }
  .features-section .features-content .last .content-feature .info-content h3 {
    text-align: left;
  }
  .features-section .features-content .last .content-feature img {
    margin-right: 10px;
    margin-left: 0;
  }
  .features-section .features-content .last .content-feature:nth-child(1) {
    top: 2px;
    left: -57px;
  }
  .features-section .features-content .last .content-feature:nth-child(2) {
    left: -2px;
    top: 136px;
  }
  .features-section .features-content .last .content-feature:nth-child(2) .info-content {
    color: #FEB500;
  }
  .features-section .features-content .last .content-feature:nth-child(3) {
    bottom: -50px;
    left: -59px;
  }
  .features-section .features-content .last .content-feature .info-content {
    align-items: flex-start;
  }
  .features-section .features-content .last .content-feature .info-content p {
    text-align: left;
    line-height: 1.4;
  }
  .years .experience-detail .years-left .bg-design:after {
    width: 180px;
    right: -40px;
  }
  .years .experience-detail .years-right {
    width: 62%;
  }
  .years .experience-detail .years-right .buttons {
    width: 45%;
  }
  .years .experience-detail .years-right .years-points {
    margin-top: 2rem;
  }
  .years .experience-detail .years-right .years-points .year-main {
    flex-direction: row;
    border-right: 2px solid grey;
    padding-left: 4px;
  }
  .years .experience-detail .years-right .years-points .year-main:first-child {
    padding-left: 0;
  }
  .years .experience-detail .years-right .years-points .year-main:last-child {
    border-right: none;
  }
  .years .experience-detail .years-right .years-points .year-main:last-child span {
    left: 52px;
  }
  .years .experience-detail .years-right .years-points .year-main p {
    font-size: 18px;
    width: 50%;
    margin-left: 0.2rem !important;
  }
  .years .experience-detail .years-right .years-points .year-main h3 {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .years .experience-detail .years-right .years-points .year-main span {
    left: 40px;
    font-size: 38px;
  }
}
@media (min-width : 1366px) {
  .topic-banner .banner-section {
    padding: 6rem 0 2.5rem 0;
  }
  .topic-banner .banner-section .banner-content .detail .topic-logo {
    width: 60%;
  }
  .topic-banner .banner-section .banner-content .courses {
    width: 55%;
  }
  .courses-section {
    padding: 4rem 0rem;
  }
  .courses-section .cour-detail .cour-right {
    width: 34%;
  }
  .course-info {
    padding: 4rem 0rem;
  }
  .course-info .news-tabs .tabs .tabjs-container .tab-head {
    width: 14%;
  }
  .calender-section {
    padding: 4rem 0rem;
  }
  .calender-section .filter-top {
    top: 5.6rem;
  }
  .calender-section .form-div .select-fliters .buttons .orange-btn {
    padding: 8px 20px;
  }
  .calender-section .calender-container .calender-right .price-section .dates-prices .buttons .orange-btn {
    padding: 10px 24px;
  }
  .calender-section .calender-container .calender-right .price-section .dates-prices .buttons .blue-btn {
    padding: 10px 14px;
  }
  .calender-section .calender-container .calender-right .online-schedule .online-booking .price-addon .addon-text {
    width: 60%;
  }
  .calender-section .calender-container .calender-right .onsite-schedule .onsite-booking .course-delegate .delegate-count .select-emp {
    width: 70%;
  }
  .whychoose-us {
    padding: 4rem 0rem;
  }
  .whychoose-us .sub-heading {
    margin-bottom: 3rem;
  }
  .years {
    padding: 4rem 0rem;
  }
  .years .experience-detail {
    width: 90%;
    margin-left: auto;
  }
  .years .experience-detail .years-right {
    width: 60%;
  }
  .years .experience-detail .years-right .buttons .orange-btn {
    width: 137px;
  }
}
.course-banner .banner-section .banner-content .detail {
  z-index: 1;
}
.course-banner .banner-section .banner-content .detail .bulletpoints {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.course-banner .banner-section .banner-content .detail .bulletpoints ul {
  margin: 0;
  padding: 0;
}
.course-banner .banner-section .banner-content .detail .bulletpoints ul li {
  display: none;
  list-style-type: none;
  vertical-align: middle;
  background: url(../img/topic/check-black.svg) no-repeat left top;
  padding-left: 2em;
  line-height: 1.6;
  margin-bottom: 10px;
}
.course-banner .banner-section .banner-content .detail .bulletpoints ul li:nth-child(1),
.course-banner .banner-section .banner-content .detail .bulletpoints ul li:nth-child(2),
.course-banner .banner-section .banner-content .detail .bulletpoints ul li:nth-child(3) {
  display: list-item;
}
.course-banner .banner-section .banner-content .method-div {
  width: 278px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.course-banner .banner-section .banner-content .method-div .del-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 2rem 0;
}
.course-banner .banner-section .banner-content .method-div .del-methods .list {
  display: flex;
  flex-direction: column;
  background-color: #cac8c8;
  padding: 1rem 0.5rem;
  width: 115px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  box-shadow: 10px 10px #cac8c829, 0 0 3px #dadada;
  background-image: url(../img/course/methods-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  position: relative;
}
.course-banner .banner-section .banner-content .method-div .del-methods .list::before {
  position: absolute;
  content: '';
  width: 30px;
  height: 30px;
  left: 20px;
  top: 28px;
  background-image: url(../img/course/circle.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.course-banner .banner-section .banner-content .method-div .del-methods .list .icon {
  display: flex;
  background-color: #FFF;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  width: 50px;
  height: 40px;
  z-index: 1;
  box-shadow: 0 0 3px #dadada;
}
.course-banner .banner-section .banner-content .method-div .del-methods .list .icon img {
  width: 28px;
}
.course-banner .banner-section .banner-content .method-div .del-methods .list .txt {
  font-size: 14px;
  font-weight: 600;
  margin-top: 6px;
  text-align: center;
  color: #000000;
}
.course-banner .banner-section .banner-content .method-div .del-methods .list:hover .icon img {
  transition: all 0.8s ease-in, color 0.3s ease-in-out;
  transform: rotate(360deg);
}
.course-banner .banner-section .banner-content .method-div .del-methods .list:last-child,
.course-banner .banner-section .banner-content .method-div .del-methods .list:nth-last-child(2) {
  margin-bottom: 0!important;
}
.course-banner .banner-section .banner-content .method-div .buttons .orange-btn img {
  margin-left: 8px;
}
.course-banner .banner-section .banner-content .courses {
  display: none;
}
.course-detail {
  background-image: linear-gradient(#fefefe, #b5b5b51c);
}
.course-detail .heading-sec {
  display: flex;
  flex-direction: column;
}
.course-detail .heading-sec .buttons {
  justify-content: flex-start;
}
.course-detail .heading-sec .buttons .blue-btn {
  width: 100%;
  font-size: 16px;
}
.course-detail .course-container {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.course-detail .course-container .news-tabs {
  flex-direction: column;
}
.course-detail .course-container .news-tabs .tabs .tabjs-container .overview-content .text-toggle {
  display: inline-block;
  width: 100%;
  margin: 0 0 1rem 0;
  max-height: 387px;
}
.course-detail .course-container .news-tabs .tabs .tabjs-container .overview-content .buttons .blue-btn img {
  width: 15px;
  height: 15px;
}
.course-detail .course-container .keypoint-sec {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  margin-top: 3rem;
  height: 100%;
}
.course-detail .course-container .keypoint-sec .keypoints {
  width: 260px;
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  box-shadow: 0 0 10px #f1f1f1;
  border-radius: 10px;
  position: relative;
  padding: 3rem 2rem;
}
.course-detail .course-container .keypoint-sec .keypoints .heart-like-our {
  display: flex;
  justify-content: center;
  background-image: linear-gradient(-108deg, #505858 -30%, #00607F 39%);
  border-radius: 95% 0 0 0;
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 38px;
  height: 38px;
}
.course-detail .course-container .keypoint-sec .keypoints .heart-like-our .heart {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -6px;
  margin-right: -9px;
}
.course-detail .course-container .keypoint-sec .keypoints .heart-like-our .fas {
  color: #FFF;
  font-size: 15px;
}
.course-detail .course-container .keypoint-sec .keypoints h3 {
  color: #00607F;
  font-size: 18px;
}
.course-detail .course-container .keypoint-sec .keypoints .key {
  display: flex;
  justify-content: center;
  background-color: #FFF;
  box-shadow: 0 0 10px #f1f1f1;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  position: absolute;
  top: -33px;
}
.course-detail .course-container .keypoint-sec .keypoints .key img {
  width: 22px;
}
.course-detail .course-container .keypoint-sec .keypoints .learner {
  display: flex;
  margin-top: 1rem;
}
.course-detail .course-container .keypoint-sec .keypoints .learner img {
  margin-right: 10px;
  width: 25px;
}
.course-detail .course-container .keypoint-sec .keypoints .learner p {
  color: #FC9701;
  font-size: 13px;
  font-weight: 500;
}
.course-detail .course-container .keypoint-sec .keypoints .learn {
  margin: 1rem 0;
  width: 146px;
}
.course-detail .course-container .keypoint-sec .keypoints .cour-info {
  display: flex;
  flex-direction: column;
}
.course-detail .course-container .keypoint-sec .keypoints .cour-info p {
  font-weight: 600;
  color: #00607F;
}
.course-detail .course-container .keypoint-sec .keypoints .cour-info p span {
  margin-left: 5px;
  font-weight: 400;
  color: #000000;
}
.course-detail .course-container .keypoint-sec .new-offers {
  width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: wrap;
  background-color: #FFF;
  box-shadow: 0 0 10px #f1f1f1;
  border-radius: 10px;
  padding: 2rem;
  position: relative;
  height: 100%;
}
.course-detail .course-container .keypoint-sec .new-offers .heart-like-our {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(-108deg, #505858 -30%, #00607F 39%);
  border-radius: 95% 0 0 0;
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 38px;
  height: 38px;
}
.course-detail .course-container .keypoint-sec .new-offers .heart-like-our .heart {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -6px;
  margin-right: -9px;
}
.course-detail .course-container .keypoint-sec .new-offers .heart-like-our .fas {
  color: #FFF;
  font-size: 15px;
}
.course-detail .course-container .keypoint-sec .new-offers h3 {
  color: #00607F;
  font-size: 18px;
}
.course-detail .course-container .keypoint-sec .new-offers h3 span {
  color: #FC9701;
  font-size: 18px;
}
.course-detail .course-container .keypoint-sec .new-offers p {
  padding: 1rem 0;
}
.course-detail .course-container .keypoint-sec .new-offers .image {
  width: 100%;
  margin-bottom: 1rem;
  height: 100%;
}
.upcoming-dates {
  padding: 3rem 1.5rem;
  background-color: #f5f5f573;
}
.upcoming-dates .container {
  height: 100%;
}
.upcoming-dates .upcoming-sec {
  display: flex;
  flex-direction: column;
}
.upcoming-dates .upcoming-sec .image-sec {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  order: 2;
  height: 100%;
}
.upcoming-dates .upcoming-sec .image-sec img {
  width: 100%;
  height: 100%;
}
.upcoming-dates .upcoming-sec .upcoming-container {
  display: flex;
  flex-direction: column;
  order: 1;
}
.upcoming-dates .upcoming-sec .upcoming-container .enquireSection {
  padding: 2rem;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content {
  display: block;
  width: 98%;
  margin-right: 2rem;
  margin-left: 0.5rem;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content:last-child {
  margin-right: 0.5rem;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list {
  width: 92%;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  margin-bottom: 3rem;
  margin-left: 0.2rem;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list:last-child {
  margin-bottom: 1rem;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .loc-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  padding: 8px;
  font-weight: 600;
  font-size: 14px;
  background-color: #FEB500;
  color: #000000;
  position: relative;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .loc-detail:before {
  position: absolute;
  top: 0;
  left: -36px;
  border-right: 36px solid #FEB500;
  border-top: 37px solid transparent;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .loc-detail p {
  font-size: 12px;
  font-weight: 900;
  color: #FFF;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .date-sec {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem;
  background-color: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  border-right: 3px solid #00607F;
  max-height: 168px;
  overflow: hidden;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .date-sec .dates-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .date-sec .dates-list .dates {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-weight: bold;
  margin-right: 0.6rem;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .date-sec .dates-list .dates .month-year {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  color: #474747;
  border-top: 4px solid transparent;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .date-sec .dates-list .dates .month-year span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2px;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .date-sec .dates-list .dates .month-year span:first-child {
  border-bottom: 1px solid #707070;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .date-sec .dates-list .dates .date-day {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  border: 1px solid #707070;
  color: #000000;
  border-top: 5px solid #00607F;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .date-sec .dates-list .dates .date-day span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2px;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .date-sec .dates-list .dates .date-day span:first-child {
  border-bottom: 1px solid #707070;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .date-sec .buttons {
  justify-content: flex-end;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .date-sec .buttons .blue-btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 19px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 10px;
  justify-content: flex-start;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .date-sec .buttons .blue-btn img {
  width: 20px;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .owl-nav {
  display: flex;
  position: relative;
  width: 100%;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .owl-nav .owl-prev {
  position: absolute;
  height: 24px;
  width: 24px;
  top: -4px;
  right: 58px;
  background-image: url(../img/contact/left-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  outline: 0;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .owl-nav .owl-prev span {
  display: none;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .owl-nav .owl-next {
  position: absolute;
  top: -4px;
  right: 20px;
  height: 24px;
  width: 24px;
  outline: 0;
  background-image: url(../img/contact/right-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.upcoming-dates .upcoming-sec .upcoming-container .updates .owl-nav .owl-next span {
  display: none;
}
.onsite {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  background-image: url(../img/course/onsite-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.onsite .onsite-sec {
  display: flex;
  flex-direction: column;
}
.onsite .onsite-sec .onsite-content {
  display: flex;
  flex-direction: column;
  color: #FFF;
}
.onsite .onsite-sec .onsite-content h2 {
  font-size: 26px;
  margin-bottom: 1rem;
}
.onsite .onsite-sec .onsite-content p {
  color: #FFF;
}
.onsite .onsite-sec .buttons {
  justify-content: flex-start;
  margin-top: 1rem;
}
.leading-sec {
  display: none;
  flex-direction: column;
  background-color: #FCFCFC;
  position: relative;
}
.leading-sec:before {
  content: '';
  position: absolute;
  background-image: url(../img/course/leading-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 600px;
  height: 288px;
  bottom: 0;
  right: 0;
}
.leading-sec .leading-container {
  display: flex;
  flex-direction: column;
}
.leading-sec .leading-container .leading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.leading-sec .leading-container .leading .leading-steps {
  display: flex;
  flex-wrap: wrap;
  height: 400px;
  position: relative;
  width: 100%;
}
.leading-sec .leading-container .leading .leading-steps .step-li {
  display: flex;
  flex-direction: column;
  width: 200px;
  justify-content: flex-end;
  position: absolute;
}
.leading-sec .leading-container .leading .leading-steps .step-li .step-img {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.leading-sec .leading-container .leading .leading-steps .step-li .step-img:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
.leading-sec .leading-container .leading .leading-steps .step-li .step-img:before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  width: 73px;
  height: 9px;
  background-color: #00607F;
  z-index: 0;
}
.leading-sec .leading-container .leading .leading-steps .step-li .step-img img {
  width: 100px;
  z-index: 2;
}
.leading-sec .leading-container .leading .leading-steps .step-li .step-info {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 150px;
}
.leading-sec .leading-container .leading .leading-steps .step-li .step-info p {
  line-height: 1.3;
  text-align: center;
  color: #474747;
}
.leading-sec .leading-container .leading .leading-steps .step-li .step-info h2 {
  font-size: 22px;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(1) {
  bottom: 17px;
  left: -9px;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(1) .step-img {
  left: 34px;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(1) .step-img img {
  width: 120px;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(1) .step-img:after {
  bottom: -90px;
  left: 43px;
  width: 72px;
  height: 100px;
  background-image: url(../img/course/dotted-1.png);
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(1) .step-img:before {
  top: 39px;
  right: -11px;
  transform: rotate(-26deg);
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(1) .step-info {
  top: 18px;
  left: -2px;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(2) {
  bottom: 96px;
  left: 155px;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(2) .step-img:after {
  width: 72px;
  top: -93px;
  left: 36px;
  height: 100px;
  background-image: url(../img/course/dotted-2.png);
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(2) .step-img:before {
  right: 21px;
  top: 36px;
  transform: rotate(128deg);
  background-color: #000000;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(2) .step-info {
  top: -208px;
  left: -76px;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(2) .step-info p {
  order: 2;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(2) .step-info h2 {
  order: 1;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(3) {
  left: 265px;
  top: 45px;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(3) .step-img img {
  width: 120px;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(3) .step-img:after {
  bottom: -90px;
  left: 100px;
  height: 100px;
  width: 72px;
  background-image: url(../img/course/dotted-3.png);
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(3) .step-img:before {
  right: 0px;
  top: 47px;
  transform: rotate(10deg);
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(3) .step-info {
  top: 36px;
  left: 129px;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(4) {
  left: 404px;
  top: 67px;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(4) .step-img:after {
  width: 72px;
  top: -103px;
  left: 36px;
  background-image: url(../img/course/dotted-4.png);
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(4) .step-img:before {
  right: 10px;
  top: 12px;
  transform: rotate(122deg);
  background-color: #000000;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(4) .step-info {
  top: -216px;
  left: -76px;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(4) .step-info p {
  order: 2;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(4) .step-info h2 {
  order: 1;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(5) {
  left: 554px;
  top: -48px;
  width: 110px;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(5) .step-img img {
  width: 120px;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(5) .step-img:before {
  content: none;
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(5) .step-img:after {
  bottom: -90px;
  left: 38px;
  height: 100px;
  width: 72px;
  background-image: url(../img/course/dotted-5.png);
}
.leading-sec .leading-container .leading .leading-steps .step-li:nth-child(5) .step-info {
  right: -62px;
  top: -17px;
  width: 106px;
}
.related-sec {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  background-image: url(../img/course/related-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
.related-sec .heading {
  margin-bottom: 2rem;
}
.related-sec .rel-courses {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.related-sec .rel-courses .rel-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 0.5rem;
  width: 47%;
  margin-bottom: 2rem;
  border: 1px dashed #858585;
  position: relative;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.16);
  background: #FFF;
}
.related-sec .rel-courses .rel-list:hover {
  border: 1px dashed transparent;
}
.related-sec .rel-courses .rel-list:hover::after {
  position: absolute;
  content: '';
  top: -18px;
  left: -17px;
  width: 145px;
  height: 120px;
  background-image: url(../img/course/course-bg.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  z-index: -1;
}
.related-sec .rel-courses .rel-list:hover:before {
  position: absolute;
  content: '';
  bottom: -34px;
  right: -17px;
  width: 116px;
  height: 130px;
  background-image: url(../img/course/course-dots.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  z-index: -1;
}
.related-sec .rel-courses .rel-list .rel-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: #FEEAB9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.related-sec .rel-courses .rel-list .rel-icon img {
  width: 35px;
}
.related-sec .rel-courses .rel-list a {
  color: #000000;
  font-weight: 600;
  margin-top: 1.5rem;
  font-size: 14px;
  text-align: center;
  min-height: 57px;
  width: 100%;
}
.related-sec .rel-courses .rel-list:nth-child(3),
.related-sec .rel-courses .rel-list:nth-child(4) {
  margin-bottom: 0;
}
.factfig-sec {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  background-color: #F6F6F6;
  position: relative;
}
.factfig-sec:before {
  content: '';
  position: absolute;
  background-image: url(../img/course/fact-round.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 250px;
  height: 266px;
  top: 0;
  right: 0;
  z-index: -1;
}
.factfig-sec .factfig-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.factfig-sec .factfig-container .fact-point {
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../img/course/fact-dots-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 4rem;
}
.factfig-sec .factfig-container .fact-point .top-fold {
  display: flex;
  margin-bottom: 1.5rem;
}
.factfig-sec .factfig-container .fact-point .top-fold .list:nth-child(1) {
  background-image: url(../img/course/fact-fig.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  width: 150px;
  height: 150px;
  margin-right: 2rem;
}
.factfig-sec .factfig-container .fact-point .top-fold .list:nth-child(2) {
  width: 108px;
  height: 104px;
  background-color: #000000;
  align-self: flex-end;
}
.factfig-sec .factfig-container .fact-point .bottom-fold {
  display: flex;
}
.factfig-sec .factfig-container .fact-point .bottom-fold .list:nth-child(1) {
  background-color: #E6E6E6;
  margin-right: 2rem;
  width: 108px;
  height: 104px;
}
.factfig-sec .factfig-container .fact-point .bottom-fold .list:nth-child(1) h2 {
  color: #000000;
}
.factfig-sec .factfig-container .fact-point .bottom-fold .list:nth-child(1) p {
  color: #00607F;
}
.factfig-sec .factfig-container .fact-point .bottom-fold .list:nth-child(2) {
  width: 150px;
  height: 150px;
  background-color: #00607F;
}
.factfig-sec .factfig-container .fact-point .list {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.36);
  justify-content: center;
  align-items: center;
}
.factfig-sec .factfig-container .fact-point .list img {
  width: 100%;
}
.factfig-sec .factfig-container .fact-point .list h2 {
  text-align: center;
  font-size: 28px;
  color: #FFF;
}
.factfig-sec .factfig-container .fact-point .list p {
  font-size: 18px;
  font-weight: 600;
  color: #FEB500;
  line-height: 1.4;
  text-align: center;
}
.factfig-sec .factfig-container .fact-content {
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.factfig-sec .factfig-container .fact-content p {
  text-align: center;
}
.factfig-sec .factfig-container .fact-content .buttons {
  margin-top: 1.5rem;
}
.factfig-sec .factfig-container .fact-content .buttons .orange-btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 19px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 10px;
  justify-content: flex-start;
}
@media (min-width : 768px) {
  .course-banner .banner-section .banner-content {
    min-height: 305px;
  }
  .course-banner .banner-section .banner-content .method-div {
    justify-content: flex-end;
    width: 330px;
    height: auto;
    z-index: 2;
    margin: 0;
  }
  .course-banner .banner-section .banner-content .method-div .del-methods {
    margin: 0;
    margin-bottom: 3rem;
  }
  .course-banner .banner-section .banner-content .method-div .del-methods .list {
    background-color: #F9F9F9;
    box-shadow: 8px 8px rgba(221, 219, 219, 0.5), 0 0 3px #dadada;
    margin-bottom: 2rem;
    width: 125px;
  }
  .course-banner .banner-section .banner-content .method-div .del-methods .list .txt {
    z-index: 1;
    line-height: 1.4;
  }
  .course-banner .banner-section .banner-content .courses {
    display: flex;
    width: 55%;
    padding-left: 0;
  }
  .course-detail .heading-sec {
    flex-direction: row;
    justify-content: space-between;
  }
  .course-detail .heading-sec .heading {
    width: 63%;
  }
  .course-detail .heading-sec .buttons {
    margin-bottom: 2rem;
  }
  .course-detail .course-container {
    margin-top: 0;
  }
  .course-detail .course-container .news-tabs {
    margin-top: 1rem;
  }
  .course-detail .course-container .news-tabs .tabs {
    margin: 0;
    margin-top: 3rem;
  }
  .course-detail .course-container .news-tabs .tabs .tabjs-container {
    justify-content: flex-start;
  }
  .course-detail .course-container .news-tabs .tabs .tabjs-container .tab-head {
    width: 160px;
    margin-right: 5rem;
    margin-left: 0;
  }
  .course-detail .course-container .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch {
    width: 100%;
    padding-left: 4.5rem;
    padding-right: 1rem;
  }
  .course-detail .course-container .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch .circle {
    left: 0;
    top: 0;
  }
  .course-detail .course-container .news-tabs .tabs .tabjs-container .tab-head .tabjs-switch .co-text {
    width: 100%;
  }
  .course-detail .course-container .keypoint-sec {
    display: none;
  }
  .upcoming-dates {
    padding: 3rem 2rem;
  }
  .upcoming-dates .upcoming-sec {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .upcoming-dates .upcoming-sec .image-sec {
    width: 44%;
    margin-top: 0;
    order: 1;
  }
  .upcoming-dates .upcoming-sec .upcoming-container {
    width: 54%;
    order: 2;
  }
  .upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content {
    width: 100%;
  }
  .upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .date-sec {
    max-height: 94px;
  }
  .upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .date-sec .dates-list .dates {
    margin-right: 0.6rem;
    width: 23%;
  }
  .upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .date-sec .dates-list .dates:nth-child(4) {
    margin-right: 0;
  }
  .onsite {
    padding: 3rem 2rem;
  }
  .onsite .onsite-sec {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .onsite .onsite-sec .onsite-content {
    width: 70%;
  }
  .onsite .onsite-sec .buttons {
    width: 30%;
    justify-content: flex-end;
    margin-top: 0;
  }
  .leading-sec {
    display: flex;
    padding: 3rem 2rem;
  }
  .related-sec {
    padding: 3rem 2rem;
  }
  .related-sec .rel-courses {
    flex-wrap: initial;
    justify-content: flex-start;
  }
  .related-sec .rel-courses .rel-list {
    width: 23%;
    margin-bottom: 0;
    margin-right: 2rem;
  }
  .related-sec .rel-courses .rel-list:last-child {
    margin-right: 0;
  }
  .factfig-sec {
    padding: 3rem 2rem;
  }
  .factfig-sec .factfig-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .factfig-sec .factfig-container .fact-point {
    width: 50%;
    margin-top: 0;
    order: 1;
  }
  .factfig-sec .factfig-container .fact-point .top-fold {
    width: 80%;
    justify-content: flex-start;
  }
  .factfig-sec .factfig-container .fact-point .bottom-fold {
    width: 80%;
    justify-content: flex-end;
  }
  .factfig-sec .factfig-container .fact-content {
    width: 50%;
    order: 2;
  }
}
@media (min-width : 1024px) {
  .course-banner .banner-section .banner-content .method-div {
    position: relative;
    bottom: -17px;
  }
  .course-detail .course-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .course-detail .course-container .news-tabs {
    width: 80%;
  }
  .course-detail .course-container .news-tabs .tabs .tabjs-container .tab-content {
    padding-right: 2rem;
  }
  .course-detail .course-container .keypoint-sec {
    width: 300px;
    position: sticky;
    top: 0;
    display: flex;
  }
  .course-detail .course-container .keypoint-sec .keypoints {
    width: 100%;
  }
  .course-detail .course-container .keypoint-sec .new-offers {
    width: 100%;
  }
  .upcoming-dates .upcoming-sec .upcoming-container .heading h2 {
    text-align: left;
  }
  .upcoming-dates .upcoming-sec .upcoming-container .heading h2::after {
    background-position: left;
  }
  .upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .loc-detail {
    width: 54%;
  }
  .upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .loc-detail:before {
    content: '';
  }
  .upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .date-sec .dates-list .dates {
    margin-right: 1rem;
    width: 22%;
  }
  .upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content .update-list .date-sec .dates-list .dates:nth-child(4) {
    margin-right: 0;
  }
  .leading-sec .leading-container .leading .leading-steps .step-li {
    width: 250px;
  }
  .leading-sec .leading-container .leading .leading-steps .step-li:nth-child(1) {
    left: 62px;
  }
  .leading-sec .leading-container .leading .leading-steps .step-li:nth-child(1) .step-img:after {
    left: 64px;
  }
  .leading-sec .leading-container .leading .leading-steps .step-li:nth-child(1) .step-img:before {
    right: 9px;
  }
  .leading-sec .leading-container .leading .leading-steps .step-li:nth-child(1) .step-info {
    left: -19px;
  }
  .leading-sec .leading-container .leading .leading-steps .step-li:nth-child(2) {
    left: 228px;
  }
  .leading-sec .leading-container .leading .leading-steps .step-li:nth-child(2) .step-img:after {
    left: 60px;
  }
  .leading-sec .leading-container .leading .leading-steps .step-li:nth-child(2) .step-img:before {
    left: 150px;
    top: 24px;
    transform: rotate(135deg);
  }
  .leading-sec .leading-container .leading .leading-steps .step-li:nth-child(2) .step-info {
    left: -58px;
  }
  .leading-sec .leading-container .leading .leading-steps .step-li:nth-child(3) {
    left: 363px;
  }
  .leading-sec .leading-container .leading .leading-steps .step-li:nth-child(3) .step-img:after {
    left: 125px;
  }
  .leading-sec .leading-container .leading .leading-steps .step-li:nth-child(3) .step-img:before {
    top: 59px;
    left: 172px;
    transform: rotate(19deg);
  }
  .leading-sec .leading-container .leading .leading-steps .step-li:nth-child(3) .step-info {
    left: 157px;
  }
  .leading-sec .leading-container .leading .leading-steps .step-li:nth-child(4) {
    top: 77px;
    left: 523px;
  }
  .leading-sec .leading-container .leading .leading-steps .step-li:nth-child(4) .step-img:after {
    left: 52px;
  }
  .leading-sec .leading-container .leading .leading-steps .step-li:nth-child(4) .step-img:before {
    top: 7px;
    left: 146px;
    transform: rotate(122deg);
  }
  .leading-sec .leading-container .leading .leading-steps .step-li:nth-child(4) .step-info {
    left: -63px;
  }
  .leading-sec .leading-container .leading .leading-steps .step-li:nth-child(5) {
    left: 625px;
    width: 250px;
  }
  .leading-sec .leading-container .leading .leading-steps .step-li:nth-child(5) .step-img:after {
    left: 128px;
  }
  .leading-sec .leading-container .leading .leading-steps .step-li:nth-child(5) .step-info {
    right: -144px;
    top: 1px;
    width: 150px;
  }
  .related-sec .rel-courses .rel-list a {
    min-height: 43px;
  }
  .factfig-sec .factfig-container .fact-point .top-fold .list:nth-child(1) {
    width: 200px;
    height: 180px;
  }
  .factfig-sec .factfig-container .fact-point .top-fold .list:nth-child(2) {
    width: 120px;
    height: 120px;
  }
  .factfig-sec .factfig-container .fact-point .bottom-fold .list:nth-child(1) {
    width: 120px;
    height: 120px;
  }
  .factfig-sec .factfig-container .fact-point .bottom-fold .list:nth-child(2) {
    width: 180px;
    height: 170px;
  }
}
@media (min-width : 1366px) {
  .course-banner .banner-section .banner-content .detail .bulletpoints ul li:before {
    width: 35px;
  }
  .course-banner .banner-section .banner-content .method-div {
    bottom: 0;
    width: 278px;
    right: 3rem;
  }
  .course-banner .banner-section .banner-content .method-div .del-methods {
    justify-content: space-between;
  }
  .course-banner .banner-section .banner-content .method-div .del-methods .list {
    width: 121px;
    box-shadow: 10px 10px rgba(221, 219, 219, 0.5), 0 0 3px #dadada;
  }
  .course-banner .banner-section .banner-content .method-div .del-methods .list:before {
    width: 26px;
    height: 26px;
    left: 26px;
    top: 40px;
  }
  .course-banner .banner-section .banner-content .method-div .del-methods .list .icon {
    width: 55px;
    height: 45px;
  }
  .course-banner .banner-section .banner-content .method-div .del-methods .list .icon img {
    width: 30px;
  }
  .course-banner .banner-section .banner-content .method-div .del-methods .list .txt {
    font-size: 16px;
  }
  .course-banner .banner-section .banner-content .courses {
    width: 55%;
  }
  .upcoming-dates {
    padding: 4rem 0rem;
  }
  .upcoming-dates .upcoming-sec .image-sec {
    width: 46%;
  }
  .upcoming-dates .upcoming-sec .upcoming-container {
    width: 48%;
  }
  .upcoming-dates .upcoming-sec .upcoming-container .updates .updates-sec .update-content {
    width: 100%;
  }
  .onsite {
    padding: 2rem 0;
  }
  .leading-sec {
    padding: 4rem 0rem;
  }
  .leading-sec .leading-container .leading .leading-steps {
    width: 80%;
    margin: auto;
  }
  .related-sec {
    padding: 4rem 0rem;
  }
  .related-sec .rel-courses .rel-list {
    margin-right: 3rem;
  }
  .factfig-sec {
    padding: 4rem 0rem;
  }
}
@media (min-width : 1440px) {
  .course-banner .banner-section .banner-content .method-div {
    right: 0;
  }
  .course-banner .banner-section .banner-content .courses {
    width: 60%;
  }
}
.banner.resources .banner-section .banner-content .right-image {
  background-image: url(../img/resource/resources.png) !important;
}
.guides-sec {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  background-color: #FBFBFB;
}
.guides-sec .guides-container {
  display: flex;
  flex-direction: column;
}
.guides-sec .guides-container .heading {
  justify-content: flex-start;
  width: 100%;
}
.guides-sec .guides-container p {
  color: #707070;
  text-align: center;
}
.guides-sec .guides-container .guides {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}
.guides-sec .guides-container .guides .guide-li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 242px;
}
.guides-sec .guides-container .guides .guide-li .guide-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 208px;
  height: 198px;
  padding: 2rem 1rem;
  margin-top: 2rem;
  border-radius: 5px;
  position: relative;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.16);
  background: #FFF;
  border-bottom: 6px solid #00607F;
  cursor: pointer;
}
.guides-sec .guides-container .guides .guide-li .guide-info .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 96, 127, 0.25);
  width: 62px;
  height: 60px;
  background-color: #FFF;
}
.guides-sec .guides-container .guides .guide-li .guide-info .icon img {
  width: 40px;
  height: 32px;
}
.guides-sec .guides-container .guides .guide-li .guide-info span {
  color: #000000;
  font-weight: 600;
  margin-top: 1rem;
  font-size: 16px;
  text-align: center;
  width: 100%;
}
.guides-sec .guides-container .guides .guide-li:hover {
  background-image: url(../img/resource/guide-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.guides-sec .guides-container .guides .guide-li:hover .guide-info {
  border-bottom: 6px solid #FEB500;
}
.guides-sec .guides-container .guides .guide-li:hover .guide-info .icon img {
  transition: all 0.8s ease-in, color 0.3s ease-in-out;
  transform: rotate(360deg);
}
.guides-sec .guides-container .buttons {
  margin-top: 2rem;
}
.useful-sec {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  background-color: #fbfbfb;
}
.useful-sec .useful-res {
  display: flex;
  flex-direction: column;
}
.useful-sec .useful-res select {
  background-color: #FFF !important;
  padding: 10px 17px 10px 14px;
  color: #787878;
  font-weight: 500;
  width: 100%;
  border-radius: 21px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../img/resource/select-arrow.png) no-repeat;
  background-position: 95% center;
  background-size: 16px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.13);
  border: none;
  outline: none;
}
.useful-sec .useful-res select::-ms-expand {
  display: none;
}
.useful-sec .useful-res .useful-list {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  justify-content: center;
  align-items: center;
}
.useful-sec .useful-res .useful-list .list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  padding: 2rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.098);
  width: 100%;
}
.useful-sec .useful-res .useful-list .list .list-img {
  display: flex;
  width: 130px;
  height: 100%;
}
.useful-sec .useful-res .useful-list .list .list-img img {
  width: 100%;
  height: 150px;
}
.useful-sec .useful-res .useful-list .list .list-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 1.5rem;
}
.useful-sec .useful-res .useful-list .list .list-content h3 {
  color: #00607F;
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
}
.useful-sec .useful-res .useful-list .list .list-content p {
  color: #7B7474;
  line-height: 1.5;
  text-align: center;
}
.useful-sec .useful-res .useful-list .list:last-child {
  margin-bottom: 0rem;
}
.useful-sec .useful-res .useful-list .list:hover .list-content h3 {
  color: #FC9701;
  transition: 0.3s;
}
@media (min-width : 425px) {
  .guides-sec .guides-container .guides .guide-li {
    width: 190px;
  }
  .guides-sec .guides-container .guides .guide-li .guide-info {
    width: 155px;
    height: 170px;
  }
}
@media (min-width : 768px) {
  .resources .banner-section {
    padding: 5.5rem 1.5rem;
  }
  .guides-sec {
    padding: 3rem 2rem;
  }
  .guides-sec .guides-container .guides {
    margin-top: 1.5rem;
  }
  .guides-sec .guides-container .guides .guide-li {
    width: 237px;
  }
  .guides-sec .guides-container .guides .guide-li:last-child .guide-info {
    margin-bottom: 0rem;
  }
  .guides-sec .guides-container .guides .guide-li .guide-info {
    width: 190px;
    height: 190px;
  }
  .guides-sec .guides-container .guides .guide-li .guide-info span {
    min-height: 42px;
  }
  .useful-sec {
    padding: 3rem 2rem;
  }
  .useful-sec .useful-res {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
  }
  .useful-sec .useful-res select {
    width: 46%;
    margin-bottom: 1.5rem;
  }
  .useful-sec .useful-res .useful-list {
    align-items: flex-start;
    width: 100%;
  }
  .useful-sec .useful-res .useful-list .list {
    flex-direction: row;
    align-items: unset;
    padding: 0;
    box-shadow: none;
  }
  .useful-sec .useful-res .useful-list .list .list-img {
    box-shadow: 12px 10px 2px #d8d8d8;
  }
  .useful-sec .useful-res .useful-list .list .list-content {
    margin: 0;
    padding: 1rem;
    padding-left: 2rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.098);
    position: relative;
    z-index: 1;
  }
  .useful-sec .useful-res .useful-list .list .list-content::before {
    position: absolute;
    content: '';
    background-image: url(../img/resource/waves.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: hue;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}
@media (min-width: 768px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .guides-sec .guides-container .guides .guide-li {
    width: 222px;
  }
}
@media (min-width : 1024px) {
  .resources .banner-section {
    padding: 5rem 1.5rem;
  }
  .guides-sec .guides-container .guides .guide-li {
    width: 237px;
  }
  .guides-sec .guides-container .guides .guide-li .guide-info {
    width: 206px;
    height: 200px;
  }
  .useful-sec .useful-res .useful-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .useful-sec .useful-res .useful-list .list {
    width: 46%;
  }
  .useful-sec .useful-res .useful-list .list .list-content {
    width: calc(100% - 60px);
  }
  .useful-sec .useful-res .useful-list .list .list-content h3 {
    min-height: 48px;
    margin-bottom: 5px;
  }
  .useful-sec .useful-res .useful-list .list:nth-last-child(1) {
    margin-bottom: 0rem;
  }
  .useful-sec .useful-res .useful-list .list:nth-last-child(2) {
    margin-bottom: 0rem;
  }
}
@media (min-width : 1366px) {
  .resources .banner-section {
    padding: 7rem 0rem;
  }
  .guides-sec {
    padding: 4rem 0rem;
  }
  .useful-sec {
    padding: 4rem 0rem;
  }
  .useful-sec .useful-res select {
    background-position: 97% center;
  }
  .useful-sec .useful-res .list .list-content h3 {
    min-height: auto;
  }
}
.banner.on-line .banner-section .banner-content .right-image {
  background-image: url(../img/onlinetraining/online-course.png) !important;
}
.banner.categorydetail-section .banner-section .banner-content .right-image {
  background-image: url(../img/blog/blog.png) !important;
}
.online-course {
  padding: 3rem 1.5rem;
  padding-bottom: 4rem;
}
.online-course .online-course-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.online-course .online-course-sec .online-content {
  display: flex;
  flex-direction: column;
}
.online-course .online-course-sec .online-content .buttons {
  justify-content: flex-start;
  margin-top: 2rem;
}
.online-course .online-course-sec .contact-sec {
  display: flex;
  background-color: #FFF;
  border: 8px solid #00607F;
  width: 270px;
  height: 270px;
  position: relative;
  margin-top: 2rem;
  margin-left: -0.6rem;
}
.online-course .online-course-sec .contact-sec .contact-cont {
  display: flex;
  flex-direction: column;
  border: 8px solid #FEB500;
  background-color: #FFF;
  background-image: url(../img/onlinetraining/contact-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: absolute;
  top: 8px;
  left: 8px;
  width: 268px;
  height: 270px;
}
.online-course .online-course-sec .contact-sec .contact-cont h3 {
  color: #00607F;
  font-size: 20px;
  text-align: center;
  margin-bottom: 8px;
}
.online-course .online-course-sec .contact-sec .contact-cont p {
  color: #878787;
  text-align: center;
  margin-bottom: 8px;
}
.online-course .online-course-sec .contact-sec .contact-cont .text-info {
  display: flex;
  align-items: center;
  padding: 6px;
}
.online-course .online-course-sec .contact-sec .contact-cont .text-info span {
  width: 20px;
  height: 15px;
  margin-right: 8px;
}
.online-course .online-course-sec .contact-sec .contact-cont .text-info span img {
  height: 100%;
  margin-right: 5px;
}
.online-course .online-course-sec .contact-sec .contact-cont .text-info span .call {
  width: 92%;
  transform: rotate(6deg);
}
.online-course .online-course-sec .contact-sec .contact-cont .text-info span .email {
  width: 100%;
}
.online-course .online-course-sec .contact-sec .contact-cont .text-info a {
  color: #000000;
  font-weight: 600;
  font-size: 14px;
}
.online-course .online-course-sec .contact-sec .contact-cont .text-info:hover a {
  color: #00607F;
}
.training-courses {
  padding: 3rem 1.5rem;
  background-color: #FBFBFB;
}
.training-courses .course-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem;
}
.training-courses .course-list .list {
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
  background-image: url(../img/onlinetraining/course-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: bottom;
  align-items: center;
  margin-bottom: 4rem;
  padding: 3rem 1.5rem 3rem;
  position: relative;
  width: 275px;
}
.training-courses .course-list .list .list-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.training-courses .course-list .list .list-content .list-summary {
  display: flex;
  flex-direction: column;
}
.training-courses .course-list .list .list-content .list-summary h4 {
  text-align: center;
}
.training-courses .course-list .list .list-content .list-summary > div {
  display: flex;
  flex-direction: column;
  margin-top: 0.8rem;
}
.training-courses .course-list .list .list-content .course-link {
  color: #00607F;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
.training-courses .course-list .list .list-content .course-link:hover {
  color: #FC9701;
  transition: 0.3s;
}
.training-courses .course-list .list .list-content .text {
  text-align: center;
  line-height: 1.5;
  overflow: hidden;
  height: 85px;
}
.training-courses .course-list .list .list-content .course-heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 2rem 0 1rem;
}
.training-courses .course-list .list .list-content .course-heading h3 {
  color: #000000;
  font-size: 18px;
}
.training-courses .course-list .list .list-content .course-heading .rating {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.training-courses .course-list .list .list-content .course-heading .rating img {
  width: 24px;
}
.training-courses .course-list .list .list-content p {
  line-height: 1.4;
  text-align: center;
}
.training-courses .course-list .list .list-content .buttons {
  justify-content: space-between;
}
.training-courses .course-list .list .list-content .buttons .blue-btn,
.training-courses .course-list .list .list-content .buttons .orange-btn {
  color: #FFF;
  margin-bottom: 0;
  margin-top: 1rem;
  font-size: 14px;
}
.training-courses .course-list .list .list-content .buttons .blue-btn img,
.training-courses .course-list .list .list-content .buttons .orange-btn img {
  width: 18px;
}
.training-courses .course-list .list .list-content .buttons .blue-btn {
  padding: 10px 8px;
}
.training-courses .course-list .list .list-content .buttons .orange-btn {
  padding: 10px 8px;
}
.training-courses .course-list .list .price-only {
  position: absolute;
  padding: 6px;
  width: 70px;
  height: 70px;
  display: flex;
  border-radius: 50px;
  flex-direction: column;
  align-items: center;
  top: -40px;
  justify-content: center;
  right: -3px;
  font-weight: 600;
  color: #FFF;
  background-color: #00607F;
}
.training-courses .course-list .list .price-only p {
  font-size: 16px;
  color: #FFF;
  text-align: center;
}
.training-courses .course-list .list:last-child {
  margin-bottom: 0;
}
.feedback {
  padding: 3rem 1.5rem;
  padding-top: 0 !important;
}
.feedback .feedback-cont {
  display: flex;
  flex-direction: column;
}
.feedback .feedback-cont .heading span {
  color: #FEB500;
}
.feedback .feedback-cont .feedback-box {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.feedback .feedback-cont .feedback-box .feedback-list {
  display: flex;
  flex-direction: column;
}
.feedback .feedback-cont .feedback-box .feedback-list .feedback-detail {
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.09);
  padding: 1rem;
  width: 100%;
}
.feedback .feedback-cont .feedback-box .feedback-list .feedback-detail .user-text {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.feedback .feedback-cont .feedback-box .feedback-list .feedback-detail .user-text h3 {
  color: #00607F;
  margin-bottom: 0.5rem;
}
.feedback .feedback-cont .feedback-box .feedback-list .feedback-detail .user-text h3 i {
  display: none;
  color: #FC9701;
  margin-right: 0.5rem;
}
.feedback .feedback-cont .feedback-box .feedback-list .feedback-detail .user-text p {
  color: #707070;
  overflow: hidden;
  height: 75px;
}
.feedback .feedback-cont .feedback-box .feedback-list .feedback-detail .user-info {
  display: flex;
  align-items: center;
  position: relative;
}
.feedback .feedback-cont .feedback-box .feedback-list .feedback-detail .user-info::before {
  content: '';
  position: absolute;
  background-image: url(../img/onlinetraining/feedback-quote.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  width: 40px;
  height: 40px;
  top: -5px;
  right: 0;
}
.feedback .feedback-cont .feedback-box .feedback-list .feedback-detail .user-info .user-img {
  display: flex;
  width: 35px;
  height: 40px;
  align-items: center;
  margin-right: 1rem;
}
.feedback .feedback-cont .feedback-box .feedback-list .feedback-detail .user-info .user-img img {
  width: 100%;
}
.feedback .feedback-cont .feedback-box .feedback-list .feedback-detail .user-info .user-descrip {
  display: flex;
  flex-direction: column;
}
.feedback .feedback-cont .feedback-box .feedback-list .feedback-detail .user-info .user-descrip h3 {
  color: #00607F;
  font-size: 16px;
}
.feedback .feedback-cont .feedback-box .feedback-list .feedback-detail .user-info .user-descrip p {
  color: #878787;
  line-height: 1.4;
}
.feedback .feedback-cont .feedback-box .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 1.5rem;
}
.feedback .feedback-cont .feedback-box .owl-dots .owl-dot {
  background-color: #6A6A6A;
  border-radius: 50%;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  outline: 0;
}
.feedback .feedback-cont .feedback-box .owl-dots .active {
  background-color: #FEB500;
  width: 35px;
  border-radius: 5px;
}
@media (min-width : 768px) {
  .online-course {
    padding: 3rem 2rem;
  }
  .online-course .online-course-sec {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .online-course .online-course-sec .online-content {
    width: 53%;
  }
  .online-course .online-course-sec .contact-sec {
    position: sticky;
    top: 115px;
    margin-right: 2.5rem;
    margin-top: 0;
  }
  .training-courses {
    padding: 3rem 2rem;
  }
  .training-courses .course-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 0;
    padding-bottom: 0;
  }
  .training-courses .course-list .list {
    width: 310px;
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 2rem 1.5rem 2rem;
  }
  .training-courses .course-list .list:nth-last-child(2) {
    margin-bottom: 0;
  }
  .training-courses .course-list .list .list-content {
    height: 400px;
  }
  .training-courses .course-list .list .list-content .list-summary {
    height: 136px;
  }
  .training-courses .course-list .list .list-content .course-link {
    line-height: 1.4;
    min-height: 62px;
  }
  .training-courses .course-list .list .list-content .buttons {
    margin-top: auto;
  }
  .training-courses .course-list .list .list-content .buttons .blue-btn {
    padding: 10px 12px;
    min-width: 120px;
  }
  .training-courses .course-list .list .list-content .buttons .blue-btn img {
    width: 18px;
  }
  .training-courses .course-list .list .list-content .buttons .orange-btn {
    padding: 10px 18px;
    min-width: 120px;
  }
  .training-courses .course-list .list .list-content .buttons .orange-btn img {
    width: 18px;
  }
  .feedback {
    position: relative;
    padding: 3rem 2rem;
  }
  .feedback::after {
    content: '';
    position: absolute;
    background-image: url(../img/onlinetraining/feedback-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 420px;
    height: 100%;
    top: 91px;
    right: 0;
    z-index: -1;
  }
  .feedback .feedback-cont {
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
  }
  .feedback .feedback-cont .heading {
    margin-bottom: 0;
  }
  .feedback .feedback-cont .feedback-box .feedback-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .feedback .feedback-cont .feedback-box .feedback-list .feedback-detail {
    width: 48%;
    margin-top: 2rem;
  }
  .feedback .feedback-cont .feedback-box .feedback-list .feedback-detail .user-text h3,
  .feedback .feedback-cont .feedback-box .feedback-list .feedback-detail .user-text i {
    display: flex !important;
  }
}
@media (min-width : 1024px) {
  .online-course .online-course-sec .online-content {
    width: 64%;
  }
  .online-course .online-course-sec .contact-sec {
    position: relative;
    top: 0;
  }
  .training-courses .course-list .list {
    width: 289px;
  }
  .training-courses .course-list .list:nth-child(7),
  .training-courses .course-list .list:nth-child(8),
  .training-courses .course-list .list:nth-child(9) {
    margin-bottom: 0;
  }
  .training-courses .course-list .list:last-child {
    margin-top: 4rem;
  }
  .training-courses .course-list .list .list-content {
    height: 420px;
  }
  .training-courses .course-list .list .list-content .list-summary {
    height: 164px;
  }
  .training-courses .course-list .list .list-content .buttons .blue-btn {
    padding: 10px 10px;
  }
  .training-courses .course-list .list .list-content .buttons .orange-btn {
    padding: 10px 10px;
  }
  .feedback .feedback-cont {
    flex-direction: row;
  }
  .feedback .feedback-cont .heading {
    width: 24%;
    margin-bottom: 0;
  }
  .feedback .feedback-cont .feedback-box {
    width: 74%;
  }
}
@media (min-width : 1366px) {
  .online-course {
    padding: 4rem 0rem;
  }
  .training-courses {
    padding: 4rem 0rem;
  }
  .training-courses .course-list .list {
    width: 340px;
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .training-courses .course-list .list .list-content {
    height: 350px;
  }
  .training-courses .course-list .list .list-content .buttons .blue-btn {
    padding: 10px 17px;
  }
  .training-courses .course-list .list .list-content .buttons .orange-btn {
    padding: 10px 25px;
  }
  .feedback {
    padding: 4rem 0rem;
  }
  .feedback::after {
    top: 64px;
    width: 482px;
  }
}
.onsite-outer {
  padding: 3rem 1.5rem;
}
.onsite-outer .onsite-inner {
  display: flex;
  flex-direction: column;
}
.onsite-outer .onsite-inner .heading h1 {
  font-size: 22px;
}
.onsite-outer .onsite-inner .onsite-left {
  display: flex;
  flex-direction: column;
  background-image: url(../img/onsitetraining/onsite-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.onsite-outer .onsite-inner .onsite-left p {
  line-height: 1.6;
}
.onsite-outer .onsite-inner .onsite-left .buttons {
  justify-content: flex-start;
  margin-top: 2rem;
}
.onsite-outer .onsite-inner .onsite-right {
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
}
.onsite-outer .onsite-inner .onsite-right img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
}
.onsite-form {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  background-image: url(../img/onsitetraining/form-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.onsite-form .form-inner {
  display: flex;
  flex-direction: column;
}
.onsite-form .form-inner .form {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
  background-color: #FFF;
}
.onsite-form .form-inner .form .heading h1 {
  font-size: 22px;
  padding-bottom: 24px;
}
.onsite-form .form-inner .form form {
  margin-bottom: 0;
}
.onsite-form .form-inner .form form .input-container .input-tag,
.onsite-form .form-inner .form form .input-container .address {
  padding-left: 46px;
}
.onsite-form .form-inner .form form .buttons {
  justify-content: flex-start;
}
.onsite-form .form-inner .contact-info {
  display: flex;
  flex-direction: column;
  background-color: #00607F;
  margin-top: 2rem;
  padding: 1rem;
}
.onsite-form .form-inner .contact-info .orange-heading h2 {
  color: #FFF;
}
.onsite-form .form-inner .contact-info .info-inner {
  display: flex;
  flex-direction: column;
  color: #FFF;
}
.onsite-form .form-inner .contact-info .info-inner p {
  color: #FFF;
}
.onsite-form .form-inner .contact-info .info-inner .phone,
.onsite-form .form-inner .contact-info .info-inner .mail,
.onsite-form .form-inner .contact-info .info-inner .location {
  display: flex;
  flex-direction: row;
  padding: 0.5rem 0;
  align-items: flex-start;
}
.onsite-form .form-inner .contact-info .info-inner .phone img,
.onsite-form .form-inner .contact-info .info-inner .mail img,
.onsite-form .form-inner .contact-info .info-inner .location img {
  width: 12%;
  margin-right: 1rem;
}
.onsite-form .form-inner .contact-info .info-inner .phone a,
.onsite-form .form-inner .contact-info .info-inner .mail a,
.onsite-form .form-inner .contact-info .info-inner .location a {
  width: 80%;
  font-weight: 800;
}
.onsite-form .form-inner .contact-info .info-inner .phone img {
  height: 30px;
  width: 30px;
}
.onsite-form .form-inner .contact-info .info-inner .location {
  padding-bottom: 0;
}
.onsite-form .form-inner .buttons {
  margin-top: 1rem;
}
.course-list {
  padding: 3rem 1.5rem;
}
.course-list .list-inner {
  display: flex;
  flex-direction: column;
}
.course-list .list-inner .inner-left {
  display: flex;
  flex-direction: column;
  background-image: url(../img/onsitetraining/zigzag.png);
  background-color: #00607F;
  background-size: cover;
  padding: 1rem;
}
.course-list .list-inner .inner-left .orange-heading h2 {
  color: #FFF;
}
.course-list .list-inner .inner-left p {
  color: #FFF;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.course-list .list-inner .inner-left p a {
  color: #FEB500;
}
.course-list .list-inner .inner-left .buttons {
  justify-content: flex-start;
}
.course-list .list-inner .inner-right {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  margin-top: 2rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
}
.course-list .list-inner .inner-right .blue-heading h1 {
  font-size: 22px;
}
.course-list .list-inner .inner-right .list {
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
}
.course-list .list-inner .inner-right .list .course-name {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  align-items: center;
}
.course-list .list-inner .inner-right .list .course-name .image {
  width: 40px;
}
.course-list .list-inner .inner-right .list .course-name .image img {
  width: 100%;
}
.course-list .list-inner .inner-right .list .course-name a {
  width: 70%;
  margin-left: 1rem;
}
.course-list .list-inner .inner-right .buttons {
  justify-content: flex-start;
}
.trainings {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  background-color: #f9f9f9;
}
.trainings .trainings-inner {
  display: flex;
  flex-direction: column;
}
.trainings .trainings-inner .top-inner {
  display: flex;
  flex-direction: column;
}
.trainings .trainings-inner .top-inner .top-left {
  display: flex;
}
.trainings .trainings-inner .top-inner .top-left img {
  width: 100%;
}
.trainings .trainings-inner .top-inner .top-right {
  display: flex;
  flex-direction: column;
}
.trainings .trainings-inner .top-inner .top-right p {
  color: #919191;
  line-height: 1.6;
}
.trainings .trainings-inner .center-inner {
  display: flex;
  background-image: linear-gradient(150deg, #068BA9 30%, #07677D);
  align-items: center;
  padding: 2rem;
  margin: 2rem 0;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trainings .trainings-inner .center-inner .fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
}
.trainings .trainings-inner .center-inner .fact .image {
  display: flex;
  flex-direction: column;
  width: 63px;
  height: 63px;
  border-radius: 5px;
  padding: 1rem;
  background-color: #FFF;
}
.trainings .trainings-inner .center-inner .fact .image img {
  width: 100%;
  height: 100%;
}
.trainings .trainings-inner .center-inner .fact p {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFF;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.6;
  margin-top: 0.5rem;
}
.trainings .trainings-inner .center-inner .fact p span {
  color: #FEB500;
}
.trainings .trainings-inner .center-inner .fact:last-child .image img {
  margin-top: -3px;
}
.trainings .trainings-inner .bottom-inner {
  display: flex;
  flex-direction: column;
}
.trainings .trainings-inner .bottom-inner .bottom-left {
  display: flex;
  flex-direction: column;
}
.trainings .trainings-inner .bottom-inner .bottom-left p {
  color: #919191;
  line-height: 1.6;
}
.trainings .trainings-inner .bottom-inner .bottom-right {
  display: flex;
  margin-top: 2rem;
}
.trainings .trainings-inner .bottom-inner .bottom-right img {
  width: 100%;
}
@media (min-width : 768px) {
  .onsite-banner .banner-section .banner-content .right-image {
    background-image: url(../img/onsitetraining/banner-bg.png) !important;
  }
  .onsite-outer {
    padding: 3rem 2rem;
  }
  .onsite-outer .onsite-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .onsite-outer .onsite-inner .heading {
    width: 100%;
  }
  .onsite-outer .onsite-inner .onsite-left {
    width: 60%;
  }
  .onsite-outer .onsite-inner .onsite-right {
    width: 35%;
    top: 114px;
    padding: 0;
    position: sticky;
    height: fit-content;
    align-self: flex-start;
  }
  .onsite-form {
    padding: 3rem 2rem;
  }
  .onsite-form .form-inner {
    flex-direction: column;
  }
  .onsite-form .form-inner .form {
    padding: 2rem;
  }
  .onsite-form .form-inner .form form {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .onsite-form .form-inner .form form .input-container {
    width: 48%;
  }
  .onsite-form .form-inner .form form .message {
    width: 100%;
  }
  .onsite-form .form-inner .form form .buttons {
    width: 100%;
    margin-top: 1rem;
  }
  .onsite-form .form-inner .contact-info {
    padding: 2rem;
  }
  .onsite-form .form-inner .contact-info .info-inner {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .onsite-form .form-inner .contact-info .info-inner .phone img,
  .onsite-form .form-inner .contact-info .info-inner .mail img,
  .onsite-form .form-inner .contact-info .info-inner .location img {
    width: 24px;
    margin-right: 0.5rem;
  }
  .onsite-form .form-inner .contact-info .info-inner .phone {
    width: 37%;
  }
  .onsite-form .form-inner .contact-info .info-inner .mail {
    width: 37%;
    align-items: center;
  }
  .onsite-form .form-inner .contact-info .info-inner .location {
    width: 90%;
  }
  .course-list {
    padding: 3rem 2rem;
  }
  .course-list .list-inner .inner-left {
    padding: 2rem;
    justify-content: center;
  }
  .course-list .list-inner .inner-right {
    padding: 2rem;
  }
  .course-list .list-inner .inner-right .list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 300px;
    overflow-y: scroll;
    padding: 0;
    margin-bottom: 1rem;
    box-shadow: none;
  }
  .course-list .list-inner .inner-right .list .course-name {
    width: 48%;
  }
  .trainings {
    padding: 3rem 2rem;
    background-image: url(../img/onsitetraining/blue-wave.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: 177px;
  }
  .trainings .trainings-inner .top-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .trainings .trainings-inner .top-inner .top-left {
    width: 40%;
    height: fit-content;
  }
  .trainings .trainings-inner .top-inner .top-right {
    width: 58%;
    justify-content: center;
    align-items: center;
  }
  .trainings .trainings-inner .top-inner .top-right p {
    text-align: center;
    line-height: 1.5;
  }
  .trainings .trainings-inner .center-inner {
    flex-direction: row;
    align-items: flex-start;
    background-image: none;
    padding: 0;
    margin: 0;
  }
  .trainings .trainings-inner .center-inner .fact {
    width: 20%;
  }
  .trainings .trainings-inner .center-inner .fact:nth-child(2) {
    padding-top: 4rem;
  }
  .trainings .trainings-inner .center-inner .fact:nth-child(3) {
    padding-top: 10rem;
  }
  .trainings .trainings-inner .center-inner .fact .image {
    width: 75px;
    height: 75px;
  }
  .trainings .trainings-inner .center-inner .fact p {
    margin-top: 1rem;
  }
  .trainings .trainings-inner .bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .trainings .trainings-inner .bottom-inner .bottom-left {
    width: 48%;
    align-items: center;
  }
  .trainings .trainings-inner .bottom-inner .bottom-left p {
    text-align: center;
  }
  .trainings .trainings-inner .bottom-inner .bottom-right {
    width: 49%;
  }
}
@media (min-width : 1024px) {
  .onsite-form .form-inner {
    flex-direction: row;
    position: relative;
  }
  .onsite-form .form-inner .form {
    width: 62%;
    padding: 2rem 3rem;
  }
  .onsite-form .form-inner .form form .buttons {
    width: 100%;
    justify-content: flex-start;
  }
  .onsite-form .form-inner .contact-info {
    position: absolute;
    width: 35%;
    right: 55px;
    top: 5%;
    z-index: 1;
    margin-top: 0;
  }
  .onsite-form .form-inner .contact-info:before {
    content: '';
    z-index: -1;
    width: 66px;
    height: 66px;
    position: absolute;
    top: 40px;
    right: -48px;
    background-image: url(../img/onsitetraining/shape.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .onsite-form .form-inner .contact-info .info-inner {
    flex-direction: column;
  }
  .onsite-form .form-inner .contact-info .info-inner .phone,
  .onsite-form .form-inner .contact-info .info-inner .mail,
  .onsite-form .form-inner .contact-info .info-inner .location {
    width: 100%;
  }
  .onsite-form .form-inner .contact-info .info-inner .phone span,
  .onsite-form .form-inner .contact-info .info-inner .mail span,
  .onsite-form .form-inner .contact-info .info-inner .location span {
    width: 100%;
  }
  .course-list .list-inner {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .course-list .list-inner .inner-left {
    width: 32%;
  }
  .course-list .list-inner .inner-right {
    margin: 2rem 0;
    width: 68%;
  }
  .trainings {
    background-position-y: 94px;
  }
  .trainings .trainings-inner .center-inner {
    align-items: flex-start;
  }
  .trainings .trainings-inner .center-inner .fact {
    width: 18%;
  }
  .trainings .trainings-inner .center-inner .fact .image {
    align-items: center;
  }
  .trainings .trainings-inner .center-inner .fact p {
    font-size: 26px;
  }
  .trainings .trainings-inner .center-inner .fact p span {
    font-size: 20px;
  }
  .trainings .trainings-inner .center-inner .fact:nth-child(2) {
    padding-top: 8rem;
    margin: 0 6rem;
  }
  .trainings .trainings-inner .center-inner .fact:nth-child(3) {
    padding-top: 16rem;
  }
}
@media (min-width : 1366px) {
  .onsite-form .form-inner .form {
    width: 68%;
  }
  .onsite-form .form-inner .contact-info {
    width: 29%;
  }
  .onsite-outer {
    padding: 4rem 0rem;
  }
  .onsite-outer .onsite-inner .onsite-left {
    width: calc(100% - 345px);
  }
  .onsite-outer .onsite-inner .onsite-right {
    width: 270px;
  }
  .onsite-form {
    padding: 4rem 0rem;
  }
  .trainings {
    padding: 4rem 0rem;
    background-position-y: 80px;
  }
  .trainings .trainings-inner .center-inner .fact {
    width: 12%;
  }
  .trainings .trainings-inner .center-inner .fact:nth-child(2) {
    margin: 0 12rem;
    padding-top: 11rem;
  }
  .trainings .trainings-inner .center-inner .fact:nth-child(3) {
    padding-top: 20rem;
  }
  .trainings .trainings-inner .bottom-inner .bottom-left {
    width: 54%;
  }
  .course-list {
    padding: 4rem 0rem;
  }
}
@media (min-width : 1440px) {
  .trainings {
    background-position-y: 135px;
    background-size: 100% 69%;
  }
  .trainings .trainings-inner .center-inner .fact:nth-child(2) {
    padding-top: 6rem;
  }
  .trainings .trainings-inner .center-inner .fact:nth-child(3) {
    padding-top: 14rem;
  }
}
.res-detail {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  background-image: url(../img/resourcedetail/res-detail-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  padding-bottom: 1rem;
}
.res-detail .res-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.res-detail .res-content .res-img {
  display: flex;
  flex-direction: column;
  width: 278px;
  height: 394px;
}
.res-detail .res-content .res-img img {
  width: 100%;
}
.res-detail .res-content .res-info {
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  padding: 2rem;
  margin-top: 2rem;
  width: 100%;
}
.res-detail .res-content .res-info .heading h1 {
  font-size: 22px;
}
.res-detail .res-content .res-info .content {
  display: flex;
  flex-direction: column;
}
.res-detail .res-content .res-info .content p {
  color: #717171;
  line-height: 1.6;
}
.res-detail .res-content .res-info .buttons {
  margin-top: 1.5rem;
}
.res-detail .res-content .res-info .buttons .orange-btn i {
  margin-right: 5px;
}
.res-detail .res-content .res-info:hover .heading h1 {
  color: #FC9701;
  transition: 0.3s;
}
.res-form {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
}
.res-form .form-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-image: url(../img/resourcedetail/form-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.17);
}
.res-form .form-body h3 {
  color: #00607F;
  font-size: 18px;
  margin-bottom: 2rem;
  text-align: center;
}
.res-form .form-body .input-container .input-tag {
  padding-left: 46px;
  font-size: 13px;
}
.res-form .form-body .filter-control {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.res-form .form-body .filter-control p {
  color: #FEB500;
  font-weight: 600;
  margin-bottom: 12px;
  margin-left: 5px;
}
.res-form .form-body .filter-control .filter-li {
  display: flex;
  flex-direction: column;
}
.res-form .form-body .filter-control .filter-li label {
  color: #575757;
  margin-bottom: 4px;
  display: flex;
  flex-direction: row;
  cursor: pointer;
}
.res-form .form-body .filter-control .filter-li label input {
  margin-right: 6px;
}
.res-form .form-body .filter-control .filter-li label p {
  color: #575757;
  line-height: 1.4;
  font-weight: normal;
  margin-bottom: 0;
  font-size: 13px;
}
.res-form .form-body .label-text {
  color: #484848;
  margin-bottom: 10px;
  font-size: 13px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.res-form .form-body .consent p,
.res-form .form-body .consent label {
  color: #484848;
}
.res-form .form-body .buttons {
  margin-top: 1rem;
  width: 100%;
}
@media (min-width : 768px) {
  .res-detail {
    padding: 3rem 2rem;
    padding-bottom: 2rem;
  }
  .res-detail .res-content {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .res-detail .res-content .res-img {
    width: 200px;
    height: 284px;
  }
  .res-detail .res-content .res-info {
    padding: 1.5rem;
    margin-top: 0;
    width: 71%;
    position: relative;
    left: -15px;
    min-height: 203px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .res-detail .res-content .res-info .heading {
    width: 70%;
    order: 1;
  }
  .res-detail .res-content .res-info .content {
    width: 100%;
    order: 3;
  }
  .res-detail .res-content .res-info .buttons {
    order: 2;
    margin-bottom: 1.5rem;
    margin-top: 0;
  }
  .res-form {
    padding: 3rem 2rem;
  }
  .res-form .form-body {
    width: 92%;
    margin: auto;
  }
  .res-form .form-body form {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .res-form .form-body form .input-container {
    width: 48%;
  }
  .res-form .form-body form .filter-control {
    width: 100%;
  }
  .res-form .form-body form .filter-control .filter-li {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .res-form .form-body form .filter-control .filter-li label {
    width: 33%;
  }
  .res-form .form-body form .label-text {
    width: 100%;
  }
}
@media (min-width : 1024px) {
  .res-detail .res-content .res-info {
    min-height: 181px;
  }
  .res-detail .res-content .res-info .heading {
    width: 80%;
  }
  .res-form {
    padding: 3rem 2rem;
  }
  .res-form .form-body {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .res-form .form-body form .filter-control .filter-li label {
    width: 208px;
  }
}
@media (min-width : 1366px) {
  .res-detail {
    padding: 4rem 0rem;
    padding-bottom: 1rem;
  }
  .res-form {
    padding: 4rem 0rem;
  }
  .res-form .form-body form .buttons .orange-btn {
    font-size: 18px;
  }
}
.content-detail h2,
.content-detail h3,
.content-detail h4,
.content-detail h5,
.content-detail strong,
.content-detail ul,
.content-detail em {
  color: #000000;
}
.content-detail h3 {
  color: #000000;
}
.content-detail h3 a {
  color: #000000;
  margin-left: 0.2rem;
}
.content-detail em {
  font-weight: 500;
}
.content-detail ul {
  margin: 0;
  margin-bottom: 10px;
}
.content-detail li {
  color: #919191;
  margin-top: 4px;
}
.content-detail aside h3 {
  color: #000000;
}
.content-detail aside h3 a {
  color: #000000;
}
.content-detail p a {
  color: #00607F;
  font-weight: 500;
}
.content-detail p span {
  color: #000000;
}
.banner.offerimg .banner-section .banner-content .right-image {
  background-image: url(../img/offer/offer.png) !important;
}
.special-offers {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  background-image: url(../img/offer/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.special-offers .heading h2 {
  margin-bottom: 1.5rem;
}
.special-offers .heading p {
  margin-top: 10px;
  color: #000000;
}
.special-offers .offers {
  display: flex;
  flex-direction: column;
}
.special-offers .offers .offer-left {
  display: flex;
  flex-direction: column;
}
.special-offers .offers .offer-left .offer-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
}
.special-offers .offers .offer-left .offer-list .offer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem 1rem 1rem 0;
  background-color: #FFF;
}
.special-offers .offers .offer-left .offer-list .offer-content .orange-heading {
  width: 10%;
}
.special-offers .offers .offer-left .offer-list .offer-content .orange-heading h2 {
  border-bottom: 4px solid #FC9701;
  color: #c5c5c5;
  padding-left: 0.5rem;
}
.special-offers .offers .offer-left .offer-list .offer-content .orange-heading h2:after {
  background-image: none;
  bottom: 5px;
  width: 40px;
  border-bottom: 4px solid #00607F;
}
.special-offers .offers .offer-left .offer-list .offer-content .text {
  display: flex;
  flex-direction: column;
  width: 85%;
  padding-left: 1rem;
}
.special-offers .offers .offer-left .offer-list .offer-content .text .anchor {
  color: #000000;
  font-weight: 800;
  display: flex;
  align-self: baseline;
  margin-bottom: 4px;
  width: 100%;
}
.special-offers .offers .offer-left .offer-list .offer-content:hover .text .anchor {
  color: #00607F;
}
.special-offers .offers .offer-left .offer-list .offer-image {
  display: flex;
  height: 170px;
  padding: 1rem 1.5rem;
}
.special-offers .offers .offer-left .offer-list .offer-image img {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
  width: 100%;
  height: 100%;
}
.special-offers .offers .offer-right {
  display: flex;
  flex-direction: column;
}
.special-offers .offers .offer-right .enquiry {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
  align-items: center;
  padding: 2rem 1.5rem;
  background-color: #FFF;
  margin-bottom: 0;
  width: 100%;
}
.special-offers .offers .offer-right .enquiry .blue-heading h2 {
  color: #00607F;
}
.special-offers .offers .offer-right .enquiry .blue-heading h2:after {
  background-image: url('../img/master/blue-orange.png');
}
.special-offers .offers .offer-right .enquiry form .input-container .input-tag,
.special-offers .offers .offer-right .enquiry form .input-container .address {
  padding-left: 46px;
}
.special-offers .offers .offer-right .enquiry form .input-container .input-tag select::-ms-expand,
.special-offers .offers .offer-right .enquiry form .input-container .address select::-ms-expand {
  display: none;
}
.special-offers .offers .offer-right .enquiry .buttons {
  margin-top: 1rem;
}
.subscribe-section {
  display: flex;
  margin-top: 3rem;
}
.subscribe-section .subscribe {
  display: flex;
  padding: 2rem;
  padding-left: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
  background-color: #FFF;
}
.subscribe-section .subscribe .image {
  display: flex;
  width: 20%;
  height: max-content;
  align-items: flex-start;
}
.subscribe-section .subscribe .image img {
  width: 100%;
}
.subscribe-section .subscribe form {
  width: 80%;
}
.subscribe-section .subscribe .subs-text {
  display: flex;
  flex-direction: column;
}
.subscribe-section .subscribe .subs-text p {
  font-size: 13px;
  line-height: 1.4;
}
.subscribe-section .subscribe .subs-text h2 {
  font-size: 18px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: #00607F;
}
.subscribe-section .subscribe .subs-text .subs-btn-outer {
  display: flex;
  border-radius: 100px;
  position: relative;
}
.subscribe-section .subscribe .subs-text .subs-btn-outer input {
  width: 100%;
  padding: 8px;
  border: 1px solid #bbbbbb;
  border-radius: 100px;
  outline: none;
  padding-right: 5.5rem;
  font-size: 12px;
  text-overflow: ellipsis;
}
.subscribe-section .subscribe .subs-text .subs-btn-outer .subs-btn-inner {
  background-color: #fc9701;
  border: 0;
  border-radius: 0 100px 100px 0;
  right: 0px;
  font-size: 13px;
  outline: none;
  cursor: pointer;
  display: flex;
  position: absolute;
  padding: 8px;
  color: #fff;
  font-weight: 500;
  justify-content: center;
  align-items: center;
  z-index: 1;
  bottom: 0;
  top: 0;
  width: 70px;
  cursor: not-allowed;
}
.subscribe-section .subscribe .subs-text .subs-btn-outer .subs-btn-inner img {
  display: none;
  width: 18px;
  height: 17px;
  margin-right: 10px;
}
.recent-blog {
  box-shadow: 0 0 10px #d3d3d3;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  background-image: url(../img/blog/recent-bg.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 40%;
  margin-bottom: 2rem;
  background-color: #FFF;
}
.recent-blog .search {
  display: flex;
  margin-bottom: 2rem;
  width: 100%;
}
.recent-blog .search .form-search {
  display: flex;
  width: 100%;
}
.recent-blog .search .form-search .search-content {
  width: 100%;
  position: relative;
  top: 0;
  outline: 0;
  background-color: #fff;
  box-shadow: 0 0 20px #e4e4e4;
}
.recent-blog .search .form-search .search-content .search-input {
  width: 100%;
  position: relative;
  top: 0;
  outline: 0;
  background-color: #fff;
  padding: 15px;
  padding-right: 65px;
  border: 0;
}
.recent-blog .search .form-search .search-content .search-button {
  background-color: #FC9701;
  border: 0;
  right: 0px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  position: absolute;
  top: 0px;
  bottom: 0;
  width: 42px;
  outline: 0;
  padding: 11px 6px;
  margin: 0;
  color: #fff;
  font-weight: 500;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.recent-blog .search .form-search .search-content .search-button::before {
  content: '';
  width: 22px;
  height: 100%;
  background: #fc9701;
  transform: skewX(156deg);
  left: -11px;
  position: absolute;
  z-index: -1;
  top: 0;
}
.recent-blog .search .form-search .search-content .search-button img {
  width: 20px;
}
.recent-blog .heading {
  margin-bottom: 1.5rem;
}
.recent-blog .heading h1 {
  margin-bottom: 0;
}
.recent-blog .recent-blog-content {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px #f1f1f1;
  padding: 1rem;
  background: #FFF;
  margin-bottom: 2rem;
}
.recent-blog .recent-blog-content:last-child {
  margin-bottom: 0;
}
.recent-blog .recent-blog-content .recent-image {
  display: none;
}
.recent-blog .recent-blog-content .recent-image img {
  width: 100%;
  height: 100%;
}
.recent-blog .recent-blog-content .recent-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recent-blog .recent-blog-content .recent-right a {
  width: 100%;
}
.recent-blog .recent-blog-content .recent-right h3 {
  margin: 0.5rem 0;
}
.recent-blog .recent-blog-content .recent-right h3:hover {
  color: #00607F;
}
.recent-blog .recent-blog-content .recent-right .recent-text {
  width: 48%;
  display: flex;
  flex-direction: column;
  color: #919191;
  font-weight: 500;
  font-size: 12px;
}
.recent-blog .recent-blog-content .recent-right .recent-text:nth-child(3) {
  align-items: flex-end;
}
.recent-blog .recent-blog-content .recent-right .recent-text:nth-child(3) p {
  text-align: right;
  line-height: 1.2;
  margin-top: 2px;
}
.recent-blog .recent-blog-content .recent-right .recent-text p {
  color: #FC9701;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  margin-top: 2px;
}
@media (min-width : 768px) {
  .offer-banner .banner-section .banner-content .right-image {
    background-image: url(../img/offer/offer-bg.png);
  }
  .special-offers {
    padding: 3rem 2rem;
  }
  .special-offers .offers .offer-left .offer-list {
    margin-bottom: 7rem;
    padding: 2rem 0;
    box-shadow: none;
    position: relative;
  }
  .special-offers .offers .offer-left .offer-list .offer-content {
    width: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
  }
  .special-offers .offers .offer-left .offer-list .offer-content .text p {
    width: 80%;
  }
  .special-offers .offers .offer-left .offer-list .offer-image {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16), 19px 22px 0 -3px rgba(0, 93, 123, 0.8);
    position: absolute;
    right: 41px;
    top: 100px;
    width: 50%;
    padding: 0;
  }
  .special-offers .offers .offer-left .offer-list:last-child {
    margin-bottom: 4rem!important;
  }
  .special-offers .offers .offer-left .offer-list:nth-child(even) {
    flex-direction: row-reverse;
  }
  .special-offers .offers .offer-left .offer-list:nth-child(even) .offer-content .text {
    padding-left: 1rem;
  }
  .special-offers .offers .offer-left .offer-list:nth-child(even) .offer-image {
    left: 41px;
    top: 100px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16), -25px 22px 0 -3px rgba(0, 93, 123, 0.8);
  }
  .special-offers .offers .offer-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .special-offers .offers .offer-right .enquiry {
    width: 60%;
    margin: 0 auto;
  }
  .special-offers .offers .offer-right .recent-blog {
    margin-bottom: 4rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .special-offers .offers .offer-right .heading {
    width: 100%;
  }
  .special-offers .offers .offer-right .recent-blog-content {
    width: 48%;
  }
  .subscribe-section {
    justify-content: center;
    margin-top: 4rem;
  }
  .subscribe-section .subscribe .subs-text h2 {
    font-size: 22px;
  }
  .subscribe-section .subscribe .subs-text .subs-btn-outer input {
    padding: 12px;
    padding-right: 8rem;
    font-size: 14px;
  }
  .subscribe-section .subscribe .subs-text .subs-btn-outer .subs-btn-inner {
    font-size: 16px;
    width: 120px;
  }
  .recent-blog {
    padding: 4rem 2rem;
    background-size: 100% 60%;
    width: 100%;
    margin-bottom: 2rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .recent-blog .recent-blog-content {
    flex-direction: row;
  }
  .recent-blog .recent-blog-content .recent-image {
    width: 110px;
    display: none;
    height: 82px;
    margin-right: 12px;
  }
  .recent-blog .recent-blog-content .recent-right h3 {
    margin: 0 0 0.5rem 0;
  }
}
@media (min-width : 1024px) {
  .special-offers .offers {
    flex-direction: row;
    justify-content: space-between;
  }
  .special-offers .offers .offer-left {
    width: 65%;
  }
  .special-offers .offers .offer-left .offer-list .offer-image {
    top: 85px;
  }
  .special-offers .offers .offer-right {
    flex-direction: row;
    flex-wrap: wrap;
    width: 31.5%;
    padding-top: 2rem;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: flex-start;
    position: sticky;
    top: 0;
    height: fit-content;
  }
  .special-offers .offers .offer-right .enquiry {
    width: 100%;
  }
  .special-offers .offers .offer-right .recent-blog .recent-blog-content {
    width: 100%;
  }
  .subscribe-section {
    margin-top: 2rem;
  }
}
@media (min-width : 1366px) {
  .special-offers {
    padding: 4rem 0rem;
  }
  .special-offers .offers .offer-left .offer-list:nth-last-child(1) {
    padding-bottom: 0;
  }
  .special-offers .offers .offer-right {
    width: 30%;
  }
  .subscribe-section {
    margin-top: 4rem;
  }
}
.offer-detail {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  position: relative;
}
.offer-detail::before {
  content: '';
  position: absolute;
  background-image: url(../img/offerdetail/offerdetail-leftbg.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  width: 277px;
  height: 284px;
  top: 226px;
  left: -7px;
  z-index: -1;
}
.offer-detail::after {
  content: '';
  position: absolute;
  background-image: url(../img/offerdetail/offerdetail-rightbg.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  width: 277px;
  height: 284px;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.offer-detail .offerdetail-sec {
  display: flex;
  flex-direction: column;
}
.offer-detail .offerdetail-sec .offer-left {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
.offer-detail .offerdetail-sec .offer-left .offer-img {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.offer-detail .offerdetail-sec .offer-left .offer-img img {
  width: 100%;
}
.offer-detail .offerdetail-sec .offer-left .offer-content {
  display: flex;
  flex-direction: column;
}
.offer-detail .offerdetail-sec .offer-left .offer-content h2 {
  font-size: 20px;
  margin: 0.5rem 0;
}
.offer-detail .offerdetail-sec .offer-left .offer-content p {
  margin: 6px 0;
}
.offer-detail .offerdetail-sec .offer-left .offer-content p:last-child {
  margin-bottom: 0;
}
.offer-detail .offerdetail-sec .offer-right {
  display: flex;
  flex-direction: column;
}
.offer-detail .offerdetail-sec .offer-right form {
  align-items: center;
  padding: 2rem 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  background-color: #FFF;
}
.offer-detail .offerdetail-sec .offer-right form h3 {
  color: #00607F;
  font-size: 20px;
  margin-bottom: 2rem;
  text-align: center;
}
.offer-detail .offerdetail-sec .offer-right form .input-container .input-tag {
  padding-left: 46px!important;
}
.offer-detail .offerdetail-sec .offer-right form .input-container .input-tag select::-ms-expand {
  display: none;
}
.offer-detail .offerdetail-sec .offer-right form .input-container textarea {
  padding-left: 46px;
  font-size: 13px;
}
.offer-detail .offerdetail-sec .offer-right form .buttons {
  margin-top: 1rem;
}
@media (min-width : 768px) {
  .offer-detail {
    padding: 3rem 2rem;
  }
  .offer-detail::after {
    top: -2px;
    width: 346px;
    height: 401px;
  }
  .offer-detail::before {
    top: 215px;
    width: 470px;
  }
  .offer-detail .offerdetail-sec {
    flex-direction: row;
    justify-content: space-between;
  }
  .offer-detail .offerdetail-sec .offer-left {
    width: 55%;
    margin-bottom: 0;
  }
  .offer-detail .offerdetail-sec .offer-left .offer-content h2 {
    margin-top: 0;
  }
  .offer-detail .offerdetail-sec .offer-right {
    width: 37%;
    height: auto;
  }
  .offer-detail .offerdetail-sec .offer-right form {
    padding: 2rem 1.5rem;
    position: sticky;
    top: 135px;
  }
  .offer-detail .subscribe-section .subscribe .subs-text .subs-btn-outer .subs-btn-inner {
    width: 100px;
  }
}
@media (min-width : 1024px) {
  .offer-detail .offerdetail-sec .offer-left {
    width: 60%;
  }
  .offer-detail .offerdetail-sec .offer-right {
    width: 35%;
  }
}
@media (min-width : 1366px) {
  .offer-detail {
    padding: 4rem 0rem;
  }
}
.banner.about .banner-section .banner-content .right-image {
  background-image: url(../img/about/about-us.png) !important;
}
.about-us {
  padding: 3rem 1.5rem;
}
.about-us .aboutmain-section {
  display: flex;
  flex-direction: column;
}
.about-us .aboutmain-section .aboutus-left p {
  margin-bottom: 15px;
}
.about-us .aboutmain-section .aboutus-left .about-number {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-us .aboutmain-section .aboutus-left .about-number .count {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  width: 48%;
}
.about-us .aboutmain-section .aboutus-left .about-number .count:nth-child(3),
.about-us .aboutmain-section .aboutus-left .about-number .count:last-child {
  margin-bottom: 0;
}
.about-us .aboutmain-section .aboutus-left .about-number .count .circle {
  height: 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-us .aboutmain-section .aboutus-left .about-number .count .circle .progress-ring {
  display: flex;
}
.about-us .aboutmain-section .aboutus-left .about-number .count .circle .progress-ring .progress-ring__circle {
  transition: 0.35s stroke-dashoffset;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  stroke-width: 6;
}
.about-us .aboutmain-section .aboutus-left .about-number .count .circle .progress-ring .circle-default {
  stroke: #e6e2e7 !important;
  stroke-width: 6;
}
.about-us .aboutmain-section .aboutus-left .about-number .count .circle .progress-ring text {
  font-size: 20px;
}
.about-us .aboutmain-section .aboutus-left .about-number .count .circle .first .progress-ring__circle {
  stroke: #FC9701 !important;
}
.about-us .aboutmain-section .aboutus-left .about-number .count .circle .second .progress-ring__circle {
  stroke: #00607F !important;
}
.about-us .aboutmain-section .aboutus-left .about-number .count .circle .third .progress-ring__circle {
  stroke: #E21A1A !important;
}
.about-us .aboutmain-section .aboutus-left .about-number .count .circle .fourth .progress-ring__circle {
  stroke: #0108D9 !important;
}
.about-us .aboutmain-section .aboutus-left .about-number .count .circle .mask {
  width: 80px;
  height: 80px;
  position: absolute;
  border-radius: 50%;
  transform: rotate(5deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-us .aboutmain-section .aboutus-left .about-number .count .circle .fill {
  width: 95px;
  height: 95px;
  position: absolute;
  border-radius: 50%;
  clip: rect(0px, 75px, 150px, 0px);
  background-color: #FC9701;
}
.about-us .aboutmain-section .aboutus-left .about-number .count .circle .inside-circle {
  width: 82px;
  height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 10px;
  font-size: 22px;
  background-color: #FFF;
  position: absolute;
}
.about-us .aboutmain-section .aboutus-left .about-number .count .txt-name {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-top: 0.5rem;
  margin-bottom: 0;
  text-align: center;
  line-height: 1.4;
}
.about-us .aboutmain-section .aboutus-left .about-number .count:nth-child(1) .fill {
  background-color: #FC9701;
}
.about-us .aboutmain-section .aboutus-left .about-number .count:nth-child(1) .txt-name {
  color: #FC9701;
}
.about-us .aboutmain-section .aboutus-left .about-number .count:nth-child(2) .fill {
  background-color: #00607F;
  clip: rect(0, 69px, 120px, 0);
  transform: rotate(6deg);
}
.about-us .aboutmain-section .aboutus-left .about-number .count:nth-child(2) .txt-name {
  color: #00607F;
}
.about-us .aboutmain-section .aboutus-left .about-number .count:nth-child(3) .fill {
  background-color: #E21A1A;
  clip: rect(0, 65px, 120px, 0);
  transform: rotate(-9deg);
}
.about-us .aboutmain-section .aboutus-left .about-number .count:nth-child(3) .txt-name {
  color: #E21A1A;
}
.about-us .aboutmain-section .aboutus-left .about-number .count:nth-child(4) .fill {
  background-color: #0108D9;
  clip: rect(0, 75px, 120px, 0);
  transform: rotate(15deg);
}
.about-us .aboutmain-section .aboutus-left .about-number .count:nth-child(4) .txt-name {
  color: #0108D9;
}
.about-us .aboutmain-section .aboutus-right {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.about-us .aboutmain-section .aboutus-right .heading {
  justify-content: center;
  align-items: center;
}
.about-us .aboutmain-section .aboutus-right .timeline {
  padding: 0;
  position: relative;
  padding-top: 0;
}
.about-us .aboutmain-section .aboutus-right .timeline li {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.about-us .aboutmain-section .aboutus-right .timeline li:last-child {
  margin-bottom: 0;
}
.about-us .aboutmain-section .aboutus-right .timeline li:last-child .content {
  margin-bottom: 0;
}
.about-us .aboutmain-section .aboutus-right .timeline li .content {
  width: 100%;
  padding-top: 0px;
  padding-right: 0;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px #f1f1f1;
  padding: 0.5rem 1rem;
  margin: 2rem 0;
}
.about-us .aboutmain-section .aboutus-right .timeline li .content h3 {
  font-size: 16px;
}
.about-us .aboutmain-section .aboutus-right .timeline li .content .des {
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.3;
}
.about-us .aboutmain-section .aboutus-right .timeline li .timeline-badge {
  width: 10px;
  height: 10px;
  position: absolute;
  border-radius: 50%;
  margin-left: -4px;
  left: 50%;
  top: 8px;
  display: flex;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  animation: zoominoutsinglefeatured 3s linear infinite;
}
.about-us .aboutmain-section .aboutus-right .timeline li:nth-child(odd) .content {
  border: 1px solid #FC9701;
}
.about-us .aboutmain-section .aboutus-right .timeline li:nth-child(odd) .content h3 {
  color: #FC9701;
}
.about-us .aboutmain-section .aboutus-right .timeline li:nth-child(odd) .timeline-badge {
  background-color: #FC9701;
}
.about-us .aboutmain-section .aboutus-right .timeline li:nth-child(even) .content {
  border: 1px solid #00607F;
}
.about-us .aboutmain-section .aboutus-right .timeline li:nth-child(even) .content h3 {
  color: #00607F;
}
.about-us .aboutmain-section .aboutus-right .timeline li:nth-child(even) .timeline-badge {
  background-color: #00607F;
}
.about-us .aboutmain-section .aboutus-right .timeline:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 2.5px;
  background-color: #F6F6F6;
}
.keys-section {
  padding: 3rem 1.5rem;
  background-color: #F2F2F2;
}
.keys-section .keys-main {
  display: flex;
  flex-direction: column;
}
.keys-section .keys-main .left-section {
  display: flex;
  flex-direction: column;
}
.keys-section .keys-main .left-section .main-heading {
  margin-bottom: 2rem;
}
.keys-section .keys-main .left-section .common-div:nth-child(2) {
  background-image: url('../img/about/blue-img.png');
  background-repeat: no-repeat;
}
.keys-section .keys-main .left-section .common-div:nth-child(2) h3 span {
  color: #FFF;
}
.keys-section .keys-main .left-section .common-div:nth-child(2) p {
  color: #FFF;
}
.keys-section .keys-main .left-section .common-div:nth-child(3) {
  background-image: url('../img/about/vision-img.png');
  background-repeat: no-repeat;
}
.keys-section .keys-main .left-section .common-div:nth-child(3) h3 span {
  color: #FFF;
}
.keys-section .keys-main .left-section .common-div:nth-child(3) p {
  color: #FFF;
}
.keys-section .keys-main .left-section .common-div:nth-child(4) {
  background-image: url('../img/about/difference-bg.png');
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}
.keys-section .keys-main .right-section {
  display: flex;
  flex-direction: column;
}
.keys-section .keys-main .right-section .common-container {
  display: flex;
  flex-direction: column;
}
.keys-section .keys-main .right-section .common-container .common-div {
  width: 100%;
}
.keys-section .keys-main .right-section .common-container .common-div:nth-child(1) {
  background-color: #FFF;
}
.keys-section .keys-main .right-section .common-container .common-div:nth-child(2) {
  background-color: #FFF;
}
.keys-section .keys-main .right-section .mission {
  background-image: url('../img/about/grey-img.png');
  background-repeat: no-repeat;
  margin-bottom: 0;
}
.keys-section .keys-main .right-section .mission h3 span {
  color: #FFF;
}
.keys-section .keys-main .right-section .mission p {
  color: #FFF;
}
.keys-section .keys-main .common-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.3rem;
  border-radius: 40px;
  box-shadow: 0 0 10px #f1f1f1;
  margin-bottom: 2rem;
  background-size: cover;
  position: relative;
  background-color: #FFF;
}
.keys-section .keys-main .common-div h3 {
  color: #FC9701;
  font-size: 22px;
  text-align: center;
}
.keys-section .keys-main .common-div h3 span {
  color: #00607F;
  font-size: 22px;
}
.keys-section .keys-main .common-div p {
  text-align: center;
}
.keys-section .keys-main .common-div:before {
  content: '';
  width: 100px;
  height: 100px;
  background-image: url('../img/about/dots.png');
  background-repeat: no-repeat;
  position: absolute;
  left: -23px;
  top: -15px;
  z-index: -1;
}
.work-facts {
  padding: 3rem 1.5rem;
  background-image: url('../img/about/bg-work-mob.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: 83px;
}
.work-facts .container-blog {
  display: flex;
  flex-direction: column;
}
.work-facts .container-blog .work-main {
  display: flex;
  flex-direction: column;
}
.work-facts .container-blog .work-main .work-left {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.work-facts .container-blog .work-main .work-left:nth-last-child(1) {
  margin-bottom: 0;
}
.work-facts .container-blog .work-main .work-left .works-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  width: 48%;
}
.work-facts .container-blog .work-main .work-left .works-list .work-image {
  background-image: url('../img/about/work-bg.png');
  background-repeat: no-repeat;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.work-facts .container-blog .work-main .work-left .works-list .work-image .inner-circle {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 96, 127, 0.6);
  border-radius: 50%;
}
.work-facts .container-blog .work-main .work-left .works-list .work-image .inner-circle img {
  width: 30px;
  height: 30px;
}
.work-facts .container-blog .work-main .work-left .works-list .work-image:hover .inner-circle {
  transition: all 0.8s ease-in, color 0.3s ease-in-out;
  transform: rotate(360deg);
}
.work-facts .container-blog .work-main .work-left .works-list .work-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.work-facts .container-blog .work-main .work-left .works-list .work-text h3 {
  color: #FC9701;
  font-size: 20px;
  text-align: center;
}
.work-facts .container-blog .work-main .work-left .works-list .work-text p {
  font-size: 22px;
  font-weight: 700;
  color: #00607F;
  text-align: center;
}
.work-facts .container-blog .work-main .work-right {
  display: flex;
  width: 100%;
  margin-top: 2rem;
}
.work-facts .container-blog .work-main .work-right img {
  width: 100%;
  height: 164px;
}
.work-facts .container-blog .buttons {
  margin-top: 1rem;
}
.values-section {
  padding: 3rem 1.5rem;
  background-color: #F5F5F5;
}
.values-section .main-values {
  display: flex;
  flex-direction: column;
}
.values-section .main-values .common-values {
  background-image: url('../img/about/semi-circle-grey.png');
  background-repeat: no-repeat;
  background-size: contain;
  padding: 1rem;
  background-color: #FFF;
  box-shadow: 0 0 10px #f1f1f1;
  border-radius: 10px;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.values-section .main-values .common-values .orange-common {
  display: flex;
}
.values-section .main-values .common-values .white-common {
  display: none;
}
.values-section .main-values .common-values img {
  width: 40px;
  height: 40px;
  margin-bottom: 0.7rem;
}
.values-section .main-values .common-values h3 {
  font-size: 22px;
  color: #00607F;
}
.values-section .main-values .common-values p {
  line-height: 1.4;
  margin-top: 5px;
}
.values-section .main-values .common-values:hover {
  background-image: url('../img/about/semi-circle-blue.png'), url('../img/about/dots.svg');
  background-position: left,right;
  background-color: #00607F;
  transition: 0.3s;
}
.values-section .main-values .common-values:hover h3,
.values-section .main-values .common-values:hover p {
  color: #FFF;
}
.values-section .main-values .common-values:hover .orange-common {
  display: none;
}
.values-section .main-values .common-values:hover .white-common {
  display: flex;
}
.values-section .main-values .common-values:last-child {
  margin-bottom: 0rem;
}
.values-section .main-values .left-values {
  display: flex;
  flex-direction: column;
}
.values-section .main-values .left-values .head-main {
  margin-bottom: 2rem;
}
.values-section .main-values .right-values {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.our-blog-section {
  padding: 3rem 1.5rem;
  background-image: url('../img/about/blog-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}
.our-blog-section .blogs-main {
  display: flex;
  flex-direction: column;
  position: relative;
}
.our-blog-section .blogs-main .content-blogg {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  box-shadow: 0 0 10px #d2d2d2;
  margin-bottom: 2rem;
  position: relative;
}
.our-blog-section .blogs-main .content-blogg:last-child {
  margin-bottom: 0;
}
.our-blog-section .blogs-main .content-blogg img {
  width: 100%;
  height: 235px;
  border-radius: 15px;
}
.our-blog-section .blogs-main .content-blogg .bottom-div {
  position: absolute;
  bottom: 0;
  border-radius: 0 0 15px 15px;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  background-image: linear-gradient(55deg, #00607f -56%, #2bdbdc 95%);
  z-index: 1;
  width: 100%;
  transition: 0.3s;
}
.our-blog-section .blogs-main .content-blogg .bottom-div span {
  width: 25%;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background-color: #F2F2F2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -2rem;
  box-shadow: 0 0 10px #afafaf;
}
.our-blog-section .blogs-main .content-blogg .bottom-div span p {
  line-height: 1.4;
  font-size: 16px;
  font-weight: 800;
}
.our-blog-section .blogs-main .content-blogg .bottom-div a {
  display: flex;
  width: 100%;
  font-weight: 800;
  color: #FFF;
  top: -88%;
  min-height: 38px;
}
.our-blog-section .blogs-main .content-blogg .bottom-div:before {
  background-image: url('../img/about/before.png');
  background-repeat: no-repeat;
  width: 100%;
  position: absolute;
  background-size: cover;
  height: 63px;
  left: 0;
  top: -62px;
  z-index: -1;
}
.our-blog-section .blogs-main .content-blogg .on-hover {
  position: absolute;
  top: 0;
  border-radius: 15px;
  flex-direction: column;
  display: none;
  background: url('../img/about/semi-circle-blue.svg');
  background-position: bottom,right;
  background-image: linear-gradient(55deg, #00607f -44%, #2bdbdc 90%);
  padding: 1rem;
  height: 235px;
  overflow: hidden;
  width: 100%;
}
.our-blog-section .blogs-main .content-blogg .on-hover .content {
  height: 105px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
.our-blog-section .blogs-main .content-blogg .on-hover .content img {
  display: none;
}
.our-blog-section .blogs-main .content-blogg .on-hover h1,
.our-blog-section .blogs-main .content-blogg .on-hover h2,
.our-blog-section .blogs-main .content-blogg .on-hover h3 {
  font-size: 14px;
  color: #FFF;
  text-align: center;
}
.our-blog-section .blogs-main .content-blogg .on-hover a {
  color: #FFF;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.our-blog-section .blogs-main .content-blogg .on-hover p {
  text-align: center;
  color: #FFF;
}
.our-blog-section .blogs-main .content-blogg .on-hover .buttons {
  margin-top: 10px;
}
.our-blog-section .blogs-main .content-blogg .on-hover .buttons .orange-btn {
  margin: 0;
  height: 40px;
}
.our-blog-section .blogs-main .content-blogg .on-hover .buttons .orange-btn img {
  width: 15px;
  margin-left: 5px;
}
.our-blog-section .blogs-main .content-blogg:hover .bottom-div {
  display: none;
}
.our-blog-section .blogs-main .content-blogg:hover .on-hover {
  display: flex;
  transition: 0.3s;
}
.enquire-section {
  padding: 3rem 1.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url('../img/about/enquire-bg.png');
  background-repeat: no-repeat;
}
.enquire-section .enq-information {
  display: flex;
  flex-direction: column;
}
.enquire-section .enq-information h3 {
  color: #00607F;
  font-size: 18px;
  text-align: center;
}
.enquire-section .enq-information p {
  margin: 1rem 0;
  font-size: 14px;
  text-align: center;
}
@media (min-width : 768px) {
  .about-us {
    padding: 3rem 2rem;
  }
  .about-us .aboutmain-section .aboutus-left .about-number {
    align-items: flex-start;
  }
  .about-us .aboutmain-section .aboutus-left .about-number .count {
    width: 23%;
    margin-bottom: 0;
  }
  .about-us .aboutmain-section .aboutus-right .timeline li {
    margin-bottom: 0px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
  }
  .about-us .aboutmain-section .aboutus-right .timeline li .content {
    width: 45%;
    margin: 0;
  }
  .about-us .aboutmain-section .aboutus-right .timeline li .timeline-badge {
    top: 49px;
  }
  .about-us .aboutmain-section .aboutus-right .timeline li:nth-child(odd) li {
    justify-content: flex-start;
  }
  .about-us .aboutmain-section .aboutus-right .timeline li:nth-child(even) {
    justify-content: flex-end;
  }
  .keys-section {
    padding: 3rem 2rem;
  }
  .keys-section .keys-main {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .keys-section .keys-main .left-section {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .keys-section .keys-main .left-section .main-heading {
    width: 48%;
  }
  .keys-section .keys-main .left-section .common-div {
    width: 44%;
    margin-left: 3rem;
  }
  .keys-section .keys-main .left-section .common-div:nth-child(3) {
    margin-left: 0;
    width: 35%;
  }
  .keys-section .keys-main .left-section .common-div:nth-child(4) {
    width: 57%;
  }
  .keys-section .keys-main .right-section {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .keys-section .keys-main .right-section .common-container {
    width: 48%;
    margin-right: 3rem;
  }
  .keys-section .keys-main .right-section .common-div {
    width: 44%;
    margin-left: 0;
  }
  .work-facts {
    padding: 3rem 2rem;
    background-image: url('../img/about/bg-work.png');
    background-size: contain;
  }
  .work-facts .container-blog {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .work-facts .container-blog .heading {
    width: 50%;
    order: 1;
  }
  .work-facts .container-blog .heading h2 {
    text-align: left;
  }
  .work-facts .container-blog .heading h2::after {
    background-position: left;
  }
  .work-facts .container-blog .work-main {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    order: 3;
  }
  .work-facts .container-blog .work-main .work-left {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .work-facts .container-blog .work-main .work-left .works-list {
    width: 23%;
    margin-top: 0;
  }
  .work-facts .container-blog .work-main .work-right {
    margin: auto;
    margin-top: 2rem;
    width: 55%;
    align-self: center;
    justify-content: center;
    align-items: center;
  }
  .work-facts .container-blog .work-main .work-right img {
    height: 100%;
  }
  .work-facts .container-blog .buttons {
    order: 2;
    width: 50%;
    margin-top: 0;
    margin-bottom: 1.5rem;
    justify-content: flex-end;
  }
  .work-facts .container-blog .buttons .blue-btn {
    margin-right: 3rem;
  }
  .values-section {
    padding: 3rem 2rem;
  }
  .values-section .main-values {
    flex-direction: row;
    justify-content: space-between;
  }
  .values-section .main-values .common-values:nth-child(1) {
    margin-bottom: 1.5rem;
  }
  .values-section .main-values .common-values:nth-child(2) {
    margin-bottom: 0rem;
  }
  .values-section .main-values .left-values {
    width: 48.5%;
    justify-content: space-between;
  }
  .values-section .main-values .left-values .head-main {
    margin-bottom: 0;
  }
  .values-section .main-values .right-values {
    margin-top: 0;
    width: 48.5%;
  }
  .our-blog-section {
    padding: 3rem 2rem;
  }
  .our-blog-section .blogs-main {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3rem;
  }
  .our-blog-section .blogs-main .content-blogg {
    width: 48%;
  }
  .our-blog-section .blogs-main .content-blogg .bottom-div {
    padding: 1rem;
  }
  .our-blog-section .blogs-main .content-blogg .bottom-div:before {
    content: '';
    height: 81px;
    top: -80px;
  }
  .enquire-section {
    padding: 3rem 2rem;
    background-size: 100% 100%;
  }
}
@media (min-width : 1024px) {
  .about-us .aboutmain-section {
    flex-direction: row;
    justify-content: space-between;
  }
  .about-us .aboutmain-section .heading h2 {
    text-align: left;
  }
  .about-us .aboutmain-section .heading h2::after {
    background-position: left;
  }
  .about-us .aboutmain-section .aboutus-left {
    width: 48%;
  }
  .about-us .aboutmain-section .aboutus-right {
    width: 48%;
    margin-top: 0;
  }
  .keys-section .keys-main .left-section {
    justify-content: space-between;
  }
  .keys-section .keys-main .left-section .common-div:nth-child(3) {
    width: 47%;
  }
  .keys-section .keys-main .left-section .common-div:nth-child(4) {
    width: 45%;
  }
  .keys-section .keys-main .right-section {
    justify-content: space-between;
    align-items: flex-start;
  }
  .keys-section .keys-main .right-section .common-container {
    width: 47%;
  }
  .keys-section .keys-main .right-section .common-div {
    width: 45%;
  }
  .work-facts .container-blog .work-main .work-left {
    width: 60%;
  }
  .work-facts .container-blog .work-main .work-left .works-list {
    width: 50%;
    flex-direction: row;
    justify-content: flex-start;
  }
  .work-facts .container-blog .work-main .work-left .works-list .work-text {
    width: 60%;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .work-facts .container-blog .work-main .work-left .works-list .work-text h3,
  .work-facts .container-blog .work-main .work-left .works-list .work-text p {
    text-align: left;
  }
  .work-facts .container-blog .work-main .work-right {
    margin: 0;
    width: 40%;
  }
  .values-section .main-values .common-values {
    padding: 1.5rem;
  }
  .values-section .main-values .common-values:nth-child(1) {
    margin-bottom: 1.8rem;
    margin-top: 0;
  }
  .values-section .main-values .common-values:nth-child(2) {
    margin-bottom: 0rem;
  }
  .our-blog-section .blogs-main .content-blogg {
    width: 31%;
    margin-bottom: 0;
  }
  .our-blog-section .blogs-main .content-blogg .bottom-div::before {
    height: 70px;
    top: -69px;
  }
  .enquire-section .enq-information h3 {
    font-size: 22px;
  }
  .aboutclients {
    padding-top: 3rem!important;
  }
}
@media (min-width : 1366px) {
  .about-us {
    padding: 4rem 0rem;
  }
  .keys-section {
    padding: 4rem 0rem;
  }
  .keys-section .keys-main {
    justify-content: space-between;
  }
  .keys-section .keys-main .left-section {
    width: 55%;
  }
  .keys-section .keys-main .right-section {
    width: 43%;
    align-items: center;
  }
  .keys-section .keys-main .right-section .common-container {
    width: 50%;
    margin-right: 2rem;
  }
  .keys-section .keys-main .right-section .mission {
    width: 44%;
  }
  .work-facts {
    padding: 4rem 0rem;
    background-size: 100% 100%;
    background-position: right;
  }
  .work-facts .container-blog .work-main .work-left {
    width: 52%;
  }
  .work-facts .container-blog .work-main .work-left .works-list {
    width: 43%;
  }
  .work-facts .container-blog .work-main .work-right {
    width: 36%;
  }
  .values-section {
    padding: 4rem 0rem;
  }
  .our-blog-section {
    padding: 4rem 0rem;
  }
  .our-blog-section .blogs-main .content-blogg {
    width: 30%;
    margin-bottom: 0;
  }
  .our-blog-section .blogs-main .content-blogg .bottom-div {
    padding: 0rem 1rem 2rem 1rem;
  }
  .our-blog-section .blogs-main .content-blogg .bottom-div a {
    font-size: 18px;
  }
  .our-blog-section .blogs-main .content-blogg .bottom-div:before {
    height: 82px;
    top: -80px;
  }
  .our-blog-section .blogs-main .content-blogg .on-hover {
    padding: 2rem 1rem;
  }
  .aboutclients {
    padding-top: 4rem!important;
  }
}
.error-banner {
  background-image: none;
}
.web-error {
  display: flex;
  flex-direction: column;
  background-image: url(../img/404/bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  padding: 3rem 1.5rem;
  background-color: #FFF;
}
.web-error .web-outer {
  display: flex;
  flex-direction: column;
}
.web-error .web-outer .web-inner {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background-color: #FFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
}
.web-error .web-outer .web-inner .image {
  display: flex;
}
.web-error .web-outer .web-inner .image img {
  width: 100%;
}
.web-error .web-outer .web-inner p {
  color: #919191;
  line-height: 1.6;
  text-align: center;
}
.web-error .web-outer .web-inner h2 {
  font-size: 20px;
  padding: 2rem 0;
  text-align: center;
}
.web-error .web-outer .web-inner h2 span,
.web-error .web-outer .web-inner h2 a {
  color: #00607F;
  font-size: 20px;
}
@media (min-width : 768px) {
  .web-error {
    padding: 3rem 2rem;
  }
  .web-error .web-outer {
    justify-content: center;
    align-items: center;
  }
  .web-error .web-outer .web-inner {
    justify-content: center;
    align-items: center;
    width: 62%;
    background-image: url(../img/404/left-bg.svg), url(../img/404/right-bg.svg);
    background-position: calc(23% - 116px) 12px, calc(100% - -2px) -1px;
    background-repeat: no-repeat;
    background-size: 180px,150px;
  }
  .web-error .web-outer .web-inner .image {
    align-items: center;
    justify-content: center;
  }
  .web-error .web-outer .web-inner .image img {
    width: 50%;
  }
  .web-error .web-outer .web-inner p {
    text-align: center;
    width: 80%;
  }
  .web-error .web-outer .web-inner h2 {
    width: 80%;
  }
}
@media (min-width : 1024px) {
  .web-error {
    background-size: cover;
  }
  .web-error .web-outer {
    padding: 4rem;
  }
  .web-error .web-outer .web-inner {
    background-position: calc(23% - 132px) 16px, calc(100% - -2px) -1px;
  }
}
.banner.cart-banner {
  background-image: none;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  background-color: #FFF;
}
.cart-empty .cart-empty-outer {
  display: flex;
  flex-direction: column;
}
.cart-empty .cart-empty-outer .cart-empty-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cart-empty .cart-empty-outer .cart-empty-inner .image {
  display: flex;
  justify-content: center;
}
.cart-empty .cart-empty-outer .cart-empty-inner .image img {
  width: 50%;
}
.cart-empty .cart-empty-outer .cart-empty-inner h2 {
  color: #00607F;
  font-size: 20px;
  padding: 3rem 0 0 0;
  text-align: center;
}
.cart-empty .cart-empty-outer .cart-empty-inner p {
  padding: 1rem 0;
  color: #919191;
  text-align: center;
}
input[type="checkbox"] {
  -webkit-appearance: none;
  /* Hides the default checkbox style */
  height: 15px;
  width: 15px;
  padding: 5px;
  outline: none;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
  background-color: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
  border-radius: 2px;
}
input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #000000;
  font-weight: 700;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
.summary-outer {
  padding: 3rem 1.5rem;
  background-image: url('../img/cart/cart-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
}
.summary-outer .order-heading {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  background-color: #00607F;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
  align-items: center;
  padding: 1rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  width: 100%;
}
.summary-outer .order-heading:last-child {
  margin-bottom: 0;
}
.summary-outer .order-heading .count {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 900;
  width: 30px;
  height: 30px;
  background-color: #FFF;
  border-radius: 100px;
}
.summary-outer .order-heading .img-tick {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #FFF;
  border-radius: 100px;
}
.summary-outer .order-heading .img-tick img {
  width: 58%;
}
.summary-outer .order-heading h3 {
  margin-left: 1rem;
  font-size: 18px;
  color: #FFF;
}
.summary-outer .input-container .input-tag,
.summary-outer .input-container .address {
  padding-left: 46px;
}
.summary-outer .order-main {
  display: none;
}
.summary-outer .active {
  display: flex;
  flex-direction: column;
}
.summary-outer .active .order-heading {
  background-color: #c1c1c1;
}
.summary-outer .active .order-heading .count {
  display: none;
}
.summary-outer .active .order-heading .img-tick {
  display: flex;
}
.summary-outer .active .order-heading h3 {
  color: #000000;
}
.summary-outer .summary-container {
  display: flex;
  flex-direction: column;
}
.summary-outer .summary-container .summary-inner {
  display: flex;
  flex-direction: column;
}
.summary-outer .summary-container .summary-inner .order-inner {
  position: relative;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail {
  padding: 2rem 1rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail h3 {
  font-size: 18px;
  margin-bottom: 1rem;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info {
  display: flex;
  flex-direction: column;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info .booking-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info .booking-list .vat {
  font-weight: 900;
  font-size: 17px;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info .booking-list img {
  margin-right: 15px;
  width: 30px ;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info .booking-list p {
  font-weight: 400;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info .booking-list h2 {
  margin-left: 2rem;
  color: #FEB500;
  text-align: right;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info .booking-list .count {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: 1rem;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info .booking-list .count .digitJS {
  color: #000000;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info .booking-list .count .minus,
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info .booking-list .count .plus {
  margin-right: 10px;
  color: #FFFFFF;
  font-size: 26px;
  font-weight: 800;
  width: 20px;
  height: 20px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: linear-gradient(184deg, #00607f 0%, #20bbc3 100%);
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info .booking-list .count .plus {
  margin-left: 10px;
  font-weight: 600;
  font-size: 18px;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info:last-child {
  margin-bottom: 0;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .more-deligate form .deligate-info {
  margin-top: 1.5rem;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .more-deligate form .deligate-info h3 {
  margin-bottom: 1rem;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .more-deligate form .deligate-info .input-container:last-child {
  margin-bottom: 0;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .add-ons {
  display: flex;
  flex-direction: column;
  border-top: 2px dotted #ccc;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .add-ons h3 {
  margin: 1rem 0;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .add-ons .add-ons-inner {
  display: flex;
  flex-direction: column;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .add-ons .add-ons-inner .add-on-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .add-ons .add-ons-inner .add-on-list img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .good-news {
  background-color: #f2f2f2;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
  margin-top: 1rem;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .good-news .good-news-left {
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .good-news .good-news-left .news-good h3 {
  font-size: 22px;
  color: #00607F;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .good-news .good-news-left .price {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .good-news .good-news-left .price span {
  font-size: 22px;
  font-weight: 800;
}
.summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .good-news .good-news-right {
  display: none;
}
.summary-outer .summary-container .summary-inner .order-inner .close-btn {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: -20px;
  right: -19px;
}
.summary-outer .summary-container .summary-inner .order-inner .close-btn img {
  width: 40px;
}
.summary-outer .summary-container .summary-inner .order-detail {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.summary-outer .summary-container .summary-inner .order-detail .order-main {
  background-color: #FFF;
  width: 100%;
  margin: 1.5rem 0 2rem;
}
.summary-outer .summary-container .summary-inner .order-detail .order-main .voucher-news .voucher {
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
  background-color: #FFF;
}
.summary-outer .summary-container .summary-inner .order-detail .order-main .voucher-news .total-next {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  width: 100%;
}
.summary-outer .summary-container .summary-inner .order-detail .order-main .voucher-news .total-next .total {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem 1rem;
  background-color: #FFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
}
.summary-outer .summary-container .summary-inner .order-detail .order-main .voucher-news .total-next .total .tot {
  font-size: 18px;
  margin-right: 1rem;
  width: 67%;
}
.summary-outer .summary-container .summary-inner .order-detail .order-main .voucher-news .total-next .total p {
  font-size: 24px;
  font-weight: 800;
  width: 35%;
  text-align: right;
  line-height: 1.4;
}
.summary-outer .summary-container .summary-inner .order-detail .order-main .voucher-news .total-next .buttons {
  margin-top: 2rem;
}
.summary-outer .summary-container .summary-inner .your-detail form {
  margin: 2rem 0 1rem;
}
.summary-outer .summary-container .summary-inner .your-detail form .fields {
  background: linear-gradient(185deg, #fcfcfc 0, #f6f6f6 100%);
  padding: 2rem 1rem;
  border-radius: 10px;
}
.summary-outer .summary-container .summary-inner .your-detail form .blue-label {
  color: #00607F;
  font-weight: 800;
}
.summary-outer .summary-container .summary-inner .your-detail form .buttons {
  margin-top: 1rem;
  width: 100%;
  justify-content: space-between;
}
.summary-outer .summary-container .summary-inner .your-detail form .buttons .orange-btn,
.summary-outer .summary-container .summary-inner .your-detail form .buttons .blue-btn {
  min-width: 115px;
}
.summary-outer .summary-container .summary-inner .payment-detail .payment-main .payment-method {
  margin: 1rem 0;
  background-color: #FFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
}
.summary-outer .summary-container .summary-inner .payment-detail .payment-main .payment-method .payment-method-left {
  padding: 2rem 1rem;
}
.summary-outer .summary-container .summary-inner .payment-detail .payment-main .payment-method .payment-method-left .tick-box {
  display: flex;
  flex-direction: row;
  justify-self: flex-start;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.summary-outer .summary-container .summary-inner .payment-detail .payment-main .payment-method .payment-method-left .tick-box label {
  cursor: pointer;
}
.summary-outer .summary-container .summary-inner .payment-detail .payment-main .payment-method .payment-method-left .tick-box input {
  margin-right: 10px;
}
.summary-outer .summary-container .summary-inner .payment-detail .payment-main .payment-method .payment-method-left .payment-error {
  color: red;
  font-weight: 700;
}
.summary-outer .summary-container .summary-inner .payment-detail .payment-main .payment-method .payment-method-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
}
.summary-outer .summary-container .summary-inner .payment-detail .payment-main .payment-method .payment-method-right img {
  width: 200px;
}
.summary-outer .summary-container .summary-inner .payment-detail .payment-main .buttons {
  width: 100%;
  margin-bottom: 2rem;
  justify-content: space-between;
}
.summary-outer .summary-container .summary-inner .payment-detail .payment-main .buttons .orange-btn,
.summary-outer .summary-container .summary-inner .payment-detail .payment-main .buttons .blue-btn {
  min-width: 115px;
}
.summary-outer .summary-container .summary-inner .delegate-detail .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.summary-outer .summary-container .summary-inner .delegate-detail .content h2 {
  color: #00607F;
  font-size: 20px;
}
.summary-outer .summary-container .summary-inner .delegate-detail .content p {
  font-weight: 800;
}
.summary-outer .summary-container .summary-inner .delegate-detail .order-main {
  margin: 1.5rem 0 2rem;
  padding: 1rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
}
.summary-outer .summary-container .summary-inner .delegate-detail .order-main .close-btn {
  top: -11px;
  right: -11px;
}
.summary-outer .summary-container .summary-inner .delegate-detail .order-main form {
  margin-top: 2rem;
}
.summary-outer .summary-container .summary-inner .delegate-detail .buttons {
  margin-top: 1rem;
  width: 100%;
  justify-content: space-between;
}
.summary-outer .summary-container .summary-inner .delegate-detail .buttons .orange-btn,
.summary-outer .summary-container .summary-inner .delegate-detail .buttons .blue-btn {
  min-width: 115px;
}
.summary-outer .summary-container .dates {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  padding: 2rem;
  background-color: #F1F1F1;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
}
.summary-outer .summary-container .dates .heading {
  margin-bottom: 0;
}
.summary-outer .summary-container .dates .all-dates {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  margin-top: 1rem;
  border-bottom: 2px dashed #C0C0C0;
}
.summary-outer .summary-container .dates .all-dates:nth-child(1) {
  margin-top: 0;
}
.summary-outer .summary-container .dates .all-dates a:nth-child(3),
.summary-outer .summary-container .dates .all-dates a:nth-child(4) {
  width: 50%;
}
.summary-outer .summary-container .dates .all-dates a:nth-child(4) {
  display: flex;
  justify-content: flex-end;
  color: #000000;
  font-weight: 600;
}
.summary-outer .summary-container .dates .all-dates h3 {
  color: #00607F;
  font-size: 16px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
@media (min-width : 768px) {
  .cart-empty {
    padding: 3rem 2rem;
  }
  .cart-empty .cart-empty-outer {
    justify-content: center;
    align-items: center;
  }
  .cart-empty .cart-empty-outer .cart-empty-inner {
    justify-content: center;
    align-items: center;
    width: 62%;
  }
  .cart-empty .cart-empty-outer .cart-empty-inner .image {
    align-items: center;
    justify-content: center;
  }
  .summary-outer {
    padding: 3rem 2rem;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info .booking-list {
    width: 50%;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info .counter-list {
    width: 100%;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info .counter-list p {
    width: 42%;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info .book-list {
    width: 100%;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info .book-list h2 {
    text-align: left;
    margin-left: 0;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .more-deligate {
    margin-bottom: 0;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .more-deligate form .deligate-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .more-deligate form .deligate-info h3 {
    width: 100%;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .more-deligate form .deligate-info .input-container {
    width: 48%;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .add-ons .add-ons-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .add-ons .add-ons-inner .add-on-list {
    width: 48%;
    margin-right: 0.5rem;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .good-news {
    position: relative;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .good-news .good-news-left {
    width: 70%;
    flex-direction: row;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .good-news .good-news-left .news-good {
    width: 50%;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .good-news .good-news-left .price {
    width: 48%;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .good-news .good-news-right {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url('../img/cart/good-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    width: 30%;
    justify-content: flex-end;
    align-items: flex-start;
    height: 100%;
    padding: 1rem 2rem;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .good-news .good-news-right p {
    line-height: 1.4;
    color: #FFF;
    font-weight: 800;
    text-align: right;
  }
  .summary-outer .summary-container .summary-inner .order-detail .order-main .voucher-news {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .summary-outer .summary-container .summary-inner .order-detail .order-main .voucher-news .voucher {
    width: 48%;
    margin-bottom: 0;
  }
  .summary-outer .summary-container .summary-inner .order-detail .order-main .voucher-news .total-next {
    margin-bottom: 0;
    flex-direction: row;
    justify-content: space-between;
  }
  .summary-outer .summary-container .summary-inner .order-detail .order-main .voucher-news .total-next .total {
    width: 290px;
  }
  .summary-outer .summary-container .summary-inner .order-detail .order-main .voucher-news .total-next .buttons {
    margin-top: 0;
  }
  .summary-outer .summary-container .summary-inner .your-detail form .fields {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2rem;
  }
  .summary-outer .summary-container .summary-inner .your-detail form .fields .input-container {
    width: 48%;
  }
  .summary-outer .summary-container .summary-inner .your-detail form .fields .message {
    width: 100%;
  }
  .summary-outer .summary-container .summary-inner .payment-detail .payment-main .payment-method {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
  }
  .summary-outer .summary-container .summary-inner .payment-detail .payment-main .payment-method .payment-method-left {
    padding: 0;
    width: 75%;
  }
  .summary-outer .summary-container .summary-inner .payment-detail .payment-main .payment-method .payment-method-right {
    width: 30%;
    padding-bottom: 0;
  }
  .summary-outer .summary-container .summary-inner .payment-detail .payment-main .fields {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 1rem 0;
  }
  .summary-outer .summary-container .summary-inner .payment-detail .payment-main .fields .input-container {
    width: 48%;
  }
  .summary-outer .summary-container .summary-inner .delegate-detail .order-main .deligate-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .summary-outer .summary-container .summary-inner .delegate-detail .order-main .deligate-info .input-container {
    width: 48%;
  }
}
@media (min-width : 1024px) {
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail {
    padding: 2rem;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info {
    justify-content: space-between;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info .booking-list {
    width: 33%;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .add-ons .add-ons-inner .add-on-list {
    width: 32%;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .good-news .good-news-left {
    padding: 2rem;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .good-news .good-news-left .news-good {
    width: 85%;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .good-news .good-news-left .price {
    width: 40%;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .good-news .good-news-right {
    width: 35%;
    padding-right: 1rem;
  }
  .summary-outer .summary-container .summary-inner .order-detail .order-main .voucher-news .voucher {
    padding: 2rem 1rem;
    flex-direction: row;
    justify-content: space-between;
  }
  .summary-outer .summary-container .summary-inner .order-detail .order-main .voucher-news .voucher .buttons .orange-btn {
    padding: 10px 18px;
  }
  .summary-outer .summary-container .summary-inner .order-detail .order-main .voucher-news .total-next {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .summary-outer .summary-container .summary-inner .order-detail .order-main .voucher-news .total-next .total {
    width: 45%;
    margin-bottom: 0;
  }
  .summary-outer .summary-container .summary-inner .order-detail .order-main .voucher-news .total-next .total p {
    font-size: 18px;
  }
  .summary-outer .summary-container .summary-inner .your-detail form {
    width: 100%;
    margin: 2rem auto;
  }
}
@media (min-width : 1366px) {
  .cart-empty {
    padding: 4rem 0rem;
    padding-top: 6rem;
  }
  .summary-outer {
    padding: 4rem 0rem;
  }
  .summary-outer .summary-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .summary-outer .summary-container .summary-inner {
    width: 62%;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .booking-info .booking-list {
    width: 48%;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .good-news .good-news-left {
    padding: 1rem 2rem;
  }
  .summary-outer .summary-container .summary-inner .order-inner .course-booking-detail .good-news .good-news-right {
    background-size: contain;
    background-position: right;
  }
  .summary-outer .summary-container .summary-inner .order-detail .order-main .voucher-news .total-next {
    width: 100%;
  }
  .summary-outer .summary-container .dates {
    width: 34%;
    margin-top: 0;
  }
}
.banner.search-banner .banner-section .banner-content .right-image {
  background-image: url(../img/resource/resources.png) !important;
}
.course-search {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
}
.course-search .search-full {
  display: flex;
  flex-direction: column;
}
.course-search .search-full .search-top {
  display: flex;
}
.course-search .search-full .search-left {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.course-search .search-full .search-left .search {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 2rem;
}
.course-search .search-full .search-left .search .form-search {
  display: flex;
  width: 100%;
}
.course-search .search-full .search-left .search .form-search .search-content {
  width: 100%;
  position: relative;
  top: 0;
  outline: 0;
  background-color: #fff;
  box-shadow: 0 0 15px silver;
}
.course-search .search-full .search-left .search .form-search .search-content .search-input {
  width: 100%;
  position: relative;
  top: 0;
  outline: 0;
  background-color: #fff;
  padding: 15px;
  padding-right: 60px;
  border: 0;
  border-radius: 4px;
}
.course-search .search-full .search-left .search .form-search .search-content .search-button {
  background-color: #00607F;
  border: 0;
  right: 0px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  position: absolute;
  top: 0px;
  bottom: 0;
  width: 42px;
  outline: 0;
  padding: 11px 6px;
  margin: 0;
  color: #fff;
  font-weight: 500;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.course-search .search-full .search-left .search .form-search .search-content .search-button::before {
  content: '';
  width: 22px;
  height: 49px;
  background: #00607F;
  transform: skewX(156deg);
  left: -11px;
  position: absolute;
  z-index: -1;
}
.course-search .search-full .search-left .search .form-search .search-content .search-button img {
  width: 20px;
}
.course-search .search-full .search-left .search p {
  font-size: 16px;
  font-weight: 700;
  color: #00607F;
  padding-top: 2rem;
}
.course-search .search-full .search-left .search-left-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.course-search .search-full .search-left .search-left-list:last-child {
  margin-bottom: 0;
}
.course-search .search-full .search-left .search-left-list .top-left-inner {
  display: flex;
  flex-direction: column;
}
.course-search .search-full .search-left .search-left-list .top-left-inner .blue-heading {
  margin-bottom: 0;
}
.course-search .search-full .search-left .search-left-list .top-left-inner .blue-heading .search-head {
  font-size: 20px;
  color: #00607F;
}
.course-search .search-full .search-left .search-left-list .top-left-inner .blue-heading .search-head-orange {
  color: #FEB500;
  font-size: 20px;
}
.course-search .search-full .search-left .search-left-list .top-left-inner p {
  color: #919191;
}
.course-search .search-full .search-left .search-left-list .top-left-inner p img {
  width: 140px;
  height: inherit;
}
.course-search .search-full .search-left .search-left-list .top-left-inner ul {
  margin: 0;
}
.course-search .search-full .search-left .search-left-list .top-left-inner ul li {
  padding-bottom: 0.5rem;
  color: #919191;
}
.course-search .search-full .search-left .search-left-list .top-left-inner a {
  color: #00607F;
  font-weight: 700;
  padding: 1rem 0;
  word-break: break-word;
}
.course-search .search-full .search-left .search-left-list .top-left-inner h1,
.course-search .search-full .search-left .search-left-list .top-left-inner h2,
.course-search .search-full .search-left .search-left-list .top-left-inner h3,
.course-search .search-full .search-left .search-left-list .top-left-inner h4,
.course-search .search-full .search-left .search-left-list .top-left-inner h5 {
  font-size: 14px;
}
.course-search .search-full .search-left .search-left-list .bottom-left-inner {
  display: flex;
  flex-direction: column;
  background-color: #F2F2F2;
  padding: 1.5rem;
  border-radius: 8px;
}
.course-search .search-full .search-left .search-left-list .bottom-left-inner .content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
}
.course-search .search-full .search-left .search-left-list .bottom-left-inner .content .image {
  width: 42px;
  background-color: #FFF;
  height: fit-content;
  display: flex;
  padding: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.course-search .search-full .search-left .search-left-list .bottom-left-inner .content .image img {
  width: 22px;
}
.course-search .search-full .search-left .search-left-list .bottom-left-inner .content .content-inner {
  width: 75%;
  display: flex;
  flex-direction: column;
}
.course-search .search-full .search-left .search-left-list .bottom-left-inner .content .content-inner .inner-detail {
  display: flex;
  flex-direction: column;
}
.course-search .search-full .search-left .search-left-list .bottom-left-inner .content .content-inner .inner-detail a {
  color: #00607F;
  font-size: 16px;
  font-weight: 600;
}
.course-search .search-full .search-left .search-left-list .bottom-left-inner .content .content-inner .inner-detail p {
  color: #919191;
  padding: 1rem 0;
  line-height: 1.5;
}
.course-search .search-full .search-left .search-left-list .bottom-left-inner .content .content-inner .buttons {
  width: 100%;
  justify-content: flex-start;
}
.course-search .search-full .search-left .search-left-list .bottom-left-inner .link {
  display: flex;
  flex-direction: column;
  padding-top: 1.5rem;
  border-top: 2px solid #c6c6c6;
}
.course-search .search-full .search-left .search-left-list .bottom-left-inner .link a {
  word-break: break-word;
  font-size: 12px;
  color: #00607F;
  font-weight: 700;
}
.course-search .search-full .search-left .search-left-list .bottom-left-inner .link span {
  display: flex;
  padding: 1rem 0 0 0;
}
.course-search .search-full .search-left .search-left-list .bottom-left-inner .link span img {
  width: 20px;
}
.course-search .search-full .search-left .search-left-list .bottom-left-inner .link span p {
  font-size: 12px;
  padding-left: 8px;
  color: #00607F;
}
.course-search .search-full .search-right {
  display: flex;
  flex-direction: column;
}
.course-search .search-full .search-right .blog-category {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 20px #d6d6d6;
  padding: 2rem;
  margin-bottom: 2rem;
}
.course-search .search-full .search-right .blog-category .blue-heading {
  margin-bottom: 2rem;
  justify-content: center;
  align-items: center;
}
.course-search .search-full .search-right .blog-category .blue-heading h1 span {
  font-size: 26px;
  color: #FC9701;
}
.course-search .search-full .search-right .blog-category .blue-heading h1::after {
  background-position: center;
}
.course-search .search-full .search-right .blog-category .blog-list {
  display: flex;
  flex-direction: column;
  padding-left: 4px!important;
  width: 100%!important;
}
.course-search .search-full .search-right .blog-category .blog-list .blog-name {
  display: flex;
  flex-direction: row;
  padding: 0.5rem;
  border-radius: 50px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 12px #d6d6d6;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: #000000;
  font-weight: 900;
}
.course-search .search-full .search-right .blog-category .blog-list .blog-name .round {
  display: flex;
  border-radius: 77px;
  background-color: #f2f2f2;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}
.course-search .search-full .search-right .blog-category .blog-list .blog-name .round p {
  color: #00607F;
}
.course-search .search-full .search-right .blog-category .blog-list .blog-name:last-child {
  margin-bottom: 0;
}
.course-search .search-full .search-right .form-container {
  display: flex;
  flex-direction: column;
}
.course-search .search-full .search-right .form-container .subscribe {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px #c0c0c0;
  padding: 1rem;
  position: relative;
}
.course-search .search-full .search-right .form-container .subscribe::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 226px;
  height: 115px;
  background-image: url(../img/search/offer-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top;
  z-index: -1;
}
.course-search .search-full .search-right .form-container .subscribe .top {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.course-search .search-full .search-right .form-container .subscribe .top .image {
  width: 20%;
}
.course-search .search-full .search-right .form-container .subscribe .top .image img {
  width: 60px;
}
.course-search .search-full .search-right .form-container .subscribe .top .sub-content {
  width: 70%;
}
.course-search .search-full .search-right .form-container .subscribe .top .sub-content p {
  line-height: 1.6;
  font-size: 12px;
  text-align: right;
  color: #00607F;
}
.course-search .search-full .search-right .form-container .subscribe .bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
}
.course-search .search-full .search-right .form-container .subscribe .bottom h3 {
  font-size: 18px;
  margin: 1rem 0;
  color: #00607F;
}
.course-search .search-full .search-right .form-container .subscribe .bottom form {
  width: 100%;
}
.course-search .search-full .search-right .form-container .subscribe .bottom form .input-container {
  margin-bottom: 0;
}
.course-search .search-full .search-right .form-container .subscribe .bottom form .input-container .input-tag {
  color: #606060;
  border: 1px solid #5D5B5B;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
}
.course-search .search-full .search-right .form-container .subscribe .bottom .buttons {
  margin-top: 1rem;
}
.course-search .search-full .search-right .form-container .subscribe .bottom .buttons .blue-btn {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  background-color: #00607F;
  background-image: none;
}
.course-search .search-full .search-right .form-container .form-section {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 20px #c0c0c0;
  padding: 2rem 1.5rem;
}
.course-search .search-full .search-right .form-container .form-section .blue-heading {
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.course-search .search-full .search-right .form-container .form-section form .input-container .input-tag {
  padding-left: 46px;
  font-size: 13px;
}
.course-search .search-full .search-right .form-container .form-section form .input-container textarea {
  padding-left: 46px;
  font-size: 13px;
}
.not-found {
  display: flex;
  padding: 3rem 1.5rem;
  flex-direction: column;
  box-shadow: 0px 0px 10px #cdcdcd;
  background-color: #FFFFFF;
  border: 4px solid #F2F2F2;
  margin-top: 2rem;
}
.not-found .heading {
  margin-bottom: 1rem;
}
.not-found p {
  color: #919191 !important;
  text-align: center;
  margin-bottom: 0.5rem;
  padding-top: 0 !important;
}
.not-found p a {
  color: #00607F;
  font-weight: bold;
}
.not-found .buttons {
  justify-content: center;
}
.not-found .para {
  margin-bottom: 0;
}
@media (min-width : 375px) {
  .course-search .search-full .search-right .form-container .subscribe:before {
    width: 282px;
  }
}
@media (min-width : 768px) {
  .course-search {
    padding: 3rem 2rem;
  }
  .course-search .search-full .search-left .search-left-list .bottom-left-inner .content {
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1rem;
  }
  .course-search .search-full .search-left .search-left-list .bottom-left-inner .content .content-inner {
    width: 92%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .course-search .search-full .search-left .search-left-list .bottom-left-inner .content .content-inner .inner-detail {
    width: 72%;
  }
  .course-search .search-full .search-left .search-left-list .bottom-left-inner .content .content-inner .inner-detail p {
    padding-bottom: 0;
  }
  .course-search .search-full .search-left .search-left-list .bottom-left-inner .content .content-inner .buttons {
    width: 153px;
  }
  .course-search .search-full .search-left .search-left-list .bottom-left-inner .link {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
  }
  .course-search .search-full .search-left .search-left-list .bottom-left-inner .link span {
    padding: 0;
  }
  .course-search .search-full .search-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .course-search .search-full .search-right .blog-category {
    width: 48%;
  }
  .course-search .search-full .search-right .form-container {
    width: 48%;
  }
  .course-search .search-full .search-right .form-container .form-section form .input-container .input-tag {
    padding-left: 46px;
  }
  .course-search .search-full .search-right .form-container .form-section form .input-container textarea {
    padding-left: 46px;
  }
}
@media (min-width : 1024px) {
  .course-search .search-full {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .course-search .search-full .search-top {
    width: 100%;
  }
  .course-search .search-full .search-left {
    width: 62%;
    margin-bottom: 0;
  }
  .course-search .search-full .search-left .search-left-list .bottom-left-inner .content .content-inner {
    width: 90%;
  }
  .course-search .search-full .search-right {
    width: 32%;
    flex-direction: column;
    justify-content: flex-start;
    position: sticky;
    top: 0;
    height: fit-content;
  }
  .course-search .search-full .search-right .blog-category {
    width: 100%;
  }
  .course-search .search-full .search-right .form-container {
    width: 100%;
  }
  .course-search .search-full .search-right .form-container .subscribe:before {
    width: 264px;
  }
}
@media (min-width : 1366px) {
  .course-search .search-full .search-left {
    width: 64%;
  }
  .course-search .search-full .search-left .search-left-list .bottom-left-inner .content .content-inner {
    width: 92%;
  }
  .course-search .search-full .search-right {
    width: 30%;
  }
  .course-search .search-full .search-right .form-container .subscribe:before {
    width: 284px;
  }
}
.static-banner .banner-section .banner-content .right-image {
  background-image: url(../img/master/static.png) !important;
}
.quick-links p {
  margin: 5px 0;
}
.quick-links .heading h2 {
  font-size: 26px;
}
.quick-links h2 {
  color: #00607F;
  font-size: 18px;
  margin: 10px 0;
}
.quick-links ul,
.quick-links ol {
  padding-left: 20px;
  color: #919191;
}
.quick-links ul li,
.quick-links ol li {
  margin-bottom: 10px;
}
.quick-links a {
  color: #00607F;
}
.quick-links a:hover {
  color: #FC9701;
}
@media (min-width : 768px) {
  .quick-link p,
  .quick-link span {
    font-size: 12px;
  }
}
.course-detail .enquiry {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.098);
  align-items: center;
  padding: 2rem 1.5rem;
  background-color: #FFF;
  margin-bottom: 0;
  width: 100%;
}
.course-detail .enquiry .blue-heading h2 {
  color: #00607F;
}
.course-detail .enquiry .blue-heading h2:after {
  background-image: url('../img/master/blue-orange.png');
}
.course-detail .enquiry form .input-container .input-tag,
.course-detail .enquiry form .input-container .address {
  padding-left: 46px;
}
.course-detail .enquiry form .input-container .input-tag select::-ms-expand,
.course-detail .enquiry form .input-container .address select::-ms-expand {
  display: none;
}
.course-detail .enquiry .buttons {
  margin-top: 1rem;
}
.course-schedule {
  padding: 3rem 1.5rem;
  background-image: url(../img/master/adon-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.course-schedule .online-booking {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: fit-content;
  border-radius: 12px;
}
.course-schedule .online-booking .addon {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.course-schedule .online-booking .addon .black-heading {
  margin-bottom: 1rem;
}
.course-schedule .online-booking .addon .black-heading h2 {
  color: black;
  font-size: 20px;
  padding-bottom: 0;
}
.course-schedule .online-booking .addon .black-heading h2:after {
  display: none;
}
.course-schedule .online-booking .addon .feature-sec {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.course-schedule .online-booking .addon .feature-sec .online-feature {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 9px 0;
}
.course-schedule .online-booking .addon .feature-sec .online-feature .feature-tickbox {
  display: flex;
  margin-right: 12px;
}
.course-schedule .online-booking .addon .feature-sec .online-feature .feature-tickbox label {
  cursor: pointer;
}
.course-schedule .online-booking .addon .feature-sec .online-feature .feature-tickbox label input[type="checkbox"] {
  display: none;
}
.course-schedule .online-booking .addon .feature-sec .online-feature .feature-tickbox label input[type="checkbox"] + .cr {
  position: relative;
  background: #FFF;
  width: 22px;
  height: 22px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
}
.course-schedule .online-booking .addon .feature-sec .online-feature .feature-tickbox label input[type="checkbox"] + .cr .cr-icon {
  position: absolute;
  font-size: 16px;
  line-height: 0;
  top: 48%;
  left: 20%;
  color: #00607F;
  transform: scale(3) rotateZ(-20deg);
  opacity: 0;
  transition: all 0.3s ease-in;
}
.course-schedule .online-booking .addon .feature-sec .online-feature .feature-tickbox label input[type="checkbox"]:checked + .cr .cr-icon {
  transform: scale(1) rotateZ(0deg);
  opacity: 1;
}
.course-schedule .online-booking .addon .feature-sec .online-feature .feature-text {
  color: #707070;
  font-size: 15px;
}
.course-schedule .online-booking .package-text {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.course-schedule .online-booking .package-text .black-heading h2 {
  font-size: 20px;
  color: black;
  padding-bottom: 0;
}
.course-schedule .online-booking .package-text .black-heading h2:after {
  display: none;
}
.course-schedule .online-booking .package-text .package-off {
  display: flex;
  flex-direction: column;
}
.course-schedule .online-booking .package-text .package-off p {
  background: url(../../img/course/tick-mobile.png) no-repeat 0 8px transparent;
  padding: 3px 0 4px 26px;
  background-size: 20px;
}
.course-schedule .online-booking .price-addon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 0;
}
.course-schedule .online-booking .price-addon .addon-text {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background-image: linear-gradient(190deg, #FFFFFF, #F3F3F3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.21);
  width: 100%;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
}
.course-schedule .online-booking .price-addon .addon-text h2 {
  font-size: 20px;
  color: #000000;
  text-align: center;
}
.course-schedule .online-booking .price-addon .addon-text .total-price {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #FEB500;
  font-weight: 500;
  font-size: 35px;
  line-height: 1.4;
  padding: 1.5rem 0;
}
.course-schedule .online-booking .price-addon .addon-text .total-price span {
  font-weight: 500;
  font-size: 35px;
}
.course-schedule .online-booking .price-addon .addon-text .buttons {
  width: 100%;
  flex-direction: column;
}
.course-schedule .online-booking .price-addon .addon-text .buttons .orange-btn {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.onlinecourseclients {
  padding: 3rem 1.5rem !important;
}
@media (min-width : 768px) {
  .course-detail .enquiry {
    width: 60%;
    margin: 0 auto;
  }
  .course-schedule {
    padding: 3rem 2rem;
  }
  .course-schedule .online-booking {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .course-schedule .online-booking .addon {
    order: 1;
    width: 45%;
    margin-bottom: 0;
  }
  .course-schedule .online-booking .package-text {
    order: 3;
    width: 100%;
    margin-top: 2rem;
  }
  .course-schedule .online-booking .price-addon {
    order: 2;
    width: 45%;
  }
  .course-schedule .online-booking .price-addon .addon-text .buttons {
    display: flex;
    flex-direction: row;
  }
  .course-schedule .online-booking .price-addon .addon-text .buttons .orange-btn,
  .course-schedule .online-booking .price-addon .addon-text .buttons .blue-btn {
    padding: 10px 15px;
    margin: 0;
  }
  .course-schedule .online-booking .price-addon .addon-text .buttons .blue-btn {
    margin-right: 2rem;
  }
  .onlinecourseclients {
    padding: 3rem 2rem !important;
  }
}
@media (min-width : 1024px) {
  .course-detail .enquiry {
    width: 34%;
    position: sticky;
    top: 60px;
    height: fit-content;
  }
  .course-schedule .online-booking {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .course-schedule .online-booking .addon {
    order: 1;
    width: 38%;
  }
  .course-schedule .online-booking .package-text {
    order: 2;
    width: 62%;
    margin-top: 0;
  }
  .course-schedule .online-booking .price-addon {
    order: 3;
    width: 100%;
    align-items: center;
  }
  .course-schedule .online-booking .price-addon .addon-text {
    width: 47%;
  }
}
@media (min-width : 1366px) {
  .course-detail .enquiry {
    top: 90px;
  }
  .course-schedule {
    padding: 4rem 0rem;
  }
  .course-schedule .online-booking .addon {
    order: 1;
    width: 20%;
  }
  .course-schedule .online-booking .package-text {
    order: 3;
    width: 42%;
  }
  .course-schedule .online-booking .price-addon {
    order: 2;
    width: 30%;
    align-self: flex-start;
  }
  .course-schedule .online-booking .price-addon .addon-text {
    width: 100%;
  }
  .onlinecourseclients {
    padding: 4rem 0rem !important;
  }
}
.summary-section {
  padding: 3rem 1.5rem;
  background-image: url(../img/cart/bg-circle.png);
  background-size: 205px;
  background-position-y: 10px;
  background-repeat: no-repeat;
  background-position: right;
  background-position: calc(100% - -17px) 57px;
}
.summary-section .summary {
  display: flex;
  flex-direction: column;
  background-color: rgba(250, 250, 250, 0.8);
  box-shadow: 0 2px 9px #c1c1c1;
  padding: 1rem;
}
.summary-section .summary .summary-outers {
  display: flex;
  flex-direction: column;
  margin-bottom: 0rem;
  padding: 1rem;
}
.summary-section .summary .summary-outers .black-heading h2 {
  color: #FC9701;
}
.summary-section .summary .summary-outers .summary-content-outer {
  display: flex;
  flex-direction: column;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
  background-color: #FFF;
  box-shadow: 0 2px 9px #c1c1c1;
  padding: 1rem 2rem;
  position: relative;
  min-height: 150px;
  justify-content: center;
}
.summary-section .summary .summary-outers .summary-content-outer .detail {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}
.summary-section .summary .summary-outers .summary-content-outer .detail .detail-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}
.summary-section .summary .summary-outers .summary-content-outer .detail .detail-content h3 {
  font-size: 14px;
  width: 100%;
  display: flex;
  align-items: center;
}
.summary-section .summary .summary-outers .summary-content-outer .detail .detail-content p {
  font-size: 14px;
  word-break: break-all;
  width: 100%;
  display: flex;
  align-items: center;
}
.summary-section .summary .summary-outers .summary-content-outer .detail .detail-content:last-child {
  margin-bottom: 0;
}
.summary-section .summary .summary-outers .triangle-count {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: -19px;
  left: -4px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 16px;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 30px solid #4B4B4B;
  transform: rotate(-135deg);
}
.summary-section .summary .summary-outers .triangle-count p {
  position: absolute;
  right: 15px;
  transform: rotate(135deg);
  color: #FFF;
}
.summary-section .summary .summary-outers .total-price {
  display: flex;
  flex-direction: row;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 50px 0 0 50px;
  box-shadow: 0 2px 9px #c1c1c1;
  width: 100%;
  align-items: center;
}
.summary-section .summary .summary-outers .total-price h2 {
  font-size: 24px;
  width: 78px;
  margin-right: 0.5rem;
}
.summary-section .summary .summary-outers .total-price p {
  font-size: 20px;
  width: 130px;
}
.summary-section .summary .summary-outers .delegate-list {
  display: flex;
  flex-direction: column;
  background-color: #F6F6F6;
  padding: 1rem 1.5rem;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
}
.summary-section .summary .summary-outers .delegate-list .summary-heading {
  margin-bottom: 1rem;
  width: 100%;
  padding-top: 0;
}
.summary-section .summary .summary-outers .delegate-list .summary-heading h2 {
  background-size: 47% 21%;
}
.summary-section .summary .summary-outers:last-child {
  width: 100%;
}
.summary-section .form-dataline {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-top: 2rem;
}
.summary-section .form-dataline label a {
  color: #00607F;
  font-weight: 900;
}
.summary-section .buttons {
  flex-wrap: wrap;
}
.summary-section .buttons button {
  margin-bottom: 1rem;
}
.summary-section .buttons button:last-child {
  margin-bottom: 0;
}
.summary-section .buttons .orange-btn,
.summary-section .buttons .blue-btn {
  margin: 1rem 0;
}
.summary-section .buttons .orange-btn i,
.summary-section .buttons .blue-btn i {
  margin-left: 10px;
  font-size: 18px;
}
@media (min-width : 768px) {
  .summary-section {
    padding: 3rem 2rem;
    background-size: 335px;
    background-position: calc(100% - -1px) 100px;
  }
  .summary-section .summary {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2rem;
  }
  .summary-section .summary .summary-outers {
    width: 48%;
  }
  .summary-section .summary .summary-outers .summary-content-outer .detail .detail-content {
    flex-direction: row;
    justify-content: space-between;
  }
  .summary-section .summary .summary-outers .summary-content-outer .detail .detail-content h3 {
    width: 50%;
  }
  .summary-section .summary .summary-outers .summary-content-outer .detail .detail-content p {
    width: 48%;
  }
  .summary-section .summary .summary-outers .delegate-list {
    padding: 1rem 2rem;
    margin-top: 1rem;
  }
  .summary-section .summary .summary-outers .delegate-list:last-child .summary-heading {
    width: 40%;
  }
  .summary-section .summary .summary-outers:nth-child(1) .summary-content-outer {
    padding: 2rem 2rem;
  }
  .summary-section .summary .summary-outers:nth-child(2) .summary-content-outer {
    padding: 1rem 2rem;
  }
  .summary-section .summary .summary-outers:nth-child(3) .summary-content-outer {
    padding: 3rem 2rem;
  }
  .summary-section .summary .summary-outers:nth-child(4) .summary-content-outer {
    padding: 2rem 2rem;
  }
  .summary-section .buttons {
    justify-content: space-between;
    margin-top: 2rem;
  }
  .summary-section .buttons .orange-btn {
    margin: 0;
  }
}
@media (min-width : 1024px) {
  .summary-section .summary .summary-outers .summary-heading {
    width: 70%;
  }
  .summary-section .summary .summary-outers .summary-content-outer {
    padding: 2rem 2rem;
  }
  .summary-section .summary .summary-outers .summary-content-outer .detail .detail-content h3 {
    width: 40%;
  }
  .summary-section .summary .summary-outers .summary-content-outer .detail .detail-content p {
    width: 60%;
  }
  .summary-section .summary .summary-outers .triangle-count {
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-left: 35px solid #4B4B4B;
    top: -23px;
    left: -6px;
  }
  .summary-section .summary .summary-outers .triangle-count p {
    right: 18px;
  }
  .summary-section .summary .summary-outers .delegate-list {
    padding: 2rem;
    padding-top: 1rem;
  }
}
@media (min-width : 1366px) {
  .summary-section {
    padding: 4rem 0rem;
  }
  .summary-section .summary .summary-outers .summary-content-outer .detail .detail-content h3 {
    width: 30%;
  }
  .summary-section .summary .summary-outers .summary-content-outer .detail .detail-content p {
    width: 70%;
  }
  .summary-section .summary .summary-outers .summary-heading {
    width: 40%;
  }
  .summary-section .summary .summary-outers .delegate-list .summary-heading h2 {
    background-size: 32% 23%;
  }
}
.thanks .static-text {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0 0 10px #dadada;
  border-radius: 10px;
  border: 2px solid #00607F;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
}
.thanks .static-text .heading {
  margin-bottom: 0;
}
.thanks .static-text .heading h2 {
  font-size: 30px;
  padding-bottom: 0;
  margin: 0;
  text-align: center;
}
.thanks .static-text .heading h2::after {
  content: none;
}
.thanks .static-text .heading h2 span {
  font-size: 24px;
}
.thanks .static-text p {
  color: #000000;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
.thanks .static-text .buttons {
  margin-top: 1.5rem;
}
.thanks .static-text .buttons a:hover {
  color: #FFF;
}
@media (min-width : 768px) {
  .thanks .static-text {
    width: 550px;
    margin: auto;
    background-image: url(../img/master/thank-bg.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 100%;
  }
}
@media (min-width : 1366px) {
  .thanks {
    padding: 6rem 0;
  }
}
