@import url("https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500;600&display=swap");
body {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

.btn-outline-light,
.btn-light {
  border: none;
  border-radius: none !important;
}

.btn-lg {
  border-radius: 0;
}

b,
strong {
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.display-4,
.display-3,
.display-2,
.display-1 {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.toper{
    background:#212529
}
.toper p {
  margin: 0;
  padding: 0;
  color:#fff;
  
}

.toper .uil {
  margin: 0 5px;
  color: #fff;
  padding: 3px 5px;
  
}

.toper__right {
  text-align: right;
}

.nav {
  position: sticky;
  top: 0;
  left: 0;
  padding: 20px;
  width: 100%;
  display: block;
  background:#fff;
  z-index: 99;
}

.nav__btn {
  width: 50px;
  height: 50px;
  color: :#0b0423;   

  border: none;
  background: #ddd;
}

.nav__logo {
  width: 200px;
}

.nav__logo img {
  width: 200px;
  display: block;
  margin: 0;
  padding: 0;
  transition: all 250ms linear;
}

.nav__menu {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: auto;
}

.nav__menu li {
  margin: 0 10px;
}

.nav__menu li::after {
  content: "|";
  opacity: 0.3;
  margin-left: 15px;
}

.nav__menu li:nth-last-child(1)::after {
  display: none;
}

.nav__menu a {
  position: relative;
  text-decoration: none;
  color: #0b0423;
  font-weight: 300;
}

.nav__menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0px;
  height: 2px;
  background: #0b0423;
  display: block;
  transition: all 250ms linear;
}

.nav__menu a:hover {
  color: #0b0423;
	opacity:0.8;
}

.nav__menu a:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 20px;
  height: 2px;
  background: #ddd;
  display: block;
}

@media (max-width: 1200px) {
  .nav__menu {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .nav__menu li {
    margin: 10px;
  }
  .nav__menu li::after {
    display: none;
  }
}

.slider {
  position: relative;
  width: 100%;
  height: 600px;
  background: #0b0423;
}

@media (max-width: 1200px) {
  .slider {
    height: 300px;
  }
}

.slider__left {
  position: absolute;
  top: 45%;
  left: 10px;
  width: 50px;
  height: 50px;
  z-index: 20;
  background: #0b0423;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #fff;
}

.slider__right {
  position: absolute;
  top: 45%;
  right: 10px;
  width: 50px;
  height: 50px;
  z-index: 20;
  background: #0b0423;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #fff;
}

.slider__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider__item__active {
  z-index: 9;
}

.slider__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}

.slider__item__content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 96%;
  max-width: 1320px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
  background: #0b0423;
  color: #fff;
  padding: 30px 15px;
  transform: translate(0, 100px);
  z-index: 12;
}

@media (max-width: 1200px) {
  .slider__item__content {
    display: none;
  }
}

.slider__item__content p {
  margin: 0;
  padding: 0;
}

.slider__item__content hr {
  position: relative;
  opacity: 1;
}

section.about {
  padding: 140px 15px;
  padding-top: 150px;
}

@media (max-width: 1200px) {
  section.about {
    padding: 100px 15px;
  }
}

.about__title {
  position: relative;
  margin-bottom: 20px;
}

.about__title::after {
  content: "";
  position: relative;
  width: 100px;
  height: 3px;
  background: #0b0423;
  display: block;
  margin: 5px 0;
}

.boxes__item {
  position: relative;
  padding: 30px;
}

.boxes__item figure {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 550px;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.boxes__item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: all 400ms linear;
}

.boxes__item:hover img {
  transform: scale(1.2);
}

.boxes__item__title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
  padding: 10px;
  border: solid 30px #f8f9fa !important;
  text-align: center;
  padding-top: 450px;
  color: #fff;
  cursor: pointer;
}

.boxes__item__title h3::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #fff;
  margin: 15px auto;
  padding: 0;
  display: block;
  transition: all 250ms linear;
}

.boxes__item__title:hover h3::after {
  content: "";
  width: 100px;
  height: 2px;
  background: #fff;
  margin: 15px auto;
  padding: 0;
  display: block;
}

.boxes {
  padding: 100px 15px;
}

.contactwithus {
  position: relative;
  text-align: center;
  padding: 60px 15px;
  background: #0b0423;
}

.contactwithus img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.contactwithus__content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.contactwithus__content p {
  margin: 0;
}

.footer {
  padding: 60px 15px;
  background: #0b0423;
  color: #fff;
}

@media (max-width: 1200px) {
  .footer .footer-right-mobile-center {
    text-align: center;
  }
}

.footer .uil {
  margin: 0 5px;
  color: #0b0423;
  padding: 3px 5px;
  background: #fff;
}

.footer ul {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
}

@media (max-width: 1200px) {
  .footer ul {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
}

.footer ul li {
  margin: 0 15px;
}

.footer ul a {
  color: #fff;
  text-decoration: none;
}

.footer ul a::after {
  content: "";
  width: 0px;
  height: 1px;
  background: #fff;
  display: block;
  margin-top: 5px;
  transition: all 250ms linear;
}

.footer ul a:hover::after {
  content: "";
  width: 30px;
  height: 1px;
  background: #fff;
  display: block;
  margin-top: 5px;
}

.footer .footer-right-mobile-center {
  text-align: right;
}

@media (max-width: 1200px) {
  .footer .footer-right-mobile-center {
    text-align: center;
  }
  .footer .footer-right-mobile-center p {
    padding: 0;
    margin: 0 !important;
  }
}

article {
  position: relative;
  padding: 100px 15px;
}

.title {
  position: relative;
  padding: 70px 15px;
  background: #f8f9fa;
  color: #0b0423;
}

.title img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.2;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%);
}

.title .container {
  position: relative;
  z-index: 10;
}

.title .container h1 {
  text-align: center;
  margin-top: 20px;
}

.title .container h1::after {
  content: "";
  width: 100px;
  height: 3px;
  background: #0b0423;
  display: block;
  margin: 20px auto;
}

.subfooter{
padding: 10px 15px;
text-align: center;
color: #fff;
	font-size:14px;
background: #000;}

.subfooter a{color:#fff;text-decoration:none}
.subfooter p{
margin:0;
	padding:0;
}
form{
background:#f8f9fa !important;
	padding:20px;
	box-sizing:border-box;
}
input{width:100%}
textarea{width:100%}
input[type="checkbox"]{width:20px;}
input[type="submit"]{width:200px; background:#111;color:#fff;border:none;paddding:6px 20px;}

.search-header{display:none;}

.gallery__item figure{overflow:hidden;width:100%;height:250px;}

.gallery__item{text-align:center;}

.gallery__item figure img{width:100%;height:100%;object-fit:cover;object-position:center center;transition:all 250ms linear}

.gallery__item figure:hover img{transform:scale(1.2); filter:grayscale(50%)}


@media(max-width:1200px){

	.img-thumbnail{
	width:100% !important;
	height:250px !important;
	}
	
}