/* ROOT CSS VARIABLES STARTS Here */

:root {
  /* Fonts */
  --font-primary: "Oswald";
  --font-secondary: "Campton Book";
  --font-campton: "Campton";

  /* Theme Colors */
  --white: #ffffff;
  --black: #000000;
  --primary-color: #ffd500;
  --hover-color: #ffdb00;

  /* Link Color */
  /* --link-color: #ffd500;
  --link-hover: #f6994b; */

  /* Placeholder Text Color */
  --placeholder-color: #6f6b69;

  /* For Text Selection Colors*/
  --select-text-color: #ffffff;
  --select-text-bg: #000000;

  /* Custom Scrollbar Colors*/
  --scrollbar-track: #e2e2e2;
  --scrollbar-thumb: #a2a2a2;
  --scrollbar-thumb-hover: #828282;
}

/* ROOT CSS VARIABLES ENDS Here */

/* RESET DEFAULT STYLE STARTS Here */

* {
  outline: none !important;
  /*scroll-behavior: smooth;*/
}

*::after,
*::before,
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

body .clearfix,
body .clear {
  clear: both;
  line-height: 100%;
}

body .clearfix {
  height: auto;
}

html {
  font-size: 10px;
}

html body {
  font-family: var(--font-primary);
  margin: 0;
  line-height: 1.3;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: var(--font-primary);
  line-height: 120%;
  color: var(--black);
  font-weight: bold;
  margin: 0 0 15px;
}

/* body h1:last-child,
body h2:last-child,
body h3:last-child,
body h4:last-child,
body h5:last-child,
body h6:last-child {
  margin-bottom: 0;
} */

body p {
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 170%;
  margin: 0 0 16px;
  padding: 0;
}

body p:empty {
  margin: 0;
  line-height: 0;
}

/* body p:last-child {
  margin-bottom: 0;
} */

::-moz-focus-inner {
  border: 0px solid transparent;
}

::-webkit-focus-inner {
  border: 0px solid transparent;
}

*::selection {
  color: var(--select-text-color);
  background: var(--select-text-bg);
}

*::-moz-selection {
  color: var(--select-text-color);
  background: var(--select-text-bg);
}

*::-webkit-selection {
  color: var(--select-text-color);
  background: var(--select-text-bg);
}

*::-webkit-input-placeholder {
  color: var(--white);
  opacity: 1;
  font-size: 20px;
  font-family: var(--font-secondary);
}

*:-moz-placeholder {
  color: var(--black);
  opacity: 1;
}

*::-moz-placeholder {
  color: var(--black);
  opacity: 1;
}

*:-ms-input-placeholder {
  color: var(--black);
  opacity: 1;
}

input[type="file"]::-webkit-file-upload-button {
  cursor: pointer;
}

input[type="file"]::-moz-file-upload-button {
  cursor: pointer;
}

input[type="file"]::-ms-file-upload-button {
  cursor: pointer;
}

input[type="file"]::-o-file-upload-button {
  cursor: pointer;
}

input[type="file"],
a[href],
input[type="submit"],
input[type="button"],
input[type="image"],
label[for],
select,
button,
.pointer {
  cursor: pointer;
}

a {
  outline: none;
  color: var(--link-color);
}

/* a:hover {
  color: var(--white);
} */

a,
span,
div a:hover,
div a:active,
button {
  text-decoration: none;
}

a,
div a:hover,
div a:active,
div a:focus,
button {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.clr:after,
ul:after,
.clearfix:after,
li:after,
.grve-container:after {
  clear: both;
  display: block;
  content: "";
}

.btn.focus,
.btn:focus {
  box-shadow: none !important;
}

.form-control:focus {
  box-shadow: none !important;
}

img {
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

strong {
  font-weight: bold;
}

.no-list li,
.no-list ul,
.no-list ol,
footer li,
footer ul,
footer ol,
header li,
header ul,
header ol {
  list-style: inside none none;
}

.no-list ul,
.no-list ol,
footer ul,
footer ol,
header ul,
header ol {
  margin: 0;
  padding: 0;
}

ul:after,
li:after,
.clr:after,
.clearfix:after,
.container:after,
.grve-container:after {
  clear: both;
  display: block;
  content: "";
}

div input,
div select,
div textarea,
div button {
  font-family: var(--font-primary);
}

textarea,
.resize-none {
  resize: none;
}

section {
  padding-bottom: 50px;
  padding-top: 50px;
}

.cover-image img,
.contain-image img,
.cover-image svg,
.contain-image svg {
  width: 100%;
  height: inherit;
  max-height: inherit;
  min-height: inherit;
}

.contain-image img,
.contain-image svg {
  -o-object-fit: contain;
  object-fit: contain;
}

.cover-image img,
.cover-image svg {
  -o-object-fit: cover;
  object-fit: cover;
}

.vertical-scroll::-webkit-scrollbar {
  width: 6px;
}

.vertical-scroll::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

.horizontal-scroll::-webkit-scrollbar {
  width: auto;
  height: 6px;
}

.horizontal-scroll::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
  height: 6px;
}

.vertical-scroll::-webkit-scrollbar-thumb,
.horizontal-scroll::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 10px;
}

.vertical-scroll::-webkit-scrollbar-thumb:hover,
.horizontal-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

/* Disable Body Scroll When .show-menu class added */
/* When Navigation Menu Open Body Scroll Get Disable */
html.show-menu {
  overflow: hidden;
}

html.show-menu body {
  overflow: hidden;
  height: 100%;
}

/* RESET DEFAULT STYLE ENDS Here */

/* FOOTER CSS STARTS Here */

footer {
  /* z-index: 1;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  padding: 28px 0; */
  background-image: url("../images/footer-bg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding-top: 25rem;
  padding-bottom: 3rem;
  margin-top: -31rem;
}

/* .foot-brand {
  max-width: 350px;
  display: block;
} */

.copyright p {
  font-family: var(--font-campton);
  font-weight: 600;
  color: var(--black);
  font-size: 20px;
  padding: 0;
  letter-spacing: 1px;
  margin-bottom: 0;
  text-transform: uppercase;
}

/* FOOTER CSS ENDS Here */

/* BUTTONS */

.common-btn {
  font-family: var(--font-campton);
  display: inline-flex;
  align-items: center;
  border-radius: 40px;
  text-align: center;
  justify-content: center;
  transition: 0.3s all;
  line-height: 1;
  padding: 1.5rem 3rem;
  font-size: 20px;
}

.common-btn svg {
  height: 2.5rem;
  width: 2.5rem;
}

/* .btn-white {
  border: 3px solid var(--white);
  color: var(--white);
  font-weight: 600;
  margin: 0 2rem;
  font-size: 3rem;
} */

/* .btn-white:hover {
  background-color: var(--hover-color);
  color: var(--black);
  border-color: var(--hover-color);
} */

/* .btn-white span {
  margin-left: 10px;
} */

.btn-blue {
  text-align: center;
  text-transform: uppercase;
  transition: 0.3s;
  background-size: 200% auto;
  color: white;
  /* padding: 1.5rem 3rem; */
  line-height: 1;
  margin: 0 auto;
  background-image: linear-gradient(
    to right,
    #008abf 0%,
    #0009fb 51%,
    #008abf 100%
  );
  box-shadow: rgba(0, 0, 0, 0.5) 0px 25px 20px -20px;
  font-weight: 500;
}

.btn-yellow {
  color: var(--black);
  background-image: linear-gradient(
    to right,
    #ffee00 0%,
    #ffcc00 51%,
    #ffee00 100%
  );
  font-weight: 600;
  margin-left: 25px;
  padding: 1rem 8rem;
  border-radius: 50px;
}

.btn-blue:hover {
  color: var(--white);
}

.btn-yellow:hover {
  color: var(--black);
}

.btn-blue:hover,
.btn-yellow:hover {
  background-position: right center;
}

.blue-border-btn {
  background-image: linear-gradient(to right, #008abf 30%, #0009fb 100%);
  padding: 4px;
  margin-right: 30px;
  font-weight: 600;
}

.btn-div {
  background-color: white;
  /* background-image: url(../images/Coming-Soon-Long.png); */
  padding: 1rem 3rem;
  border-radius: 40px;
  display: flex;
  align-items: center;
  position: relative;
}

.btn-div span {
  margin-left: 5px;
}

.container {
  padding: 0 15px;
}

/* HERO START */

.hero {
  height: calc(100vh + 40rem);
  /* background-color: #3c74ce; */
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/hero-bg.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding-bottom: 40rem;
  position: relative;
  padding-top: 0;
  z-index: 1;
}

.hero-content {
  max-width: 70%;
  margin: 0 auto;
  text-align: center;
}

.hero-content img {
  max-width: 110rem;
}

.hero-text h1 {
  font-size: 7.5rem;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  font-weight: normal;
}

.hero-text h5 {
  font-size: 3rem;
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--font-campton);
  margin-bottom: 3rem;
  line-height: 1;
  font-weight: 600;
}

.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HERO END */

/* LOCATION START */

.location {
  background-image: url(../images/location-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding-bottom: 25rem;
  margin-top: -75rem;
  padding-top: 53rem;
  position: relative;
  text-align: center;
}

.location-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* position: relative; */
}

.location-1 {
  margin-top: -10rem;
}

.location-2 {
  margin-top: 20rem;  
}

.location-img img {
  max-width: 48.5rem;
  max-height: 68rem;
}

.location-text h2 {
  font-size: 6.5rem;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: normal;
}

.location-text p {
  font-size: 20px;
  color: var(--black);
  font-family: var(--font-campton);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
}

.tel-link {
  font-size: 3.5rem;
  color: var(--black);
  font-family: var(--font-campton);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.tel-link:hover {
  color: #0009fb;
}

.tel-link svg {
  height: 3rem;
  width: 3rem;
}

.tel-link span {
  /* font-size: 3.5rem; */
  margin-left: 10px;
}


.bkn-btn {
 position: relative;
}

.ctalinks-1 {
  display: none;
  
}

.ctalinks-2 {
  max-height: 90px;
  width: 100%;
  position: absolute;
  opacity: 65%;
  z-index:99;
}

/* LOCATION END */

/* ABOUT START */

.about {
  background-image: url(../images/about-bg.png);
  background-size: cover;
  margin-top: -50rem;
  background-color: #ffffff;
  padding-top: 50rem;
  padding-bottom: 70rem;
}

.title h1 {
  font-size: 6.5rem;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 2rem;
  line-height: 1;
  font-weight: normal;
}

.about-text {
  font-family: var(--font-secondary);
  font-size: 25px;
  line-height: inherit;
  margin-bottom: 8rem;
}

.about .btn-blue {
  box-shadow: none;
}

.about .btn-yellow {
  padding: 1rem 2rem;
  font-size: 30px;
  font-family: var(--font-primary);
  margin-left: 0;
  margin-bottom: 4rem;
}

.about .btn-yellow span {
  margin-left: 5px;
}

.tab-div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tablist {
  width: 30%;
  flex-direction: column;
  z-index: 1;
}

.nav-pills .about-link {
  font-size: 3.5rem;
  color: var(--black);
  text-transform: uppercase;
  padding: 0;
  transition: 0.3s all;
  position: relative;
  white-space: nowrap;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--primary-color);
}

.nav-pills .about-link.active,
.nav-pills .show > .about-link {
  background: 0 0;
  border: 0;
  color: var(--primary-color);
}

.nav-pills .about-link.active::before {
  content: "";
  position: absolute;
  /* width: 80%;
    height: 80%; */
  /* margin-left: 20px; */
  /* background-color: var(--hover-color); */
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-left: 20px solid var(--hover-color);
  border-bottom: 15px solid transparent;
  /* background-image: url("../images/icons/arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    top: 20%; */
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
}

.tab-pane img {
  max-width: 100rem;
  max-height: 80rem;
  width: 100%;
}

/* ABOUT END */

/* NEWSLETTER START */

.news-letter {
  background-image: url("../images/news-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -70rem;
  padding-top: 24rem;
  padding-bottom: 30rem;
}

.news-letter .title {
  max-width: 40%;
}

.news-letter .title h1 {
  color: var(--white);
}

.news-img {
  /* max-width: 75%; */
  /* text-align: center; */
  margin: 0 auto;
  /* position: relative; */
}

.news-tagline {
  /* position: absolute; */
  font-size: 20px;
  color: var(--white);
  font-family: var(--font-campton);
  text-align: center;
  font-weight: 600;
  /* top: 80%;
    left: 50%;
    transform: translateX(-50%); */
  white-space: nowrap;
  text-transform: uppercase;
  margin-bottom: 4rem;
  line-height: 1;
}

.form-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -15rem;
}

.news-form {
  display: flex;
  width: 60%;
}

.input-div {
  display: flex;
  flex-direction: column;
  width: 60%;
}

.input-box {
  border-radius: 50px;
  border: 2px solid var(--white);
  padding: 2rem 3rem;
  font-size: 20px;
  width: 100%;
  background-color: transparent;
  font-family: var(--font-secondary);
  color: var(--white);
}

.news-form .btn-yellow{
  padding: 2rem 8rem;
}

/* NEWSLETTER END */

/*THEME ADMIN SIDE SCREENSHOT */

.theme-screenshot{
	background-image : url("/uploads/2021/09/screenshot.png");
}

/* VALIDATIONS */

.error {
  color:#ffd500;
  font-size: 20px;
  font-family: var(--font-campton);
  font-weight: 600;
  
}

.visit-web {
    margin-top: 10px;
}

.coming-soon{
    color: red;
}