/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.anchor-menu {
    display: flex;
    justify-content: space-between;
    background-color: #000;
    padding: 10px 20px;
    color: #fff;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.anchor-menu a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
}

.anchor-menu a:hover {
    background-color: #444;
}

.anchor-menu .button {
    background-color: red;
    border-radius: 20px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
}

.anchor-menu .button:hover {
    background-color: darkred;
}

.title-container {
    display: flex;
    align-items: center;
}
.title-text {
    font-weight: bold;
    font-size: 28px;
    margin-right: 15px;
}
.title-line {
    flex-grow: 1;
    border-bottom: 1px solid black;
}

.button-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}
.contact-button {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
	background-color: white;
  	border-radius: 50px;
}

.contact-button .icon {
    display: flex;
    align-items: center;
    margin-right: 10px;
    font-size: 24px;
}
.register-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 23px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
	background-color: white;
  	border-radius: 50px;
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}