html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  color: #fff;
  background-color: var(--body-color);
  font-family: var(--primary-font);
  font-weight: 300;
}
a,
a:hover,
a:visited {
  color: var(--link-color);
  text-decoration: none;
}

a[href^="tel"] {
  white-space: nowrap;
}

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

.row {
  margin-left: -15px;
  margin-right: -15px;

  [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
img {
  border: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

.check-square {
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
}

.check-square > li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.check-square > li::before {
  position: absolute;
  color: var(--primary-color);
  top: 0;
  left: 0;
  content: "\f14a";
  padding-right: 10px;
  font-size: 16px;
  font-family: "FontAwesome";
}

@media (max-width: 575px) {
  body {
    font-size: 14px;
  }
}
/*=============================
    Section (common-sec) Styles
  =============================*/
.common-sec {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 7rem;
  z-index: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.common-sec:nth-child(even) {
  background-color: #001414;
}

.common-sec:nth-child(odd) {
  background-color: transparent;
}

.common-sec:has(.common-sec) {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .common-sec {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
/*=============================
    Headings and Titles
  =============================*/
h1,
h2,
h3,
h4,
h5,
h6,
[class*="title-"] {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
  font-family: var(--secondary-font);
}

h1,
.title-xxl {
  font-size: 4.2rem;
}

h2,
.title-xl {
  font-size: 3.2rem;
}

h3,
.title-lg {
  font-size: 2.8rem;
}

h4,
.title-md {
  font-size: 2.4rem;
}

h5,
.title-sm {
  font-size: 2rem;
}

h6,
.title-xs {
  font-size: 1.8rem;
}

@media (max-width: 1199px) {
  h1,
  .title-xxl {
    font-size: 3.6rem;
  }

  h2,
  .title-xl {
    font-size: 3.2rem;
  }

  h3,
  .title-lg {
    font-size: 2.8rem;
  }

  h4,
  .title-md {
    font-size: 2.4rem;
  }
}

@media (max-width: 767px) {
  h1,
  .title-xxl {
    font-size: 3.2rem;
  }

  h2,
  .title-xl {
    font-size: 2.8rem;
  }

  h3,
  .title-lg {
    font-size: 2.4rem;
  }

  h4,
  .title-md {
    font-size: 2rem;
  }
  h5,
  .title-sm {
    font-size: 1.8rem;
  }

  h6,
  .title-xs {
    font-size: 1.6rem;
  }
}

@media (max-width: 575px) {
  h1,
  .title-xxl {
    font-size: 2.8rem;
  }

  h2,
  .title-xl {
    font-size: 2.4rem;
  }
  h3,
  .title-lg {
    font-size: 2rem;
  }
}

/*=============================
    Image Box Styles
  =============================*/
.img-box {
  display: block;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 15px;
}

.img-box img {
  border-radius: 10px;
}

[class*="mb-"]:has(> .img-box),
.img-box:last-child {
  margin-bottom: 0;
}

.img-box.float-sm-left,
.img-box.float-sm-right,
.img-box.float-md-left,
.img-box.float-md-right,
.img-box.float-lg-left,
.img-box.float-lg-right {
  width: 100%;
}

.common-box {
  box-shadow:
    rgb(50 50 93 / 15%) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  height: 100%;
}

.common-box .content {
  padding: 20px;
}

.common-box .img-box {
  margin-bottom: 0;
}

.common-box .content ul,
.common-box .content ul li:last-child,
.content p:last-child {
  margin-bottom: 0;
}

/* Image box responsive floats */
@media (min-width: 576px) {
  .img-box.float-sm-right {
    max-width: 50%;
    padding-left: 15px;
  }

  .img-box.float-sm-left {
    max-width: 50%;
    padding-right: 15px;
  }
}

@media (min-width: 768px) {
  .img-box.float-md-right {
    max-width: 50%;
    padding-left: 15px;
  }

  .img-box.float-md-left {
    max-width: 50%;
    padding-right: 15px;
  }
}

@media (min-width: 992px) {
  .img-box.float-lg-right {
    max-width: 50%;
    padding-left: 15px;
  }

  .img-box.float-lg-left {
    max-width: 50%;
    padding-right: 15px;
  }
}

figure.img-box img + figcaption {
  margin-top: 10px;
  padding: 10px;
}

/* Image box margin for Bootstrap grid columns */
@media (max-width: 1199px) {
  [class*="col-xl"] > .img-box {
    margin-bottom: 15px;
  }
}

@media (max-width: 991px) {
  [class*="col-lg"] > .img-box {
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  [class*="col-md"] > .img-box {
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  [class*="col-sm"] > .img-box {
    margin-bottom: 15px;
  }
}
/*=============================
    Multi-column Utilities
  =============================*/
.count-2 {
  -webkit-column-count: 2;
  column-count: 2;
}

.count-3 {
  -webkit-column-count: 3;
  column-count: 3;
}

.count-4 {
  -webkit-column-count: 4;
  column-count: 4;
}

/* Responsive Multi-column Utilities */
@media (min-width: 576px) {
  .count-sm-1 {
    -webkit-column-count: 1;
    column-count: 1;
  }

  .count-sm-2 {
    -webkit-column-count: 2;
    column-count: 2;
  }

  .count-sm-3 {
    -webkit-column-count: 3;
    column-count: 3;
  }

  .count-sm-4 {
    -webkit-column-count: 4;
    column-count: 4;
  }
}

@media (min-width: 768px) {
  .count-md-1 {
    -webkit-column-count: 1;
    column-count: 1;
  }

  .count-md-2 {
    -webkit-column-count: 2;
    column-count: 2;
  }

  .count-md-3 {
    -webkit-column-count: 3;
    column-count: 3;
  }

  .count-md-4 {
    -webkit-column-count: 4;
    column-count: 4;
  }
}

@media (min-width: 992px) {
  .count-lg-1 {
    -webkit-column-count: 1;
    column-count: 1;
  }

  .count-lg-2 {
    -webkit-column-count: 2;
    column-count: 2;
  }

  .count-lg-3 {
    -webkit-column-count: 3;
    column-count: 3;
  }

  .count-lg-4 {
    -webkit-column-count: 4;
    column-count: 4;
  }
}

@media (min-width: 1200px) {
  .count-xl-1 {
    -webkit-column-count: 1;
    column-count: 1;
  }

  .count-xl-2 {
    -webkit-column-count: 2;
    column-count: 2;
  }

  .count-xl-3 {
    -webkit-column-count: 3;
    column-count: 3;
  }

  .count-xl-4 {
    -webkit-column-count: 4;
    column-count: 4;
  }
}

@media (min-width: 1600px) {
  .count-xxl-1 {
    -webkit-column-count: 1;
    column-count: 1;
  }

  .count-xxl-2 {
    -webkit-column-count: 2;
    column-count: 2;
  }

  .count-xxl-3 {
    -webkit-column-count: 3;
    column-count: 3;
  }

  .count-xxl-4 {
    -webkit-column-count: 4;
    column-count: 4;
  }
}
.breadcrumb {
  font-size: 15px !important;
  margin-bottom: 0;
  padding: 10px 0 !important;
}
.breadcrumb-item a {
  color: var(--secondary-color) !important;
  font-weight: 400 !important;
  text-decoration: underline !important;
}
.breadcrumb-item.active {
  color: #fff !important;
  font-weight: 400 !important;
}
.breadcrumb-item a::before {
  height: 0 !important;
}

#return-to-top {
  background: var(--primary-color);
  border: 2px solid #fff;
  bottom: 20px;
  cursor: pointer;
  display: none;
  height: 45px;
  right: 20px;
  position: fixed;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  width: 45px;
  z-index: 999;
}

#return-to-top img {
  width: 31px;
  margin-top: 9px;
  opacity: 0.4;
  transition: opacity 0.3s;
}

#return-to-top:hover img {
  opacity: 1;
}
