/* Default Style */

::selection {
    color: #0A0A0A;
    background-color: #F09DD0;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: 400;
    color: #ffffff;
    font-family: "MuseoModerno", sans-serif;
}
p {
    color: #fff;
    opacity: 0.8;
    font-weight: 300;
}
a {
    text-decoration: none;
}
ul {
    margin-bottom: 0;
}

body {
    background-color: #070707;
}

/* Header Section Style */

.menu-fxd {
    transition: all 0.34s ease-in-out;
}
.menu-area{
    z-index: 9;
    transition: all 0.3s linear;
    position: relative;
}
.logo{
    padding: 32px 0;
}
.logo img{
    width:150px;
    max-width: 100%;
    height: auto;
}
.sidebar-toggle-icon{
    display: none;
    height: 24px;
    width: 24px;
    margin-left: auto;
    padding-top: 5px;
    cursor: pointer;
}
.line {
    height: 2px;
    width: 100%;
    background-color: #ffffff;
    margin-bottom: 6px;
}
.top-bars{
    transform: rotate(45deg);
    margin-top: 5px;
}
.middle-bars{
    opacity: 0;
}
.bottom-bars {
    transform: rotate(-45deg);
    margin-top: -16px;
}
.toggle-item li{
    display: inline-block;
    margin-left: 100px;
}

.toggle-item li a {
    display: inline-block;
    padding: 10px;
    color: #ffffff;
    font-weight: 500;
    border-radius: 10px;
    font-size: 16px;
    position: relative;
    text-align: center;
    transition: all 0.2s ease-in-out;
}
.toggle-item li a:after,
.toggle-item li a:before {
    display: block;
    clear: both;
    content: "";
    height: 2px;
    width: 0;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.2s ease-in-out;
}
.toggle-item li a:after {
    bottom: 0;
}
.toggle-item li a:before {
    top: 0;
}

.toggle-item li a:hover::after,
.toggle-item li a:hover::before {
    width: 12px;
}
.toggle-item li.r-btn a:hover::after,
.toggle-item li.r-btn a:hover::before {
    display: none;
}

.toggle-item li a.activa::after,
.toggle-item li a.activa::before {
    width: 12px;
}
.menu-area .r-btn a {
    display: inline-block;
    padding: 12px 24px;
    color: #fff;
    background-image: linear-gradient(to right, #EDB8D8, #AA6BF0);
    font-size: 16px;
    border: none;
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
}
.menu-area .r-btn a:hover {
    background-image: linear-gradient(to left, #EDB8D8, #AA6BF0);
}
.menu-sticky {
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 99;
    background-color: #070707;
}


/* footer section  */

.footer{
    padding: 100px 0 0;
}

.footer-logo img {
    max-width: 170px;
    width: 100%;
    height: auto;
}
.footer-link h4 {
    font-size: 22px;
    margin-bottom: 24px;
}
.footer-link ul li {
    margin-bottom: 16px;
}
.adds{
    font-size: 16px;
    opacity: 1;
    color: #ffffff;
}
.footer-link ul li a {
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
    transition: all 0.2s ease-in-out;
}
.footer-link ul li i {
    color: #FF6FA5;
    font-size: 14px;
    margin-right: 4px;
}
.footer-link ul li a:hover {
    color: #FF6FA5;
}
.c-card img {
    width: 50px;
}
.footbdrt {
    border-top: 1px solid #ffffff26;
}
.footer-end p {
    font-size: 14px;
    margin-bottom: 0;
    color: #ffffff;
}


/* Responsive  */


@media all and (max-width: 1399px){
    .toggle-item li {
        margin-left: 60px;
    }
}
@media all and (max-width: 1199px){
    .toggle-item li {
        margin-left: 40px;
    }
}
@media all and (max-width: 991px){
    .logo {
        padding: 22px 0;
    }
    .logo img,
    .sidebar-toggle-icon{
        display: block;
        position: relative;
        z-index: 11;
    }
    .main-menu{
        height: 100%;
        position: fixed;
        left: -250px;
        top: 0;
        padding-top: 130px;
        width: 250px;
        border-radius: 0;
        z-index: 9;
        background-color: #070707;
        transition: all 0.3s linear;
    }
    .menu-area .r-btn a:hover {
        color: #fff;
    }
    .rightt{
        left: 0;
    }
    .toggle-item li{
        display: block;
        margin: 0;
    }
    .toggle-item li a {
        font-size: 16px;
        margin-bottom: 16px;
    }
    .bdr-r {
        border-right: none;
    }
    .footer-logo {
        border-right: none;
    }
}
@media all and (max-width: 767px){
    .px-30 {
        padding: 0 16px;
    }
}
@media all and (max-width: 575px){
    .footer-address .adds,
    .contact-iffo a {
        font-size: 20px;
    }
}
