@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --theme-color: #000000;
  --theme-color-second: #b3282f;
  --theme-color-third: #000;

  --heading-font: 'head-font';
  --paragraph-font: "Poppins", 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: "Poppins", sans-serif;
  /* color: var(--theme-color) !important; */
}

@font-face {
  font-family: 'head-font';
  src: url(../fonts/FuturaNowHeadlineMedium.ttf);
}


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;
}

.m-backtotop.active {
  bottom: 0;
  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: 14rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}

a.comon-btn:hover {
  background: var(--theme-color-second);
  color: #fff;
}
a.btn-inherit{
  width: inherit;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

.header_menu li a {
  color: #ffffff;
  font-size: 16px;
  text-transform: capitalize;
  padding: 15px 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: 200px;
  border-radius: 0px;
}

.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:#424143 !important;
  z-index: 9999999999999;
}



#main_header .top-header {
  background-color: #646061;
  color: #fff;
  padding: 5px 0;
}

#main_header .top-header ul {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

#main_header .top-header ul img {
  width: 60px;
}

#main_header .top-header ul.social li a {
  color: #fff;
  background-color: var(--theme-color-second);
  display: flex;
  height: 50px;
  width: 50px;
  align-items: center;
  justify-content: center;
  border: 5px solid #fff;
  border-radius: 600px;
}

#main_header .hd_info form,
#exampleModal form {
  display: flex;
  border: 1px solid #646061;

  background-color: #646061;
}

#main_header .navbar-expand-lg {
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
}

#main_header .header_menu {
  background-color: #424143;
}

#main_header .hd_info form input,
#exampleModal input {
  background: transparent;
  color: #fff;
  border: none;
  padding: 10px;
}

#main_header .hd_info form button,
#exampleModal button {
  background: transparent;
  color: #fff;
  border: none;
  padding: 10px;
}

/* banner_sec */

.banner_sec {
  padding: 150px 0;
}

.banner_sec a {
  color: #000;
  text-decoration: underline;
}

.small {
  background-color: #424143;
}

.home_sec_2 .info-box {
  border-radius: 58px;
  height: 100%;
}

.home_sec_2 .info-box .heading-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.home_sec_2 .info-box .heading-box img {
  width: 55px;
}

.home_sec_2 .info-box .heading-box h4 {
  font-size: 19px;
  margin: 0;
}

.home_sec_2 .info-box p,
.home_sec_2 .info-box a {
  color: #424143;
  font-size: 14px;
  line-height: 1.6;
}

.home_sec_2 .info-box a {
  text-decoration: underline;
}

.home_Sec_3 .allert-box-main {
  background-color: var(--theme-color-second);
  color: #fff;
  font-size: 15px;
}

.home_Sec_3 .blog-box {
  position: relative;
}

.home_Sec_3 .blog-box .over-lay-1 {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
}

.home_Sec_3 .blog-box .over-lay-2 {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  color: #fff;
}

.home_Sec_3 .blog-box .over-lay-2 .date-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.home_Sec_3 .blog-box .over-lay-2 .date-box li {
    background-color: #5aaae7;
    font-size: 16px;
    padding: 3px 22px;
    border-radius: 60px;
}
.home_Sec_3 .blog-box .over-lay-2 p {
  font-size: 12px;
  line-height: 1.4;
}

.home_Sec_3 .blog-box .over-lay-2 h4 {
  font-size: 18px;
}

.home_Sec_3 .blog-box p a {
  color: #424143;
  font-size: 12px;
  line-height: 1.6;
}

.home_Sec_3 .blog-box p {
  line-height: 1.4;
}

.home_Sec_3 .blog-main_home h5 {
  font-size: 25px;
}

.home_Sec_3 .home-list-1 {
  list-style: disc;
  padding: 19px 25px;
  font-size: 13px;
  font-weight: 600;
  height: 100%;
  box-shadow: 7px 6px 9px #e1e1e1;
  border-radius: 8px;
  border: 1px solid #f1f1f1;
}

.home_Sec_3 .home_sec_2_box {
  background-color: #f6f6f6;
  padding: 25px;
  border-radius: 18px;
  height: 100%;
}

.home_Sec_3 .home_sec_2_box h3 {
  font-size: 15px;
}

.home_Sec_3 .home_sec_2_box img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  margin-bottom: 12px;
}

.home_Sec_3 .home_sec_2_box p {
  font-size: 12px;
  line-height: 1.6;
}

.home_Sec_3 .home_sec_2_box a {
  font-size: 12px;
  line-height: 1.6;
}

.home_Sec_3 .home_sec_6_box {
  border-radius: 15px;
}

.home_Sec_3 .home_sec_6_box .number {
  color: #5aaae7;
  margin-bottom: 10px;
}

.home_Sec_3 .home_sec_6_box h5 {
  font-size: 15px;
  color: #5aaae7;
  margin-bottom: 10px;

}

.home_Sec_3 .home_sec_6_box p {
  font-size: 12px;
  margin-bottom: 10px;

  line-height: 1.6;
}

.home_Sec_3 .home_sec_6_box a {
  font-size: 12px;
  line-height: 1.6;
  color: #5aaae7;
}

.footer .heading-line {
  display: flex;
  align-items: center;
  gap: 10px;
  /* space between text and line */
  margin-bottom: 15px;
}

.footer .heading-line h5 {
  text-transform: uppercase;
  margin-bottom: 0;
  white-space: nowrap;
  /* prevent text wrapping */
  color: #fff;
  /* adjust text color */

}

.footer .heading-line::after {
  content: '';
  flex-grow: 1;
  /* fill remaining space */
  height: 2px;
  /* thickness of the line */
  background-color: #fff;
  /* line color */
}

.footer .list-social {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 15px;
}

.footer .list-social li a {
  color: #fff;
  background-color: var(--theme-color-second);
  display: flex;
  height: 50px;
  width: 50px;
  align-items: center;
  justify-content: center;
  border: 5px solid #fff;
  border-radius: 600px;
}


.footer .post-box .post li a img {
  width: 90px;
  height: 50px;
  border-radius: 5px;
  object-fit: cover;
}

.footer .post-box .post li a {
  display: flex;
  font-size: 18px;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.footer .post-box .post li a p {
  font-size: 13px;
  line-height: 1.6;
}

.footer .post-box .post li {
  margin-bottom: 15px;
}

.footer .ft-list li a {
  display: inline-block;
  padding: 8px 25px;
  background-color: #fff;
  color: #000;
  font-size: 14px;

}

.footer .ft-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer .opacity-1 {
  opacity: 1;
}
#main_header p.d-msoll.mb-0 {
    font-size: 13px;
}


.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;
}
.contact-us-1 .contact-info-box p{
  margin-bottom: 0px;
}

.inner-blog .inner-banner_info {
  position: relative;
  color: #fff;
}
.inner-blog .inner-banner_info::after{
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  background-color: #00000062;

}

.inner-blog .heading-box {
  position: relative;
  z-index: 111;
}

.inner-blog .heading-box h1{
  font-size: 35px;
} 

.inner-blog .date-list {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
}
.inner-blog .date-list  a {
    color: #fff;
    /* background: navajowhite; */
    background-color: #5aaae7;
    font-size: 16px;
    padding: 3px 22px;
    border-radius: 60px;
}
.inner-blog .auther-user li a{
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;

}
.inner-blog .top-heading {
    margin-bottom: 0;
}
.inner-blog .auther-user li a img{
  width: 50px;
  background-color: #000;
  border-radius: 600px;
  border: 2px solid #ffff;
}


.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;
  list-style: none;
  padding: 0;
}
.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 {
    color: #000;
    padding: 15px;
    display: block;
    background-color: #fff;
}

.contract_sec_1 .page-box li:hover a{
  background-color: #ced4da;
}


.contract_sec_1 ul li{
  margin-bottom: 10px;
  font-style: italic;
}
.contract_sec_1 ul {
  list-style: disc;
  padding-left: 25px;
}
.contract_sec_1 ul li::marker{
  color: var(--theme-color-second);
}

.contract_sec_1 .blog-box {
  border: 1px solid #424143;
  padding: 2%;
  border-radius: 5px;
}

.contract_sec_1 .blog-box  p a{
  font-size: 12px;
  color: var(--theme-color-second);
}
.contract_sec_1 .blog-box  p{
  line-height: 1.5;
}

.inner-blog .bottom-heading {
    margin-bottom: 115px;
}