@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');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  --primary: #4294bb;
  --primary-dark: #222222;
  --secondary: #8a2909;
  --dark: #141311;
  --grey: #6d665e;
  /* --grey: #534e48; */
  --light: #f1ede9;
  --slider-bg: #f1edea;
  --light-1: #c4a599;
  --black: #000000;
}

* {
  box-sizing: border-box;
}

::selection {
  background-color: var(--primary);
  color: #ffffff;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

body::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary-dark);
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: var(--dark);
  overflow-x: hidden;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  text-decoration: none;
}

p {
  line-height: 26px;
  color: #666;
}

.full-img {
  width: 100%;
}

.f20 {
  font-size: 20px;
}

.f18 {
  font-size: 18px;
}

.f16 {
  font-size: 16px;
}

.f14 {
  font-size: 14px;
}

.f12 {
  font-size: 12px;
}

.light-bg {
  background-color: var(--light);
}

header {
  padding: 5px 0;
  position: relative;
  z-index: 100;
  background-color: var(--primary);
  background-size: cover;
}

.menu-fixed {
  /* background-color: #fff !important; */
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  animation: headerSlideDown 0.95s ease forwards;
}

@keyframes headerSlideDown {
  0% {
    margin-top: -100px;
  }

  100% {
    margin-top: 0;
  }
}

.logo img {
  width: 100%;
  /* max-width: 170px; */
  max-width: 110px;
}


.menu {
  width: 100%;
  text-align: right;
  margin-top: 22px;
}

.menu li {
  position: relative;
  display: inline;
  margin: 0px 20px;
}

.menu li a {
  transition: all 0.4s;
  padding: 15px 0px;
  font-size: 16px;
  position: relative;
  color: #fff;
}

.menu li:hover a {
  color: var(--secondary);
}


.has-dropdown span {
  display: none;
  /* padding-left: 10px; */
}

.dropdown {
  position: absolute;
  text-align: left;
  width: 1120px;
  left: 0px;
  top: 70px;
  background-color: #fff;
  /* border-radius: 5px; */
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 5px 3px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
  border: solid 0px var(--light);
  padding: 15px 15px 15px 15px;
}

.dropdown-small {
  width: 220px !important;
}

.dropdown li {
  display: block;
  border-bottom: solid 0px var(--light);
  margin: 0px;
}

.dropdown-brd-right {
  border-right: solid 1px #d5d5d5;
}

.dropdown li:last-child {
  border-bottom: none;
}

.dropdown li a {
  border: none;
  color: var(--grey);
  padding: 10px 15px !important;
  display: block;
  border-radius: 0;
  text-transform: capitalize;
  font-weight: 500;
}

.menu li:hover .dropdown li a {
  color: var(--grey) !important;
}

.dropdown li a::after {
  display: none;
}

.menu li:hover .dropdown {
  visibility: visible;
  opacity: 1;
  top: 54px;
}

.menu li:hover .dropdown li a {
  color: var(--black);
}

.menu li:hover .dropdown li a:hover {
  background-color: var(--light);
  color: var(--black) !important;
}

.dropdown::before {
  top: -12px;
  left: 15px;
  border-style: solid;
  border-width: 0 10px 13px;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  border-color: transparent transparent var(--primary);
  display: none;
}

.header-right {
  display: none;
}

.banner {
  width: 100%;
  height: 600px;
  position: relative;
  /* background-image: url(../images/banner-bg.jpg); */
  /* background-image: url(../images/banner.jpg); */
  /* background-repeat: no-repeat; */
  /* background-size: cover; */
  /* background-position: bottom; */
}

.banner img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.banner-cont {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.banner-cont h5 {
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
}

.banner-cont h1 {
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  padding-top: 15px;
  padding-bottom: 20px;
}

.slider-link {
  padding: 12px 25px;
  background-color: var(--primary);
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s;
  border-radius: 2px;
}

.slider-link:hover {
  background-color: var(--primary-dark);
}

.slider-link i {
  font-size: 20px;
  padding-left: 10px;
}

.banner-img {
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ban-img {
  width: 90%;
  height: 500px;
  object-fit: cover;
  padding: 10px;
  border: solid 1px var(--light-1);
  position: relative;
  z-index: 1;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  background-color: rgba(255, 255, 255, 0.6);
}

.shape-img {
  position: absolute;
  left: 0px;
  bottom: 30px;
  z-index: 0;
  /* display: none; */
}

.shape-img-2 {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 0;
}

.up-down {
  animation: up-down 4s infinite;
  animation-direction: alternate;
}

@keyframes up-down {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 15px);
    transform: translate(0, 15px);
  }
}

.down-up {
  animation: down-up 4s infinite;
  animation-direction: alternate;
}

@keyframes down-up {
  0% {
    -webkit-transform: translate(0, 15px);
    transform: translate(0, 15px);
  }
  100% {
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}

.inner-sec {
  padding: 50px 0;
}

.title {
  font-weight: 700;
  color: var(--primary-dark);
  position: relative;
  display: inline;
  font-size: 32px;
}

.title::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  left: 0;
  right: 0;
  bottom: -2px;
  background-color: var(--primary);
  margin:auto
}

.re-box {
  width: 100%;
  margin-top: 15px;
}

.re-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.re-box-cont {
  width: 100%;
  padding: 15px 10px 10px;
  text-align: center;
}

.re-box-cont h4 {
  font-weight: 500;
  font-size: 20px;
}

.link-btn {
  padding: 7px 15px;
  color: #fff;
  background-color: var(--primary);
  transition: all 0.4s;
  border-radius: 2px;
}

.link-btn:hover {
  background-color: var(--primary-dark);
}

.link-btn-outline {
  padding: 7px 15px;
  color: var(--primary);
  background-color: #fff;
  border: solid 1px var(--primary);
  transition: all 0.4s;
  border-radius: 2px;
}

.link-btn-outline:hover {
  background-color: var(--primary);
  color: #fff;
}

.product-bg {
  background-color: var(--primary-dark);
  background-image: url(../images/header-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.product-bg .title {
  color: #fff;
}

.product-bg .title::after {
  background: url(../images/title-line-white.png) no-repeat center;
}

a {
  color: inherit;
}

.product-bg .re-box {
  border: solid 1px var(--primary-dark);
  transition: all 0.4s;
  padding: 10px;
  position: relative;
  overflow: hidden;
}

.re-box-inner {
  position: relative;
  z-index: 10;
}

.product-bg .re-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 0.4s;
}

.product-bg .re-box:hover {
  background-color: transparent;
  border: solid 1px var(--primary);
  color: #fff;
}

.product-bg .re-box:hover p {
  color: #cccccc;
}

.product-bg .re-box:hover::before {
  top: 100%;
}

.product-box {
  width: 100%;
  margin-top: 40px;
  border: solid 1px var(--light);
  overflow: hidden;
  background-color: #fff;
  background-image: url(../images/product-bg.png);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: all 0.4s;
}

.product-box:hover {
  border-color: var(--secondary);
}

.product-box-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.product-box:hover img {
  transform: scale(1.1);
}

.pr-inner {
  width: 100%;
  padding: 20px;
}

.pr-inner h4 {
  font-weight: 600;
  color: var(--secondary);
  font-size: 20px;
}

.pr-inner p {
  margin-bottom: 8px;
  font-size: 16px;
}

.pr-inner h6 {
  color: var(--grey);
  font-size: 18px;
}

.blog-bg {
  background-color: var(--light);
  background-image: url(../images/blog-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.blog-box {
  width: 100%;
  border: solid 1px var(--light);
  background: rgba(255, 255, 255, 0.4);
  padding: 15px;
  min-height: 400px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: all 0.4s;
}

.blog-box:hover {
  box-shadow: none;
  background: rgba(255, 255, 255, 1);
}

.blog-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
}

/* .contact-form {
  padding: 40px;
  border-radius: 20px;
  background-color: #f3f3f3;
} */

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="number"] {
  width: 100%;
  padding: 5px 10px;
  height: 45px;
  border: solid 1px #e8e8e8;
  transition: all 0.4s;
  outline: none;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="number"]:focus,
.contact-form textarea:focus {
  border: solid 1px var(--primary);
}

.contact-form textarea {
  width: 100%;
  padding: 5px 10px;
  height: 100px;
  border: solid 1px #e8e8e8;
  transition: all 0.4s;
  outline: none;
}

.btn-submit {
  outline: none;
  border: none;
  padding: 7px 20px;
  border-radius: 4px;
  background-color: var(--primary);
  color: #fff;
  transition: all 0.4s;
}

.btn-submit:hover {
  background-color: var(--primary-dark);
}

.modal-header {
  background-color: var(--primary-dark);
  color: #fff;
}

button,
button:focus {
  outline: none;
}

.inner-banner {
  width: 100%;
  height: 200px;
  position: relative;
  background-color: #4a4a4a;
  margin-top: 0px;
}

.inner-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-banner-cont {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner-banner-cont h1 {
  font-weight: bold;
  color: #fff;
  font-size: 40px;
}

.contact-info {
  height: 454px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: #fff;
  border: solid 1px #e8e8e8;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  padding: 10px 30px 40px 30px;
}

.contact-info li {
  position: relative;
  margin-bottom: 25px;
  margin-top: 40px;
  font-size: 18px;
  width: 100%;
  max-width: 80%;
  padding-left: 50px;
}

.contact-info li i {
  position: absolute;
  left: 0;
  top: -5px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.map iframe {
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
  rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.gallery img{
  width:100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.recent-post {
  padding: 20px;
  background-color: #f5f5f5;
  border: solid 1px #e8e8e8;
  border-radius: 10px;
}

.recent-post ul li {
  border-bottom: dotted 1px var(--primary-dark);
}

.recent-post ul li a {
  padding: 10px;
  display: block;
  transition: all 0.4s;
}

.recent-post ul li a:hover {
  padding-left: 17px;
  color: var(--primary);
}

.contact-box {
  width: 100%;
  border-radius: 10px;
  padding: 40px 35px;
  background-color: #f7f7f7;
  min-height: 230px;
  border: solid 1px #e8e8e8;
}

.contact-icon i {
  font-size: 37px;
}

.contact-box h3 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 12px;
}

.contact-box h3 a {
  color: var(--dark);
}

.contact-box p {
  font-size: 16px;
  color: var(--dark) !important;
}

.contact-btn {
  padding: 7px 12px;
  border-radius: 10px;
  color: #fff;
  background-color: var(--primary);
  font-weight: 500;
  transition: all 0.5s;
}

.contact-btn:hover {
  background-color: var(--light);
  color: #000;
}

.contact-sec {
  width: 100%;
  padding: 10px 30px 10px 30px;
  border:solid 1px #ccc;
  border-radius: 4px;
}

.contact-sec .form-group, .enquiry-form .form-group{
 margin-bottom: 12px;
}


.contact-sec .form-control, .enquiry-form .form-control {
  min-height: 40px;
}

.contact-sec .form-control:focus, .enquiry-form .form-control:focus {
  box-shadow: none!important;
  border:solid 1px var(--primary);
}

.btn-submit {
  color: #fff;
  font-weight: 500;
  background-color: var(--primary);
  border-radius: 4px;
  padding: 10px 30px;
  display: inline-block;
  transition: all 0.4s;
  border:solid 1px var(--primary);
  outline: none;
}

.btn-submit:hover {
  background-color:transparent;
  color: var(--primary);
  box-shadow: none;
}

.line-height-h4 {
  line-height: 35px;
}

.list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 12px;
  color: #666;
}

.list li::before {
  content: '';
  position: absolute;
  left: 0;
  top:10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #666;
}

/* ====== Footer CSS ====== */

footer {
  width: 100%;
  padding: 80px 0px 40px 0;
  background-image: url(../images/footer-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

footer p {
  color: #ccc;
}

.f-logo img {
  width: 100%;
  max-width: 100px;
}

.f-links {
  margin-top: 10px;
}

.f-links li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  color: #ccc;
}

.f-links.pl-0 li {
  padding-left: 5px;
}

.f-links li i {
  position: absolute;
  left: 0;
  top: 0px;
}

footer h5 {
  font-weight: 600;
  font-size: 24px;
  color: #fff;
}

footer a {
  color: var(--dark);
  transition: all 0.4s;
  color: #ccc;
}

footer a:hover {
  color: var(--primary);
}

.footer-btm {
  border-top: solid 1px #333;
}
