
/* css variable list */

:root {
    /*color purple*/
    --color-purple: #6A1B9A;
    /* color navy blue */
    --color-navy-blue: #590D88;
    /* color pink */
    --color-pink: #872a47;
    /* color pink 2 */
    --color-pink-2: #E6377A;
    /* color white */
    --color-white: #FFFFFF;
    /* color semi black */
    --color-semi-black: #222222;
    /* color light blck */
    --color-semi-ash: #777777;
    /* color sky blue */
    --color-sky-blue: #00BCD4;
    /* color light red */
    --light-red: #FF4641;
    /* color orange */
    --color-orange: #F79700;
    /* cyan color */
    --color-cyan: #4DB6AC;
    /* color light chocolate */
    --color-chocolate: #E3BDA8;
    /* font family cursive */
    --font-cursive: 'Niconne', cursive;
    /* icons font 1 */
    --font-icons-1: 'FontAwesome';
    /* icons font 2 */
    --font-icons-2: 'iconfont';
    /* box-shadow hover */
    --hover-shadow: 0px 8px 21px 0px rgba(0, 0, 0, 0.1);
    /* box-shadow primary */
    --primary-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
}

body {
    background-color: var(--color-white);
    font-size: 14px;
    color: var(--color-semi-ash);
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    /*font-family: 'Roboto', sans-serif;*/
    font-weight: 400;
    overflow-x: hidden;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}



/* ====================== beauty buttons =========================== */

.beauty-btn-wraper a {
    margin: 0 20px 0 0;
}

.beauty-btn-wraper a:last-child {
    margin: 0;
}

.beauty-btn {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 36px;
    z-index: 1;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    background-color: var(--color-semi-black);
    color: var(--color-white);
    text-transform: uppercase;
    overflow: hidden;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 700;
}

.beauty-btn.bg-color-white:hover {
    color: var(--color-semi-black) !important;
}

.xs-btn {
    overflow: hidden;
    /*margin: 1rem auto;*/
    text-transform: uppercase;
    background: #6A1B9A;
    border-radius: 25px;
    padding: 15px 36px;
    color: #fff;
    transition: 0.4s ease-in-out;
    z-index: 2;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.xs-btn span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #EC5598;
    -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.xs-btn:hover span {
    width: 335%;
    height: 562.5px;
}

.xs-btn.round-btn {
    border-radius: 25px;
}

.xs-btn.box-shadow-btn {
    box-shadow: var(--primary-shadow);
}

.beauty-btn.block-btn {
    width: 100%;
}

.beauty-btn.round-btn {
    border-radius: 25px;
}

.beauty-btn.box-shadow-btn {
    box-shadow: var(--primary-shadow);
}

.beauty-btn:hover {
    box-shadow: var(--hover-shadow);
}

.beauty-welcome-slider-wraper .customNavigation .welcome-next,
.beauty-welcome-slider-wraper .customNavigation .welcome-prev,
.beauty-welcome-slider .owl-nav .owl-prev,
.beauty-welcome-slider .owl-nav .owl-next {
    background-color: transparent;
    border: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9;
}

.beauty-welcome-slider-wraper .customNavigation .next-prev-btn {
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.039);
    border-radius: 100%;
    height: 70px;
    width: 70px;
    background-color: var(--color-cyan);
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    color: var(--color-white);
    font-size: 2.143em;
    text-align: center;
    line-height: 70px;
}

.beauty-welcome-slider-wraper .customNavigation .next-prev-btn:hover {
    background-color: var(--color-chocolate);
    color: var(--color-white);
}

.beauty-btn:hover {
    color: var(--color-white) !important;
}

.xs-btn:hover {
    color: var(--color-white) !important;
}

.xs-btn.bg-color-cyan span {
    background-color: var(--color-chocolate);
}

.xs-btn.bg-chocolate span {
    background-color: var(--color-cyan);
}

.xs-btn.bg-color-pink span,
.xs-btn.bg-color-sky-blue span,
.xs-btn.bg-color-white span {
    background-color: var(--color-purple);
}

.xs-btn.bg-color-purple span {
    background-color: var(--color-pink);
}

.xs-btn.bg-color-purple.purple-2 span {
    background-color: var(--light-red);
}

.xs-btn.bg-color-red span {
    background-color: var(--color-purple);
}

.xs-btn.bg-color-green span {
    background-color: var(--light-red);
}

.xs-btn.small-round-btn span {
    background-color: #339188;
}

.beauty-btn.small-round-btn {
    border-radius: 4px;
    box-shadow: var(--primary-shadow);
    font-weight: 700;
    padding: 15px 42px;
    background-color: #58B7AC;
}

.gradient-btn {
    background-image: -webkit-linear-gradient( 0deg, rgb(211, 16, 39) 0%, rgb(125, 0, 254) 0%, rgb(213, 43, 255) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(211, 16, 39) 0%, rgb(125, 0, 254) 0%, rgb(213, 43, 255) 100%);
}

/* ================= section padding =======================*/

.section-padding {
    padding: 100px 0;
}

.beauty-padding-bottom {
    padding: 0 0 120px;
}

/* ==================== section heading ================================*/

.beauty-section-headinig {
    padding: 120px 0 80px 0;
    text-align: center;
}

.beauty-section-headinig.beauty-section-padding-minus {
    padding: 0 0 80px 0;
}

.beauty-section-headinig h2 {
    margin: 0 0 12px;
    color: var(--color-pink);
    font-family: var(--font-cursive);
    font-size: 2.143em;
}

.beauty-section-headinig h3 {
    margin: 0;
    color: var(--color-semi-black);
    font-weight: 600;
    text-transform: capitalize;
    font-size: 2.857em;
    letter-spacing: -2px;
}

.beauty-section-headinig.beauty-section-headinig-white h3 {
    color: var(--color-white)
}

/* water mark title */

.beauty-watermark-title h2 {
    position: relative;
}

.beauty-watermark-title h2:before {
    position: absolute;
    content: attr(data-title);
    left: 0;
    top: 0;
    font-size: 1em;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--color-semi-black);
}

.color-gradient {
    color: rgb(211, 16, 39);
    background: -webkit-linear-gradient( 0deg, rgb(211, 16, 39) 0%, rgb(125, 0, 254) 0%, rgb(213, 43, 255) 100%);
    /*background: -ms-linear-gradient( 0deg, rgb(211,16,39) 0%, rgb(125,0,254) 0%, rgb(213,43,255) 100%);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* background color list */

.bg-color-red {
    background-color: var(--light-red) !important;
}

.bg-color-pink {
    background-color: var(--color-pink) !important;
}

.bg-color-pink-2 {
    background-color: var(--color-pink-2) !important;
}







/* new about section */

.beauty-new-about-text-gruop {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

}

.beauty-new-about-text-gruop .beauty-sub-heading.beauty-watermark-title h2 {
    font-weight: 700;
    font-size: 2.5em;
    letter-spacing: -2px;
    z-index: 1;
    margin: 0 0 30px;
	  color:#BC0609;
}

.beauty-new-about-text-gruop .beauty-sub-heading.beauty-watermark-title h2:before {
    color: #fbf9de;
    font-size: 1.600em;
    z-index: -1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    left: -55px;
    top: 30px;
}

.beauty-gradient-separetor {
    display: block;
    height: 2px;
    width: 130px;
    background-image: -webkit-linear-gradient( 175deg, rgba(236, 85, 152, 0) 0%, rgba(236, 85, 152, 0.26) 24%, rgba(236, 85, 152, 0.5) 46%, rgb(236, 85, 152) 100%);
    background-image: -ms-linear-gradient( 175deg, rgba(236, 85, 152, 0) 0%, rgba(236, 85, 152, 0.26) 24%, rgba(236, 85, 152, 0.5) 46%, rgb(236, 85, 152) 100%);
}

/*.beauty-new-about-text-gruop p {
    margin: 30px 0 40px;
    font-size: 1.143em;
}*/

.beauty-new-about-img-wraper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}

.beauty-new-single-about-img-group {
    margin: 0 0 40px;
}

.beauty-new-single-about-img-group:last-child {
    margin: 0;
}

.beauty-new-single-about-img img,
.beauty-new-single-about-img .beauty-3d-project-card {
    border-radius: 10px;
}

.beauty-new-single-about-img img {
    width: 100%;
}

.beauty-new-single-about-img .beauty-3d-project-card {
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
}

.beauty-new-about-img-wraper {
    position: relative;
    z-index: 2;
}

.beauty-new-about-img-wraper:before,
.beauty-new-about-img-wraper:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    opacity: .1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
    z-index: -1;
}


/*======================================================================================
								11. INDEX-V1 Our Partners
===============================================================================*/

.beauty-partner-section {
    position: relative;
}

.beauty-partner-text-content {
    padding: 0 55px 0 35px;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}

.beauty-partner-text-content .beauty-sub-heading {
    margin: 0 0 40px;
}

.beauty-sub-heading h2 {
    margin: 0;
    color: var(--color-semi-black);
    font-weight: 500;
    font-size: 2.857em;
    position: relative;
    z-index: 1;
}

.beauty-sub-heading.beauty-watermark-title h2:before {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
    opacity: .1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #B2B2B2;
    font-weight: 700;
    font-size: 1.750em;

    letter-spacing: -2px;
}

.beauty-partner-text-content p {
    color: #999999;
    line-height: 1.8;
}

.beauty-partner-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
}

.beauty-partner-list li {
    min-height: 170px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.beauty-partner-list li:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
}

.beauty-partner-list li:after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
}

.beauty-partner-list li:nth-child(1):before {
    background-image: -webkit-linear-gradient( 0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(2, 188, 212) 25%, rgb(2, 188, 212) 100%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(2, 188, 212) 25%, rgb(2, 188, 212) 100%, rgb(255, 255, 255) 100%);
}

.beauty-partner-list li:nth-child(2):before {
    border-bottom: 1px solid var(--color-sky-blue);
}

.beauty-partner-list li:nth-child(3):before {
    background-image: -webkit-linear-gradient( 0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(2, 188, 212) 0%, rgb(2, 188, 212) 25%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(2, 188, 212) 0%, rgb(2, 188, 212) 25%, rgb(255, 255, 255) 100%);
}

.beauty-partner-list li:nth-child(1):after,
.beauty-partner-list li:nth-child(2):after {
    background-image: -webkit-linear-gradient( 90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(2, 188, 212) 0%, rgb(2, 188, 212) 75%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(2, 188, 212) 0%, rgb(2, 188, 212) 75%, rgb(255, 255, 255) 100%);
}

.beauty-partner-list li:nth-child(4):after,
.beauty-partner-list li:nth-child(5):after {
    background-image: -webkit-linear-gradient( 90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(2, 188, 212) 25%, rgb(2, 188, 212) 100%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(2, 188, 212) 25%, rgb(2, 188, 212) 100%, rgb(255, 255, 255) 100%);
}

/* version 4 */

.beauty-partner-list.beauty-version-4 li:nth-child(1):before {
    background-image: -moz-linear-gradient( 0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(232, 232, 232) 25%, rgb(232, 232, 232) 100%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(232, 232, 232) 25%, rgb(232, 232, 232) 100%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(232, 232, 232) 25%, rgb(232, 232, 232) 100%, rgb(255, 255, 255) 100%);
}

.beauty-partner-list.beauty-version-4 li:nth-child(1):after,
.beauty-partner-list.beauty-version-4 li:nth-child(2):after {
    background-image: -moz-linear-gradient( 90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(232, 232, 232) 0%, rgb(232, 232, 232) 75%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(232, 232, 232) 0%, rgb(232, 232, 232) 75%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(232, 232, 232) 0%, rgb(232, 232, 232) 75%, rgb(255, 255, 255) 100%);
}

.beauty-partner-list.beauty-version-4 li:nth-child(2):before {
    border-color: #E8E8E8;
}

.beauty-partner-list.beauty-version-4 li:nth-child(3):before {
    background-image: -moz-linear-gradient( 0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(232, 232, 232) 0%, rgb(232, 232, 232) 75%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(232, 232, 232) 0%, rgb(232, 232, 232) 75%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(232, 232, 232) 0%, rgb(232, 232, 232) 75%, rgb(255, 255, 255) 100%);
}

.beauty-partner-list.beauty-version-4 li:nth-child(4):after,
.beauty-partner-list.beauty-version-4 li:nth-child(5):after {
    background-image: -moz-linear-gradient( 90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(232, 232, 232) 100%, rgb(232, 232, 232) 75%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(232, 232, 232) 100%, rgb(232, 232, 232) 75%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgb(232, 232, 232) 100%, rgb(232, 232, 232) 75%, rgb(255, 255, 255) 100%);
}

/* icon bgs */

.beauty-round-icons-bg {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /*background-image: url(../img/icons-bg.png);*/
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    /*background-attachment: fixed;*/
    z-index: -1;
}




/*=========================================================================
								1. INNER PAGE header section
=============================================================================*/

.beauty-header-section.beauty-inner-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all .4s ease;
}




/***** Pulse *****/

.pulse .beauty-new-single-about-img-group:hover{ 
  animation: pulse 2s infinite;
  animation-timing-function:cubic-bezier(1);
 box-shadow: 5px 5px 10px grey;
	border-radius:10px;


}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1);
  100% { transform: scale(1); }
  }
}




@media (max-width: 480px) {
    .menu-skew.swingInX {
        animation-name: none;
        transform-origin: unset;
    }
}

@-webkit-keyframes swingOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(-90deg);
    }
}

@-moz-keyframes swingOutX {
    0% {
        -moz-transform: perspective(400px) rotateX(0deg);
    }
    100% {
        -moz-transform: perspective(400px) rotateX(-90deg);
    }
}

@-o-keyframes swingOutX {
    0% {
        -o-transform: perspective(400px) rotateX(0deg);
    }
    100% {
        -o-transform: perspective(400px) rotateX(-90deg);
    }
}

@media (max-width: 768px) {

.beauty-new-about-text-gruop .beauty-sub-heading.beauty-watermark-title h2 {
    
    margin: 0 0 5px;
	 
}

 .beauty-new-about-text-gruop.beauty-sub-heading.beauty-watermark-title h6 {
    
    margin-right: 0px;
    margin-left: 0px;
}
}
