@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Milky Honey', sans-serif;
}

/* <--- Selection ---> */
*
{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* <--- end ---> */

/* <--- Colors ---> */

.purpleborder {
    border-color: #d69dea;
    -webkit-text-stroke-color: #d69dea;
}

.blueborder {
    border-color: #81c8ed;
    -webkit-text-stroke-color: #65c3ff;
}

.redborder {
    border-color: #f294aa;
    -webkit-text-stroke-color: #f294aa;
}

.purplebg {
    background-color: #d69dea;
    -webkit-text-stroke-color: #d69dea;
}

.purplebg:hover {
    background-color: #c28fd4;;
}

.bluebg {
    background-color: #81c8ed;
    -webkit-text-stroke-color: #65c3ff;
}

.bluebg:hover {
    background-color: #92bfdb;;
}

.redbg {
    background-color: #f294aa;
    -webkit-text-stroke-color: #f294aa;
}

.redbg:hover {
    background-color: #da8a9f;;
}

.purple {
    color: #d69dea;
}

.blue {
    color: #81c8ed;
}

.red {
    color: #f294aa;
}


/* <--- end ---> */


/* <--- Scrollbar ---> */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #d8c7b6;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8aa9c;
}


/* <--- end ---> */


/* <--- Navigation Bar ---> */

.Navbar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f6e5d8;
}

.Navbar .logo {
    padding: 1.6vh 0px;
}

.Navbar .logo img {
    transform: rotate(0);
    transition: all 0.25s ease-in-out;
}

.Navbar .logo:hover img {
    transform: rotate(180deg);
}

.Navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Navbar ul li {
    list-style: none;
    margin-left: 20px;
}

.Navbar ul li a {
    margin-right: 15px;
    text-decoration: none;
    padding: 9px 18px;
    font-size: 33pt;
    color: #fff;
    border-radius: 32px;
    transition: all 0.15s ease-in-out;
}

.Navbar ul li:last-child {
    margin-right: -15px;
}

.Navbar ul li #home {
    background: #e8c4fc;
}

.Navbar ul li #home:hover {
    background: #ddbbf0;
}

.Navbar ul li #gallery {
    background: #bbe6ff;
}

.Navbar ul li #gallery:hover {
    background: #b0d8f0;
}

.Navbar ul li #commissions {
    background: #ffb5c9;
}

.Navbar ul li #commissions:hover {
    background: #f5aec1;
}


/* @media screen and (max-width: 1000px) {
    .Navbar ul li a{
        border-radius: 20px;
    }
} */


/* <--- end ---> */


/* <--- Side Menu ---> */

#body {
    transform: translateX(0vw);
    transition: transform 0.6s ease-in-out;
}

#SideMenu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    /* width: 15%; */
    width: 100%;
    background-color: #f6e5d8;
    transform: translateX(-100vw);
    transition: transform 0.6s ease-in-out;
    display: none;
    z-index: 10;
}

#SideMenu .row {
    position: relative;
    width: 100%;
    height: auto;
    text-align: left;
    margin-bottom: 10px;
    padding: 20px 75px;
}

#SideMenu .row a {
    text-decoration: none;
    font-size: 8.5vw;
    color: #fef8f1;
    transition: all 0.15s ease-in-out;
    font-weight: bold;
    font-family: 'Louis George Cafe', sans-serif;
}

#SideMenu .row #home:hover {
    color: #e8c4fc;
}

#SideMenu .row #gallery:hover {
    color: #bbe6ff;
}

#SideMenu .row #commissions:hover {
    color: #ffb5c9;
}

#SideMenu .row:first-child {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0px 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    margin-top: 0px;
    background-color: #fef8f1;
}

#SideMenu .logo {
    padding: 1.6vh 0px;
    cursor: default;
}

#SideMenu .logo img {
    transform: rotate(0);
    transition: all 0.25s ease-in-out;
    height: 12vw;
    min-height: 75px;
    max-height: 100px;
    width: auto;
}

#SideMenu .logo img:hover {
    transform: rotate(180deg);
    cursor: pointer;
}

#SideMenu .row .hamburger {
    margin-right: -15px;
    float: right;
    cursor: pointer;
}

#SideMenu .bar1,
#SideMenu .bar2,
#SideMenu .bar3 {
    background-color: #f6e5d8;
}

#SideMenu .row .hamburger:hover .bar1,
#SideMenu .row .hamburger:hover .bar2,
#SideMenu .row .hamburger:hover .bar3 {
    background-color: #f89c9b;
}

li .hamburger {
    /* display: inline-block; */
    display: none;
    cursor: pointer;
}

li .hamburger:hover .bar1,
li .hamburger:hover .bar2,
li .hamburger:hover .bar3 {
    background-color: #f89c9b;
}

.bar1,
.bar2,
.bar3 {
    min-width: 60px;
    min-height: 10px;
    width: 10vw;
    height: 0.9vh;
    background-color: white;
    margin: 12px 0px;
    border-radius: 50px;
    transition: 0.4s ease-out;
}

.bar1 {
    margin-top: 0px;
}

.bar3 {
    margin-bottom: 0px;
}

.activated .bar1 {
    transform: translate(0, calc(12px + 0.9vh)) rotate(-45deg);
}

.activated .bar2,
.activatedMin .bar2 {
    min-width: 0px;
    width: 0;
}

.activated .bar3 {
    transform: translate(0, calc(-12px - 0.9vh)) rotate(45deg);
}

.activatedMin .bar1 {
    transform: translate(0, calc(12px + 10px)) rotate(-45deg);
}

.activatedMin .bar3 {
    transform: translate(0, calc(-12px - 10px)) rotate(45deg);
}

@media screen and (max-width: 1000px) {
    .Navbar .logo img {
        height: 12vw;
        min-height: 75px;
        max-height: 100px;
        width: auto;
    }
    #SideMenu {
        width: 100%;
    }
    .Navbar ul li {
        display: none;
    }
    .Navbar ul li:last-child {
        display: inline-block;
    }
    li .hamburger {
        display: inline-block;
    }
}


/* <--- end ---> */

/* <--- Footer ---> */

.footer {
    position: relative;
    display: block;
    width: 100%;
    background-color: #f8e6da;
    padding-bottom: 10px;
}

.footer .separator {
    position: relative;
    background-color: transparent;
    width: 40%;
    height: 8px;
    z-index: 1;
    margin: 0px auto;
    margin-bottom: 30px;
}

.footer .textcont {
    position: relative;
    width: 70%;
    margin: auto auto;
    text-align: center;
}

.footer .textcont p {
    font-size: 2.5vh;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
}

.footer .socials {
    position: relative;
    margin: 15px auto;
    text-align: center;
    width: auto;
}

.footer .socials a {
    text-decoration: none;
    font-size: 2em;
    color: white;
    display: inline-block;
    justify-content: space-between;
    border-radius: 50%;
    cursor: default;
}

.footer .socials a:hover {
    color: #f8e6da;
}

.footer .socials a:hover div {
    background-color: white;
}

.footer .socials a div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    min-width: 60px;
    min-height: 60px;
    border-radius: 50%;
    border: 6px solid white;
    background-color: #f8e6da;
    cursor: pointer;
}

@media screen and (max-width: 1050px) {
    .footer .socials a {
        font-size: 2.5em;
    }
    .footer .socials a div {
        width: 2em;
        height: 2em;
    }
}


/* <--- end ---> */