/* Default Style */

::selection {
    color: #ffffff;
    background-color: #ff8fbe;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
}
html {
  scroll-behavior: smooth; 
  scroll-padding-top: 80px;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
}
a{
    text-decoration: none;
}
ul{
    margin-bottom: 0;
}

body {
    background-color: #fff;
}

.px-100 {
    margin: 0 100px;
}

/* Header Section Style */


.menu-area{
    background-color: transparent;
    transition: all 0.34s ease-in-out;
    position: relative;
    z-index: 9;
    margin-top: 30px;
    border-top: 1px solid #afafaf;
    border-bottom: 1px solid #afafaf;
}
.logo{
    padding: 32px 0;
}
.logo img{
    width:125px;
}
.sidebar-toggle-icon{
    display: none;
    height: 24px;
    width: 24px;
    margin-left: auto;
    padding-top: 5px;
    cursor: pointer;
}
.line {
    height: 2px;
    width: 100%;
    background-color: #000;
    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: 30px;
}
.toggle-item li a {
    display: inline-block;
    padding: 10px 0;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s linear;
}
.toggle-item li a:hover {
    color: #FF589E;
}
.toggle-item li a.activa {
    color: #FF589E;
}
.menu-area .r-btn a,
.menu-area .r-btn a {
    display: inline-block;
    padding: 12px 24px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    background-color: #fff;
    border-radius: 80px;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
    transition: all 0.3s linear;
}
.menu-area .r-btn a:hover{
    box-shadow: 0 10px 20px rgba(0,0,0,.22);
}

.menu-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	z-index: 99;
    margin: 0;
    transition: all 0.34s ease-in-out;
    background-color: #fff;
}
.menu-sticky .bdrb {
    border: none;
}

/* footer section  */

.footer{
    padding-top: 80px;
}
.footer-logo {
    border-right: 1px solid #a7a7a7;
}
.footer-logo img {
    max-width: 150px;
    width: 100%;
}
.footer-logo p {
    margin-top: 24px;
}
.footer-link h4,
.footer-contact h4 {
    font-size: 22px;
    margin-bottom: 24px;
    font-weight: 600;
}
.footer-link h4{
    font-size: 22px;
}
.footer-link ul li,
.footer-address ul li{
    line-height: 2;
    margin-bottom: 8px;
}
.footer-address .adds{
    font-size: 16px;
}
.footer-link ul li a,
.footer-address ul li a {
    display: inline-block;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    position: relative;
    transition: all 0.3s linear;
}
.footer-link ul li a:hover,
.footer-address ul li a:hover{
    color: #FF589E;
}
.c-card img {
    width: 50px;
}
.ftb-t {
    border-top: 1px solid rgba(0,0,0,0.2);
}
.footer-end p{
    font-size: 14px;
    margin-bottom: 0;
}
.bdrt {
    border-top: 1px solid #a7a7a7;
}
.contact-iffo a {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    transition: all 0.3s linear;
}
.contact-iffo.colord a {
    color: #FF589E;
}
.contact-iffo a:hover {
    color: #FF589E;
}

/* Responsive  */


@media all and (max-width: 1199px){
    .contact-iffo a {
        font-size: 20px;
    }
}
@media all and (max-width: 991px){
    .sidebar-toggle-icon{
        display: block;
        position: relative;
        z-index: 11;
    }
    .main-menu{
        height: 100%;
        position: fixed;
        right: -250px;
        top: 0;
        padding-top: 120px;
        width: 250px;
        border-radius: 0;
        z-index: 9;
        background-color: #F0F0F0;
        transition: all 0.3s linear;
    }
    .rightt{
        right: 0;
    }
    .toggle-item li{
        display: block;
        margin: 0;
    }
    .toggle-item li a {
        font-size: 16px;
    }
    .footer-logo {
        border-right: none;
    }
}
@media all and (max-width: 575px){
    .footer-cta a {
        font-size: 16px;
    }
}