:root {
  --theme-color: #000000;
  --theme-color-second:#94163c;
  --theme-color-third: #000;

  --heading-font: 'head-font';
  --paragraph-font: "para", sans-serif;
  --span-font: 'spanist';



  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;

}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 17px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family:  "para", sans-serif;
  /* color: var(--theme-color) !important; */
}

@font-face {
  font-family: 'head-font';
  src: url(../fonts/Futura-Cyrillic.ttf);
}
@font-face {
  font-family:  "para", sans-serif;
  src: url(../fonts/century-gothic-pro-regular.otf);
}
a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;

}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 15px;
  font-size: 16px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
          font-size: 50px;
}

h2 {
  font-size: 45px;
}

h3 {}

h4{}

h5{}

h6{}


.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* navbar----------- */


@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

* {
  box-sizing: border-box;
}
.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
  z-index: 111;
}

.m-backtotop.active {
    bottom: 81px;
    opacity: 1;
}

.m-backtotop > div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop > div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  z-index: 999;
}

.m-backtotop > div.text {
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 0px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover > div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover > div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}


a.navbar-brand img {
  width: 196px;
}

.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.hd_info {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color-second);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 12px 6px;
  border-radius: 5px;
  width: 13rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}

a.comon-btn:hover {
  background: var(--theme-color);
  color: #fff;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: capitalize;
  padding: 29px 19px;
  display: inline-block;
  font-weight: 500;
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
    border: none;
    background: #fff;
    padding: 0 0;
    min-width: inherit;
    width: 280px;
    border-radius: 0px;
    height: 280px;
    overflow-y: scroll;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}



.top-header{
  display: block;
  background-color: var(--theme-color-second);
}

.top-header .nav-bar, .top-header .nav-bar-2 {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.top-header .nav-bar a{
  color: #fff;
}

.top-header .nav-bar-2 a{
color: #fff;
display: flex;
gap: 5px;
}

.top-header .nav-bar-2 a img{
  width: 120px;
}

.small .hd_info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.fixed-bottom-1 {
  position: fixed;
  bottom: 0;
  background-color: var(--theme-color-second);
  width: 100%;
  z-index: 9999;
}

.fixed-bottom-1  ul{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.fixed-bottom-1  ul li{
  width: 100%;
    align-items: center;
  justify-content: center;
  border: 1px solid #fff;
}

.fixed-bottom-1  ul li a{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  color: #fff;
  width: 100%;
  text-align: center;
  gap: 5px;
}


.banner_Sec h2{
    font-size: 38px;
}
.banner_Sec .owl-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    position: absolute;
    width: 100%;
    bottom: 35px;
}

.banner_Sec .owl-dots span{
  display: block;
  width: 25px;
  height: 5px;
  border-radius: 650px;
  background: var(--theme-color-second);
  opacity: 0.5;
  transition: 1s;
}

.banner_Sec .owl-dots .active span{
  display: block;
  width: 45px;
  height: 5px;
  border-radius: 650px;
  background: var(--theme-color-second);
  opacity: 1;
  transition: 1s;

}
.banner_Sec h1 {
    font-size: 38px;
}

.home_Sec_2 {
  position: relative;
}

.home_Sec_2 .container{
  position: relative;
  z-index: 11;
}
.home_Sec_2::after{
  content: '';
  width: 35%;
  display: block;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
}

.home_Sec_3 {
  position: relative;
}

.home_Sec_3 .img-main{
  position: absolute;
  bottom: 0;
  width: 35%;
}
.home_Sec_3 .container{
    position: relative;
  z-index: 11;
}
.home_Sec_3 h5{
  margin-bottom: 10px;
}

.home_Sec_3  .heading hr{
  margin: 5px 0;
  
}
.home_Sec_3  .heading a{
  font-size: 14px;
}
.home_Sec_3 hr{

  opacity: 1;
  height: 2px;
  background-color: #000;
}

.member_service_sec .service-sec_main{
  height: 100vh;
}

.latest-post .post-box  p{
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  line-height: normal;
}
.latest-post .post-box .post-dec img {
    width: 45px;
    height: 45px;
    border-radius: 600px;
    object-fit: cover;
}
.latest-post .post-box .post-dec{
  display: flex;
  gap: 19px;
  align-items: center;
  margin-bottom: 10px;
}

.latest-post .post-box .post-dec p{
  margin-bottom: 0;
  line-height: normal;
}

.footer {
  padding: 55px 0;
}

.footer .heading h5 {
    font-size: 24px;
}

.footer .heading .ft-list li{
  margin-bottom: 10px;
}

.footer .heading .ft-list li a{
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
}

.contract_sec_1 ul li a{
  color: #94163c;
}

.contact-us-1 .contact-info-box {
  background-color: var(--theme-color-second);
  color: #fff;
  height: 100%;
}

.contact-us-1 form input, .contact-us-1 form select{
  padding: 10px;
  border: 1px solid var(--theme-color-second);
  height: 55px;
  color: var(--theme-color-second);
  font-weight: 500;
}
.contact-us-1 form  label{
  margin-bottom: 15px;
}
.contact-us-1 input[type="checkbox"] {
    width: inherit;
}

.contact-us-1 form .check-in{
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-us-1 form .check-in label{

  margin-bottom: 0;
}

.contact-us-1 form .check-in label b{
  font-weight: normal;
}

.contact-us-1 form  button{
  width: 100%;
    padding: 10px;
  border: 1px solid var(--theme-color-second);
  height: 55px;
  background-color: var(--theme-color-second);
  color: #fff;
}

a.btn-inherit {
  width: fit-content;
}

.search-bg-2 .map iframe{
  height: 100%;
}

.search-bg-2 .map {
  height: 100vh;
}

.search-bg-2 .over-flow{
  height: fit-content;
}

.contract_sec_1 form{
  display: flex;
  align-items: center;
  border: 1px solid var(--theme-color-second);
  padding: 5px;
  border-radius: 5px;
}
.contract_sec_1 form input{
  padding: 10px;
  border: none;
}
.contract_sec_1 form button{
  background: transparent;
    padding: 10px;
  border: none;
}

.contract_sec_1 .page-box {
  
  border: 1px solid var(--theme-color-second);
  border-radius: 5px;
}
.contract_sec_1 .page-box li{
  border-bottom: 1px solid var(--theme-color-second);
}
.contract_sec_1 .page-box li:last-child{
  border-bottom: 0px;
}
.contract_sec_1 .page-box li a{
  padding: 15px;
  display: block;
  background-color: #fff;
}

.contract_sec_1 .page-box li:hover a{
  background-color: #ced4da;
}


  .form-section    .btn-custom {
      background-color: #8b1736; /* maroon */
      color: #fff;
      border: none;
      padding: 8px 20px;
      border-radius: 4px;
    }
    .form-section   .btn-custom:hover {
      background-color: #a11d42;
    }
     .form-section  .form-label {
      font-weight: 600;
    }
     .form-section  input[type="text"],   .form-section  input[type="email"] {
      border: 1px solid #ccc;
      border-radius: 4px;
      padding: 6px 10px;
      width: 100%;
    }

    .h-auto {
      height: auto!important;
    }