/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root{
    /* Fonts */
    --font-family-primary:   "Montserrat", sans-serif;
    --font-light: #ffffff;
    --font-dark:#000000;
    
    /* Colors for background */
    --color-primary: #EDDD11;
    --color-secondary: #000000;
    --color-white: #ffffff;
}

/************************************/
/*** 	   02. General Css		  ***/
/************************************/
p{
  margin-top: 0;
	margin-bottom: 1.1em;
}
ul,li{
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.2em;
  
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
	display: inline-block;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1140px;
  margin: 0 auto;
}
.container{
  padding-left: 20px;
  padding-right: 20px;
}

body{
	position: relative;
	font-family: var(--font-family-primary);
	font-size: 20px;
  line-height: 30px;
	font-weight: 400;
  margin: 0;
  background: var(--color-secondary);
}


/************************************/
/*** 	    HEADER & Footer CSS      ***/
/************************************/	
.top-main{padding: 40px 0 100px;}
.top-row p{
  color: var(--font-light);
}
.text-right p{
  text-align: right;
}
.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-text {
  text-align: center;
  margin-top: 30px;
  font-size: 24px;
  color: var(--font-light);
  margin-bottom: 50px;
}

.footer-text span {
  color: var(--color-primary);
  font-weight: bold;
}
/************************************/
/*** 	    Main CSS            ***/
/************************************/
.main-bg {
  position: relative;
}
.inner-image{
  position: absolute;
  top: -15%;
}
.banner-content {
  position: absolute;
  z-index: 999;
  width: 100%;
  left: 0;
  bottom: 50px;
  text-align: center;
}
.all-img > img{
  max-width: 90%;
}
.all-img{
  text-align: center;
}
.banner-content h1 {
  font-size: 110px;
  line-height: 110px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--font-light);
  text-transform: uppercase;
  text-align: center;
}
.banner-content h1 span{
  color: var(--color-primary);
}
.banner-btn {
  font-size: 22px;
  line-height: 36px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  background: var(--color-white);
  color: var(--font-dark);
  padding: 10px 20px;
  margin-top: 50px;
}
.map-section{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
hr{
  margin: 35px 0 60px;
}
.left {
  width: 55%;
}

.left h2 {
  font-size: 47px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 30px;
  color: var(--font-light);
}

.left h2 span {
  color: var(--color-primary);
}
.map {
  position: relative;
}

.map img {
  width: 100%;
}

.dot {
  position: absolute;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.dot::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  left: -15px;
  top: 3px;
}

.la { bottom: 39%; left: 40px; }
.sj {     bottom: 56%;    left: 17px; }
.ch {     top: 34%;    left: 68%; }
.ny {     top: 33%;    right: -30px; }

.right {
  width: 40%;
}

.form-box {
  background: var(--color-white);
  padding: 25px;
  color: #000;
}

.form-box h3 {
  margin-bottom: 20px;
  font-size: 25px;
}

.form-box input {
	width: 100%;
    max-width: 92%;
    padding: 12px 15px;
    border: 1px solid var(--font-dark);
    font-size: 17px;
	outline:0;
}
.form-box input[type="email"]{
	border-top:0;
	border-bottom:0;
}
.form-box input[type=checkbox]{
  width: auto;
}
.form-box p {
  margin: 10px 0;
  font-size: 20px;
  font-weight: 700;
}

.form-box label {
  display: flex;
  font-size: 18px;
}

.form-box button {
  width: 100%;
  background: var(--color-primary);
  border: none;
  padding: 10px 15px;
  margin-top: 15px;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  cursor: pointer;
}


.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 8px;
  position: relative;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  width: 16px;
  height: 16px;
  border: 2px solid #999;
  margin-right: 10px;
  display: inline-block;
  position: relative;
  transition: 0.3s;
  background: #fff;
}

.custom-checkbox:hover .checkmark {
  border-color: var(--color-primary);
}

.custom-checkbox input:checked ~ .checkmark {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark::after {
  display: block;
}

.custom-checkbox .checkmark::after {
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}


@media only screen and (max-width: 991px){ 
  .banner-content{
    bottom: 0;
  }
  .banner-content h1 {
    font-size: 75px;
    line-height: 80px;
  }
  .banner-btn{
    margin-top: 30px;
  }
  .left h2 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 767px){
  .banner-content h1 {
    font-size: 32px;
    line-height: 37px;
  }
  .banner-btn {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px;
  }
  .left h2 {
      font-size: 26px;
  }
  .map-section{
    flex-direction: column;
  }
  .left, .right {
    width: 100%;
  }
  .ny {
    top: 25%;
    right: 0;
}
.top-row p {
    font-size: 16px;
}
hr {
    margin: 35px 0 30px;
}
.footer-text {
    font-size: 20px;
    line-height: 26px;
}
}


