/* General Styles */
body {
    font-family: 'Lato', sans-serif;
    font-weight: 100;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
}

header {
    background-color: #ffffff;
    padding: 10px 0 0;
    border-bottom: 25px solid #042045;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
	max-width: 1024px;
    margin: 0 auto;
}

.logo {
    height: 100px;
}

.contact-info {
    text-align: right;
}

.contact-info p {
    margin: 5px 0;
}

.phone-number {
	font-family: 'Comfortaa';
    font-weight: bold;
    font-size: 1.5em;
}

nav {
    background-color: #2c3580;
    padding: 10px 0;
    z-index: 1000;
    position: relative;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    position: relative;
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    display: block;
	font-size: 12px;
}

nav ul li ul {
    display: none;
    position: absolute;
    background-color: #2c3580;
    list-style-type: none;
    padding: 0;
    margin: 0;
    top: 100%;
    left: 0;
    width: 200px;
    z-index: 1001;
}

nav ul li:hover ul {
    display: block;
}

nav ul li ul li {
    margin: 0;
}

.main-content {
    padding: 20px 15% 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #262626;
}

.blob {
    position: relative;
    width: 75%;
    height: auto;
    min-height: 40vh;
    background: #f09;
    background-image: linear-gradient(45deg, #FF512F 0%, #DD2476 100%);
    box-shadow: -2vmin 2vmin 0 rgba(255, 255, 255, 0.07);
    border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    margin: 20px 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.blob:nth-child(odd) {
    align-self: flex-start;
}

.blob:nth-child(even) {
    align-self: flex-end;
}

.blob-content {
    position: relative;
    width: 80%;
    height: auto;
    color: white;
    padding: 20px;
    z-index: 1;
}

.blob-content h2 {
    margin-bottom: 20px;
    font-size: 2.5em;
}

.blob-content a,
.blob-content a:hover {
    color: #fff;
}
.ti-widget-container {
    margin-top: 3em;
} 	
footer {
    background-color: #2c3580;
    color: white;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@keyframes morph1 {
    0% {
        border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    }
    100% {
        border-radius: 60% 40% 40% 60% / 30% 70% 30% 70%;
    }
}

@keyframes morph2 {
    0% {
        border-radius: 50% 50% 60% 40% / 60% 40% 70% 30%;
    }
    100% {
        border-radius: 40% 60% 40% 60% / 70% 30% 50% 50%;
    }
}

@keyframes morph3 {
    0% {
        border-radius: 30% 70% 50% 50% / 60% 40% 70% 30%;
    }
    100% {
        border-radius: 60% 40% 60% 40% / 30% 70% 50% 50%;
    }
}

.blob:nth-child(odd) {
    animation: morph1 5s linear infinite alternate;
}

.blob:nth-child(even) {
    animation: morph2 6s linear infinite alternate;
}

.blob:nth-child(3n) {
    animation: morph3 7s linear infinite alternate;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-content {
        margin: 10px;
    }

    .contact-info {
        margin: 10px 0;
        text-align: center;
    }

    .blob-content {
        width: 90%;
    }

    .blob {
        width: 90%;
    }
    nav ul {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        position: static;
    }

    nav ul li ul {
        display: flex;
        flex-direction: column;
        position: static;
        background-color: transparent; /* Removing background color for nested items */
        border: none; /* Removing border for nested items */
    }

    nav ul li ul li {
        width: 85%;
        margin-left: 15%;
    }

    nav ul li ul ul {
        display: flex;
        flex-direction: column;
        position: static;
    }

    nav ul li ul ul li {
        width: 70%;
        margin-left: 30%;
    }
    .header-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
/* Mobile styles */
@media (max-width: 768px) {
    #nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    #nav-menu.active {
        display: flex;
    }

    /* Styles for the menu button */
    #menu-toggle {
        display: block;
        background-color: #2c3580;		
        width: 100%;
        color: #fff;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        font-size: 16px;
    }
}

/* Hide the menu button on desktop */
@media (min-width: 769px) {
    #menu-toggle {
        display: none;
    }

    #nav-menu {
        display: flex !important;
		justify-content: space-around;
    }
}
