@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;1,400;1,700&display=swap');
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #5E5E5E;
}
::-moz-selection {
  color: #FFF;
  background: #cfa13e;
}
::selection {
  color: #FFF;
  background: #cfa13e;
}
a {
  color: #cfa13e;
  text-decoration: none;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
a:active, a:hover {
  color: #a62c39;
  outline: 0;
  text-decoration: none;
}
a:focus {
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0 0 25px 0;
  color: #a62c39;
}
h1 {
  font-size: 44px;
  color: #a62c39;
}
h2 {
  font-size: 22px;
  font-weight: bold;
}
p {
  margin: 0;
  padding: 0 0 25px 0;
}
.xtarget:target {
  margin-top: -12px;
  padding-top: 80px;
}
/* Bootstrap Custom CSS */
.form-control {
  border-radius: 0;
  padding: 15px;
  font-size: 14px;
  height: 50px;
}
/* Bootstrap Custom CSS  ---- Ends */
.header {
  height: 100px;
  padding: 10px 15px;
  background-color: #FFF;
}
.header .logo {
  float: left;
  margin-left: 15px;
  overflow: hidden;
}
.header .logo a {
  display: block;
  height: 80px;
  width: 120px;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../img/adurs-logo.svg) no-repeat center;
}
.header .right-panel {
  float: right;
}
@media (max-width: 992px) {
  .header {
    height: 60px;
    padding: 5px;
  }
  .header .logo {
    margin-left: 0px;
  }
  .header .logo a {
    height: 50px;
    width: 75px;
  }
}
.main-nav {
  margin-top: 25px;
}
.main-nav ul, .main-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav ul li {
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 97;
  margin: 0 10px;
}
.main-nav ul li a {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding: 0 5px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #a62c39;
  letter-spacing: 2px;
}
.main-nav ul li a:hover {
  color: #cfa13e;
}
.main-nav ul li a.active {
  color: #cfa13e;
}
.main-nav ul li ul {
  display: none;
  position: absolute;
  left: 1px;
  top: 30px;
  margin: 0 0 0 -1px;
  padding: 0;
  list-style: none;
  width: 150px;
}
.main-nav ul li:hover > ul {
  display: block;
}
.main-nav ul li ul li {
  display: block;
  float: left;
  margin: 0;
}
.main-nav ul li ul a {
  display: block;
  padding: 8px;
  background: #a62c39;
  color: #FFF !important;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: normal;
  text-transform: capitalize;
  line-height: normal;
  height: auto !important;
  width: 150px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
}
.main-nav ul li ul a:hover {
  background: #cfa13e;
  color: #FFF;
}
.main-nav ul li ul ul {
  left: 150px;
  top: 0px;
  margin: 0 0 0 -1px;
}
/* mobile view nav */
@media (max-width: 992px) {
  .main-nav {
    display: block;
    float: none;
    position: fixed;
    z-index: 1000;
    left: -260px;
    top: 0;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    width: 260px;
    margin-top: 0;
    background: #a62c39;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
  }
  .main-nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
    display: block;
    vertical-align: inherit;
  }
  .main-nav ul li a {
    position: static;
    display: block;
    padding: 10px;
    color: #FFF !important;
    background: #a62c39;
    letter-spacing: normal;
    text-transform: capitalize;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    vertical-align: inherit;
    box-shadow: none;
    transform: none;
    height: inherit;
  }
  .main-nav ul li a:hover {
    background: #cfa13e;
    color: #FFF !important;
  }
  .main-nav ul li ul {
    display: block;
    position: inherit;
    left: inherit;
    top: inherit;
    margin: inherit;
    padding: inherit;
    width: inherit;
  }
  .main-nav ul li ul li {
    border-bottom: none;
    float: none;
  }
  .main-nav ul li ul li:before {
    content: ' \00BB';
    position: absolute;
    left: 15px;
    color: rgba(255, 255, 255, 0.5);
  }
  .main-nav ul li ul a {
    padding: 5px 10px 5px 30px;
    font-size: 13px;
    line-height: 15px;
    width: inherit;
    border-bottom: none;
  }
  .main-nav ul li ul li ul {
    margin: 0 0 0 20px;
    left: inherit;
  }
  .main-nav.show-menu {
    left: 0px;
  }
}
/* mobile view nav --- ends */
.mobile-nav-icon {
  display: none;
  position: absolute;
  z-index: 1;
  right: 10px;
  top: 12px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.mobile-nav-icon div {
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  height: 5px;
  border-radius: 2px;
  background: #cfa13e;
  margin: 5px 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.mobile-nav-icon.nav-icon-close div:nth-child(1) {
  margin-top: 15px;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mobile-nav-icon.nav-icon-close div:nth-child(2) {
  display: none;
}
.mobile-nav-icon.nav-icon-close div:nth-child(3) {
  margin-top: -10px;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (max-width: 992px) {
  .mobile-nav-icon {
    display: block;
  }
}
.footer {
  background-color: #a62c39;
  background-image: url("../img/adurs-logo-white.svg");
  background-position: center 30px;
  background-repeat: no-repeat;
  background-size: 120px;
  padding: 100px 15px 40px 15px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer h5 {
  font-size: 14px;
  color: #FFF;
}
.scroll-to-top {
  position: fixed;
  z-index: 99;
  right: 15px;
  bottom: 15px;
  display: none;
  width: 50px;
  height: 50px;
  background-color: rgba(52, 58, 64, 0.5);
  background-image: url(../img/arrow-up.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  text-indent: -9999px;
}
.scroll-to-top:hover {
  background-color: #343a40;
}
.section-title {
  padding: 60px 15px;
  text-align: center;
  background-color: #F1F1F1;
}
.section-title h1 {
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 2px;
  padding: 0;
  margin: 0;
}
.section-content {
  padding: 60px 0;
}
.section-content p {
  text-align: justify;
}
@media (max-width: 767px) {
  .section-title {
    padding: 30px 15px;
  }
  .section-content {
    padding: 30px 0;
  }
}
.home-banner {
  position: relative;
  min-height: 65vh;
  background-color: #A9A9A9;
  background-image: url(../img/home-banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.home-banner .pattern {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  height: 240px;
  background-image: url(../img/home-banner-btm.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
}
@media (max-width: 768px) {
  .home-banner {
    min-height: 300px;
  }
}
.home-intro {
  background: #a62c39;
  padding: 60px 0;
  text-align: center;
}
.home-intro h1 {
  text-transform: capitalize;
  font-size: 32px;
  color: #FFF;
}
.home-intro p {
  color: #FFF;
}
.home-intro .custom-btn {
  color: #FFF;
  border: 1px solid #FFF;
}
.home-intro .custom-btn:hover {
  background: #a62c39;
  color: #cfa13e;
  border: 1px solid #cfa13e;
}
.home-about {
  background-color: #FFF;
}
.home-about .custom-text-block {
  padding: 100px 15px;
}
.home-about .img-block {
  background-color: #EAEAEA;
  background-image: url(../img/home-img.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.home-about p {
  text-align: justify;
}
.home-services {
  background-color: #F1F1F1;
  padding: 60px 0px;
  text-align: center;
  font-size: 24px;
}
.home-services h2 {
  font-size: 32px;
  font-weight: normal;
  text-transform: uppercase;
}
.home-services img {
  max-width: 80px;
  margin-bottom: 10px;
}
.custom-btn {
  display: inline-block;
  padding: 16px;
  color: #4c4c4c;
  border: 1px solid #4c4c4d;
  background: transparent;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: bold;
  line-height: 16px;
  text-transform: uppercase;
}
.custom-btn:hover {
  color: #FFF;
  background-color: #4c4c4c;
}
.custom-btn:before {
  border-top: 1px solid !important;
  width: 18px;
  height: 5px;
  margin-right: 8px;
  display: inline-block;
  content: "";
}
.custom-btn:after {
  border-top: 1px solid !important;
  width: 18px;
  height: 5px;
  margin-left: 8px;
  display: inline-block;
  content: "";
}
.custom-text-block {
  max-width: 70%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .custom-text-block {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}