body {
    background-color: #062A30;
}


/*  HERO  */
.hero {
    background: url(/assets/hero/lets-talk-hero_mobile.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100svh;
}
.pageHeading {
    position: absolute;
    color: white;
    letter-spacing: 0.03em;
    padding: 25px 25px 50px 25px;
    bottom: 0;
    width: calc(100% - 1em);
    height: 100svh;
    display: flex;
    align-items: end;
}
/*  HERO END  */


/*  MAIN CONTAINER  */
.main-container {
    width: 96%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
}
/*  MAIN CONTAINER END */


/* CONTACT-SECTION */
.contact-section {
    width: 92%;
    padding: 20px 0;
}

.contact-info p {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    margin-bottom: 50px;
    color: #8C9B9E;
}

/* CONTACT-FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 10px;
}

.contact-form input, .contact-form textarea {
    width: -webkit-fill-available;
    max-width: 400px;
    padding: 10px;
    background-color: transparent;
    border: 1px solid #8C9B9E;
    color: #8C9B9E;
    font-size: var(--fs-body);
    border-radius: 5px;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

input::placeholder,
textarea::placeholder {
    color: #8C9B9E; 
}

.contact-form button {
    background-color: transparent;
    border: 1px solid #8C9B9E;
    color: #8C9B9E;;
    padding: 10px 20px;
    font-size: var(--fs-body);
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: #8C9B9E;
    color: #0F2A2C;
}
/* CONTACT-FORM-END */

/* CONTACT-SECTION-END */



/* FACILTIES SECTION */
.facilities-section {
    width: 100%;
    padding: 20px 0;
    text-align: left;
}

.facilities-section h2 {
    font-size: 10em;
    margin: 50px 5px;
    color: #FFFFFF;
}

.facilities-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.facilities-list {
    width: 100%;
    text-align: left;
}

.facilities-list div {
    display: flex;
    gap: 50px;
    margin: 0 10px 50px;
}

.location-tag {
    color: #EA6852;
    font-weight: bold;
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

.facilities-list p{
    color: #8C9B9E;
   font-size: var(--fs-body);
   line-height: var(--lh-body);
}

.map{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-top: 20px;
}
/* FACILTIES SECTION END */






/*    LARGE SCREEN    */
@media only screen and (min-width: 650px) 
{

/*  HERO  */
.hero {
    background: url(/assets/hero/lets-talk-hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.pageHeading {
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
    padding: 25px 25px 50px 40px;
        width: calc(100% - 65px);
}
/*  HERO END  */




/*  MAIN CONTAINER  */
.main-container{
    padding: 100px 0;
}
/*  MAIN CONTAINER END */


/* CONTACT-SECTION */
.contact-section {
    display: flex;
    width: 100%;
}

.contact-info{
    width: 70%;
}

.contact-info p {
    width: 50%;
}

/* CONTACT-FORM */
.contact-form {
    align-items: start;
    width: 50%;
}

.contact-form input, .contact-form textarea {
    font-size: 1.2em;
    max-width: 100%;
    height: 30px;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form button {
    margin-top: 20px;
    font-size: 1.1em;
}
/* CONTACT-FORM END */

/* CONTACT-SECTION END*/



/* FACILTIES SECTION */
.facilities-section {
    width: 100%;
    padding: 20px 0;
    text-align: left;
}

.facilities-section h2 {
    font-size: 6em;
}

.facilities-container { 
    flex-direction: row;
    align-items: start;
}

.facilities-list{
    width: 70%;
 }

.facilities-list p{
   font-weight: 100;
   margin-left: 25%;
}

.map{
    width: 50%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.map img {
    width: 100%;
    max-width: 400px;
    margin-top: 0
}
/* FACILTIES SECTION */

}
/*    LARGE SCREEN END   */