@import url(./font-family.css);
@import url("https://use.typekit.net/cjl7dpv.css");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #003e51;
  --black: #000;
  --white: #ffffff;
  --lightBlue: #869cae;
  --gold: #d7a048;
  --darkgray: #888b8d;
  --cream: #fbf8f4;
  --ltBlueTint: #fbf8f4;
  /***** Font sizes *****/
  --base: 16px;
  --h1: 36px;
  --h2: 28px;
  --h3: 17px;
  --h4: 14px;
  --text1: 21px;
  --text2: 16px;
  --text3: 13px;
  --nav1: 12px;
}
.barlow {
  font-family: "Barlow", sans-serif;
}
.montserrat {
  font-family: "Montserrat", sans-serif;
}
.dinn {
  font-family: "Dinn";
}
.mackinac {
  font-family: "p22-mackinac-pro", serif;
}

h1,
.h1 {
  font-size: var(--h1);
  font-style: normal;
  font-weight: 800;
  line-height: 41px;
  letter-spacing: 0.025em;
  color: var(--navy);
  margin-bottom: 15pt;
  font-family: "p22-mackinac-pro", serif;
}
h2,
.h2 {
  font-size: var(--h2);
  font-style: normal;
  font-weight: 800;
  line-height: 34px;
  letter-spacing: 0.025em;
  margin-bottom: 10pt;
  color: var(--navy);
  font-family: "p22-mackinac-pro", serif;
}
h3,
.h3 {
  font-size: var(--h3);
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.075em;
  margin-bottom: 5pt;
  text-transform: uppercase;
  color: var(--lightBlue);
  font-family: "Montserrat", sans-serif;
}
h4,
.h4 {
  font-size: var(--h4);
  font-style: normal;
  font-weight: 700;
  line-height: 30pt;
  letter-spacing: 0.075em;
  margin-bottom: 14px;
  text-transform: uppercase;
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
}

.text1 {
  margin-bottom: 21pt;
}
.text1,
body {
  font-size: var(--text1);
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0.05em;
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
}
.text-md-2,
.text2 {
  font-size: var(--text2);
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
}
 ul.graphics-list p,
.text3 {
  font-size: var(--text3);
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.025em;
  margin-bottom: 12px;
  color: var(--darkgray);
  font-family: "Montserrat", sans-serif;
}
.nav1 {
  font-size: var(--text3);
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.075em;
  color: var(--darkgray);
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

button.btn {
  outline: none;
  border: none;
}

img {
  max-width: 100%;
  height: auto;
}
.btn-primary {
  background: var(--lightBlue);
  display: inline-block;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: var(--h4);
  line-height: 23px;
  letter-spacing: 0.075em;
  color: var(--white);
  min-width: 181px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: center;
}
.btn-secondry {
  background: transparent;
  border: 1px solid var(--lightBlue);
  display: inline-block;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: var(--h4);
  line-height: 23px;
  letter-spacing: 0.075em;
  color: var(--lightBlue);
  min-width: 181px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: center;
}
.btn-secondry:hover{
  border:1px solid var(--gold);
  color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--white) !important;
}
.btn-primary a:hover{
  color: var(--white) !important;	
}
.bg-cream {
  background: var(--cream);
}
.bg-navy {
  background: var(--navy);
}
.navy-color {
  color: var(--navy) !important;
}
.link {
  font-size: var(--text3);
  line-height: 1.4;
  font-weight: 800;
  font-family: "p22-mackinac-pro", serif;
  color: var(--lightBlue);
}
.link:hover {
  color: var(--gold) !important;
}
.text-center {
  text-align: center;
}
.dark-gray-color {
  color: var(--darkgray) !important;
}
.lightBlue-color {
  color: var(--lightBlue) !important;
}
/******* Spacing *******/
.padding {
  padding: 150px 0;
}
.padding2 {
  padding: 100px 0;
}
.paddingTop2 {
  padding-top: 100px;
}
.padding3 {
  padding: 60px 0;
}
.padding3Top {
  padding-top: 60px;
}

.padding4 {
  padding: 30px 0;
}

.padding4Top {
  padding-top: 30px;
}
.mt-30 {
  margin-top: 30pt;
}
.mt-45 {
  margin-top: 45pt;
}
.mt-60 {
  margin-top: 60pt;
}
/******* Header ******/
header {
  padding: 16px 0 24px;
  position: relative;
}
header .nav {
  display: flex;
  padding: 0;
  align-items: center;
  justify-content: space-between;
}
.nav .menu,
.nav .menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  align-items: center;
  gap: 16px;
}
header .logo {
  max-width: 168px;
}
header .humburger {
  margin-left: 20px;
  cursor: pointer;
}
header .humburger i {
  color: var(--black);
}
.nav .menu ul li a:hover {
  color: var(--gold);
}
body:has(header.active-menu){
  overflow: hidden;
}
.main-menu {
  background: var(--navy);
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 0;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  width: 100%;
  overflow: hidden;
  min-height: 0;
  padding: 0px 70px;
  transition: all 0.3s ease;
  z-index: 99;
}
header.active-menu .main-menu {
  overflow: auto;
  padding: 30px 70px;
  height: 100%;
  min-height: 100vh;
}
.main-menu ul {
  list-style: none;
  padding: 0;
}
.main-menu ul.nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
  padding-top: 100px;
}
.main-menu ul.nav li a {
  font-size: 45pt;
  color: var(--white);
  line-height: 41pt;
  font-weight: 700;
  text-align: right;
  font-family: "p22-mackinac-pro", serif;
}
.main-menu .close-btn:hover,
.main-menu .menu-style li a:hover,
.main-menu ul.nav li a:hover{
	color: var(--gold);
}
.main-menu .menu-style {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.border-line {
  margin: 90px 0 60px;
  border-top: 1px solid var(--white);
  width: 100%;
}
.main-menu .menu-style ul {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.main-menu .menu-style li {
  position: relative;
}
.main-menu .menu-style li a {
  font-size: var(--text2);
  line-height: 24pt;
  font-weight: 400;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
}
.main-menu .menu-style li:not(:last-child):before {
  content: "";
  display: block;
  position: absolute;
  right: -20px;
  height: 24px;
  width: 1px;
  background-color: var(--white);
  top: 10px;
}
.main-menu .close-btn {
  cursor: pointer;
  font-size: var(--nav1);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: var(--white);
}
.mobile{
  display: none;
}
/******* Banner ********/
.banner .wrapper {
  position: relative;
}
.banner video {
  max-width: 100%;
  width: 100%;
  max-height: 615px;
  object-fit: cover;
}
.banner iframe {
  max-width: 100%;
  width: 100%;
  max-height: 615px;
  object-fit: cover;
}
.video-btn i {
  font-size: var(--h1);
  color: var(--white);
}
.video-btn {
  position: absolute;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.banner .wrapper.video-active .video-btn {
  display: none;
}
section {
  position: relative;
  overflow: hidden;
}
@media (min-width: 1440px) {
  .banner video {
    max-height: 800px;
  }
  .banner iframe {
    max-height: 730px;
  }
}
/******* Banner Slider *******/
.banner-slider img {
  max-height: 620px;
  min-height: 620px;
  width: 100%;
  object-fit: cover;
}
.banner-slider {
  position: relative;
}

.dotsStyle ul.slick-dots {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  gap: 10px;
  margin: 0 !important;
  bottom: 30px;
  transform: translateX(-50%);
}
.dotsStyle ul.slick-dots li.slick-active button {
  background: var(--white);
}
.dotsStyle ul.slick-dots li button {
  font-size: 0;
  outline: none;
  border: 1px solid var(--white);
  padding: 5px;
  border-radius: 50%;
  background: transparent;
}
@media (min-width: 1400px) {
  .banner-slider img {
    max-height: 720px;
	min-height: 720px;
  }
}
/******* Location ********/
.location {
  position: relative;
}
.cream-bottom:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 140px;
  width: 100%;
  left: 0;
  background: var(--cream);
}
.first-img {
  min-height: 326px;
  object-fit: cover;
}
.second-img {
  max-height: 170px;
  min-height: 170px;
  object-fit: cover;
  width: 100%;
}

/****** Hotel *********/
.hotel {
  position: relative;
  overflow: hidden;
}
.hotel:before {
    content: '';
    display: block;
    background: url(../images/pattern.svg) no-repeat center left;
    width: 50%;
    height: 100%;
    position: absolute;
    background-size: 300%;
    background-position: 58% -1%;
    top: 0;
    opacity: 0.2;
    pointer-events: none;
}
.col-lg-4{
  position: relative;
}
.hotel h3 {
  color: var(--white);
  margin-bottom: 30px;
}
.hotel h3,
.hotel p,
.hotel h2 {
  color: var(--white);
}
.hotel-slider .wrapper img {
  min-height: 380px;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  width: 100%;
}
.hotel-slider .wrapper h4,
.hotel-slider .wrapper p {
  margin: 0 !important;
  color: #869bae;
  line-height:1.4
}
.hotel-slider .wrapper h4{
	font-weight:600
}
.hotel-slider .wrapper .link {
  color: var(--cream);
  line-height:1.3
}
.hotel-slider .wrapper .text-wrapper {
  margin-top: 20pt;
}
.hotel-slider.arrowStyle .slick-prev, .hotel-slider-new.arrowStyle .slick-prev {
  display: none !important;
}
.hotel-slider-new.arrowStyle .slick-slide .sildesingle .text-wrapper {
    display: none;
}
.hotel-slider-new.arrowStyle .sildesingle img {
  min-height: 567px;
  height: 100%;
  max-height: 415px;
  object-fit: cover;
  width: 100%;
}
.row.justify-content-between.hotel-list {
    padding: 100px 0;
	    align-items: center;
    vertical-align: middle;
}
.hotel-slider-new.arrowStyle .slick-slide.slick-active .sildesingle .text-wrapper {
    display: inline-block !important;
}
.hotel-slider-new.arrowStyle h3.img-caption.h3 {
    text-transform: capitalize !important;
}

.hotel-slider.arrowStyle .slick-next, .hotel-slider-new.arrowStyle .slick-next {
  right: 30px;
}
.hotel-slider.arrowStyle .slick-next:before, .hotel-slider-new.arrowStyle .slick-next:before {
  content: "\f061";
}
.hotel-slider.arrowStyle .slick-arrow, .hotel-slider-new.arrowStyle .slick-arrow {
  font-size: 0;
  width: 50px;
  height: 50px;
  background: var(--gold);
  border: none;
  outline: none;
  border-radius: 50%;
  top: 40%;
  position: absolute;
  transform: translateY(-50%);
  cursor: pointer;
}
.hotel-slider.arrowStyle .slick-next:before, .hotel-slider-new.arrowStyle .slick-next:before {
  content: "\f061";
  font-family: "FontAwesome";
  font-size: 28px;
  color: var(--white);
}
.hotel-slider .slick-slide, .hotel-slider-new .slick-slide {
  margin: 0 60px 0 -50px;
  width: 100%;
}
 p.hotel-contentnew.text3 {
    margin-top: 40px;
}
h3.hotel-titlenew.h3 {
    margin-bottom: 10px;
}


/****** What We Do ******/
.what-we-do .h1 {
  text-align: center;
}
.what-we-do .text3 {
  color: var(--navy);
}
.hr-line {
  margin: 90px 0;
  height: 1px;
  width: 100%;
  border-top: 1.5px solid #eff5fa;
}
.hr-line.style {
  margin: 60px 0;
  height: 1px;
  width: 100%;
  border-top: 1.5px solid #eff5fa;
}
/******* Promise *******/
section.promise {
    padding-bottom: 12px;
}
.column2 {
  display: flex;
  gap: 10px;
}
.column2 > .w-50 {
  flex-basis: 50%;
  position: relative;
}
.seal-img img {
  position: absolute;
  max-width: 220px;
  right: -12px;
  bottom: -12px;
  transform: rotate(30deg);
  opacity: 0.5;
}
.promise .first-img {
  min-height: 464px;
  max-height: 464px;
  width: 100%;
  object-fit: cover;
}
.promise .second-img {
  min-height: 220px;
  max-height: 220px;
  width: 100%;
  object-fit: cover;
}
.flexCenter {
  display: flex;
  align-items: center;
}
/******* Footer ********/
footer.padding3 {
  padding-top: 60px 0 24px;
}
footer .logo {
  max-width: 166px;
}
footer .menu {
  display: flex;
  list-style: none;
  padding: 0;
  flex-direction: column;
  gap: 8px;
}
footer ul.social-icon {
  display: flex;
  list-style: none;
  padding: 0;
  align-items: center;
  gap: 16px;
}
footer ul.social-icon i {
  color: var(--darkgray);
  font-size: var(--h3);
}
footer ul a:hover,
footer ul.social-icon a:hover i {
  color: var(--gold);
}
footer .menu2 {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  justify-content: flex-end;
}
footer .bottom-footer {
  padding-top: 40px;
}
footer .menu.text3{
	font-weight: 500;
	color: var(--darkgray)
}
/******** Container ********/
.container-fluid-right {
  padding-left: 16px;
}
/******** What we do ******/
.we-img{
  max-height: 350px;
  object-fit: cover;
  width: 100%;
}
.hr-30{
  width: 100%;
  height: 2px;
  background: var(--white);
  margin: 30pt 0;
}
/***** New Style *******/
.banner-slider .wrapper {
    position: relative;
}
.banner-slider .wrapper .text-wrapper{
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: 80%;
	text-align: center;
	transform: translate(-50% , -50%);
}
.banner-slider .wrapper:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000033;
}
.banner-slider .wrapper .text-wrapper p,
.banner-slider .wrapper .text-wrapper h1{
	color: var(--white)
}
.banner-slider .wrapper .text-wrapper a{
	margin-top: 20px;
}
@media (min-width: 576px) {
  .container-fluid-right {
    max-width: 100% ;
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  .container-fluid-right {
    max-width: calc(100% - (100% - 720px) / 2);
  }
}

@media (min-width: 992px) {
  .container-fluid-right {
    max-width: calc(100% - (100% - 960px) / 2);
  }
}

@media (min-width: 1200px) {
  .container-fluid-right {
    max-width: calc(100% - (100% - 1200px) / 2);
  }
	footer .logo img{
		min-height: 96px;
		object-fit: cover
	}
	footer .logo {
		max-width: 196px;
	}
}

@media (min-width: 1400px) {
  .container-fluid-right {
    max-width: calc(100% - (100% - 1320px) / 2);
  }
	.padding {
	  padding: 150pt 0 100pt 0;
	}
	.padding2 {
	  padding: 100pt 0;
	}
	.paddingTop2 {
	  padding-top: 100pt;
	}
	.padding3 {
	  padding: 60pt 0;
	}
	.padding3Top {
	  padding-top: 60pt;
	}

	.padding4 {
	  padding: 30pt 0;
	}

	.padding4Top {
	  padding-top: 30pt;
	}
	.mt-30{
	  margin-top: 30pt;
	}
	.mt-45{
	  margin-top: 45pt;
	}
}
/********** Form Validation ******/
.gform_legacy_markup_wrapper li.gfield_error input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.gform_legacy_markup_wrapper li.gfield_error textarea {
	border: none !important;
    border-bottom: 1px solid #790000 !important;
}
.gform_legacy_markup_wrapper li.gfield.gfield_error, .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    background-color: none!important;
    border-bottom: none!important;
    border-top: 0!important;
    box-sizing: border-box!important;
    margin-bottom: 0!important;
    padding-bottom: 0!important;
    padding-top: 0!important;
}
.gform_legacy_markup_wrapper div.validation_error, .gform_legacy_markup_wrapper ol.validation_list {
    clear: both;
    color: #790000;
    margin-bottom: 25px;
    width: 80% !important;
    margin: 0 auto !important;
}
div#gform_confirmation_message_2 {
    padding: 60px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}
.media-wrapper {
    max-width: 1100px !important;
}
ul.graphics-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 30px;
}
ul.graphics-list h4, ul.graphics-list p, ul.graphics-list a, ul.graphics-list li {
    margin: 0;
    line-height: 1 !important;
    padding: 0;
}
ul.graphics-list p{
	color: var(--navy)
}
ul.graphics-list li{
	position: relative
}
ul.graphics-list li:not(:last-child):before {
    content: '';
    display: block;
    position: absolute;
    width: 1.5px;
    height: 16px;
    background: var(--navy);
    right: -14px;
    
}
ul.graphics-list li {
    position: relative;
    padding: 15px 0px;
}

ul.graphics-list li p {
  font-size: 17px !important;
}

.press-wrapper {
    margin-top: 30px;
}
.press-wrapper ul.graphics-list {
    padding-top: 14px;
	padding-bottom: 14px;
    border-top: 1px solid var(--lightBlue);
}
.press-wrapper ul:last-child {
    border-bottom: 1px solid var(--lightBlue);
}
form#revinate_contact_api_form input {
    margin: 1px 5px 1px 5px !important;
    padding: 3px !important;
    outline: none !important;
    border-width: 0 !important;
    background: transparent;
    border-bottom: 1px solid #ced7df !important;
    color: var(--navy) !important;
    font-size: var(--text3) !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 1pt !important;
    letter-spacing: 0.050em !important;
    margin-bottom: 15pt !important;
    font-family: "Montserrat", sans-serif;
}
form#revinate_contact_api_form label {
    display: inline-block;
    width: 200px;
	color: var(--navy);
    font-size: var(--text3);
    font-style: normal;
    font-weight: 400;
}
form#revinate_contact_api_form button {
    background: transparent;
    border: 1px solid var(--lightBlue);
    display: inline-block;
    padding: 6px 10px;
    border-radius: 50px;
    font-size: var(--h4);
    line-height: 23pt;
    letter-spacing: 0.075em;
    color: var(--lightBlue);
    min-width: 161px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}
form#revinate_contact_api_form button:hover{
	border: 1px solid var(--gold);
    color: var(--gold);
}
form#revinate_contact_api_form select {
    background: transparent;
    border: 1px solid var(--lightBlue);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: var(--h4);
    line-height: 5pt;
    letter-spacing: 0.075em;
    color: var(--lightBlue);
    min-width: 91px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    margin: 0 5px;
    outline: none;
}
/******** Table Style ********/

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}
.table > :not(:last-child) > :last-child > * {
  border-color: var(--lightBlue);
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
  border-color: var(--lightBlue);
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--white);
  border-bottom-width: 1px;
  border-color: var(--lightBlue);
}
.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
table.table td {
  font-size: var(--text2);
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  vertical-align: top;
}
table.table th {
  font-size: var(--h3);
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.075em;
  font-family: "Montserrat", sans-serif;
  vertical-align: top;
}
.responsive-table {
    max-width: 1200px;
    overflow: auto;
	margin: 3rem 0;
}
table.table {
    background: var(--navy);
}
.table > :not(:last-child) > :last-child > * {
    width: 20%;
}
.responsive-table {
	padding-bottom: 10px;
    overflow-x: scroll;
    overflow-y: auto;
    transform: rotateX(180deg);
}
table.table {
    transform: rotateX(180deg);
}
@media (max-width: 990px){
	  /* Scrollbar Styling */
	.responsive-table::-webkit-scrollbar {
		width: 10px;
	}

	.responsive-table::-webkit-scrollbar-track {
		background-color: #ebebeb;
		-webkit-border-radius: 10px;
		border-radius: 10px;
	}

	.responsive-table::-webkit-scrollbar-thumb {
		-webkit-border-radius: 10px;
		border-radius: 10px;
		background: #6d6d6d; 
	}
}