/* Imported fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&family=Water+Brush&display=swap');

/* Customized Variables */
:root { 
    --clr-indigo: #17355e;
    --clr-sea-blue: #006699;
    --clr-blue-sapphire:#166a89;
    --clr-water: #cbf2ff;
    --clr-khaki: #eede92;
    --clr-dutch-white: #f0e6b9;
    --clr-silver-foil: #babaa6;
    --clr-sky-blue: #67e0d6;
}

/* Default Styling */

html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

* {
    font-family: 'Oxygen', sans-serif;
    font-style: normal;
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

/* UTILITY CLASSES */

.center-text {
    text-align: center;
}

.align-self-center {
    align-self: center;
}

.white {
    color: white;
}

/* General Button Styling */
.section-button > a,
.submit-button {
    background-color: var(--clr-sea-blue);
    border: 0.5px solid black;
    border-radius: 5px;
    box-sizing: border-box;
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 3rem;
    text-decoration: none;
    height: 3rem;
    width: 20rem;
}

.section-button > a:hover,
.submit-button:hover {
    background-color: white;
    border: 3px solid var(--clr-sea-blue);
    color: var(--clr-sea-blue);
    line-height: 2.7rem;
}

/* START -> HEADER */

/* navigation bar */
nav {
    background-color: var(--clr-sea-blue);
    display: flex;
    align-items: center;
    column-gap: 5rem;
    justify-content: space-between;
    min-height: 7rem;
    padding: 0 4%;
}

/* company logo */
#company-logo {
    font-family: 'Water Brush', cursive;
    font-size: 2.8rem;
    letter-spacing: .5rem;
    text-align: center;
    min-width: 20.2rem;
}

#company-logo:hover {
    color: var(--clr-khaki);
    text-shadow: 1px 1px 2px var(--clr-indigo);
}

#company-logo-span {
    display: block;
    font-size: 1rem;
    letter-spacing: .1rem;
    position: relative;
    top: -.8rem;
}

/* nav links */
#main-header-navlinks {
    display: flex;
    column-gap: 1rem;
    justify-content: space-between;    
    width: 35rem;
}

/* navbar menu link styling*/
.nav-link {
    font-size: 1.1rem;
}

.nav-link:hover {
    position: relative;
    top: .1rem;
    color: var(--clr-khaki);
}

/* active navbar link styling */
.active {
    border: 1px solid;
    border-radius: 10px ;
    padding: .3rem .8rem;
}

/* Main Header Section - Banner */
#main-header-section {
    background-color: #134952;
    background-image: url("../media/images/banner-bg-maldives-5161.jpg");
    background-size: 100%;
    background-position: center;
    height: 35rem;
    padding: 0 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* tagline - banner */
#tagline {
    font-size: 2.8rem;
    font-weight: 400;
    text-shadow: 2px 2px 8px black;
    z-index: 3;
}

.tagline-span {
    display: block;
}

#tagline-travel-in-style {
    position: relative;
    left: -5rem;
    top: -2rem;
}

#tagline-travel-asia {
    font-family: 'Water Brush', cursive;
    font-size: 12rem;
    font-weight: 100;
}

#tagline-travel-with-us {
    text-align: end;
    position: relative;
    top: -1rem;
    right: -5rem;
}

/* banner video */
#hero-video-header {
    border-radius: 30px;
    box-shadow: 0 0 40px 10px var(--clr-indigo);
    max-width: 40%;
    opacity: 75%;
    z-index: 2;
}

/* section video */
#video-section {
    display: none;
}

#trustpilot {
    background-color: rgba(255, 255, 255, 0.425);
    border-radius: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    left: 5rem;
    bottom: 1rem;
    width: 9rem;
    height: 9rem;
    z-index: 1;
}

.trustpilot-rating {
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: .1rem;
}

.trustpilot-stars {
    width: 7.5rem;
}

.trustpilot-based-on {
    font-size: .7rem;
    margin-bottom: .5rem;
}

.trustpilot-logo {
    width: 5rem;
}

/* END --> HEADER */

/* START --> "WHAT WE OFFER" SECTION */

#what-we-offer-section {
    background-color: var(--clr-dutch-white);
    box-shadow: 0 0 5px 5px var(--clr-silver-foil);
    padding: 3rem 10%;
}

#what-we-offer-heading {
    font-size: 2rem;
    font-weight: bold;
}

#what-we-offer-outer-wrapper {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
    justify-content: space-around;
    margin-top: 2rem;
}

.what-we-offer-inner-wrapper {
    background-color: var(--clr-blue-sapphire);
    border-radius: 10px;
    margin: 1.2rem 0;
    padding: 1.5rem 2rem;
    width: 36%;
}

/* item heading - 'what we offer' */
.what-we-offer-inner-wrapper > h3 {
    color: var(--clr-khaki);
    font-size: 1.5rem;
    font-weight: bold;
}

/* item text - 'what we offer' */
.what-we-offer-inner-wrapper > p {
    font-size: 1.2rem;
    line-height: 1.8rem;
    margin-top: 1rem;
}

/* fontawesome icons */
.fa-solid {
    font-size: 2rem;
    margin-bottom: .5rem;
}

/* END --> "WHAT WE OFFER" SECTION */

/* START --> "TOP DESTINATIONS" SECTION */

#top-destinations-section {
    padding: 3rem 10%;
}

#top-destinations-heading {
    font-size: 2rem;
    font-weight: bold;
}

#images-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 3rem auto;
    max-width: 120rem;
    row-gap: .5rem;
}

#images-wrapper > a {
    background-color: var(--clr-blue-sapphire);
    border-radius: 10px;
    width: 32%;
}

#images-wrapper > a:hover {
    border-radius: 5px;
    box-shadow: 0 0 5px 5px rgb(2, 54, 80);
    opacity: 0.9;
}

#images-wrapper > a:active {
    opacity: 1;
}

/* country name - heading */
.top-dest-image-box > h3 {
    background-color: #00000042;
    border-radius: 20px;
    box-shadow: 0 0 10px 15px #00000042;
    font-size: 2rem;
    font-weight: 400;
    margin: 1rem 0 0 1rem;
    position: absolute;
    text-shadow: 4px 2px 3px black;
    z-index: 2;
}

.top-destination-image {
    border-radius: 10px;
    display: block;
    width: 100%;
} 

/* END --> "TOP DESTINATIONS" SECTION */

/* START --> "WHAT OUR CLIENTS SAY ABOUT US" SECTION */

#reviews-section {
    background-color: var(--clr-dutch-white);
    box-shadow: 0 0 5px 5px var(--clr-silver-foil);
    padding: 3rem 8%;
}

#reviews-heading {
    font-size: 2rem;
    font-weight: bold;
}

#reviews-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    column-gap: 1.5rem;
    row-gap: 1.5rem;
}

.review-container {
    background-color: var(--clr-khaki);
    border-radius: 10px;
    box-shadow: 0 0 5px 0 var(--clr-indigo);
    padding: 1rem 2rem;
    width: 25%;
}

.review-headliner {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: .8rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 2rem;
    margin-bottom: 1rem;
}

.review-trustpilot-stars {
    width: 5.5rem;
}

.review-author {
    display: block;
    font-weight: 300;
}

/* END --> "WHAT OUR CLIENTS SAY ABOUT US" SECTION */

/* START --> "WHO WE ARE" SECTION */

#who-we-are-section {
    padding: 3rem 10%;
    min-height: 15rem;
}

#who-we-are-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
}

/* 'Who We Are' text content */
#who-we-are-heading ~ p {
    width: 53rem;
    margin: 0 auto 1.2rem;
    line-height: 2rem;
    font-size: 1.2rem;
    text-align: justify;
}

.company-name {
    font-family: 'Water Brush', cursive;
    font-size: 2.5rem;
}

#who-we-are-section p:last-of-type {
    margin-bottom: 2.5rem ;
}

/* END --> "WHO WE ARE" SECTION */

/* START --> "SUBSCRIBE TO OUR NEWSLETTER" SECTION */

#newsletter-section {
    padding: 3rem 0;
    background-color: var(--clr-dutch-white);
    box-shadow: 0 0 5px 5px var(--clr-silver-foil);
}

#newsletter-heading {
    font-size: 2rem;
    font-weight: bold;
}

#newsletter-form {
    display: flex;
    flex-direction: column;
    width: 35rem;
    margin: 3rem auto 0;
    font-size: 1.2rem;
}

/* Newsletter - email input field */
#newsletter-form > input {
    border-radius: 5px;
    font-size: 1rem;
    padding: 0 .5rem;
    line-height: 2rem;
    margin: .5rem 0 2rem;
}

/* END --> "SUBSCRIBE TO OUR NEWSLETTER" SECTION */

/* START --> "FOOTER" */

footer {
    background-color: var(--clr-sea-blue);
    display: grid;
    grid-template-columns: 30% 35% 35%;
    grid-template-areas:
        'map address social-media'
        'copyright copyright copyright';
    padding: 3rem 10%;
    column-gap: 2rem;
}

/* map */
#map-wrapper {
    grid-area: map;
}

#main-office-map {
    border-radius: 10px;
    height: 300px;
    width: 300px;
}

/* office address */
#office-address-wrapper {
    grid-area: address;
    padding: 2rem 1rem;
    width: 100%;
}

#address-inner-wrapper {
    margin-top: 2rem;
}

#address-inner-wrapper > * {
    margin-bottom: .8rem;
}

.where-to-find-us {
    display: inline-block;
    margin-left: 1.2rem;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.where-to-find-us:hover {
    color: var(--clr-khaki);
}

#office-address-label {
    font-weight: bold;
}

/* social media */
#social-media-wrapper {
    grid-area: social-media;
    padding: 2rem 1rem;
}

#social-media-label {
    font-weight: bold;
}

#social-media-inner-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: space-around;
}

#social-media-inner-wrapper > a {
    color: inherit;
}

.fa-brands {
    font-size: 2.5rem;
}

.fa-brands:hover {
    color: var(--clr-khaki);
}

/* copyright */
.main-wrapper-copyright {
    grid-area: copyright;
    margin: 2rem auto 0;
}

.main-wrapper-copyright small {
    font-size: 1rem;
}

/* END --> "FOOTER" */

/* START --> "CONTACT US PAGE" */

#contact-main-wrapper {
    margin: 5rem auto;
    max-width: 42rem;
    padding: 0 10%;
}

/* heading - contact form */
#contact-main-heading {
    font-size: 3rem;
    font-weight: bold;
}

/* contact form element*/
#contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* instruction on what to do to contact an agent */
#contact-todo {
    font-size: 1.2rem;
    margin: 2rem auto;
}

.form-item-box {
    margin-bottom: 1rem;
    font-weight: bold;
}

.form-item-box > *:not(datalist) {
    display: block;
}

/* adds small space between labels and input fields */
.form-item-box > label:nth-child(1) {
    margin-bottom: .5rem;
}

/* input fields */
.form-item-box > input {
    border: 1px solid gray;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: .9rem;
    height: 2rem;
    width: 100%;
    padding: 0 1rem;
}

/* what time available for chat? */
#call-time-container {
    display: flex;
    flex-wrap: wrap;
}

#call-time-container > p {
    margin-bottom: .5rem;
    width: 100%;
}

#military-time {
    font-style: italic;
    font-weight: normal;
}

.call-time-inner-wrapper {
    text-align: center;
    width: 50%;
}

#from-call-time,
#to-call-time {
    margin-left: 5%;
    padding: 0 .5rem;
    width: 50%;
}

/* message */
#message {
    box-sizing: border-box;
    padding: 1rem;
    resize: none;
    width: 100%;
    height: 10rem;
}

/* agree to terms checkbox */
#agree-to-terms-inner-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

#agree-to-terms {
    margin-right: 1rem;
    transform: scale(1.2);
}

label[for="agree-to-terms"] {
    font-style: italic;
}

/* footnote - for required inputs */
#required {
    font-size: .9rem;
    font-style: italic;
    margin-top: 1.5rem;
}

/* submit button - for contact form */
#contact-form-button {
    margin-top: 2.5rem;
}

/* END --> "CONTACT US PAGE" */

/* START --> "DESTINATIONS PAGE" */

#destinations-main-wrapper {
    padding: 5rem 0;
}

/* heading - destinations page */
#destinations-main-heading {
    font-size: 3rem;
    font-weight: bold;
    margin: 0 1rem;
}

#destinations-outer-wrapper {
    display: flex;
    row-gap: 3rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 6rem auto 0;
    max-width: 100rem;
}

/* main container for individual country */
.destinations-inner-wrapper {
    background-color: var(--clr-dutch-white);
    border-radius: 10px;
    box-shadow: 0 0 15px 2px var(--clr-indigo);
    display: flex;
    align-items: center;
    column-gap: 2rem;
    padding: 2.5rem;
    position: relative;
    width: 43%;
}

.primary-img-box {
    background-color: var(--clr-sea-blue);
    border-radius: 10px;
    box-shadow: 0 0 5px 2px var(--clr-indigo);
    min-width: 350px;
    overflow: hidden;
}

.primary-img {
    display: block;
    width: 100%;
}

.text-inner-wrapper {
    display: flex;
    align-content: flex-start;
    flex-direction: column;
    row-gap: 1.5rem;
}

/* country name - heading */
h2.country {
    border-bottom: 6px solid var(--clr-blue-sapphire);
    color: var(--clr-indigo);
    font-size: 2.2rem;
    padding-bottom: .8rem;
}

.country-description {
    font-size: 1.2rem;
    line-height: 2.2rem;
}

/* END --> "DESTINATIONS PAGE" */

/* START --> FEEDBACK PAGES - CONTACT FORM SUBMISSION | NEWSLETTER SUBSCRIPTION | 404 PAGE */

.feedback-section {
    flex: 1 0 auto;
    display: flex;
    row-gap: 2rem;
    flex-direction: column;
    justify-content: center;
    padding: 5% 10%;
}

.feedback-heading {
    font-size: 3rem;
}

.successful,
.sorry {
    font-size: 1.7rem;
}

.more-info {
    font-size: 1.2rem;
}

/* END --> FEEDBACK PAGES - CONTACT FORM SUBMISSION | NEWSLETTER SUBSCRIPTION | 404 PAGE */

/* MEDIA QUERIES */

@media screen and (max-width: 2000px) {
    /* Home - Banner */
    #tagline-travel-asia {
        font-size: 10rem;
    }    

    /* Home - Top Destinations */
    #top-destinations-section {
        padding: 3rem 5%;
    }
}

@media screen and (max-width: 1830px) {
    /* Home - Banner */
    #tagline {
        font-size: 2.6rem;
    }

    #tagline-travel-in-style {
        left: -4rem;
    }

    #tagline-travel-asia {
        font-size: 7rem;
    }

    #tagline-travel-with-us {
        top: .5rem;
        right: -3rem;
    }

    /* Home - Banner */
    #hero-video-header {
        min-width: 39rem;
    }

    /* Destinations Page */
    #destinations-main-wrapper {
        padding-right: 4%;
        padding-left: 4%;
    }
}

@media screen and (max-width: 1559px) {
    /* Home - Banner */
    #main-header-section {
        background-image: url(../media/images/banner-bg-maldives-1559.jpg);
        height: 30rem;
        padding: 0 6%;
    }

    #tagline-travel-in-style {
        left: -2rem;
    }

    #trustpilot {
        left: 2rem;
    }

    /* Home - Top Destinations */
    #top-destinations-section {
        padding: 3rem 1%;
    }

    /* Home - Top Destinations */
    #top-destinations-section {
        padding: 3rem 1%;
    }

    /* Home - Reviews */
    .review-container {
        width: 40%;
    }

    /* Destinations Page */
    .primary-img-box {
        height: 27rem;
        min-width: 18rem;
    }    

    h2.country {
        font-size: 2.1rem;
    }

    .country-description {
        font-size: 1.1rem;
        line-height: 2rem;
    }

}

@media screen and (max-width: 1360px) {
    /* Home - Banner */
    #main-header-section {
        background-image: url(../media/images/banner-bg-maldives-1360.jpg);
    }

    #tagline {
        font-size: 2rem;
        top: 8rem;
    }

    #tagline-travel-in-style {
        left: 0;
    }

    #tagline-travel-asia {
        font-size: 5rem;
    }

    #tagline-travel-with-us {
        right: 0;
    }

    /* Home - What We Offer */
    #what-we-offer-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .what-we-offer-inner-wrapper {
        width: 38%;
    }

    /* Home - Top Destinations */
    #top-destinations-section {
        padding: 3rem 5%;
    }
    
    #images-wrapper > a {
        width: 48%;
    }

    /* Destinations Page */
    .destinations-inner-wrapper {
        width: 41%;
    }

    .primary-img-box {
        height: 22rem;
        min-width: 14.7rem;
    }

    .country-description {
        line-height: 1.8rem;
    }
}

@media screen and (max-width: 1250px) {
    /* Home - Reviews */
    #reviews-wrapper {
        flex-wrap: wrap;
    }

    /* Home - Who We Are */
    #who-we-are-heading ~ p {
        width: 42rem;
   }

    /* Footer */
    footer {
        grid-template-columns: 50% 50%;
        grid-template-areas: 
            'map address'
            'social-media social-media'
            'copyright copyright';
    }

    #map-wrapper {
        grid-area: map;
    }

    #office-address-wrapper {
        grid-area: address;
    }

    #social-media-wrapper {
        grid-area: social-media;
    }

    #social-media-label {
        text-align: left;
    }

    #social-media-inner-wrapper {
        justify-content: start;
        gap: 10%;
    }

    /* Destinations Page */
    #destinations-outer-wrapper {
        width: 90%;
    }

    .destinations-inner-wrapper {
        width: 100%;
    }

    .destinations-inner-wrapper:nth-child(2n) {
        flex-direction: row-reverse;
    }

    .text-inner-wrapper {
        margin: 0 3%;
    }

    .country-description {
        line-height: 2rem;
    }
}

@media screen and (max-width: 1157px) {
    /* Home - Banner */
    #main-header-section {
        column-gap: 1.5rem;
        justify-content: space-between;
    }

    #hero-video-header {
        min-width: 29rem;
    }
}

@media screen and (max-width: 1024px) {
    /* Home - Banner */
    #main-header-section {
        background-image: url(../media/images/banner-bg-maldives-1024.jpg);
    }
}

@media screen and (max-width: 980px) {
    /* Home- Banner */
    #main-header-section {
        height: 26rem;
    }

    #tagline {
        font-size: 1.7rem;
        top: 8rem;
    }

    #tagline-travel-asia {
        font-size: 4.2rem;
        width: 18.9rem;
    }

    #trustpilot {
        height: 7rem;
        width: 7rem;
    }

    .trustpilot-rating {
        font-size: .6rem;
        margin-bottom: .2rem;
    }

    .trustpilot-stars {
        width: 5rem;
    }

    .trustpilot-based-on {
        font-size: .4rem;
        margin-bottom: .2rem;
    }

    .trustpilot-logo {
        width: 3rem;
    }

    /* Home - Reviews */
    .review-container {
        width: 80%;
    }
}

@media screen and (max-width: 900px) {
    /* Home - Banner */
    #main-header-section {
        height: 20rem;
        justify-content: center;
        z-index: -1;
    }

    #tagline {
        font-size: 2.5rem;
    }

    #tagline-travel-in-style {
        left: -10%;
        top: 0;
    }

    #tagline-travel-asia {
        width: auto;
        font-size: 7rem;
    }

    #tagline-travel-with-us {
        right: -10%;
        top: -1rem;
    }

    #hero-video-header {
        display: none;
    }

    #video-section {
        background-color: var(--clr-sky-blue);
        background-image: url("../media/images/bg-beach-gradient-1199x550.webp");
        box-shadow: 0 0 20px 10px var(--clr-sky-blue);
        display: block;
        padding: 2rem 0;
    }

    #hero-video-body {
        border-radius: 30px;
        display: block;
        margin: 0 auto;
        width: 68%;
    }

    /* Home - What We Offer */
    .what-we-offer-inner-wrapper > h3 {
        font-size: 1.3rem;
    }

    .what-we-offer-inner-wrapper > p {
        font-size: 1.1rem;
    }

    /* Newsletter */
    #newsletter-form {
        width: 70%;
        font-size: 1rem;
    }
}

@media screen and (max-width: 869px) {
    /* Nav Bar */
    nav {
        column-gap: 2.1rem;
    }

    #company-logo {
        font-size: 2.3rem;
        letter-spacing: .3rem;
        min-width: 16rem;
    }

    #company-logo-span {
        font-size: .9rem;
    }

    .nav-link {
        font-size: 1rem;
    }

    /* Home - Who We Are */
    #who-we-are-heading ~ p {
        font-size: 1.1rem;
        width: 90%;
    }
}

@media screen and (max-width: 820px) {
    /* Home - What We Offer */
    #what-we-offer-section {
        padding-left: 10%;
        padding-right: 10%;
    }

    .what-we-offer-inner-wrapper {
        margin-top: .8rem;
        margin-bottom: .5rem;
        width: 80%;
    }

    /* Home - Top Destinations */
    #images-wrapper > a {
        width: 80%;
    }

    /* Footer */
    footer {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    #map-wrapper {
        width: 100%;
    }

    #main-office-map {
        width: 100%;
        height: 180px;
    }

    #office-address-wrapper {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }

    #address-inner-wrapper {
        margin-top: 1rem;
    }

    #social-media-wrapper {
        margin-top: 1rem;
        padding: 1rem 0;
        width: 100%;
    }

    #social-media-inner-wrapper {
        margin-top: 1rem;
    }

    .fa-brands {
        font-size: 2rem;
    }

    /* Contact Us Page */
    #contact-main-wrapper {
        margin-top: 3rem
    }
    
    #contact-main-heading {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 790px) {
    /* Destinations Page */
    #destinations-main-heading {
        font-size: 2.5rem;
    }

    #destinations-main-wrapper {
        padding-left: 2%;
        padding-right: 2%;
        padding-top: 3rem;
    }

    #destinations-outer-wrapper {
        margin-top: 3rem;
    }

    .destinations-inner-wrapper {
        padding: 2rem;
    }

    .text-inner-wrapper {
        margin: 0;
    }

    h2.country {
        font-size: 1.7rem;
    }
}

@media screen and (max-width: 720px) {
    /* Home - Banner */
    #main-header-section {
        background-image: url(../media/images/banner-bg-maldives-720.jpg);
    }

    #tagline {
        font-size: 2rem;
    }

    #tagline-travel-asia {
        font-size: 5rem;
    }   

    /* Home - Top Destinations */
    #images-wrapper > a {
        width: 90%;
    }
}

@media screen and (max-width: 715px) {
    /* Nav Bar */
    nav {
        flex-direction: column;
        justify-content: space-evenly;
        min-height: 9.5rem;
    }

    #main-header-navlinks {
        width: 90%;
    }
}

@media screen and (max-width: 690px) {
    /* Nav Bar */
    .active {
        padding: .2rem .5rem;
    }

    /* Feedback Pages */
    .feedback-heading {
        font-size: 2.4rem;
    }

    .successful {
        font-size: 1.3rem;
    }

    .more-info {
        font-size: 1rem;
    }
}

@media screen and (max-width: 650px) {
    /* Home - Banner */
    #hero-video-body {
        width: 85%;
    }

    /* Destinations Page */
    #destinations-main-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    #destinations-main-heading {
        font-size: 1.9rem;
    }

    #destinations-outer-wrapper {
        width: 100%;
    }

    .destinations-inner-wrapper {
        border-radius: 0;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10%;
    }

    .primary-img-box {
        min-width: 100%;
        height: auto;
    }

    .text-inner-wrapper {
        padding: 2rem 0 0;
    }
}

@media screen and (max-width: 590px) {
    /* Home - Banner */
    #trustpilot {
        bottom: 0;
        left: 2rem;
        height: 6rem;
        width: 6rem;
    }

    /* Home - What We Offer */
    #what-we-offer-section {
        padding-left: 2%;
        padding-right: 2%;
    }

    .what-we-offer-outer-wrapper {
        flex-direction: column;
    }

    .what-we-offer-inner-wrapper {
        margin: .4rem 0;
        padding: 1.2rem 1.5rem;
        width: 90%;
    }

    /* Home - Top Destinations */
    #top-destinations-section {
        padding: 3rem 0%;
    }

    #images-wrapper > a {
        border-radius: 0;
        width: 100%;
    }

    .top-destination-image {
        border-radius: 0;
    }

    /* Home - Reviews */
    #reviews-section {
        padding: 3rem 4%;
    }
    
    #reviews-heading {
        padding: 0 12%;
    }

    .review-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        width: 90%;
    }

    /* Home - Who We Are */
    #who-we-are-section {
        padding: 3rem 5%;
    }

    #who-we-are-heading ~ p {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .company-name {
        font-size: 2rem;
    }

    /* Contact Us Page */
    #contact-main-heading {
        font-size: 2rem;
    }

    #contact-todo {
        font-size: 1rem;
    }

    label[for="agree-to-terms"] {
        font-size: .9rem;
    }

    #required {
        font-size: .8rem; 
    }
}

@media screen and (max-width: 500px) {
    /* Home - Banner */
    #main-header-section {
        height: 15rem;
    }

    #tagline {
        font-size: 1.6rem;
    }

    #tagline-travel-in-style {
        top: -1rem;
        left: -2rem;
    }

    #tagline-travel-asia {
        font-size: 4rem;
    }    

    #tagline-travel-with-us {
        right: -2rem;
        top: 0;
    }

    /* Newsletter */
    #newsletter-heading {
        font-size: 1.6rem;
    }

    #newsletter-form {
        margin-top: 2rem; 
        width: 85%;
    }

    /* Feedback Pages */
    .feedback-section {
        padding: 10% 5%;
        row-gap: 1rem;
    }

    .feedback-heading {
        font-size: 2rem;
    }

    .successful {
        font-size: 1.1rem;
    }

    .more-info {
        font-size: .9rem;
    }
}

@media screen and (max-width: 480px) {
    /* Home - Banner */
    #main-header-section {
        background-image: url(../media/images/banner-bg-maldives-480.jpg);
    }

    #hero-video-body {
        width: 90%;
    }

    #trustpilot {
        width: 5rem;
        height: 5rem;
    }

    .trustpilot-rating {
        font-size: .6rem;
        margin-bottom: .2rem;
    }

    .trustpilot-stars {
        width: 3rem;
    }

    .trustpilot-based-on {
        display: none;
    }

    .trustpilot-logo {
        width: 2.5rem;
    }

    /* Footer */
    .where-to-find-us {
        display: block;
        margin: 0;
    }

    #social-media-label {
        font-size: .8rem;
    }

    .main-wrapper-copyright small {
        font-size: .8rem;
    }

    /* Destinations Page */
    #office-address-wrapper {
        font-size: .9rem;
    }
}

@media screen and (max-width: 420px) {
    /* Nav Bar */
    nav {
        justify-content: center;
        min-height: 9rem;
        row-gap: .5rem;
    }

    #company-logo {
        font-size: 2rem;
        letter-spacing: .2rem;
        margin: 0 auto;
        width: 100%;
    }

    #main-header-navlinks {
        column-gap: .3rem;
        width: 100%;
    }

    .nav-link {
        font-size: .8rem;
    }

    /* Home - Banner */
    #video-section {
        padding: 1rem 0;
    }

    /* Home - Reviews */
    .review-text {
        font-size: 1rem;
    }
    .review-author {
        font-size: .9rem;
    }

    /* Newsletter */
    #newsletter-heading {
        font-size: 1.5rem;
        margin: 0 2rem;
    }

    /* Destinations Page */
    #destinations-main-heading {
        font-size: 1.6rem;
    }

    .country-description {
        font-size: 1rem;
    }

    /* Utility Buttons */
    .section-button > a,
    .submit-button {
        width: 80%;
    }
}

@media screen and (max-width: 390px) {
    /* Home - Banner */
    #main-header-section {
        height: 11rem;
    }

    #tagline {
        font-size: 1.3rem;
    }

    #tagline-travel-in-style {
        top: -.5rem;
        left: -1rem
    }

    #tagline-travel-asia {
        font-size: 2.9rem;
    }

    #tagline-travel-with-us {
        top: -.2rem;
        right: -1rem;
    }

    #trustpilot {
        height: 4.2rem;
        width: 4.2rem;
    }

    .trustpilot-rating {
        font-size: .5rem;
        margin-bottom: .2rem;
    }

    /* Home - What We Offer */
    #what-we-offer-heading {
        font-size: 1.7rem;
    }

    .what-we-offer-inner-wrapper > h3 {
        font-size: 1.2rem;
    }

    .what-we-offer-inner-wrapper > p {
        font-size: 1rem;
    }

    /* Home - Top Destinations */
    #top-destinations-heading {
        font-size: 1.7rem;
    }

    .top-dest-image-box > h3 {
        font-size: 1.5rem; 
    }

    /* Home - Reviews */
    #reviews-heading {
        font-size: 1.7rem;
    }

    /* Home - Who We Are */
    #who-we-are-heading {
        font-size: 1.7rem;
    }

    /* Contact Us Page */
    #contact-main-wrapper {
        padding: 0 6%;
    }

    #contact-main-heading {
        font-size: 1.8rem;
    }

    .call-time-inner-wrapper {
        margin-left: 10%;
        margin-bottom: .5rem;
        text-align: left;
        width: 100%;
    }

    .call-time-inner-wrapper > label {
        display: inline-block;
        width: 3rem;
    }
}

@media screen and (max-width: 340px) {
    /* Newsletter */
    #newsletter-form {
        font-size: .9rem;
    }

    #newsletter-form > input {
        font-size: .9rem;
    }

    /* Destinations Page */
    #destinations-main-heading {
        margin: 0 3rem;
    }
}