@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat',sans-serif;
}

.app{
    display: flex;
    min-height: 100vh;
}

.sidebar{
    flex: 1 1 0;
    max-width: 300px;
    padding: 2rem 1rem;
    background-color: #2e3047;
}

.sidebar h3{
    color:#707793;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 0.5em;
}

.sidebar .menu{
    margin: 0 -1rem;
}

.sidebar .menu .menu-item{
    display: block;
    padding: 1em;
    color: #fff;
    text-decoration: none;
    transition: 0.2s linear;
}

.sidebar .menu .menu-item:hover,
.sidebar .menu .menu-item.is-active{
    color: #3bba9c;
    border-right: 5px solid #3bba9c;
}

.content{
    flex: 1 1 0;
    padding: 2rem;
}

.content h1{
    color: #3C3F58;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.content p,p2,p3{
    color: #707793;
    font-size: x-large;
}

.menu-toggle{
    display: none;
    position: fixed;
    top: 2rem;
    right: 2rem;
    width:60px;
    height: 60px;
    border-radius: 99px;
    background-color: #2e3047;
    cursor: pointer;
}

.hamburger{
    position: relative;
    top: calc(50% - 2px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
}

.hamburger > span,
.hamburger > span::before,
.hamburger > span::after{
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 99px;
    background-color: #fff;
    transition-duration: .25s;
}

.hamburger > span::before{
    content: '';
    top: -8px;
}

.hamburger > span::after{
    content: '';
    top: 8px;
}

.menu-toggle.is-active .hamburger > span{
    transform: rotate(45deg);
}

.menu-toggle.is-active .hamburger > span::before{
    top: 0;
    transform: rotate(0deg);
}

.menu-toggle.is-active .hamburger > span::after{
    top: 0;
    transform: rotate(90deg);
}

.aboutus1{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    height: 500px;
}

.servicescontainer{
    padding-top: 50px;
    text-align: center;
    z-index: -1;
}

.category{
    z-index: -1;
    display: inline-block;
    padding-top: 60px;
    width: 300px;
    height: 300px;
    background: #ccc;
    margin: 80px;
    text-align: center;
    transition: transform .5s;
}

.category:hover{
    transform: scale(1.1);
}

.paw{
    padding-top: 10px;
}
.shirt{
    padding-top: 10px;
}
.cake{
    padding-top: 10px;
}
.shoe{
    padding-top: 10px;
}
.skyscraper{
    padding-top: 10px;
}
.plane{
    padding-top: 10px;
}

h1 {
    font-family: 'Montserrat',
        serif;
    font-size: 59px;
    color: white;
    font-weight: 600;
    padding-bottom: 20px;
}

p {
    color: #d2d2d2;
}

p,
input,
textarea,
label {
    font-family: 'Montserrat',
        sans-serif;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 5%;
}

form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    padding: 20px 0;
}

input,
textarea,
label {
    display: block;
    margin: 0 auto;
    width: 100%;
    color: #828282;
}

input,
textarea {
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid #828282;
}

input[type=submit] {
    background-color: #545557;
    padding: 15px 0;
    color: white;
    font-size: 18px;
    border-bottom: none;
    margin-top: 30px;
    cursor: pointer;
    transition: all .3s ease;
}

input[type=submit]:hover {
    background: #FFF;
    color: #1b1c1e;
}

input,
textarea {
    color: black;
    font-size: 18px;
    padding: 10px;
}

input:focus,
textarea:focus {
    outline: 1px solid #828282;
}

a {
    color: #828282;
    font-style: italic;
}

a:hover {
    color: #fff;
}
//home page styling
.backgroundimage{
    margin-top: 30px;
    text-align: center;
}

.backgroundimage img{
    min-width: 100%;
    min-height: 100%;
    object-fit: fill;
}

h5{
    font-family: 'Montserrat',
        serif;
    font-size: 5vw;
    color: black;
    font-weight: 600;
    padding-bottom: 20px;
    text-align: center;
    justify-content: center;
    padding-top: 300px;
    
}

.content-home{
    background: darkgray;
    width: 90%;
}

.social-menu ul{
    position: absolute;
    top: 50%;
    left: 52%;
    padding: 0;
    margin: 0;
    transform: translate(-50%, -50%);
    display: flex;
}

.social-menu ul li{
    list-style: none;
    margin: 0 15px;
}

.social-menu ul li .fa-brands{
    font-size: 30px;
    line-height: 60px;
    transition: .6s;
    color: #000;
}

.social-menu ul li .fa-brands:hover{
    color: #fff;
}

.social-menu ul li a{
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    transition: .6s;
    box-shadow: 0 5px 4px rgba(0,0,0,.5);
}

.social-menu ul li a:hover{
    transform: translate(0, -10px);
}

.social-menu ul li:nth-child(1) a:hover{
    background-color: #1877F2;
}

.social-menu ul li:nth-child(2) a:hover{
    background-color: #1DA1F2;
}

.social-menu ul li:nth-child(3) a:hover{
    background-color: #E4405F;
}

.social-menu ul li:nth-child(4) a:hover{
    background-color: #0A66C2;
}

.returnhome{
	color: black;
    font-family: 'Montserrat';
}

.returnhomebtn{
	color: black;
    font-family: 'Montserrat';
}

.returnhomebtn:hover{
	color: black;
    font-family: 'Montserrat';
}

@media (max-width: 1024px){
    .sidebar{
        max-width: 200px;
    }
    .category{
        position: relative;
        padding-top: 30px;
    }
}


@media (max-width: 768px) {
    .menu-toggle{
        display: block;
        position: absolute;
    }
    .content{
        padding-top: 8rem;
    }
    .sidebar{
        position:fixed;
        top: 0;
        left: -300px;
        height: 100vh;
        width: 100%;
        max-width: 300px;
        transition: 0.2s linear;
        z-index: 1;
    }
    .sidebar.is-active{
        left: 0;
    }

    .content-home{
        background: darkgray;
        width: 100%;
    }
}