@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

/* Variables */
:root
{
    --bg: #ffffff;
    --textDK: #193138;
    --textLT: #ffffff;
    --textDECO: #70b1cf;
    --primary: #0d52ab;
    --boxDK: #b5d1dc;
    --boxLT: #e3f6f5;
    --boxDECO: #70b1cf;
    --boxDECOborder: #3988ac;
}

/* Reset some default styles for consistency across browsers */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/*---------------------------------------- General Styles */
body {
    font-family: 'Ubuntu', sans-serif;
    color: #000000;
    background-color: #FFFFFF;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    position: relative;
}
.smallICO
{
    width: 30px;
    height: 30px;
}
.mediumICO
{
    width: 40px;
    height: 40px;
}
ul
{
    list-style: none;
}
.upperp
{
    text-transform: uppercase;
}
.boldp
{
    font-weight: 600;
}
.bigp
{
    font-size: 0.9rem;
}
h1, h2, h3, p
{
    letter-spacing: 1px;
}
.centerContent
{
    text-align: center;
}
.anchor-target 
{
  scroll-margin-top: 55px;
}
/*---------------------------------------- Header Styles */
header
{
    background: var(--primary);
    color: var(--textLT);
    padding: 20px 0 0 0;
    height: 55px;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
header .container
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: -1;
}
.title
{
    width: fit-content;
    overflow: visible;
}
.title h1
{
    color: var(--textDECO);
    text-align: left;
    font-size: 1.2rem;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 10px;
    margin-top: 5px;
    margin-left: 5px;
    text-transform: uppercase;
}
.title p
{
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

/*---------------------------------------- Section Styles */
.topPAD
{
    height: 75px;
}
section
{
    padding: 20px 0;
    text-align: justify;
    line-height: 1.6em;
    color: #404040;
}
section .container
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
section h2
{
    font-size: 1.8rem;
    margin: 20px 0;
}
section h3
{
    font-size: 1rem;
    line-height: 10px;
}
section p
{
    margin: 20px 0;
}
section button
{
    border: none;
    color: #FFFFFF;
    text-transform: uppercase;
    font-family: 'Josefin Sans', sans-serif;
    width: 150px;
    height: 40px;
    line-height: 42.5px;
    cursor: pointer;
}
.secDECO
{
    background-color: var(--boxDECO);
}
.secDECO h1,
.secDECO h2,
.secDECO p
{
    color: var(--textLT);
}
.secDECO button
{
    background-color: var(--boxDECO);
    border: 1px solid var(--boxDECOborder);
}
.secDECO button:hover
{
    background-color: var(--boxLT);
    color: var(--textDK);
    border: 1px solid var(--boxDECOborder);
}
form,
#FRMresponse
{
    width: 50%;
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
}
form input,
form textarea
{
    background-color: var(--boxDECO);
    border: none;
    border-bottom: 1px solid var(--boxDECOborder);
    color: var(--textLT);
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    letter-spacing: 1px;
}
form textarea
{
    height: 200px;
}
#responseMSG
{
    font-weight: 600;
}
/*----------------------------------------Slide-up animations */
.slide-up
{
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}
.slide-up.visible
{
  opacity: 1;
  transform: translateY(0);
}
/*----------------------------------------Footer Styles */
footer
{
    height: 450px;
    text-align: center;
    padding: 10px 0;
    background: var(--primary);
    color: var(--textLT);
    font-size: 0.9em;
    position: relative;
}
footer .container
{
    display: flex;
    justify-content: space-between;
}
.copyR
{
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 0);
    width: max-content;
}
footer .navigation
{
    margin: 0;
    padding: 0;
    width: 400px;
    height: auto;
    background-color: inherit
}
footer .socialLOGOs
{
    margin: 40px 0 0 0;
    padding-top: 40px;
    text-align: left;
    border-top: 2px solid #8a8075;        
}
footer .socialLOGOs ul
{
    margin: 20px 0 30px 0;
}
footer .socialLOGOs ul li
{
    display: inline;
}
footer nav ul
{
    padding: 0;
    text-align: left;
}
footer nav ul li
{
    margin: 20px 0 20px 0;
}
footer nav ul li a
{
    color: #FFFFFFFF;
    font-size: 0.8rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
}
footer .siteMAP
{
    padding-left: 20px; 
    border-left: 2px solid #8a8075;
    width: 30%;
    height: max-content;
    
    
}
/*---------------------------------------- Desktop styles */
@media (min-width: 768px)
{
    header .menuICO
    {
        display: none;
    }
    .navigation
    {
        width: 90%;
        max-width: 1200px;
        margin: -32.5px auto 0 auto;
    }
    header nav ul
    {
        padding: 0;
        list-style: none;
        text-align: right;
    }
    header nav ul li
    {
        margin: 0 15px;
        display: inline;
    }
    header nav ul li a
    {
        color: #FFFFFF;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        text-transform: uppercase;
    }

    header nav ul li a:hover {
        font-weight: 600;
        color: #ff8080;
    }
    #navigate .socialLOGOs
    {
        position: fixed;
        right: 20px;
        top: 50vh;
        transform: translate(0, -50%);
    }
    section
    {
        margin: 50px 0;
    }
    .anchor-target 
    {
      scroll-margin-top: 130px;
    }
    section .right-matter
    {
        width: 60%;
    }
    section .left-matter img
    {
        width: 400px;
    }
    .swiper
    {
        width: 700px !important;
        margin: 0 !important;
    }
    .swiper-slide
    {
        width: 700px !important;
    }
    #feedback .container
    {
        flex-direction: row-reverse;
    }
}

/*---------------------------------------- Phone Styles */
@media (max-width: 768px) {
    header h1, header h2
    {
        font-size: 1.5rem;
    }
    section h2
    {
        font-size: 1.5rem;
    }
    section h3
    {
        font-size: 0.9rem;;
    }
    form
    {
        width: 90%;
        padding: 15px;
    }
    form input, form textarea
    {
        width: 90%;
    }
    form button
    {
        font-size: 0.9rem;
    }
    section .container
    {
        display: inherit;
    }
    #about .left-matter
    {
        text-align: center;
        width: auto;
        height: 200px;
    }
    #about .left-matter img
    {
        width: 300px;
        height: 200px;
        object-fit: cover;
        object-position: top;
    }
    #about .right-matter
    {
        text-align: justify;
        padding: 20px;
        box-sizing: border-box;
        background-color: #FFFFFF;
        border: 2px solid aquamarine;
        border-radius: 3px;
    }
    #about .right-matter h3
    {
        margin-top: 0;
    }
    #navigate
    {
        width: 0vw;
        display: flex;
        margin-top: 20px;
        transition: width 0.5s ease;
        overflow: hidden;
    }
    .navigation
    {
        width: 85vw;
        height: 100vh;
        background-color: #FFFFFF;
        padding: 20px 0 0 0;
    }
    .dimmer
    {
        width: 15vw;
        height: 100vh;
        margin: 0 0 0 auto;
        background-color: #3b494c;
        padding: 20px 0 0 0;
        opacity: 0.5;
    }
    #navigate .socialLOGOs
    {
        width: 70%;
        margin: 100px 0 0 30px;
    }
    .socialLOGOs ul li
    {
        display: inline;
    }
    header nav ul
    {
        padding: 0;
        list-style: none;
    }
    header nav ul li
    {
        margin: 30px;
    }
    header nav ul li a
    {
        color: #3b494c;
        font-size: 1.2rem;
        font-family: 'Josefin Sans', sans-serif;
        font-weight: 500;
        text-transform: uppercase;
        text-decoration: none;
    }
    footer .navigation
    {
        width: 100%;
    }
    .siteMAP
    {
        display: none;
    }
}
/*---------------------------------------- Swiper Styles */
.swiper
{
    width: 100%;
    height: auto;
    padding: 20px 0;
    margin: 40px 0px 0px 0px;
}
.swiper-slide
{
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-slide img 
{
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 5px solid #e3f6f5;
    box-sizing: border-box;
}
.swiper-button-next,
.swiper-button-prev
{
    color: #b30000 !important;
}
.swiper-pagination-bullet
{
    background-color: #b30000 !important;
}
.swiper-pagination-bullet-active
{
    background-color: #b30000 !important;
}