/*==============================================================
	Common Styles Initials
==============================================================*/

html {
  -webkit-text-size-adjust: none; /* Prevent font scaling in landscape */
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: inherit !important;
}

*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  width: 100%;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  background-color: #ffffff;
}

a {
  outline: none;
  text-decoration: none;
  color: #656565;
}

a:hover,
a:focus {
  outline: none;
  text-decoration: none;
  color: #000;
}

.btn:focus {
  box-shadow: none;
}

input,
textarea,
select {
  outline: none;
  resize: none;
  font-family: "Montserrat", sans-serif;
}

a,
input,
button {
  outline: none !important;
  font-family: "Montserrat", sans-serif;
}

button::-moz-focus-inner {
  border: 0;
}

::placeholder {
  color: #000;
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12-18 */
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-family: "Montserrat", sans-serif;
  color: #2f2f2f;
}

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 15px 0;
  padding: 0;
  letter-spacing: 0.01875rem;
}

strong {
  font-weight: 700;
}

.video-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.video-bg video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

.logo {
  max-width: 320px;
  margin: 0 auto 32px;
}
.logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 320px;
  padding: 20px;
  border-radius: 100%;
  background: rgb(250, 240, 230);
}

.footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 12;
  padding: 0 20px 24px;
}
.footer p {
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 16px;
}
.footer p a {
  color: #ffffff;
}
.footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 100%;
  background-color: rgba(250, 239, 220, 0.8);
}
.footer ul li a img {
  display: block;
  width: 24px;
}

.content-box {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 94%;
  max-width: 600px;
  transform: translate(0, -50%);
}
.subscribe-form-wrap {
  background: rgba(250, 240, 230, .8);
  color: #000000;
  border-radius: 8px;
  min-height: 80px;
  display: flex;
  align-items: center;
}

.subscribe-form {
  display: none;
  width: 100%;
  position: relative;
}
.subscribe-form form {
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.subscribe-form form input {
  width: 100%;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 20px;
  font-weight: 500;
  color: #231f20;
}
.subscribe-form form button {
  height: 40px;
  background: transparent;
  border: 2px solid #000000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 0 0 16px;
  font-weight: 600;
  font-size: 14px;
  color: #231f20;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  flex-shrink: 0;
}
.subscribe-form form button span {
  border-left: 2px solid #231f20;
  height: 100%;
  margin-left: 16px;
  display: flex;
  align-items: center;
  padding-left: 4px;
  padding-right: 8px;
  transition: border 0.3s ease-in-out;
}

.subscribe-form form button:hover {
  background: #231f20;
  color: #ffffff;
}
.subscribe-form form button:hover span {
  border-left-color: rgba(255, 255, 255, 0.1);
}

.subscribe-form form .error {
  position: absolute;
  left: 32px;
  bottom: 4px;
  font-size: 15px;
  color: red;
}

.loader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(250, 239, 220, 0.8);
  background-image: url(../images/loader.gif);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px 40px;
  border-radius: 24px;
}

.thank-you-msg {
  display: none;
  width: 100%;
  padding: 20px 24px;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  color: #231f20;
}

.subscribe-show-btn {
  width: 100%;
  height: 100%;
  cursor: pointer;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  padding: 16px 16px;
  /* display: none; */
}

.swiper-container.background-slider {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1; /* Keeps it as background */
}

.background-slider .swiper-slide {
  background-size: cover;
  background-position: center;
}

@media (max-width : 1400px) and (max-height: 700px){
  .logo a{
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 767px) {
  .logo {
    max-width: 280px;
  }
  .logo a{
    width: 280px;
    height: 280px;
  }
  .subscribe-show-btn {
    font-size: 18px;
  }
  .content-box{
    position: relative;
    top: 0;
    transform: translate(0,0);
    padding-top: 40px;
  }
  .footer{
    position: relative;
    padding-top: 20px;
  }
  .subscribe-form form {
    flex-direction: column;
    gap: 4px;
    padding: 16px 32px;
  }
  .subscribe-form form input {
    text-align: center;
  }
  .subscribe-form form .error {
    position: relative;
    left: 0;
    bottom: 0;
    text-align: center;
  }  
  .grecaptcha-badge{
    right: -216px !important;
  }
}
