html {
    height: 100%;
    overflow-x: hidden;
}

body {
    /* height: calc(100% - 300px); */
    margin-top: 270px;
    background: rgb(41, 100, 133);
    background: linear-gradient(180deg, rgba(41, 100, 133, 1) 0%, rgba(133, 197, 232, 1) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

.navbar .container {
    background: url(../imgs/header-white.png);
    background-repeat: no-repeat;
    background-position: top;
    background-color: transparent !important;
    background-size: 100%;
    height: 100%;
    padding-left: 150px;
    padding-right: 150px;
    padding-top: 70px;
    flex-direction: column;
}

.navbar {
    height: 300px;
    background: url(../imgs/alpha-bg1.svg);
    background: linear-gradient(180deg, rgba(41, 100, 133, 1) 0%, rgb(72 137 171) 100%);
    color: #000;
    padding: 0;
}

.navbar img {
    max-width: 150px;
}

.name-logo img {
    max-width: 100% !important;
}

#main-content {
    height: 100%;
}

#main-content>.container {
    background: url(../imgs/header-sides.png);
    background-position-x: center;
    background-position-y: -291px;
    background-size: 100%;
    height: 100%;
}

.inner-page{
    padding-top: 40px;
    padding-bottom: 20px;
    margin-bottom: 0px !important;
}

.gallery a div {
    height: 300px;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.inner-page h1, .inner-page h2{
    font-family: 'Sniglet', cursive;
    font-weight: 400;
    text-transform: uppercase;
    color: rgb(41, 100, 133);
}

.contact-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-collapse {
    width: 100%;
}

.navbar-nav {
    justify-content: space-between;
    width: 100%;
    font-family: 'Sniglet', cursive;
    font-weight: 400;
}

.email a {
    color: #000;
}

.phone a {
    color: rgb(41, 100, 133);
}

.content-scroll {
    height: 100%;
    width: calc(100% - 150px);
    margin: auto;

}

.section-title {
    font-family: 'Sniglet', cursive;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(41, 100, 133);
}
.section-sub-title{
    font-family: 'Sniglet', cursive;
    font-weight: 400;
    text-transform: uppercase;
    color: rgb(41, 100, 133);
}

.btn-custom{
    background: orange;
    font-family: 'Sniglet', cursive;
    padding: 12px 16px;
    color: #fff;
}

.btn-custom {
    overflow: hidden;
    border: 1px solid orange;
    border-radius: 38% 73% 77% 33% / 60% 71% 54% 76%;
    background-color: orange;
    color: white;
    padding: 2em;
    cursor: pointer;
    transition: all 0.7s ease;
    animation: keepMovin 1s linear infinite;
}
.btn-custom:focus, button:hover {
    background-color: orange;
    border: 1px solid orange;
    color: white;
    border-radius: 38% 73% 77% 33% / 60% 71% 54% 76%;
    animation: keepMovin 1s linear infinite;
}
@keyframes keepMovin {
    0%, 100% {
        border-radius: 38% 73% 77% 33% / 60% 71% 54% 76%;
   }
    33% {
        border-radius: 59% 67% 37% 59% / 33% 37% 60% 68%;
   }
    77% {
        border-radius: 26% 86% 70% 16% / 68% 21% 76% 61%;
   }
}

.gallery-wrapper img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.address, .contact{
    font-family: 'Sniglet', cursive;
    visibility: hidden;
}

.contact-us {
    background: url(./../imgs/blue-bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 400px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

footer {
    height: 250px;
    background: #182d3a;
    position: relative;
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-image: url(./../imgs/footer-cloud.png);
    z-index: 1;
}



.background-footer {
    width: 100%;
    min-width: 1500px;
    position: absolute;
    bottom: calc(100% - 48px);
    left: 50%;
    transform: translateX(-50%);
}

.footer-menu {
    padding-top: 30px;
    text-align: center;
}

.contact-form{
    max-width: 600px;
    margin: auto;
    margin-top: 40px;
}
.contact-wrapper{
    background: url(./../imgs/blue-bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 100px 10px;
}

.contact-form .form-control {
    border-radius: 25px;
    padding: 24px;
}

.flower {
    width: 83px;
    height: 83px;
    border-radius: 50%;
    position: relative;
}

.flower .petal {
    height: 146px;
    width: 44px;
    position: absolute;
    top: calc(50% - 73px);
    left: calc(50% - 22px);
    background-color: inherit;
    border-radius: 22px;
}

.flower .petal:nth-child(2) {
    transform: rotateZ(36deg);
}

.flower .petal:nth-child(3) {
    transform: rotateZ(72deg);
}

.flower .petal:nth-child(4) {
    transform: rotateZ(108deg);
}

.flower .petal:nth-child(5) {
    transform: rotateZ(144deg);
}

::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media only screen and (max-width: 767px) {
    body{
        margin-top: 200px;
    }
    .navbar-collapse.show{
        background: #fff;
    }
    .logos{
            width: 100%;
    margin-top: 80px;
    justify-content: space-between;
    }
    .navbar{
        height: 200px;
    }
    .navbar img {
    max-width: 100px;
}
    .sub-logo{
        position: absolute;
    top: 40px;
    width: 70%;
    left: 50px;
    }
    .navbar .container{
        flex-direction: unset !important;
        padding-left: 30px;
        padding-right: 30px;
            padding-top: 0px;
    }
    .content-scroll{
            width: calc(100% - 50px);
    }
}