*,
::after,
::before {
  box-sizing: border-box;
}

/* Global Styles */
html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #314a77;
  --secondary-color: #fff;
  --color-black: #1a1a1a;
  --color-brown: #8b6f47;
  --font-family-montserrat: "Montserrat", sans-serif;
  --font-family-unna: "Unna", serif;
  --font-family-eb-garamond: "EB Garamond", serif;
  --font-extralight: 200;
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --font-black: 900;
}

body {
  font-family: var(--font-family-montserrat);
  color: var(--color-black);
  font-size: 1rem;
  line-height: inherit;
}
/* width */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

/* track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 6px;
}

/* thumb */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}

/* thumb hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

button,
input,
select,
textarea {
  transition: all 0.3s ease;
}

a {
  text-decoration: none;
  color: inherit;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-family-montserrat);
  font-weight: var(--font-medium);
  margin-bottom: 0;
}

h1,
h2 {
  font-family: var(--font-family-eb-garamond);
  font-weight: 500;
}

h2 {
  font-size: 72px;
  font-weight: var(--font-medium);
  color: var(--color-black);
  margin: 0;
  line-height: 72px;
}
h5 {
  font-size: 32px;
  font-weight: var(--font-medium);
  color: var(--color-black);
  margin: 0;
}
h6 {
  font-size: 25px;
  font-weight: var(--font-regular);
  color: var(--color-black);
  margin: 0;
  line-height: normal;
}

p {
  line-height: 1.75;
  font-size: 16px;
  font-weight: 400;
}
p:last-child {
  margin-bottom: 0;
}
img {
  max-width: 100%;
  height: auto;
}
b {
  font-weight: 700;
}
strong {
  font-weight: 600;
}
.btnOutline {
  font-size: 22px;
  border: 2px solid var(--color-black);
  color: var(--color-black);
  text-transform: uppercase;
  padding: 16px 22px;
  line-height: 1;
  text-decoration: none;
  font-weight: var(--font-medium);
  display: flex;
  align-items: center;
  transition: 0.3s ease all;
  text-decoration: none;
}

.btnOutline:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.btnOutline span,
.buttonWrap span {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 47px;
  background: var(--primary-color);
  color: #fff;
  margin-left: 17px;
  transition: 0.3s ease all;
}

.btnOutline:hover span {
  color: var(--primary-color);
  background-color: #fff;
}

/* Wrapper */
.stats-wrapper {
  width: 100%;
}
.container {
  width: 100%;
  margin: auto;
}

.headerTop {
  background: #ddd;
  color: var(--color-black);
  padding: 10px 0;
  transition: all 0.5s;
}

.headerTopInnerWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.headerTopInnerSection {
  display: flex;
  align-items: center;
  justify-content: center;
}

.headerTopInnerSection p {
  font-size: 0.875rem;
  margin-bottom: 10px;
}

.headerTopInnerWrap a.btnOutline {
  display: inline-block;
  font-size: 14px;
  border-width: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  margin-left: 15px;
  line-height: 24px;
  transition: 0.3s ease all;
  text-decoration: none;
}

.headerTopInnerWrap a.btnOutline:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.headerTopNavBar {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: center;
  margin-bottom: 0;
}

.headerTopNavBar li {
  position: relative;
  padding: 0 20px;
}

.headerTopNavBar li a {
  font-size: 14px;
  line-height: 37px;
  text-transform: uppercase;
  color: var(--color-black);
  font-weight: 500;
  font-family: var(--font-family-montserrat);
  text-decoration: none;
}

.headerTopNavBar li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 15px;
  background: var(--color-black);
}

.headerTopNavBar li:last-child::after {
  display: none;
}

/* .languageDd{
    margin-left: 20px;
} */
.languageDd .languageSelect {
  width: 143px;
  background: #fff;
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  padding: 3px !important;
  height: auto !important;
  border: 1px solid #d3d3d3 !important;
  border-radius: 0 !important;
  color: #32373c;
  font-size: 10pt;
}

.stickyHeader .headerTop {
  transform: translateY(-100%);
}

body.scollLock {
  overflow: hidden;
}

@media (max-width: 991px) {
  .headerTopInnerSection p {
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .languageDd {
    width: 100%;
  }

  .languageDd select {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .headerTopInnerSection p {
    font-size: 12px;
  }
}

/* Header */
header {
  background: var(--secondary-color);
  padding: 15px 0;
  transition: all 0.5s;
}

.stickyHeader header {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 9;
  background: #fff;
  box-shadow: 0 0 5px;
  padding: 10px 0;
}

.siteLogo {
  margin-bottom: 0;
  margin-top: 0;
}

.siteLogo a {
  display: flex;
}

.siteLogo img {
  max-height: 72px;
  transition: all 0.5s;
}

.stickyHeader .siteLogo img {
  max-width: 70%;
}

.nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.dropdown-menu {
  padding: 0;
}
.nav li .nav-link {
  font-family: "Unna", serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-black);
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.dropdown-item {
  padding: 12px 16px;
}
.nav li:first-child .dropdown-item {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.nav li:last-child .dropdown-item {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.nav li a:hover {
  color: var(--color-brown);
}
.dropdown-item {
  transition: all 0.3s ease;
}
.dropdown-item.active,
.dropdown-item:active,
.dropdown-menu li a:hover {
  color: #fff;
  text-decoration: none;
  background-color: var(--color-brown);
}

.headerPhone {
  display: flex;
  align-items: center;
}

.phone-text-header {
  display: flex;
  flex-direction: column;
}

.phone-icon-header {
  margin-right: 16px;
  margin-left: 30px;
  width: 40px;
}

.phone-text-header > p {
  font-size: 12px;
  font-weight: var(--font-medium);
  color: var(--primary-color);
  margin: 0 0 4px;
  line-height: 1;
}

.phone-text-header a {
  font-family: var(--font-family-eb-garamond);
  font-size: 30px;
  text-decoration: none;
  color: var(--color-black);
  font-weight: var(--font-semibold);
  letter-spacing: 0.5px;
  line-height: 1.35;
}

.phone-text-header p.name-phone-header {
  font-size: 15px;
  letter-spacing: 0.3px;
  text-transform: none;
  color: var(--color-black);
  font-weight: var(--font-light);
  margin: 7px 0 0;
}

.navbarToggler {
  display: none;
}

.navbarToggler::before {
  content: "\f0c9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
}

.navbarToggler.active::before {
  content: "\f00d";
}

@media (max-width: 1599px) {
  ul.nav > li:last-child {
    margin-left: 20px;
  }

  .phone-text-header a {
    font-size: 25px;
    letter-spacing: 0;
  }
}

@media (max-width: 1199px) {
  .navbarToggler {
    display: block;
    outline: none;
    box-shadow: none;
    padding: 6px 14px;
    background: #314a77;
    color: #fff;
    border-color: transparent;
    font-size: 1.25rem;
    border-radius: 6px;
  }

  .showHidePhone {
    display: none;
  }

  .mainManu {
    display: block;
    flex-direction: column;
    align-items: flex-start;
    background: #314a77;
    padding: 10px 15px;
    position: fixed;
    left: -100%;
    width: 100%;
    top: 207px;
    height: calc(100vh - 207px);
    z-index: 100;
    transition: all 0.5s ease;
  }

  .mainManu.active {
    left: 0;
  }

  .mainManu li .nav-link {
    font-size: 18px;
    padding: 10px 0;
    color: #fff;
  }

  .mainManu li .nav-link:hover {
    color: #fff;
  }
  .nav li .nav-link.ddMenuArrow {
    padding: 10px;
    margin-left: auto;
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 242, 242, 0.2);
  }
  .forDesktop.dropdown-toggle::after {
    display: none;
  }
  .showMenu {
    overflow: hidden;
  }
  .dropdown-menu {
    position: relative;
  }

  .stickyHeader .mainManu {
    top: 71px;
  }
}

@media (max-width: 992px) {
  .mainManu {
    top: 230px;
    height: calc(100vh - 230px);
  }
}

@media (max-width: 767px) {
  .mainManu {
    top: 227px;
    height: calc(100vh - 227px);
  }
}

.heroBanner {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}

.bannerContent {
  position: relative;
}

.bannerContent img {
  width: 100%;
}

h3.mobileText {
  display: none;
}

.heroBannerInner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.heroBannerContent {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-left: auto;
  color: #fff;
  max-width: 500px;
}

.heroPreHeading {
  font-size: 22px;
  letter-spacing: 5px;
  text-align: center;
}

.heroPreHeading b {
  font-size: 40px;
  display: block;
  padding: 8px 0;
  line-height: 1;
}

.heroBannerContent h2 {
  margin-bottom: 20px;
  margin-top: 30px;
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  font-family: "Unna", serif;
  font-weight: 700;
}

.bannerQuote {
  margin-bottom: 20px;
}

.bannerQuoteInner {
  max-width: 560px;
  margin-left: auto;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.bannerQuoteInner h6 {
  padding: 20px 0;
  width: 100%;
  text-align: center;
  letter-spacing: 0.5px;
  color: #fff;
}

.bannerQuoteInner h6:last-child {
  border-top: 1px solid #a8a8a8;
}

.heroBannerContent .btnOutline {
  color: #fff;
  border-color: #fff;
}

@media (min-width: 1200px) {
  .heroBannerContent h2 {
    line-height: 60px;
  }
}

@media (max-width: 1749px) {
  .btnOutline {
    font-size: 17px;
  }

  .heroBannerContent {
    max-width: 500px;
  }

  .heroBannerContent h2 {
    font-size: 75px;
  }
}

@media (max-width: 1439px) {
  .heroBannerContent {
    max-width: 440px;
  }
}

@media (max-width: 1365px) {
  .heroBannerContent {
    max-width: 400px;
  }

  .heroBannerContent h2 {
    font-size: 55px;
  }

  .btnOutline span {
    width: 30px;
    height: 30px;
    font-size: 35px;
    margin-left: 10px;
  }
}

@media (max-width: 1199px) {
  .btnOutline {
    font-size: 16px;
    padding: 9px 12px;
  }
}

@media (max-width: 991px) {
  .heroBannerInner {
    position: unset;
    transform: unset;
    padding: 30px 0 30px;
  }

  .heroBannerContent {
    max-width: 100%;
    color: var(--color-black);
  }

  .heroPreHeading {
    padding-bottom: 20px;
  }

  .heroBannerContent h2 {
    display: none;
  }

  .bannerQuoteInner h6 {
    color: var(--color-black);
  }

  .heroBannerContent .btnOutline {
    color: var(--color-black);
    border-color: var(--color-black);
  }

  .heroBannerContent .btnOutline:hover {
    color: #fff;
  }
}

section {
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
}

.requiredAlertMsg {
    color: #ce0000;
    font-size: 12px;
    margin-top: 5px;
    line-height: normal;
	display: none;
}
.validationAlert{
  background: #fff9f9;
  border-radius: 5px;
  border: 1.5px solid #c02b0a;
  box-shadow: 0 1px 4px rgb(0 0 0 / 11%), 0 0 4px rgb(18 25 97 / 4%);
  margin-bottom: 15px;
  margin-top: 15px;
  padding: 8px 15px;
  position: relative;
  width: 100%;
  display: none;
}
.validationAlertInner{
  display: flex;
}
.validationAlertInner span{
  margin-right: 10px;
  color: #c02b0a;
}
.validationAlertInner div{
  flex: 1;
  color: #c02b0a;
  font-size: 16px;
}