html,
body {
    overflow-x: hidden;
}

#navbar {
    z-index: 999;
    transition: all 0.5s;
    position: fixed;
    width: 100%;
    height: 150px;
    padding: 50px 70px;
}

#navbar h3 {
    font-weight: 700;
    color: #8B5F56;
}

#navbar .logo {
    margin-top: -8px;
}

#navbar .logo img {
    max-width: 180px;
}

#navbar .logo img:nth-child(2) {
    display: none;
}

#navbar .main-nav ul li {
    position: relative;
    display: inline;
    font-size: 23px;
}

#navbar .main-nav ul li:not(:last-child) {
    padding: 10px;
}

#navbar .main-nav ul li:last-child {
    padding-left: 10px;
}

#navbar .main-nav ul li a {
    font-family: 'Milliard Light';
    padding: 5px 30px;
    color: #8B5F56;
    text-decoration: none;
}

#navbar .main-nav ul li:last-child a {
    border: 2px solid;
    border-radius: 10px;
}

#navbar .main-nav ul li .dot {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 0%;
    transform: translateX(-50%);
    color: #8B5F56;
    font-size: 6px;
}

#navbar .main-nav ul li.active .dot {
    display: block;
}

#navbar .mobile-nav .hamburger {
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 50%;
    transform: translate(-5%, -50%);
}

#navbar .mobile-nav .line {
    width: 30px;
    height: 3px;
    background: #8B5F56;
    margin: 5px;
}

#navbar .mobile-nav .cross {
    display: none;
    width: 30px;
    height: 3px;
    background: #8B5F56;
}

#navbar .mobile-nav .cross:nth-child(4) {
    -ms-transform: rotate(45deg);
    /* IE 9 */
    transform: rotate(45deg);
}

#navbar .mobile-nav .cross:nth-child(5) {
    -ms-transform: rotate(-45deg);
    /* IE 9 */
    transform: rotate(-45deg);
    margin-top: -3px;
}

#navbar .mobile-nav .nav-links {
    position: fixed;
    background: #FFF;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 70px;
    clip-path: ellipse(0% 0% at 100% 0%);
    -webkit-clip-path: ellipse(0% 0% at 100% 0%);
    transition: all 0.5s ease-out;
}

#navbar .mobile-nav .nav-links li {
    position: relative;
    text-align: right;
    list-style: none;
    margin: 20px;
}

#navbar .mobile-nav .nav-links li a {
    color: #8B5F56;
    padding-right: 35px;
    text-decoration: none;
}

#navbar .mobile-nav .nav-links li i {
    color: #8B5F56;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

#navbar .mobile-nav .nav-links li.active i {
    display: inline;
}

#navbar .mobile-nav .nav-links.open {
    z-index: 9999;
    clip-path: ellipse(100% 55% at 100% 0%);
    -webkit-clip-path: ellipse(100% 55% at 100% 0%)
}

#navbar.navbar-scrolled {
    transition: all 0.5s;
    background-color: #FFF;
    z-index: 997;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

#navbar.navbar-scrolled {
    background-color: #FFF;
    height: 80px;
    padding: 15px 70px 10px 70px;
    align-items: center;
    display: flex;
}

#navbar.navbar-scrolled .main-nav ul {
    padding-top: 10px;
    margin-bottom: 0
}

#navbar.navbar-scrolled .mobile-nav .cross:nth-child(4) {
    animation: cross1 0.5s linear;
}

#navbar.navbar-scrolled .mobile-nav .cross:nth-child(5) {
    animation: cross2 0.5s linear;
}

#navbar.navbar-scrolled .mobile-nav .nav-links {
    position: fixed;
    background: #FFF;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 70px;
    clip-path: ellipse(0% 0% at 100% 0%);
    -webkit-clip-path: ellipse(0% 0% at 100% 0%);
    transition: all 0.5s ease-out;
}

#navbar.navbar-scrolled .mobile-nav .nav-links.open {
    z-index: 9999;
    clip-path: ellipse(100% 55% at 100% 0%);
    -webkit-clip-path: ellipse(100% 55% at 100% 0%)
}

#footer-container {
    overflow: hidden;
    padding: 50px 0;
}

#footer {
    padding: 50px 150px 10px 150px;
    background-color: #FFF;
    background-blend-mode: multiply;
    /* margin-bottom: 50px; */
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.3);
    color: #77524B;
    position: relative;
    font-family: 'Milliard Light';

}

#footer .footer-desktop .top {
    justify-content: space-around;
    margin: 0 0 100px 0;
}

#footer .footer-desktop .top .logo {
    padding-right: 10vw
}

#footer .footer-desktop .top ul li {
    font-size: 17px;
    color: #77524B;
    list-style: none;
    margin-bottom: 10px;
}

#footer .footer-desktop .top ul li.title {
    font-weight: 700;
    margin-bottom: 20px;
}

#footer .footer-desktop .top ul li a {
    text-decoration: none;
    color: #77524B;
}

#footer .footer-desktop .logo .text {
    font-size: 17px;
    color: #77524B;
}

#footer .footer-desktop .logo .social {
    font-size: 20px;
    color: #77524B;
}

#footer .footer-desktop .bottom {
    margin: 0 0 50px 0;
    color: #77524B;
}

#footer .footer-mobile {
    color: #77524B;
    display: none;
}

#footer .footer-mobile .page {
    text-align: center;
    padding: 10px 0;
}

#footer .footer-mobile .page span {
    color: #77524B;
}

#footer .footer-mobile .page a {
    color: #77524B;
    margin-right: 8px;
    margin-bottom: 2px;
    line-height: 2;
}

#footer .footer-mobile .page:last-child {
    margin-bottom: 20px !important;
}

#footer .footer-mobile .divider {
    height: 1px;
    background: #FFF;
    margin: 0 10%;
}

#footer .subscribe {
    position: relative;
    /* padding-bottom: 80px; */
    margin-bottom: 50px;
}

#footer .subscribe:first-child {
    display: none;
}

#footer .subscribe .title div:first-child {
    font-size: 20px;
    font-weight: 600;
}

#footer .subscribe .title div:last-child {
    font-size: 25px;
    font-weight: 500;
}

#footer .subscribe .form {
    max-width: 400px;
    width: 100%;
    /* position: absolute;
  top: 45px;
  left: 45%;
  transform: translateX(-50%); */
}

#footer .subscribe .inner-form {
    position: relative;
}

#footer .subscribe .form .input-subscribe {
    width: 100%;
    height: 50px;
    padding: 25px 130px 25px 25px;
    border-radius: 10px;
    border: 0.5px solid rgba(139, 95, 86, 0.3);
}

#footer .subscribe .form .input-subscribe:focus {
    outline: none;
}

#footer .subscribe .form .button-subscribe {
    position: absolute;
    height: 40px;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #8B5F56;
    outline: none;
    border: none;
    border-radius: 10px;
    padding: 5px 20px;
    color: #FFF;
    z-index: 2;
}

.overlay.open {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.circle-footer {
    width: 600px;
    position: absolute;
    bottom: -80%;
    left: -15%;
}

@media screen and (min-width:769px) {
    #navbar .main-nav {
        display: block;
    }

    #navbar .mobile-nav {
        display: none;
    }
}

@media screen and (max-width:1366px) {
    #navbar .main-nav ul li {
        font-size: 18px;
    }
}

@media screen and (max-width:1024px) {
    .row {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    #navbar .main-nav {
        display: none;
    }

    #navbar .mobile-nav {
        display: block;
    }

    #navbar {
        height: 70px;
        padding: 30px 20px;
    }

    #navbar.navbar-scrolled {
        padding: 30px 20px;
    }

    #navbar .logo img {
        width: 40px;
        padding-top: 0px;
    }

    #footer {
        padding: 20px 30px;
    }

    #footer .subscribe:first-child {
        text-align: center;
        display: block;
    }

    #footer .subscribe:first-child .form {
        display: flex;
        justify-content: center;
        max-width: inherit;
    }

    #footer .subscribe:first-child .inner-form .input-subscribe {
        width: 400px;
    }

    #footer .subscribe:last-child {
        display: none;
    }

    #footer .credit {
        text-align: center;
    }

    .circle-footer {
        width: 400px;
        bottom: -40%;
        left: -25%;
    }
}

@media screen and (max-width:500px) {
    .container-fluid {
        padding: 0px !important;
    }

    #footer-container {
        padding: 50px 0 !important;
    }

    #footer ul {
        padding-left: 0;
    }

    #footer .top {
        flex-direction: column-reverse;
    }

    #footer .subscribe:last-child {
        display: block;
    }

    #footer .subscribe:first-child {
        display: none;
    }

    #footer .subscribe:last-child .title {
        text-align: center;
    }

    #footer .office {
        padding-bottom: 30px;
    }

    #footer .footer-desktop .top .logo {
        padding: 0 0.75rem;
    }

    .circle-footer {
        width: 250px;
        bottom: -22%;
    }
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
    z-index:100;
}

.my-float{
	margin-top:16px;
}
