main {
    width: 99vw;
    height: auto;
}

p a {
    color: var(--metallic-sunburst);
    font-weight: 900;
}

.hero-area {
    height: 100vh;
    width: 100%;
    border-radius: 50px;
    border-bottom: solid 6px var(--metallic-sunburst);
    background-image: url(/images/background2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 0% 100%;
}

.hero-area .container {
    height: 100%;
    width: 100%;
}

.hero-area .row {
    height: 100%;
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.hero-area .col {
    width: 50%;
}

.hero-area .col.content {
    display: flex;
    flex-direction: column;
    padding: 40px;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    -webkit-box-shadow: 0 0 20px rgb(187, 181, 181);
    box-shadow: 0 0 20px rgb(187, 181, 181);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-area .col.content .images {
    width: 90%;
    display: flex;
    justify-content: space-between;
    flex-flow: row nowrap;
    margin-bottom: 10px;
}

.hero-area .col.content img {
    height: 96px;
    width: auto;
    margin: 8px 0;
}

.hero-area .col.content h1 {
    margin-top: 60px;
    text-align: right;
    font-size: 36px;
    font-weight: 900;
    text-transform: capitalize;
    color: var(--xiketic);
}

.hero-area .col.content h1 {
    color: var(--metallic-sunburst);
    text-transform: capitalize;
    font-size: 36px;
    font-weight: 900;
    position: relative;
    margin: 2rem 0;
    text-align: left;
}

.hero-area .col.content h1::before {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 150px;
    height: 0.125rem;
    background: var(--metallic-sunburst);
}

.hero-area .col.content p {
    text-align: left;
    font-weight: 600;
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    color: var(--xiketic);
}

.hero-area .col.gif img {
    object-fit: cover;
    height: auto;
    width: 90%;
    border: solid 0px var(--metallic-sunburst);
    border-radius: 31% 69% 67% 33% / 35% 82% 18% 65%;
    border-radius: 40px 80px / 20px 100px;
    -webkit-box-shadow: 0 0 20px rgba(211, 179, 88, 1);
    box-shadow: 0 0 20px rgba(211, 179, 88, 1);
    -webkit-box-shadow: 0 0 20px rgb(187, 181, 181);
    box-shadow: 0 0 20px rgb(187, 181, 181);
}


/*******************
*
*   our
*  values
*
********************/

.our-values {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    /*
    background-image: url(/images/background-6.png);
    background-repeat: no-repeat;
    background-size: cover;
    */
    background-image: url(/images/background2.png);
    background-repeat: no-repeat;
    background-position: 50%;
}

.our-values .widget {
    display: flex;
    flex-direction: row;
    width: 80%;
    padding: 40px;
    margin: 40px auto;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    -webkit-box-shadow: 0 0 20px rgb(187, 181, 181);
    box-shadow: 0 0 20px rgb(187, 181, 181);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -webkit-box-shadow: 5px 5px 20px rgba(211, 179, 88, 1);
    box-shadow: 5px 5px 10px rgba(211, 179, 88, 1);
}

.our-values .widget .icon {
    width: 40%;
}

.our-values .widget .icon img {
    width: 90%;
    height: auto;
}

.our-values .widget .info {
    width: 60%;
    display: flex;
    flex-direction: column;
}

.our-values .widget .info h4 {
    color: var(--metallic-sunburst);
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 900;
    position: relative;
    margin: 2rem 0;
    text-align: left;
}

.our-values .widget .info h4::before {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 5rem;
    height: 0.125rem;
    background: var(--spanish-bistre);
}

.our-values .widget .info p {
    text-align: left;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    color: var(--xiketic);
}


/*******************
*
*
* Responsive CSS
*
*
********************/


/********************
* 
* extra large screens, tv 
*
*********************/

@media only screen and (min-width:1200px) {}


/********************
* 
* desktop, large screens 
*
*********************/

@media only screen and (min-width:1025px) and (max-width:1200px) {
    .hero-area .row {
        flex-flow: column-reverse nowrap;
    }
    .hero-area .col {
        width: 100%;
        margin: auto;
    }
    .hero-area .col.gif {
        display: none;
    }
    /******************
    * our values 
    *******************/
    .our-values {
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
    }
    .our-values .widget {
        width: 100%;
        margin: 60px auto;
    }
    .our-values .col-lg-6 {
        width: 80%;
    }
    .our-values .widget .icon {
        width: 25%;
    }
    .our-values .widget .info {
        width: 75%;
    }
}


/********************
* 
* small screens, laptops 
*
*********************/

@media only screen and (min-width:769px) and (max-width:1024px) {
    .hero-area .row {
        flex-flow: column-reverse nowrap;
    }
    .hero-area .col {
        width: 100%;
        margin: auto;
    }
    .hero-area .col.gif {
        display: none;
    }
    /******************
    * our values 
    *******************/
    .our-values {
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
    }
    .our-values .widget {
        width: 100%;
        margin: 60px auto;
    }
    .our-values .col-lg-6 {
        width: 80%;
    }
    .our-values .widget .icon {
        width: 30%;
    }
    .our-values .widget .info {
        width: 70%;
    }
}


/********************
* 
* Ipads, tablets 
*
*********************/

@media only screen and (min-width:481px) and (max-width:768px) {
    .hero-area {
        height: fit-content;
    }
    .hero-area .row {
        flex-flow: column-reverse nowrap;
    }
    .hero-area .col {
        width: 100%;
        margin: 1rem auto;
        margin-top: 4rem;
    }
    .hero-area .col.content {
        padding: 20px;
    }
    .hero-area .col.content img {
        height: 36px;
    }
    .hero-area .col.content h1 {
        margin-top: 1rem;
        font-size: 24px;
    }
    .hero-area .col.content h1::before {
        bottom: -0.5rem;
        width: 100px;
    }
    .hero-area .col.content p {
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: normal;
    }
    .hero-area .col.gif {
        display: none;
    }
    .hero-area .col.content .images {
        flex-flow: column nowrap;
    }
    /******************
    * our values 
    *******************/
    .our-values {
        margin: 1rem auto;
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
    }
    .our-values .widget {
        width: 90%;
        margin: 60px auto;
        flex-flow: column nowrap;
        padding: 20px;
    }
    .our-values .col-lg-6 {
        width: 90%;
    }
    .our-values .widget .icon {
        width: 128px;
    }
    .our-values .widget .info {
        width: 100%;
    }
    .our-values .widget .info h4 {
        font-size: 20px;
    }
    .our-values .widget .info p {
        font-size: 16px;
        letter-spacing: normal;
        line-height: normal;
    }
}


/********************
* 
* Mobile devices 
*
*********************/

@media only screen and (min-width:320px) and (max-width:480px) {
    .hero-area {
        height: fit-content;
    }
    .hero-area .row {
        flex-flow: column-reverse nowrap;
    }
    .hero-area .col {
        width: 100%;
        margin: 1rem auto;
        margin-top: 4rem;
    }
    .hero-area .col.content {
        padding: 20px;
    }
    .hero-area .col.content img {
        height: 36px;
        width: auto;
    }
    .hero-area .col.content h1 {
        margin-top: 1rem;
        font-size: 24px;
    }
    .hero-area .col.content h1::before {
        bottom: -0.5rem;
        width: 100px;
    }
    .hero-area .col.content p {
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: normal;
    }
    .hero-area .col.gif {
        display: none;
    }
    .hero-area .col.content .images {
        flex-flow: column nowrap;
    }
    .hero-area .col.content .flags img {
        height: 36px;
        width: 36px;
    }
    /******************
    * our values 
    *******************/
    .our-values {
        margin: 1rem auto;
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
    }
    .our-values .widget {
        width: 90%;
        margin: 60px auto;
        flex-flow: column nowrap;
        padding: 20px;
    }
    .our-values .col-lg-6 {
        width: 100%;
    }
    .our-values .widget .icon {
        width: 128px;
    }
    .our-values .widget .info {
        width: 100%;
    }
    .our-values .widget .info h4 {
        font-size: 20px;
    }
    .our-values .widget .info p {
        font-size: 16px;
        letter-spacing: normal;
        line-height: normal;
    }
}