@font-face {
  font-family: 'Fira Sans';
  src: url('../fonts/FiraSans-Regular.woff2') format('woff2'),
      url('../fonts/FiraSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rectory';
  src: url('../fonts/Rectory-Bold.woff2') format('woff2'),
      url('../fonts/Rectory-Bold.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rectory Semi';
  src: url('../fonts/Rectory-SemiBold.woff2') format('woff2'),
      url('../fonts/Rectory-SemiBold.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}


/* Fonts */
:root {
  --font-default: "Fira Sans";
  --font-primary: "Rectory";
  --font-secondary: "Rectory";
}

/* Colors */
:root {
  --color-default: #595958;
  --color-primary: #0e6c72;
  --color-white: #FFF;
  --color-light: #7d7b7c;
  --color-dark: #2e2d2c;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  font-size: 14px;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #00b6a1;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.sections-bg {
  background-color: #f6f6f6;
}

.section-header {
  text-align: center;
  padding-bottom: 60px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
  color: #6f6f6f;
}




/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--color-dark);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/


.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color: var(--color-dark);
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  /*box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);*/
}

.header .logo img {
  max-height: 25px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #fff;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: #f96f59;
}

.sticked-header-offset {
  margin-top: 70px;
}

section {
  scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 5px;
    top: 11px;
    right: -15px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    visibility: visible;
  }
  .navbar>ul>li:last-child>a:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 10px;
    top: 9px;
    right: -15px;
    border-radius: 10px;
    background-color: var(--color-white);
    visibility: hidden;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    border-radius: 10px;
    left: 0;
    background-color: var(--color-white);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #006a5d;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-secondary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50% 0 10px 0;
    margin: 0;
    background: var(--color-dark);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #007466;
    border: 1px solid #006459;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: var(--color-dark);
    z-index: 9996;
  }
}
















/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  padding: 60px 0 0 0;
  height: 700px;
  background-size: cover;
  background-position: center;
}

@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}



.btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  border-radius: 50px;
  transition: 0.3s;
  color: #fff;
  padding: 6px 6px 8px 25px;
  background: rgba(89, 89, 89, 0.42);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8.5px);
  -webkit-backdrop-filter: blur(8.5px);
  width: 250px;
}
.btn-get-started .icon {
  padding: 3px 16px;
  border-radius: 40px;
  background-color: var(--color-default);
  margin-left: 15px;
  transition: .3s;
}
.btn-get-started .icon i {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.6);
  transition: .3s;
}
.btn-get-started:hover {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3),0 6px 20px rgba(0, 0, 0, 0.15);
  color: #fff;
  transition: .3s;
}
.btn-get-started:hover .icon {
  background-color: var(--color-dark);
  transition: .3s;
}
.btn-get-started:hover .icon i{
  color: var(--color-white);
  transition: .3s;
}



@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

 .btn-get-started{
    font-size: 14px;
  }
}






/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #41403f;
  padding: 50px 0;
  color: white;
}


.footer .copyright {
  text-align: center;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}










/*
#  DEMO
*/
.position-relative {
  position: relative !important;
}
.floating-bg {
  content: "";
  background-color: var(--color-primary);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 38.4%;
  z-index: 0;
}
table, th,  tr, td {
  border: none;
}
table tr td {
  width: calc(100% / 3);
}
.header-table tr td .pill {
  width: 150px;
  text-align: center;
  background-color: var(--color-primary);
}
.body-table tr th, .body-table tr td  {
  color: #FFF;
}
.tr-light {
  background-color: #7d7b7c;
}
.tr-dark {
  background-color: #676665;
}


#reel .floating-background {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  position: absolute;
  background-color: var(--color-primary);
}

.set-padding-01 {
  padding: 100px 0 40px 0;
}





.custom-txt-01 h2{
  font-size: 48px;
  line-height: 50px;
  font-weight: 300;
  margin-bottom: 30px;
}

.custom-txt-01 h5{
  font-family: var(--font-default);
  font-size: 18px;
  margin-bottom: 30px;
}


.my-custom-list li::before{
  font-family: "bootstrap-icons";
  content: "\F4F9";
  color: var(--color-dark);
  font-size: 18px;
  float: left;
  margin-left: -1.5em;
}
.my-custom-list li::marker {
  color: transparent;
}
.my-custom-list li p {
  font-size: 18px;
}



.bg-cover {
  background-position: center;
  background-size: cover;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.6);
}
.swiper-pagination-bullet-active {
  background-color: #FFF !important;
}










#my-video {
  width: 100%;
  border-radius: .375rem;
}

.btn-custom {
  --bs-btn-color: #fff;
  --bs-btn-bg: #26787e;
  --bs-btn-border-color: #26787e;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #106b72;
  --bs-btn-hover-border-color: #106b72;
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #106b72;
  --bs-btn-active-border-color: #106b72;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #26787e;
  --bs-btn-disabled-border-color: #26787e;
}










@media only screen and (max-width: 600px) {
  .hero {
    height: 400px;
  }
  .custom-txt-01 h2 {
    font-size: 33px;
    line-height: 36px;
  }
  .floating-bg {
    top: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
  table tr td:nth-child(1) {  
  width: 60% !important;
  }
  table tr td:nth-child(2) {  
  width: 20% !important;
  }
table tr td:nth-child(3) {  
  width: 20% !important;
  }
  #reel .floating-background {
    height: 45%;
  }
  .set-padding-01 {
    padding: 50px 0 0px 0;
  }
  
}