/************ TABLE OF CONTENTS ***************

    01. Name CSS



**********************************************/
/*


*/
/*----------------------------------------*/
/*  01. Theme default CSS
/*----------------------------------------*/
@font-face {
  font-family: "Proxima Nova";
  src:
    url("/assets/fonts/ProximaNova-Semibold.woff2") format("woff2"),
    url("/assets/fonts/ProximaNova-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src:
    url("/assets/fonts/ProximaNova-Bold.woff2") format("woff2"),
    url("/assets/fonts/ProximaNova-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src:
    url("/assets/fonts/ProximaNova-Regular.woff2") format("woff2"),
    url("/assets/fonts/ProximaNova-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Proxima Nova", sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: #133f46;
  line-height: 27px;
}
@media only screen and (max-width: 1499px) {
  body {
    font-size: 16px;
    line-height: 25px;
  }
}

a {
  text-decoration: none;
}

.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

a,
.btn,
button,
span,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Proxima Nova", sans-serif;
  color: #133f46;
  margin-top: 0px;
  font-weight: 700;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.fs-1 {
  font-size: 48px !important;
}
@media only screen and (max-width: 1399px) {
  .fs-1 {
    font-size: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .fs-1 {
    font-size: 28px !important;
  }
}

.fs-2 {
  font-size: 35px !important;
}
@media only screen and (max-width: 1399px) {
  .fs-2 {
    font-size: 32px !important;
  }
}
@media only screen and (max-width: 767px) {
  .fs-2 {
    font-size: 24px !important;
  }
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

p {
  font-family: "Proxima Nova", sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: #133f46;
  margin-bottom: 15px;
  line-height: 27px;
}
@media only screen and (max-width: 1499px) {
  p {
    font-size: 16px;
    line-height: 25px;
  }
}

*::-moz-selection {
  background: #b7176f;
  color: #ffffff;
  text-shadow: none;
}

::-moz-selection {
  background: #b7176f;
  color: #ffffff;
  text-shadow: none;
}

::selection {
  background: #b7176f;
  color: #ffffff;
  text-shadow: none;
}

/*--
    - Input Placeholder
-----------------------------------------*/
*::-moz-placeholder {
  color: #000;
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: #000;
  font-size: 14px;
  opacity: 1;
}

/*--
    - Common Classes
-----------------------------------------*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

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

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

/*--
    - Background color
-----------------------------------------*/
.grey-bg {
  background: #000;
}

.pink-bg {
  background: #b7176f;
}

.white-bg {
  background: #ffffff;
}

.black-bg {
  background: #000;
}

.footer-bg {
  background: #000;
}

/*--
    - color
-----------------------------------------*/
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #ffffff !important;
}

.white-color {
  color: #ffffff;
}

.theme-color {
  color: #b7176f !important;
}

.black-color {
  color: #000;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.77);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
.overlay:hover {
  cursor: pointer;
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 575px) {
  .progress-wrap {
    right: 15px;
    bottom: 15px;
  }
}

/* link btn */
.btn {
  padding: 11px 44px 9px 24px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  clip-path: polygon(0 0, 100% 0%, calc(100% - 20px) 100%, 0 100%);
  border-radius: 0px;
  line-height: 1;
}
@media only screen and (max-width: 1399px) {
  .btn {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .btn {
    font-size: 14px;
  }
}
.btn:focus {
  outline: none;
  box-shadow: none;
}
.btn:active {
  background-color: #b7176f;
}
.btn-primary {
  border-color: #b7176f;
  background-color: #b7176f;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #133f46;
  border-color: #133f46;
  color: #fff;
}
.btn-light {
  color: #b7176f;
}
.btn-light:hover {
  background-color: #b7176f;
  border-color: #b7176f;
  color: #fff;
}

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

.modal-search {
  background-color: rgba(0, 0, 0, 0.8);
}

.search-bar {
  background-color: #f4f4f4;
  transition: 0.3s;
  height: 0;
  opacity: 0;
  visibility: hidden;
  position: relative;
  top: 100%;
  left: 0;
  width: 100%;
  top: 44px;
}
@media only screen and (max-width: 991px) {
  .search-bar {
    top: 30px;
  }
}
.search-bar.active {
  height: 117px;
  opacity: 1;
  visibility: visible;
  z-index: 11;
}
@media only screen and (max-width: 767px) {
  .search-bar.active {
    height: 75px;
  }
}
.search-form {
  padding: 36px 10px;
  max-width: 836px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .search-form {
    padding: 15px 10px;
  }
}
.search-form input {
  width: 100%;
  height: 45px;
  border: none;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0%, calc(100% - 20px) 100%, 0 100%);
  padding-left: 20px;
  padding-right: 70px;
  font-size: 18px;
}
.search-form input::placeholder {
  font-size: 18px;
  font-family: "Proxima Nova", sans-serif;
}
.search-form input:focus {
  outline: none;
}
.search-form input::placeholder {
  font-weight: normal;
  color: #b5b5b5;
}
.search-form button {
  position: absolute;
  right: 37px;
  top: 48%;
  transform: translateY(-50%);
}

.breadcrumb li {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding: 0px 10px;
}
.breadcrumb li:first-child {
  padding-left: 0px;
}
.breadcrumb li:not(:last-child)::after {
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 8px;
  background-image: url("/assets/img/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
.breadcrumb li a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.section-padding {
  padding: 85px 0px 90px;
}
@media only screen and (max-width: 1199px) {
  .section-padding {
    padding: 75px 0px 80px;
  }
}
@media only screen and (max-width: 991px) {
  .section-padding {
    padding: 60px 0px 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-padding {
    padding: 40px 0px 40px;
  }
}

.bg-gray {
  background-color: #f4f4f4;
}

.accordion-item {
  background-color: transparent;
  border: none;
  border-radius: 0px;
}
.accordion-button {
  color: #133f46;
  font-size: 18px;
  font-weight: bold;
  background-color: transparent;
  box-shadow: none;
  border: none;
  padding: 8px 25px;
  padding-right: 0px;
}
.accordion-button::after {
  background-image: url("/assets/img/border-arrow-white.svg") !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 12px;
  height: 13px;
  position: absolute;
  left: 0px;
  top: 12px;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background-color: transparent;
  border: none;
  box-shadow: none;
  color: #133f46;
}
.accordion-body {
  padding: 2px 25px;
  padding-right: 0px;
}

.nav-tabs .nav-link {
  padding: 25px 35px;
  border: none;
  position: relative;
  background-color: transparent;
  font-weight: 700;
  text-transform: uppercase;
  color: #133f46;
}
@media only screen and (max-width: 767px) {
  .nav-tabs .nav-link {
    padding: 16px 10px;
    font-size: 14px;
  }
}
.nav-tabs .nav-link::after {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 3px;
  content: "";
}
.nav-tabs .nav-link.active {
  color: #f5c500;
}
.nav-tabs .nav-link.active::after {
  background-color: #f5c500;
}

.pagination li a {
  width: 40px;
  height: 50px;
  display: inline-flex;
  background-color: transparent;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 1;
  position: relative;
  transition: 0.3s;
}
.pagination li a.active {
  color: #fff;
}
.pagination li a.active::after {
  background-color: #f5c500;
}
.pagination li a:hover {
  color: #fff;
}
.pagination li a:hover::after {
  background-color: #f5c500;
}
.pagination li a::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #f4f4f4;
  z-index: -1;
  transform: skew(-20deg, 0deg);
}

/*----------------------------------------*/
/*  Header  CSS
/*----------------------------------------*/
.header {
  background-color: #ffffff;
  padding: 42px 0px;
  transition: 0.3s;
  position: relative;
}
.header.sticky {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  z-index: 111;
  transition: 0.3s;
  padding: 22px 0px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 767px) {
  .header.sticky {
    padding: 18px 0px;
  }
}
.header.sticky .header-logo a img {
  max-width: 123px;
}
.header.sticky .search-bar {
  top: 24px;
}
@media only screen and (max-width: 1199px) {
  .header {
    padding: 30px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .header {
    padding: 20px 0px;
  }
}
.header-wrapper {
  max-width: 1740px;
  padding: 0px 10px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  flex: 0 0 auto;
  width: 11%;
}
.header-logo a img {
  max-width: 180px;
}
@media only screen and (max-width: 1399px) {
  .header-logo a img {
    max-width: 130px;
  }
}
@media only screen and (max-width: 767px) {
  .header-logo a img {
    max-width: 123px;
  }
}
.header-menu ul {
  gap: 42px;
}
@media only screen and (max-width: 1399px) {
  .header-menu ul {
    gap: 30px;
  }
}
.header-menu ul li a {
  font-weight: 600;
  text-transform: uppercase;
  display: block;
}
@media only screen and (max-width: 1399px) {
  .header-menu ul li a {
    font-size: 15px;
  }
}
.header-menu ul li a.active {
  color: #b7176f;
}
.header-menu ul li a:hover {
  color: #b7176f;
}
.header-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-links button.btn-search {
  width: 35px;
  height: 35px;
  position: relative;
}
.header-links button.btn-search.active img.search {
  opacity: 0;
  visibility: hidden;
}
.header-links button.btn-search.active img.close {
  opacity: 1;
  visibility: visible;
}
.header-links button.btn-search img.search {
  opacity: 1;
  visibility: visible;
}
.header-links button.btn-search img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.header-links a.btn {
  padding: 11px 30px 9px 18px;
}
.header-links .bar {
  border: none;
  background-color: transparent;
  padding: 0px;
}

/*----------------------------------------*/
/*  Hero  CSS
/*----------------------------------------*/
.hero {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .hero {
    background-image: url("/assets/img/horo-mobile-bg.png") !important;
    background-position: left top;
  }
}
.hero-content {
  padding: 256px 0px 300px;
  position: relative;
}
@media only screen and (max-width: 1399px) {
  .hero-content {
    padding: 170px 0px 190px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content {
    padding: 89px 0px 85px;
  }
}
.hero-content h1 {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .hero-content h1 {
    font-size: 25px !important;
  }
}
.hero-content p {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .hero-content p {
    font-size: 16px;
    line-height: 30px;
    color: #133f46 !important;
  }
}
.hero-spot {
  display: flex;
  align-items: center;
  gap: 23px;
}
.hero-spot span.fs-3 {
  font-size: 18px !important;
}
.hero-spot:hover svg path {
  fill: #133f46;
}
.hero-spot:hover svg path#Path_1912 {
  transform: translate(-36px, -36px);
}
.hero-spot span.img {
  max-width: 68px;
  flex: 0 0 auto;
}
.hero-spot svg {
  width: 100%;
}
.hero-spot h3 {
  line-height: 30px;
}

/*----------------------------------------*/
/*   About  CSS
/*----------------------------------------*/
.about {
  padding: 105px 0px 100px;
}
@media only screen and (max-width: 991px) {
  .about {
    padding: 40px 0px 30px;
  }
}
.about-video {
  max-width: 636px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.about-video:hover img {
  transform: scale(1.1);
}
.about-video img {
  transition: 3s;
}
@media only screen and (max-width: 991px) {
  .about-video {
    margin: 0 !important;
  }
}
.about-video span {
  height: 94px;
  width: 94px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #f5c500;
  padding-left: 5px;
}
.about-video span img {
  max-width: 37px;
}
.about-video__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*----------------------------------------*/
/*   Treatment  CSS
/*----------------------------------------*/
.treatment {
  padding: 80px 0px 90px;
  background-color: #f4f4f4;
}
@media only screen and (max-width: 991px) {
  .treatment {
    padding: 40px 0px 40px;
  }
}
.treatment-tags {
  display: flex;
  align-items: center;
  gap: 20px 20px;
  flex-wrap: wrap;
}
.treatment-tags a.btn {
  font-weight: bold;
  color: #133f46;
  padding: 11px 40px 9px 20px;
  background-color: #fff !important;
}
.treatment-tags a.btn:hover {
  background-color: #b7176f !important;
  color: #fff;
}

/*----------------------------------------*/
/*   Power  CSS
/*----------------------------------------*/
.power {
  padding: 95px 0px 88px;
  background: #133f46;
}
@media only screen and (max-width: 991px) {
  .power {
    padding: 40px 0px 40px;
  }
}
.power-content h2 {
  margin-bottom: 48px;
  color: #f5c500;
  text-align: center;
}
.power-content a.btn:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #b7176f;
}
.power-items {
  margin-bottom: 65px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .power-items {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0px;
  }
}
.power-item {
  flex: 0 0 auto;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .power-item {
    flex: 0 0 auto;
    width: 33.33%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .power-item {
    flex: 0 0 auto;
    width: 50%;
    margin-bottom: 30px;
  }
}
.power-item__img {
  margin-bottom: 20px;
  text-align: center;
}
.power-item__img span {
  height: 166px;
  width: 166px;
  border: 5px solid #f5c500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 50%;
}
@media only screen and (max-width: 1199px) {
  .power-item__img span img {
    max-width: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .power-item__img span img {
    max-width: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .power-item__img span {
    height: 130px;
    width: 130px;
  }
}
@media only screen and (max-width: 1199px) {
  .power-item__img span {
    height: 100px;
    width: 100px;
  }
}
.power-item p {
  line-height: 30px;
  color: #ffffff;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .power-item p {
    font-size: 14px;
  }
}

/*----------------------------------------*/
/*   Work  CSS
/*----------------------------------------*/
.work {
  padding: 94px 0px 90px;
  position: relative;
  background-color: #f4f4f4;
}
@media only screen and (max-width: 991px) {
  .work {
    padding: 30px 0px 40px;
  }
}
.work::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 54%;
  height: 100%;
  content: "";
  background-color: #f5c500;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}
@media only screen and (max-width: 991px) {
  .work::after {
    width: 52%;
    clip-path: polygon(0 0, 100% 0, 87% 100%, 0% 100%);
  }
}
@media only screen and (max-width: 767px) {
  .work::after {
    width: 100%;
    height: 50%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
.work-item {
  position: relative;
  z-index: 1;
  max-width: 567px;
  margin: 0 auto;
}
@media only screen and (max-width: 1399px) {
  .work-item {
    max-width: 430px;
  }
}
@media only screen and (max-width: 991px) {
  .work-item {
    max-width: 350px;
  }
}
.work-item .blockquote {
  line-height: 1;
  color: #b7176f;
}
@media only screen and (max-width: 991px) {
  .work-item .blockquote {
    font-size: 24px !important;
  }
}
@media only screen and (max-width: 767px) {
  .work-item__space {
    margin-bottom: 100px;
  }
}

/*----------------------------------------*/
/*   News  CSS
/*----------------------------------------*/
.news {
  padding: 95px 0px 100px;
}
@media only screen and (max-width: 991px) {
  .news {
    padding: 30px 0px 50px;
  }
}
.news-header {
  margin-bottom: 33px;
}
.news-item:hover .news-item__img .img {
  transform: scale(1.1);
}
.news-item:hover span.shape {
  width: 120px;
  height: 314px;
}
.news-item:hover span.shape.shape-date-yellow {
  width: 200px !important;
  height: 314px !important;
}
.news-item:hover span.shape.shape-date-yellow span.date {
  opacity: 1;
}
.news-item:hover span.shape.shape-date-primary {
  width: 200px !important;
  height: 314px !important;
}
.news-item:hover span.shape.shape-date-primary span.date {
  opacity: 1;
}
.news-item:hover .news-item__meta {
  background-color: #b7176f;
}
.news-item__img {
  position: relative;
  display: block;
  overflow: hidden;
}
.news-item__img span.shape {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 83px;
  height: 234px;
  content: "";
  clip-path: polygon(0 0, 0% 100%, 74% 0);
  background-color: #133f46;
  z-index: 11;
  transition: 1s;
}
.news-item__img span.shape-yellow {
  background-color: #f5c500;
}
.news-item__img span.shape-date-yellow {
  background-color: rgba(245, 197, 0, 0.6) !important;
  padding: 30px 14px 20px 3px;
  font-size: 35px;
  font-weight: bold;
  color: #fff;
}
.news-item__img span.shape-date-yellow span.date {
  opacity: 0;
}
.news-item__img span.shape-date-primary {
  background-color: rgba(19, 63, 70, 0.6) !important;
  padding: 30px 14px 20px 30px;
  font-size: 35px;
  font-weight: bold;
  color: #fff;
}
.news-item__img span.shape-date-primary span.date {
  opacity: 0;
}
.news-item__img .img {
  width: 100%;
  height: 408px;
  object-fit: cover;
  object-position: center;
  transition: 1s;
}
@media only screen and (max-width: 991px) {
  .news-item__img .img {
    height: 320px;
  }
}
.news-item__meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px 4px 10px;
  background-color: #133f46;
  gap: 10px;
  font-size: 12px;
  line-height: 24px;
  color: #ffffff;
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.news-item__content {
  padding: 30px 0px;
  display: block;
}
.news-item-sm .news-item__img {
  height: 256px;
}
.news-item-sm .news-item__img .shape {
  width: 120px;
  height: 126px;
}
.news-item-sm .news-item__img img {
  max-width: 100%;
  height: 100%;
}
.news-item-sm:hover .news-item__img .shape {
  width: 100px !important;
  height: 180px !important;
}

/*----------------------------------------*/
/*  Footer  CSS
/*----------------------------------------*/
.footer {
  padding: 30px 0px 30px;
  background-color: #133f46;
}
.footer-wrapper {
  max-width: 1740px;
  margin: 0 auto;
  padding: 0px 12px;
}
.footer-contact ul {
  gap: 15px;
}
.footer-contact ul li a {
  color: #ffffff;
}
.footer-contact ul li a:hover {
  color: #f5c500;
  text-decoration: underline;
}
.footer-logo {
  margin-bottom: 24px;
}
.footer-social {
  margin-bottom: 23px;
}
.footer-social a:hover svg path {
  fill: #f5c500;
}
.footer-social a svg ellipse {
  transition: 0.3s;
}
.footer-social a:hover svg ellipse {
  fill: #f5c500;
}
.footer-link a {
  color: #ffffff;
  display: block;
}
.footer-link a:hover {
  color: #f5c500;
  text-decoration: underline;
}

/*----------------------------------------*/
/*  16. OFFCANVAS-MENU CSS 
/*----------------------------------------*/
.offcanvas__wrapper {
  position: fixed;
  left: 0px;
  top: 0px;
  background-color: #fff;
  width: 290px;
  z-index: 11111;
  height: 100%;
  transition: 0.3s;
  transform: translateX(-100%);
  padding-top: 24px;
  overflow-y: scroll;
  scrollbar-width: none;
}
.offcanvas__wrapper::-webkit-scrollbar {
  display: none;
}
.offcanvas__wrapper.active {
  transform: translateX(0);
}
.offcanvas__header {
  padding: 0px 20px 30px;
}
.offcanvas__header a img {
  max-width: 120px;
}
.offcanvas__menu {
  overflow-y: scroll;
  scrollbar-width: none;
  overflow-y: scroll;
  scrollbar-width: none;
}
.offcanvas__menu::-webkit-scrollbar {
  display: none;
}
.offcanvas__menu ul li a {
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #133f46;
  font-family: "Proxima Nova", sans-serif;
  padding: 17px 19px;
  border-top: 1px solid #f4f4f4;
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
}
.offcanvas__menu ul li a:hover {
  color: #ddd;
}
.offcanvas__menu ul li a i {
  position: absolute;
  right: 20px;
  top: 23px;
  transition: 0.3s;
}
.offcanvas__menu ul li .submenu {
  padding-left: 29px;
}
.offcanvas__menu ul li:last-child a {
  border-bottom: 1px solid #f3f3f3;
}
.offcanvas__menu ul li a[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.offcanvas__bottom {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: auto;
  padding: 20px 18px 35px 18px;
  background-color: #fff;
}
.offcanvas__bottom a.site-btn {
  font-size: 18px;
}
.offcanvas__bottom a.site-btn.transparent-btn {
  color: #ddd;
}

/*----------------------------------------*/
/*  PAGE HERO  CSS
/*----------------------------------------*/
.pageHero {
  position: relative;
  min-height: 350px;
  padding: 30px 0px 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.pageHero .container {
  position: relative;
  z-index: 2;
}
.pageHero-shap {
  width: 78%;
  background-color: rgba(19, 63, 70, 0.9019607843);
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, calc(100% - 100px) 100%, 0% 100%);
}
@media only screen and (max-width: 991px) {
  .pageHero-shap {
    width: 99%;
    clip-path: polygon(0 0, 100% 0, calc(100% - 50px) 100%, 0% 100%);
  }
}
@media only screen and (max-width: 767px) {
  .pageHero-shap {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, calc(100% - 0px) 100%, 0% 100%);
  }
}
.pageHero-shap::after {
  position: absolute;
  left: 0px;
  width: 10%;
  height: 100%;
  content: "";
  background-color: #f5c500;
  top: 0;
  clip-path: polygon(0 0, 100% 0, calc(100% - 150px) 100%, 0% 100%);
}
@media only screen and (max-width: 1499px) {
  .pageHero-shap::after {
    width: 7%;
  }
}
.pageHero-content {
  max-width: 864px;
  width: 100%;
}
.pageHero-content h1 {
  font-size: 48px;
  color: #f5c500;
  margin-bottom: 9px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  .pageHero-content h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .pageHero-content h1 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .pageHero-content h1 {
    font-size: 28px;
  }
}
.pageHero-content p {
  font-size: 18px;
}

/*----------------------------------------*/
/*  BLOCK AREA  CSS
/*----------------------------------------*/
.block-item h4 {
  font-size: 25px;
  margin-bottom: 10px;
}
.block-item p:last-child {
  margin-bottom: 0px;
}
.block-item ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0px;
}
.block-item ul li span {
  flex: 0 0 auto;
  width: 10px;
}
.block-item ul li span img {
  position: relative;
  top: -2px;
}
.block-widget {
  padding: 40px 40px;
  background-color: #f5c500;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .block-widget {
    padding: 24px 24px;
  }
}
.block-widget ul li a {
  display: block;
  position: relative;
  position: relative;
  padding: 2px 0px;
  padding-left: 20px;
}
.block-widget ul li a::after {
  position: absolute;
  left: 0px;
  top: 9px;
  width: 12px;
  height: 12px;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/assets/img/arrow-right.svg");
}
.block-widget-sub {
  padding: 18px 20px;
  background-color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  line-height: 26px;
}
.block-widget-sub:not(:last-child) {
  margin-bottom: 12px;
}

/*----------------------------------------*/
/*  FAQ-AREA  CSS
/*----------------------------------------*/
.faq {
  position: relative;
}
.faq::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 75%;
  height: 100%;
  content: "";
  background-color: #f5c500;
  clip-path: polygon(0 0, 100% 0, calc(100% - 100px) 100%, 0% 100%);
}
.faq .container {
  position: relative;
  z-index: 1;
}
.faq-block {
  padding: 40px 40px;
  max-width: 408px;
  width: 100%;
  background-color: #133f46;
}
@media only screen and (max-width: 767px) {
  .faq-block {
    padding: 24px 24px;
  }
}
.faq-block h2 {
  font-size: 35px;
  font-weight: 700;
  color: #f5c500;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1199px) {
  .faq-block h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .faq-block h2 {
    font-size: 24px;
  }
}

/*----------------------------------------*/
/*  cONTACT -AREA
/*----------------------------------------*/
.contact-label label {
  display: block;
}
@media only screen and (max-width: 991px) {
  .contact-label label {
    margin-bottom: 4px;
  }
}
.contact-input input {
  width: 100%;
  height: 34px;
  border: 1px solid #b5b5b5;
  padding: 0px 15px;
}
.contact-input input:focus {
  outline: none;
  border: 1px solid #f5c500;
}
.contact-input textarea {
  width: 100%;
  height: 126px;
  border: 1px solid #b5b5b5;
  padding: 0px 15px;
  resize: none;
}
.contact-input textarea:focus {
  outline: none;
  border: 1px solid #f5c500;
}
.contact-info ul li {
  padding: 10px 0px;
}
.contact-info ul li:hover a {
  text-decoration: none;
}
.contact-info ul li a {
  text-decoration: underline;
  display: block;
}

/*# sourceMappingURL=style.css.map */

.section-padding p a {
  text-decoration: underline !important;
}

.block ul li {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 4px 0px !important;
}

.block ul li span {
  flex: 0 0 auto;
  width: 10px;
}

.blockgrid ul li::before {
  flex: 0 0 auto;
  width: 10px;
  content: url("/assets/img/dymond.png");
}

.block .paginationbuttons ul li::before,
.blockgrid .block-widget ul li::before {
  content: "" !important;
}

.umbraco-forms-field {
  display: flex;
}

.umbraco-forms-field-wrapper {
  width: 100%;
}

.umbraco-forms-form textarea {
  max-width: 100% !important;
  width: 100%;
}

.umbraco-forms-form input.text {
  max-width: 100% !important;
  width: 100%;
}

label.umbraco-forms-label {
  max-width: 200px;
  width: 100%;
}

.umbraco-forms-field {
  margin: 1rem 0 1rem 0;
}

.umbraco-forms-hidden {
  display: none;
}

.umbraco-forms-navigation.row-fluid .btn {
  margin-left: 1rem;
}

.purple-text {
  color: #b7176f;
}

.date {
  margin-right: 0rem;
}

.block .section-padding .blockgrid .btn,
.block .section-padding .btn .btn-primary {
  margin-bottom: 1rem;
}

blockquote {
  color: #b7176f;
  line-height: 1;
  font-size: 2rem;
  font-weight: bold;
}

.blockgrid .btn {
  margin-bottom: 1rem;
}

.umbraco-forms-field-wrapper input:focus-visible {
  outline: 1px solid #b7176f;
}

.umbraco-forms-field-wrapper textarea:focus-visible {
  outline: 1px solid #b7176f;
}

.umbraco-forms-field-wrapper input {
  outline: 1px solid #c9c9c9;
}
.umbraco-forms-field-wrapper textarea {
  outline: 1px solid #c9c9c9;
}

.iframe {
  aspect-ratio: 16 / 9;
}

@supports not (aspect-ratio: 1) {
    .iframe {
        height: calc(100vw * 9 / 16); /* 16:9 Ratio */
        max-height: 100vh;
    }
}

.video {
	position: relative;
	margin-block: 25px;
	background-color: #e0e0e0;

	&::before {
		display: block;
		position: relative;
		inline-size: 100%;
		block-size: 0;
		padding-block-end: 56.25%;
		content: '';
	}

	iframe {
		position: absolute;
		inset-inline-start: 0;
		inset-block-start: 0;
		inline-size: 100%;
		block-size: 100%;
	}
}

.cookieconsent-optout {
	display: flex !important;
	position: absolute;
	inset-inline-start: 0;
	inset-block-start: 0;
	box-sizing: border-box;
	inline-size: 100%;
	block-size: 100%;
	padding: 1em 2em;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;

	p {
		display: inline-block !important;
		margin-block: 0 1em;
		max-inline-size: 30em;
	}

	.button--consent {
		margin-block: 0;
		flex-grow: 0;
	}

}
