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

body, html {
    width: 100%;
    background-color: #F3F4EF;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  max-width: 1536px;
  margin-left: auto;
  margin-right: auto;
}

.desktop .nav {
    width: 100%;
    padding: .8% 8%;
    border-bottom: 1px solid white;
    box-shadow: 0px 25px 10px rgb(226, 227, 226);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop .nav a img{
    width: 14em;
}

.desktop .nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.desktop .nav ul li {
    padding: 0.5em 1em;
    font-size: 1.5em;
    margin-left: 1.5em;
}

.desktop .nav ul li {
    border: .2em #373737 solid;
    border-radius: 1em;
}

.desktop .nav ul li a{
    text-decoration: none;
}

.desktop .nav ul li:hover {
    background-color: #373737;
}

.desktop .nav ul li a:hover {
    color: #FFDC49;
}

.desktop .nav ul li:last-child {
    padding: .3em;
    border-radius: 50%;
    background-color: #373737;
}

.desktop .nav ul li:last-child:hover {
    border: .2em solid #FFDC49;
}

.desktop .nav ul li img {
    width: 2em;
}

.desktop .banner {
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 150%;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;    
    padding: 0 8%;
}

.desktop form {
    box-shadow: 0px 5px 10px rgb(52, 52, 52);
    background-color: white;
    padding: 1em;
    border-radius: 2em;
    display: flex;
    justify-content: space-between;
    align-items: center ;
}

.desktop form input {
    width: 80%;
    padding: 1em 1.5em;
    font-size: 1.2em;
    border: 1px solid #706b6b;
    border-radius: 1em;
}

.desktop form button {
    display: block;
    font-size: 1.2em;
    font-weight: 600;
    background-color: #FFDC49;
    border: none;
    cursor: pointer;
    padding: 1em;
    border-radius: 1em;
    margin-left: .5em;
}
.desktop .banner h2{
    font-size: 4em;
    color: white;
    margin-bottom: 1em;
}

.desktop .banner div img {
    width: 38vw;
    margin-right: -18vh;
    margin-bottom: -24vh;
    display: block;
    margin-left: 2em;
    overflow: hidden;
}

.desktop h3{
    font-size: 3em;
    font-weight: 300;
    margin-top: 5em;
    padding: 0 8%;
}

.desktop .contents, .desktop .contents2 {
    width: 100%;
    height: 50vh;
    margin-top: 2em;
    padding: 0 8%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.desktop article.shadowcle {
    background-color: white;
    border-radius: 3em;
    width: 65vw;
    padding: 2em;
    margin-left: 8%;
    margin-top: -20vh;
    box-shadow: 10px 25px 10px rgb(226, 227, 226);
}

.desktop article.shadowcle span {
    font-size: 1.8em;
    font-weight: 600;
}

.desktop article.shadowcle p {
    margin-top: .8em;
    font-size: 1.5em;
    line-height: 1.5em;
}

.desktop .shadowcle p a {
    color: #FFDC49;
    font-weight: 600;
    padding: 1em 1.5em;
    border-radius: 3em;
    margin-top: 2em;
    background-color: #373737;
    display: inline-block;
}


.desktop .shadowcle a {
    text-decoration: none;
}

.desktop .mapGrid  {
    width: 100%;
    padding: 0 8%;
    margin-top: 2em;
}

.desktop .mapGrid .gridContents {
    width: 100%;
    display: grid;
    gap: 1.5em;
    grid-template-columns: repeat(4, 1fr);
}

.desktop .mapGrid .gridContents article {
    width: 100%;
    height: 230px;
    border-radius: 1.5em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 150%;
    transition: .5s ease-in-out;
    display: flex;
    align-items: end;
}

.desktop .mapGrid .gridContents article:hover {
    background-size: 190%;
}

.desktop .mapGrid .gridContents article p {
    background-color: white;
    font-size: 1.5em;
    font-weight: 600;
    padding: .5em .8em;
    border-radius: 4em;
    margin-bottom: .7em;
    margin-left: .7em;
    
}

.desktop .faq {
    width: 100%;
    padding: 0 8%;
    font-size: 1.5em;
    margin-top: 10em;
}

.desktop .faq span {
    font-size: 3em;
}

.desktop .footer {
    margin-top: 8em;
    width: 100%;
    background-color: #FFDC49;
    padding: .2% 8%;
    font-size: 1em;
    font-weight: 1000;
}

.mobileNTablet {
    display: none;
}

/* 1025px */
@media (max-width: 1280px) {
    .desktop .mapGrid .gridContents {
        grid-template-columns: repeat(3, 1fr);
    }
    
}

/* ipad Pro starts Here */
@media (max-width: 1024px) {
  .container {
    max-width: 1024px;
  }

  .desktop {
    display: none;
  }

  .mobileNTablet {
    display: block;
  }
}

.mobileNTablet .nav {
    width: 100%;
    padding: .4% 4%;
    border-bottom: 1px solid white;
    box-shadow: 0px 25px 10px rgb(226, 227, 226);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobileNTablet .nav a img{
    width: 14em;
}

.mobileNTablet .nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.mobileNTablet .nav ul li {
    padding: 0.5em 1em;
    font-size: 1.5em;
    margin-left: 1.5em;
}

.mobileNTablet .nav ul li {
    border: .2em #373737 solid;
    border-radius: 1em;
}

.mobileNTablet .nav ul li a{
    text-decoration: none;
}

.mobileNTablet .nav ul li:hover {
    background-color: #373737;
}

.mobileNTablet .nav ul li a:hover {
    color: #FFDC49;
}

.mobileNTablet .nav ul li:last-child {
    padding: .3em;
    border-radius: 50%;
    background-color: #373737;
}

.mobileNTablet .nav ul li:last-child:hover {
    border: .2em solid #FFDC49;
}

.mobileNTablet .nav ul li img {
    width: 2em;
}

.mobileNTablet .banner {
    width: 100%;
    height: 650px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 150%;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;    
    padding: 0 8%;
}

.mobileNTablet form {
    box-shadow: 0px 5px 10px rgb(52, 52, 52);
    background-color: white;
    padding: 1em;
    border-radius: 2em;
    display: flex;
    justify-content: space-between;
    align-items: center ;
}

.mobileNTablet form input {
    width: 80%;
    padding: 1em 1.5em;
    font-size: 1.2em;
    border: 1px solid #706b6b;
    border-radius: 1em;
}

.mobileNTablet form button {
    display: block;
    font-size: 1.2em;
    font-weight: 600;
    background-color: #FFDC49;
    border: none;
    cursor: pointer;
    padding: 1em;
    border-radius: 1em;
    margin-left: .5em;
}
.mobileNTablet .banner h2{
    font-size: 3.2em;
    color: white;
    margin-bottom: 1em;
}

.mobileNTablet .banner div img {
    width: 38vw;
    margin-right: -110px;
    margin-bottom: -240px;
    display: block;
    margin-left: 2em;
    overflow: hidden;
}

.mobileNTablet h3{
    font-size: 3em;
    font-weight: 300;
    margin-top: 2.5em;
    padding: 0 8%;
}

.mobileNTablet .contents, .mobileNTablet .contents2 {
    width: 100%;
    height: 300px;
    margin-top: 2em;
    padding: 0 8%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.mobileNTablet article.shadowcle {
    background-color: white;
    border-radius: 3em;
    width: 65svw;
    padding: 2em;
    margin-left: 8%;
    margin-top: -140px;
    box-shadow: 10px 25px 10px rgb(226, 227, 226);
}

.mobileNTablet article.shadowcle span {
    font-size: 1.8em;
    font-weight: 600;
}

.mobileNTablet article.shadowcle p {
    margin-top: .8em;
    font-size: 1.5em;
    line-height: 1.5em;
}

.mobileNTablet .shadowcle p a {
    color: #FFDC49;
    font-weight: 600;
    padding: 1em 1.5em;
    border-radius: 3em;
    margin-top: 1em;
    background-color: #373737;
    display: inline-block;
}


.mobileNTablet .shadowcle a {
    text-decoration: none;
}

.mobileNTablet .mapGrid  {
    width: 100%;
    padding: 0 8%;
    margin-top: 2em;
}

.mobileNTablet .mapGrid .gridContents {
    width: 100%;
    display: grid;
    gap: 1.5em;
    grid-template-columns: repeat(2, 1fr);
}

.mobileNTablet .mapGrid .gridContents article {
    width: 100%;
    height: 230px;
    border-radius: 1.5em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 150%;
    transition: .5s ease-in-out;
    display: flex;
    align-items: end;
}

.mobileNTablet .mapGrid .gridContents article:hover {
    background-size: 190%;
}

.mobileNTablet .mapGrid .gridContents article p {
    background-color: white;
    font-size: 1.5em;
    font-weight: 600;
    padding: .5em .8em;
    border-radius: 4em;
    margin-bottom: .7em;
    margin-left: .7em;
    
}

.mobileNTablet .faq {
    width: 100%;
    padding: 0 8%;
    font-size: 1.5em;
    margin-top: 5em;
}

.mobileNTablet .faq span {
    font-size: 2.5em;
}

.mobileNTablet .footer {
    margin-top: 8em;
    width: 100%;
    background-color: #FFDC49;
    padding: .2% 8%;
    font-size: 1em;
    font-weight: 1000;
}