@charset "UTF-8";
.btn {
  border-radius: 0px;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.btn:focus {
  box-shadow: none;
}

@media screen and (min-width: 992px) {
  .btn-md {
    padding: 0.5rem 2rem;
    font-size: calc(1.255rem + 0.06vw);
  }
}
@media screen and (min-width: 992px) and (min-width: 1200px) {
  .btn-md {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 992px) {
  .btn-lg {
    padding: 1rem 5rem;
    font-size: calc(1.275rem + 0.3vw);
  }
}
@media screen and (min-width: 992px) and (min-width: 1200px) {
  .btn-lg {
    font-size: 1.5rem;
  }
}

.btn-outline-primary {
  background-color: transparent;
  border: 1px solid #3c98af;
  color: #3c98af;
}
.btn-outline-primary:hover {
  background-color: #3c98af;
  color: #fff;
}

.btn-outline-black {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
}
.btn-outline-black:hover {
  background-color: #000;
  color: #fff;
}

.btn-outline-dark-grey {
  background-color: transparent;
  border: 1px solid #545454;
  color: #545454;
}
.btn-outline-dark-grey:hover {
  background-color: #545454;
  color: #fff;
}

.btn-outline-white {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn-outline-white:hover {
  background-color: #fff;
  color: #fff;
}

.btn-outline-cream {
  background-color: transparent;
  border: 1px solid #f8f0e8;
  color: #f8f0e8;
}
.btn-outline-cream:hover {
  background-color: #f8f0e8;
  color: #fff;
}

.btn-outline-orange {
  background-color: transparent;
  border: 1px solid #B58227;
  color: #B58227;
}
.btn-outline-orange:hover {
  background-color: #B58227;
  color: #fff;
}

.btn-primary {
  background-color: #3c98af;
  border: 1px solid #3c98af;
  color: #fff;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus, .btn-primary:disabled {
  background-color: #2f7789;
  color: #fff;
  border: 1px solid #2f7789;
}
.btn-primary:focus, .btn-primary:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(60, 152, 175, 0.5);
}

.btn-black {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
.btn-black:hover, .btn-black:active, .btn-black:focus, .btn-black:disabled {
  background-color: black;
  color: #fff;
  border: 1px solid black;
}
.btn-black:focus, .btn-black:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
}

.btn-dark-grey {
  background-color: #545454;
  border: 1px solid #545454;
  color: #fff;
}
.btn-dark-grey:hover, .btn-dark-grey:active, .btn-dark-grey:focus, .btn-dark-grey:disabled {
  background-color: #3b3b3b;
  color: #fff;
  border: 1px solid #3b3b3b;
}
.btn-dark-grey:focus, .btn-dark-grey:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(84, 84, 84, 0.5);
}

.btn-white {
  background-color: #fff;
  border: 1px solid #fff;
  color: #fff;
}
.btn-white:hover, .btn-white:active, .btn-white:focus, .btn-white:disabled {
  background-color: #e6e6e6;
  color: #fff;
  border: 1px solid #e6e6e6;
}
.btn-white:focus, .btn-white:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}

.btn-cream {
  background-color: #f8f0e8;
  border: 1px solid #f8f0e8;
  color: #fff;
}
.btn-cream:hover, .btn-cream:active, .btn-cream:focus, .btn-cream:disabled {
  background-color: #ecd7c1;
  color: #fff;
  border: 1px solid #ecd7c1;
}
.btn-cream:focus, .btn-cream:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(248, 240, 232, 0.5);
}

.btn-orange {
  background-color: #B58227;
  border: 1px solid #B58227;
  color: #fff;
}
.btn-orange:hover, .btn-orange:active, .btn-orange:focus, .btn-orange:disabled {
  background-color: #8b641e;
  color: #fff;
  border: 1px solid #8b641e;
}
.btn-orange:focus, .btn-orange:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(181, 130, 39, 0.5);
}

.text-primary {
  color: #3c98af !important;
}
.text-primary a {
  color: #3c98af;
  font-weight: 500;
}
.text-primary a:hover {
  color: #2f7789;
}

.text-black {
  color: #000 !important;
}
.text-black a {
  color: #000;
  font-weight: 500;
}
.text-black a:hover {
  color: black;
}

.text-dark-grey {
  color: #545454 !important;
}
.text-dark-grey a {
  color: #545454;
  font-weight: 500;
}
.text-dark-grey a:hover {
  color: #3b3b3b;
}

.text-white {
  color: #fff !important;
}
.text-white a {
  color: #fff;
  font-weight: 500;
}
.text-white a:hover {
  color: #e6e6e6;
}

.text-cream {
  color: #f8f0e8 !important;
}
.text-cream a {
  color: #f8f0e8;
  font-weight: 500;
}
.text-cream a:hover {
  color: #ecd7c1;
}

.text-orange {
  color: #B58227 !important;
}
.text-orange a {
  color: #B58227;
  font-weight: 500;
}
.text-orange a:hover {
  color: #8b641e;
}

.bg-primary {
  background-color: #3c98af;
}

.bg-black {
  background-color: #000;
}

.bg-dark-grey {
  background-color: #545454;
}

.bg-white {
  background-color: #fff;
}

.bg-cream {
  background-color: #f8f0e8;
}

.bg-orange {
  background-color: #B58227;
}

.map {
  min-height: 500px;
  width: 100%;
}

label {
  font-size: 1rem;
  font-weight: 500;
}
label.form-check-label {
  font-weight: 400;
}

.form-control,
.form-check-input[type=checkbox] {
  border-radius: 0;
  border: 1px solid #545454;
}

.form-check .wpcf7-list-item {
  margin: 0;
  display: inline;
}

span.wpcf7-not-valid-tip {
  font-size: 0.9rem;
}

.wpcf7-list-item {
  width: 100%;
  position: relative;
  display: inline;
  margin: 0 !important;
}
.wpcf7-list-item input[type=checkbox] {
  width: auto;
  opacity: 0.00000001;
  position: absolute;
  left: 0;
  margin-left: 8px;
  margin-top: 14px;
}
.wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::before {
  color: #fff;
}
.wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::after {
  transform: rotate(-45deg) scale(1);
}
.wpcf7-list-item input[type=checkbox]:focus + label::before {
  outline: 0;
}
.wpcf7-list-item label {
  position: relative;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding-left: 35px;
  margin-bottom: 1rem;
  font-weight: 400;
  cursor: pointer;
  vertical-align: sub;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 300;
}
.wpcf7-list-item label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 4px 4px 4px 0;
  width: 22px;
  height: 22px;
  transition: transform 0.28s ease;
  border-radius: 0px;
  border: 1px solid #fff;
  background-color: #fff;
}
.wpcf7-list-item .wpcf7-list-item-label:after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  transform: rotate(-45deg) scale(0);
  transition: transform ease 0.25s;
  will-change: transform;
  position: absolute;
  top: 12px;
  left: 6px;
}
.wpcf7-list-item .wpcf7-list-item-label span {
  font-weight: 500;
  font-size: 12px;
  color: #000;
}
.wpcf7-list-item .wpcf7-list-item-label span a {
  color: #000;
  text-decoration: underline;
}
.wpcf7-list-item .wpcf7-list-item-label span a:hover {
  text-decoration: underline;
}

.wpcf7 form.sent .wpcf7-response-output {
  padding: 1rem;
  border: 0;
  text-align: center;
  font-size: 1.4em;
}

.offcanvas-end {
  width: 60%;
  border-left: none;
  background-color: #000;
}
@media screen and (max-width: 750px) {
  .offcanvas-end {
    width: 100%;
  }
}
.offcanvas-end .offcanvas-header {
  padding: 3rem 3rem 5rem 3rem;
}
@media screen and (max-width: 750px) {
  .offcanvas-end .offcanvas-header {
    padding: 3rem 1.5rem 5rem 1.5rem;
  }
}
.offcanvas-end .offcanvas-header .logo img {
  width: 300px;
}
.offcanvas-end .offcanvas-header button {
  background-color: transparent;
  border: none;
  padding: 0;
}
.offcanvas-end .offcanvas-header button i {
  font-size: 30px;
  color: #fff;
  vertical-align: bottom;
}
.offcanvas-end .offcanvas-body {
  padding: 0 3rem;
}
@media screen and (max-width: 750px) {
  .offcanvas-end .offcanvas-body {
    padding: 0rem 1.5rem;
  }
}
.offcanvas-end .offcanvas-body nav {
  display: block !important;
}
.offcanvas-end .offcanvas-body nav ul {
  margin: 0;
}
.offcanvas-end .offcanvas-body nav ul li {
  margin-bottom: 1.5rem;
  list-style: none;
  text-align: center;
}
.offcanvas-end .offcanvas-body nav ul li a {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 400;
}
.offcanvas-end .offcanvas-body nav ul li a:hover {
  text-decoration: none;
  color: #B58227;
}

/* Offcanvas Dropdown
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#offcanvasRight nav ul li.menu-item-has-children > .sub-menu {
  display: none;
  margin: 0;
  padding: 20px 0;
  background-color: #545454;
  margin-top: 10px;
}

#offcanvasRight nav ul li.menu-item-has-children.open > .sub-menu {
  display: block;
}

#offcanvasRight nav ul li.menu-item-has-children > a {
  position: relative;
  padding-right: 35px;
}

#offcanvasRight nav ul li.menu-item-has-children > a::after {
  content: "\f078";
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  font-weight: 900;
  transition: transform 0.3s ease;
}

#offcanvasRight nav ul li.menu-item-has-children.open > a::after {
  transform: translateY(-50%) rotate(180deg);
}

#offcanvasRight nav ul li:last-child {
  margin-bottom: 0;
}

/* Mobile
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 575px) {
  #offcanvasRight {
    width: 100%;
  }
}
header {
  background-color: #f8f0e8;
  padding: 3rem 0;
}
header .logo img {
  width: 321px;
}
header .right {
  margin-left: auto;
}
header .right .buttonMenu button {
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  border-radius: 300px;
  padding: 4px 35px;
  font-size: 16px;
}
header .right .buttonMenu button:hover {
  background-color: #545454;
}

footer {
  padding: 4rem 0 2rem 0;
}
footer .footerLogo img {
  width: 294px;
  margin: 0 auto;
  display: block;
}
footer h5, footer p, footer p a {
  color: #fff;
}
footer h5 {
  margin-bottom: 1.5rem;
}
footer .socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}
footer .socials a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 50%;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}
footer .socials a i {
  font-size: 18px;
}
footer .socials a:hover {
  background: transparent;
  color: #fff;
}
footer .footerTop {
  padding-bottom: 4rem;
}
footer .footerTop p {
  font-size: 15px;
  line-height: 1.4em;
}
footer .footerTop p a:hover {
  color: #B58227;
  text-decoration: none;
}
footer .footerTop .paddingLeft {
  padding-left: 30px;
}
footer .contactDetails i {
  font-size: 20px;
}
footer .contactDetails .address {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
footer .contactDetails .address i {
  flex-shrink: 0;
  color: #f8f0e8;
  margin-top: 4px;
  font-size: 20px;
}
footer nav ul {
  margin: 0;
}
footer nav ul li {
  margin-bottom: 0.5rem;
  list-style: none;
}
footer nav ul li a {
  color: #fff;
  font-size: 15px;
}
footer nav ul li a:hover {
  color: #B58227;
  text-decoration: none;
}
footer .bottom p {
  font-size: 13px;
  line-height: 1.4em;
}
footer .bottom p a:hover {
  color: #B58227;
  text-decoration: none;
}
footer .bottom .right {
  margin-left: auto;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: calc(1.275rem + 0.3vw);
  color: #000;
}
@media (min-width: 1200px) {
  body {
    line-height: 1.5rem;
  }
}

p,
a {
  font-family: inherit;
  line-height: inherit;
}

a {
  color: #000;
  text-decoration: none;
  transition: color ease 0.3s;
}
a:hover {
  color: #2f7789;
}

b,
strong {
  font-weight: 500;
}

h1,
.h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: calc(1.6rem + 4.2vw);
  line-height: 1.15em;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  h1,
.h1 {
    font-size: 4.75rem;
  }
}

h2,
.h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: calc(1.4375rem + 2.25vw);
  line-height: 1.15em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  h2,
.h2 {
    font-size: 3.125rem;
  }
}

h3,
.h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: calc(1.35rem + 1.2vw);
  line-height: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  h3,
.h3 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1200px) {
  h3,
.h3 {
    line-height: 2.25rem;
  }
}

h4,
.h4 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: calc(1.325rem + 0.9vw);
  line-height: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h4,
.h4 {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  h4,
.h4 {
    line-height: 2rem;
  }
}

h5,
.h5 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-size: 1.125rem;
  line-height: calc(1.26875rem + 0.225vw);
}
@media (min-width: 1200px) {
  h5,
.h5 {
    line-height: 1.4375rem;
  }
}

h6,
.h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: calc(1.275rem + 0.3vw);
  line-height: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h6,
.h6 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  h6,
.h6 {
    line-height: 1.5rem;
  }
}

#generic-content,
.normalise {
  overflow-x: hidden;
}
#generic-content h1,
#generic-content h2,
#generic-content h3,
#generic-content h4,
#generic-content h5,
#generic-content h6,
.normalise h1,
.normalise h2,
.normalise h3,
.normalise h4,
.normalise h5,
.normalise h6 {
  font-size: calc(1.275rem + 0.3vw);
  line-height: calc(1.275rem + 0.3vw);
  color: #3c98af;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-weight: 500;
}
@media (min-width: 1200px) {
  #generic-content h1,
#generic-content h2,
#generic-content h3,
#generic-content h4,
#generic-content h5,
#generic-content h6,
.normalise h1,
.normalise h2,
.normalise h3,
.normalise h4,
.normalise h5,
.normalise h6 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  #generic-content h1,
#generic-content h2,
#generic-content h3,
#generic-content h4,
#generic-content h5,
#generic-content h6,
.normalise h1,
.normalise h2,
.normalise h3,
.normalise h4,
.normalise h5,
.normalise h6 {
    line-height: 1.5rem;
  }
}
#generic-content p,
.normalise p {
  text-overflow: ellipsis;
  overflow: hidden;
}
#generic-content table,
.normalise table {
  width: 100%;
}
#generic-content table tbody,
#generic-content table td,
#generic-content table tfoot,
#generic-content table th,
#generic-content table thead,
#generic-content table tr,
.normalise table tbody,
.normalise table td,
.normalise table tfoot,
.normalise table th,
.normalise table thead,
.normalise table tr {
  border: 1px solid #545454;
  padding: 0.5rem 0.5rem;
}
#generic-content ul li,
.normalise ul li {
  margin-bottom: 0.5rem;
}
#generic-content blockquote,
.normalise blockquote {
  background: #545454;
  padding: 1rem 2rem;
  font-style: italic;
  border-left: 3px solid #3c98af;
  font-size: 1rem;
  line-height: 1rem;
}
#generic-content *:last-child,
.normalise *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #generic-content iframe,
.normalise iframe {
    width: calc(100vw - 60px);
  }
}

.font-weight-thin {
  font-weight: 100 !important;
}

.font-weight-extra-light {
  font-weight: 200 !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-regular {
  font-weight: 400 !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-semi-bold {
  font-weight: 600 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-extra-bold {
  font-weight: 800 !important;
}

.font-weight-black {
  font-weight: 900 !important;
}

section {
  position: relative;
}
section#banner {
  position: relative;
  height: 550px;
  overflow: hidden;
}
section#banner img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
}
section#banner .bannerText {
  position: absolute;
  top: 15%;
  left: 0;
  width: 100%;
  z-index: 99;
  color: #fff;
}
section#banner .bannerText .bannerContent {
  width: 50%;
}
@media screen and (max-width: 991px) {
  section#banner .bannerText .bannerContent {
    width: 100%;
  }
}
section#banner .bannerText .bannerContent .text p {
  font-size: 20px;
  line-height: 1.4em;
  letter-spacing: 0;
  width: 80%;
}
@media screen and (max-width: 991px) {
  section#banner .bannerText .bannerContent .text p {
    width: 100%;
  }
}
section#service {
  padding: 5rem 0;
}
section#service p:last-child {
  margin-bottom: 0;
}
section#service img {
  border-radius: 10px;
}
section#service ul {
  margin: 0;
  padding: 0;
  padding-left: 17px;
  list-style-position: outside;
  margin-bottom: 1rem;
}
section#service ul li {
  margin-bottom: 0.3rem;
}
section#aboutSection {
  background-image: url("/wp-content/uploads/2026/08/about-img.avif");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4rem 0;
  color: #fff;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
section#aboutSection .container {
  width: 100%;
}
section#aboutSection .about {
  width: 50%;
  margin-left: auto;
}
section#bookSection {
  background-image: url("/wp-content/uploads/2026/08/book-image.avif");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4rem 0;
  color: #fff;
  min-height: 500px;
  display: flex;
  align-items: center;
}
section#bookSection .container {
  width: 100%;
}
section#bookSection .book {
  width: 50%;
}

body.error404 {
  min-height: 800px;
  height: 100vh;
  background: url("/wp-content/html5blank-stable/img/404-bg.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}
@media screen and (min-width: 992px) {
  body.error404 {
    background-position-x: right;
  }
}
body.error404 .error-404 {
  padding-top: 14rem;
}
body.error404 .error-404 h1 {
  font-size: calc(2.625rem + 16.5vw);
  line-height: calc(2.625rem + 16.5vw);
  font-weight: 900;
}
@media (min-width: 1200px) {
  body.error404 .error-404 h1 {
    font-size: 15rem;
  }
}
@media (min-width: 1200px) {
  body.error404 .error-404 h1 {
    line-height: 15rem;
  }
}

body {
  position: relative;
}
body.modal-open {
  overflow: hidden;
  padding-right: 0px;
}

@media (min-width: 1500px) {
  .container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    max-width: 1450px;
  }
}
@media (min-width: 1800px) {
  .container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    max-width: 1700px;
  }
}

ul {
  list-style-position: inside;
  padding-left: 0rem;
}

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.img-fluid {
  image-rendering: -moz-crisp-edges;
  /* Firefox */
  image-rendering: -o-crisp-edges;
  /* Opera */
  image-rendering: -webkit-optimize-contrast;
  /* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  /* IE (non-standard property) */
}

.spill-container-left {
  margin-left: calc(-1 * (100vw - 100%) / 2);
}

.spill-container-right {
  margin-right: calc(-1 * (100vw - 100%) / 2);
}

@media screen and (min-width: 576px) {
  .spill-container-sm-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-sm-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 768px) {
  .spill-container-md-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-md-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 992px) {
  .spill-container-lg-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-lg-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .spill-container-xl-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-xl-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 1400px) {
  .spill-container-xxl-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-xxl-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 1800px) {
  .spill-container-xxxl-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-xxxl-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
.img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #3c98af !important;
}

.owl-theme .owl-dots .owl-dot span {
  background: transparent !important;
  border: 1px solid #fff !important;
}

.owl-carousel .owl-dots {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 992px) {
  .owl-carousel .owl-dots span {
    width: 15px;
    height: 15px;
    margin-left: 10px;
    margin-right: 10px;
    border: 2px solid #fff !important;
  }
}

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