@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* ***** Common Css **** */
:root {
    scroll-behavior: initial;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
img {
    display: block;
}
figure {
    margin: 0;
}
a,
button {
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}

body {
    font-family: "Playfair Display", serif;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}
.main-wrpper {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.container {
    max-width: 1440px;
    padding: 0 15px;
}
.container-left {
    width: 100%;
    max-width: calc(100% - (100vw - 1425px) / 2);
    padding-right: 15px;
}

/* **** Common ***** */
.btn-primary {
    background-color: #ec2554;
    color: #fff;
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    border: none;
    box-shadow: none;
    padding: 12px 30px;
    border-radius: 5px;
    -webkit-transition: 0.4s linear;
    transition: 0.4s linear;
}
.btn-primary span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-primary.active,
.btn-primary:focus,
.btn-primary:hover {
    background-color: #2a2a2a;
    color: #fff;
    box-shadow: none;
    outline: none;
}

.btn-secondary {
    border: 2px solid #ec2554;
    display: table;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 20px;
    color: #ec2554;
    line-height: 1.2;
    background-color: transparent;
}
.btn-secondary:focus,
.btn-secondary:hover {
    background-color: #ec2554;
    color: #fff;
    border-color: #ec2554;
    box-shadow: none;
    outline: none;
}

/* ***** End Common Css **** */

/* **** Header **** */
header {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    background: transparent;
    padding: 45px 0;
    border: none;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar .container .navbar-brand,
.navbar .container-fluid .navbar-brand {
    margin-left: 0;
}
.navbar-brand {
    float: none;
    height: auto;
    padding: 0;
    margin: 0;
}
.navbar-brand img {
    max-width: 100%;
    height: 45px;
}
.navbar {
    background: transparent;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar-light .nav-row {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    justify-content: space-between;
    padding: 0 0 0 80px;
}
.navbar-light .navbar-nav {
    gap: 25px;
}
.navbar-light .navbar-nav .nav-link {
    padding: 0;
    font-size: 18px;
    color: #fff;
    letter-spacing: 1.2px;
    position: relative;
    display: flex;
    align-items: center;
    background-color: transparent;
    box-shadow: none;
    border: none;
    outline: none;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover {
    color: #fff;
}
header .btn-primary {
    border-radius: 60px;
}
header .btn-primary.active,
header .btn-primary:focus,
header .btn-primary:hover {
    background-color:  rgb(236, 37, 84, 0.6);
    color: #fff;
    box-shadow: none;
    outline: none;
}

.navbar-light .navbar-nav .dropdown-menu{
    background-color: #ec2554;
    width: fit-content;
    border: none;
    box-shadow: none;
    outline: none;
    padding: 5px;
    border-radius: 5px;
    display: block;
    opacity: 0;
    visibility: hidden;
}
.navbar-light .navbar-nav li:hover .dropdown-menu{
    opacity: 1;
    visibility: visible;
}
.mobileDropdown{
	opacity: 1 !important;
    visibility: visible !important;
	display:block !important;
}
.navbar-light .navbar-nav .dropdown-menu li{
    margin: 0 0 0px !important;
}
.navbar-light .navbar-nav .dropdown-menu li a{
    padding: 12px;
	background-color:#ec2554;
}
.navbar-light .navbar-nav .dropdown-menu li a:hover{
    background-color:#f7456f;
}
.navbar-light .navbar-nav .dropdown-menu li:last-child{
    margin: 0;
}
.navbar-light .navbar-nav .dropdown-menu .dropdown-item{
    padding: 4px 8px;
    font-size: 18px;
    color: #fff;
    letter-spacing: 1.2px;
    border-radius: 4px;
    text-transform: capitalize;
}
.menu-item-has-children > a:first-child::after {
    display: inline-block;
    margin-left: 5px;
	margin-top:2px;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
	color:#fff;
}
.navbar-light .navbar-nav .dropdown-menu .dropdown-item:hover{
    background-color: #ec2554;
}

header.shrink{
    background-color: #2a2a2a;
    padding: 20px 0;
}
header.hide {
    transform: translateY(-100%);
}
header.shrink .btn-primary:hover{
    background-color: rgb(236, 37, 84, 0.6);
}
.menu-item-has-children a:hover{cursor:pointer;}
/* **** End Header **** */


/* **** toggler **** */
.navbar-light .navbar-toggler {background-color: transparent;border-radius: 0;outline: none;box-shadow: none;border: none;height: 40px;width: 40px;padding: 0;}
.navbar-light .navbar-toggler:focus {box-shadow: none;outline: none; }
.navbar-light .navbar-toggler .navbar-toggler-icon {background-image: unset;}
.navbar-toggler:active, .navbar-toggler:focus { outline: none; }
.navbar-light .navbar-toggler-icon {width: 30px;height: 18px;background-image: none;position: relative;border-bottom: 2px solid #fff;transition: all 300ms linear;}
.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {width: 30px;position: absolute;height: 2px;background-color: #fff;top: 0;right: 0;content: "";z-index: 2;transition: all 300ms linear;}
.navbar-light .navbar-toggler-icon:after {top: 8px;}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {transform: rotate(45deg);}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {transform: translateY(8px) rotate(-45deg);}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {border-color: transparent;}
/* **** End toggler **** */



/* **** Hero **** */
/* .hero-wrp {
    padding: 150px 0;
    background-image: url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 830px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-wrp::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}
.hero-wrp h1 {
    font-family: "Playfair Display", serif;
    color: #fff;
    margin: 0;
    font-size: 56px;
    line-height: 1.3;
    font-weight: bold;
    text-align: center;
    position: relative;
    z-index: 1;
} */

.hero-wrp{
    position: relative;
}
.hero-wrp .hero_slider{
    height: 100%;
    width: 100%;
}
.hero-wrp .hero_slider .slider-box{
    height: 830px;
    position: relative;
}
.hero-wrp .hero_slider .slider-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}
.hero-wrp .hero_slider .slider-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.hero-wrp .hero_slider .slider-box .hero_detail{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.hero-wrp h1 {
    font-family: "Playfair Display", serif;
    color: #fff;
    margin: 0;
    font-size: 56px;
    line-height: 1.3;
    font-weight: bold;
    text-align: center;
    position: relative;
    z-index: 1;
}
/* **** End Hero **** */

/* **** opportunity **** */
.opportunity_wrp {
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 9;
    top: -110px;
}
.opportunity_wrp .opportunity_block {
    padding: 30px 40px;
    border-radius: 30px 0 0 0;
    background-color: #fff;
    border-bottom: 5px solid #ec2554;
    position: relative;
}
.opportunity_wrp .opportunity_block::before {
    position: absolute;
    content: "";
    top: 0px;
    bottom: 0;
    background-color: #fff;
    border-bottom: 5px solid #ec2554;
    height: calc(100% + 5px);
    width: 100%;
    left: 100%;
}
.opportunity_block p{
	font-size:18px;
}
.opportunity_wrp .opportunity_block h2 {
    font-size: 42px;
    font-family: "Playfair Display", serif;
    color: #2a2a2a;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 0 25px;
}
.opportunity_wrp .opportunity_block .form-group label {
    font-size: 20px;
    color: #2a2a2a;
    line-height: 1.2;
    margin: 0 0 5px;
}
.opportunity_wrp .opportunity_block .form-group .form-control {
    border: 1px solid #c8c8c8;
    border-radius: 5px;
    background-color: #f4f1ec;
    font-size: 16px;
    color: #2a2a2a;
    line-height: 24px;
    box-shadow: none;
    outline: none;
    padding: 14px 15px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.opportunity_wrp .opportunity_block .form-group .form-control:focus {
    outline: none;
    border-color: #ec2554;
    box-shadow: 0 0 0 0.25rem rgb(236 37 84 / 10%);
}
.opportunity_wrp .opportunity_block .btn-primary {
    width: 100%;
}
.opportunity_wrp .opportunity_block .row {
    align-items: end;
}
.opportunity_wrp .opportunity_block .row .col-md-3 {
    width: 28%;
}
.opportunity_wrp .opportunity_block .row .col-md-3:last-child {
    width: 16%;
}
/* **** End opportunity **** */

/* **** About **** */
.about_wrp {
    background-color: #fbf4e7;
    padding: 0 0 125px;
    position: relative;
}
.about_wrp .about-shape1 {
    position: absolute;
    right: 0;
    top: 100px;
    max-width: 100%;
    pointer-events: none;
}
.about_wrp .about-shape2 {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 100%;
    pointer-events: none;
}
.about_wrp .row {
    align-items: center;
}
.about_wrp .about-img {
    position: relative;
}
.about_wrp .about-img img.about-img {
    max-width: 100%;
    border-radius: 0 15px 15px 0;
}
.about_wrp .about-img img.about-logo {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% {
        margin: 0;
    }
    50% {
        margin-top: -15px;
    }
}
.about_wrp .about-detail {
    max-width: 640px;
    margin-left: auto;
}
.about_wrp .about-detail h6 {
    font-size: 20px;
    color: #ec2554;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 3px;
    margin: 0 0 5px;
}
.about_wrp .about-detail h2 {
    font-size: 42px;
    font-family: "Playfair Display", serif;
    color: #2a2a2a;
    font-weight: bold;
    line-height: 1.2;
    text-transform: capitalize;
    margin: 0 0 15px;
}
.about_wrp .about-detail h5 {
    font-size: 26px;
    color: #5c5c5c;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 0 25px;
}
.about_wrp .about-detail h4 {
    font-size: 34px;
    font-family: "Playfair Display", serif;
    color: #ec2554;
    font-weight: bold;
    font-style: italic;
    line-height: 1.2;
    margin: 0 0 25px;
    padding: 25px 0 25px 20px;
    border-left: 2px solid #2a2a2a;
}
.about_wrp .about-detail p {
    font-size: 20px;
    color: #5c5c5c;
    line-height: 1.4;
    margin: 0 0 45px;
}
.about_wrp .about-detail p b {
    font-weight: 600;
}
/* **** End About **** */

/* **** Counter **** */
.counter_wrp {
    padding: 65px 0 0;
}
.counter_wrp .counter_block ul {
    display: flex;
    align-items: center;
}
.counter_wrp .counter_block ul li {
    width: 33%;
    border-right: 1px solid #2a2a2a;
}
.counter_wrp .counter_block ul li:first-child {
    width: 22%;
}
.counter_wrp .counter_block ul li:first-child .count {
    margin: 0;
}
.counter_wrp .counter_block ul li:last-child {
    border: none;
    width: 22%;
}
.counter_wrp .counter_block ul li:last-child .count {
    margin-left: auto;
    margin-right: 0;
}
.counter_wrp .counter_block ul li .count {
    display: table;
    margin: 0 auto;
}
.counter_wrp .counter_block ul li h2 {
    font-size: 70px;
    font-family: "Playfair Display", serif;
    color: #2a2a2a;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 15px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.counter_wrp .counter_block ul li p {
    font-size: 20px;
    color: #2a2a2a;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.counter_wrp .counter_block ul li .count:hover h2{color: #ec2554;}
.counter_wrp .counter_block ul li .count:hover p{color: #ec2554;}
/* **** End Counter **** */

/* **** passion **** */
.passion_wrp {
    padding: 100px 0;
}
.passion_wrp .titlebar {
    margin: 0 0 50px;
}
.passion_wrp .titlebar h6 {
    font-size: 20px;
    color: #ec2554;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 3px;
    margin: 0 0 10px;
}
.passion_wrp .titlebar h2 {
    font-size: 42px;
    font-family: "Playfair Display", serif;
    color: #2a2a2a;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}
.passion_wrp .passion_video {
    position: relative;
    margin: 0 0 50px;
}
.passion_wrp .passion_video img {
    width: 100%;
    border-radius: 15px;
}
.passion_wrp .passion_video a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: rgb(236, 37, 84);
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 37, 84, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(236, 37, 84, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(236, 37, 84, 0);
    }
}
.passion_wrp .passion_video a img {
    width: auto;
    max-width: 100%;
    border-radius: 0;
}
.passion_wrp .passion_detail .row {
    margin: 0 -40px;
}
.passion_wrp .passion_detail .row .col-md-6 {
    padding: 0 40px;
}
.passion_wrp .passion_detail h3 {
    font-size: 32px;
    font-family: "Playfair Display", serif;
    color: #ed2257;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 45px;
}
.passion_wrp .passion_detail h4 {
    font-size: 26px;
    color: #5c5c5c;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 0 22px;
}
.passion_wrp .passion_detail p {
    font-size: 20px;
    color: #5c5c5c;
    line-height: 1.4;
    margin: 0;
}
/* **** End passion **** */

/* **** Revenue **** */
.revenue_wrp {
    position: relative;
}
.revenue_wrp .revenue_top img {
    width: 100%;
}
.revenue_wrp .revenue_bottom img {
    width: 100%;
}
.revenue_wrp .revenue_block {
    background-color: #fbf4e7;
    padding: 80px 0;
}
.revenue_wrp .revenue_block .titlebar {
    margin: 0 0 100px;
}
.revenue_wrp .revenue_block .titlebar h6 {
    font-size: 20px;
    color: #ec2554;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 3px;
    margin: 0 0 10px;
}
.revenue_wrp .revenue_block .titlebar h2 {
    font-size: 42px;
    font-family: "Playfair Display", serif;
    color: #2a2a2a;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 0 20px;
}
.revenue_wrp .revenue_block .titlebar p {
    font-size: 18px;
    color: #5c5c5c;
    line-height: 1.444;
    margin: 0 0 30px;
}
.revenue_wrp .revenue_block .titlebar p:last-child {
    margin: 0;
}
.revenue_wrp .revenue_block .titlebar p i {
    font-size: 20px;
    color: #5c5c5c;
    font-weight: bold;
    line-height: 1.3;
}
.revenue_wrp .revenue_block .titlebar p b {
    font-size: 20px;
}
.revenue_wrp .revenue_block .revenue_box {
    border: 10px solid #ec2554;
    background-color: #fff;
    border-radius: 150px;
    text-align: center;
    padding: 10px;
    height: 100%;
    padding: 0 40px 40px;
    cursor: pointer;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.revenue_wrp .revenue_block .revenue_box .box_icon {
    height: 123px;
    width: 123px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 35px;
    background-color: #ec2554;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.revenue_wrp .revenue_block .revenue_box .box_icon img {
    max-width: 100%;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.revenue_wrp .revenue_block .revenue_box .box_detail h2 {
    font-size: 29px;
    font-family: "Playfair Display", serif;
    color: #2a2a2a;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 0 35px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.revenue_wrp .revenue_block .revenue_box .box_detail p {
    font-size: 18px;
    color: #2a2a2a;
    line-height: 1.444;
    margin: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}


.revenue_wrp .revenue_block .revenue_box:hover{
    background: #ec2554;
}
.revenue_wrp .revenue_block .revenue_box:hover .box_icon{
    transform: scale(1.1);
    background-color: #fff;
}
.revenue_wrp .revenue_block .revenue_box:hover .box_icon img{
    filter: brightness(1) invert(2);
}
.revenue_wrp .revenue_block .revenue_box:hover .box_detail h2{color: #fff;}
.revenue_wrp .revenue_block .revenue_box:hover .box_detail p{color: #fff;}
/* **** End Revenue **** */

/* **** Fashion Journey **** */
.fashion_journey_wrp {
    padding: 95px 0;
}
.fashion_journey_wrp .container {
    max-width: 1200px;
}
.fashion_journey_wrp .row {
    align-items: center;
}
.fashion_journey_wrp .fashion_block .titebar {
    position: relative;
}
.fashion_journey_wrp .fashion_block .titebar::before {
    position: absolute;
    content: "";
    border-radius: 100%;
    background-color: rgb(255, 244, 247);
    width: 398px;
    height: 398px;
    top: 50%;
    left: 0;
    z-index: -1;
    -webkit-transform: translate(-38%, -50%);
    transform: translate(-38%, -50%);
}
.fashion_journey_wrp .fashion_block h2 {
    font-size: 42px;
    font-family: "Playfair Display", serif;
    color: #ed2257;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 0 20px;
}
.fashion_journey_wrp .fashion_block p {
    font-size: 22px;
    color: #2a2a2a;
    line-height: 1.364;
    max-width: 625px;
    margin: 0 0 30px;
}
.fashion_journey_wrp .fashion_block img {
    max-width: 100%;
}
.fashion_journey_wrp .fashion_block .btn-primary {
    margin-left: auto;
    margin-right: 0;
    display: table;
    border-radius: 40px;
    font-size: 26px;
    padding: 14px 35px;
}
/* **** End Fashion Journey **** */

/* **** Partners **** */
.partners_wrp {
    padding: 0 0 80px;
}
.partners_wrp h2 {
    font-size: 42px;
    font-family: "Playfair Display", serif;
    color: #141414;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 20px;
}
.partners_wrp .partners_block {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.partners_wrp .partners_slider .partner-img {
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partners_wrp .partners_slider .partner-img img {
    max-width: 100%;
    max-height: 100%;
}
/* **** End Partners **** */

/* **** Blog **** */
.blog_wrp {
    padding: 100px 0 85px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}
.blog_wrp::before {
    position: absolute;
    content: "";
    left: -20%;
    right: -20%;
    top: 0;
    bottom: 0;
    background-color: rgb(246, 246, 246);
    border-radius: 50% 50% 0 0;
    z-index: -1;
}
.blog_wrp .container {
    max-width: 1365px;
}
.blog_wrp .titlebar {
    margin: 0 0 60px;
}
.blog_wrp .titlebar h6 {
    font-size: 20px;
    color: #ec2554;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 3px;
    margin: 0;
}
.blog_wrp .titlebar h2 {
    font-size: 42px;
    font-family: "Playfair Display", serif;
    color: #2a2a2a;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 20px;
}
.blog_wrp .titlebar p {
    font-size: 20px;
    color: #5c5c5c;
    line-height: 1.2;
    text-align: center;
    margin: 0;
}


.blog_wrp .block_box {
    border-radius: 15px;
    background-color: #fff;
    padding: 10px;
    transition: all 0.4s ease;
}
.block_box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.blog_wrp .block_box .box_img {
    height: 240px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}
.blog_wrp .block_box .box_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.5s ease;
}
.blog_wrp .block_box:hover .box_img img {
    transform: scale(1.08);
}
.blog_wrp .block_box .box_detail {
    padding: 20px;
}
.blog_wrp .block_box .box_detail a h3 {
    font-size: 20px;
    color: #393939;
    font-weight: bold;
    line-height: 1.3;
    text-align: left;
    min-height: 68px;
    margin: 0 0 22px;
    transition: all 0.4s ease;
}
.block_box:hover .box_detail a h3{
    color: #ec2554;
}
.blog_wrp .block_box .box_detail h4 {
    font-size: 16px;
    color: #393939;
    line-height: 1.625;
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog_wrp .block_box .box_detail p {
    font-size: 17px;
    color: #5c5c5c;
    line-height: 1.529;
    margin: 0 0 15px;
}
.blog_wrp .block_box .box_detail a {
    font-size: 16px;
    color: #ec2554;
    line-height: 1.625;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ec2554;
    transition: all 0.4s ease;
}
.blog_wrp .block_box .box_detail a img{
    max-width: 100%;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.blog_wrp .block_box:hover .box_detail a {
    color: #2a2a2a;
}
.blog_wrp .block_box:hover .box_detail a img{
    filter: brightness(0) invert(0);
}
.blog_wrp .btn-primary {
    display: table;
    margin: 40px auto 0;
    border-radius: 60px;
}
/* **** End Blog **** */

/* **** Contact **** */
.contact_wrp {
    background-image: url("../images/contact-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.contact_wrp .row {
    margin: 0 -20px;
}
.contact_wrp .row .col-md-7{
    padding: 0 20px;
}
.contact_wrp .row .col-md-5{
    padding: 0 20px;
}
.contact_wrp .contact-img {
    height: 100%;
    width: 100%;
}
.contact_wrp .contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact_wrp .contact-form{
    padding: 100px 0;
}
.contact_wrp .contact-form .titlebar {
    margin: 0 0 35px;
}
.contact_wrp .contact-form .titlebar h6 {
    font-size: 20px;
    color: #ec2554;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 3px;
    margin: 0 0 5px;
}
.contact_wrp .contact-form .titlebar h2 {
    font-size: 42px;
    font-family: "Playfair Display", serif;
    color: #2a2a2a;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}
.contact_wrp .contact-form .row {
    row-gap: 20px;
    margin: 0 -15px;
}
.contact_wrp .contact-form .form-group label {
    font-size: 20px;
    color: #2a2a2a;
    line-height: 1.2;
    margin: 0 0 5px;
}
.contact_wrp .contact-form .form-group .form-control {
    border: 1px solid #c8c8c8;
    border-radius: 5px;
    background-color: #fff;
    font-size: 20px;
    color: #2a2a2a;
    line-height: 1.2;
    box-shadow: none;
    outline: none;
    padding: 14px 15px;
    resize: none;
}
.contact_wrp .contact-form .form-group .form-control:focus {
    outline: none;
    border-color: #ec2554;
    box-shadow: 0 0 0 0.25rem rgb(236 37 84 / 10%);
}
.contact_wrp .contact-form .form-group select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("../images/down-arrow.png");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 22px;
    background-color: #fff;
}
.contact_wrp .contact-form .form-group small {
    font-size: 15px;
    color: #2a2a2a;
    line-height: 1.2;
    display: block;
    margin: 5px 0 0;
}
.contact_wrp .contact-form .form-checkbox {
    position: relative;
}
.contact_wrp .contact-form .form-checkbox label {
    font-size: 20px;
    color: #2a2a2a;
    line-height: 1.2;
    text-align: left;
    position: relative;
    cursor: pointer;
    padding-left: 42px;
}
.contact_wrp .contact-form .form-checkbox {
    margin: 0 0 24px;
}
.contact_wrp .contact-form .form-checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    height: 0;
    width: 0;
}
.contact_wrp .contact-form .form-checkbox label::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    border: 1px solid #c8c8c8;
    border-radius: 3px;
    background-color: #fff;
    height: 28px;
    width: 28px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_wrp .contact-form .form-checkbox input:checked + label::before {
    content: "✓";
    background-color: #ec2554;
    border-color: #ec2554;
}
.contact_wrp .contact-form p {
    font-size: 18px;
    color: #2a2a2a;
    line-height: 1.2;
    margin: 0 0 20px;
}
/* **** End Contact **** */

/* **** Footer **** */
footer {
    background-color: #2a2a2a;
    padding: 60px 0 40px;
}
footer .foot-logo .logo-img {
    margin: 0 0 20px;
}
footer .foot-logo .logo-img img {
    max-width: 100%;
}
footer .foot-logo ul li {
    margin: 0 0 32px;
}
footer .foot-logo ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: #ccc;
    line-height: 1.2;
    text-align: left;
}
footer .foot-logo ul li a:hover {
    color: #ec2554;
}
footer .foot-logo ul li a span {
    width: 24px;
}
footer .foot-logo .social-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}
footer .foot-logo .social-icon a {
    border-radius: 50%;
    background-color: #ec2554;
    width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .foot-logo .social-icon a img {
    max-width: 100%;
}
footer .quicklinks {
    display: table;
    margin: 0 auto;
}
footer .quicklinks h3 {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 0 28px;
}
footer .quicklinks ul li a {
    font-size: 18px;
    color: #ccc;
    line-height: 1.667;
    display: block;
}
footer .quicklinks ul li a:hover {
    color: #ec2554;
}
footer .quicklinks .stem-logo {
    border-radius: 15px;
    background-color: #fff;
    padding: 10px 15px;
}
footer .quicklinks .stem-logo img {
    max-width: 100%;
}
footer .foot-info {
    margin: 45px 0 35px;
    padding: 20px 0;
    border-top: 1px solid #4c4c4c;
    border-bottom: 1px solid #4c4c4c;
}
footer .foot-info p {
    font-size: 16px;
    color: #cacaca;
    line-height: 1.375;
    text-align: center;
    max-width: 1229px;
    margin: 0 auto;
}
footer .copyright p {
    font-size: 18px;
    color: #cacaca;
    line-height: 1.222;
    text-align: center;
    margin: 0 0 20px;
}
footer .copyright p span {
    color: #fff;
}
footer .copyright .terms-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
footer .copyright .terms-links a {
    font-size: 18px;
    color: #ccc;
    line-height: 1.222;
    text-align: center;
}
footer .copyright .terms-links span {
    font-size: 18px;
    color: #cacaca;
    line-height: 1.222;
    text-align: center;
}
footer .copyright .terms-links a:hover {
    color: #ec2554;
}
/* **** End Footer **** */



.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #ec2554;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(236, 37, 84, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #d11f49;
    transform: translateY(-5px);
}




/* **** Blog **** */
.inner-banner-wrp{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 144px;
    position: relative;
}
.inner-banner-wrp::before{
    position: absolute;
    content: "";
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}


.blog-wrp{
    padding: 100px 0;
}
.blog-list-block{
    padding: 0 30px 0 0;
}
.blog-wrp .blog-list-block .list-item{
    margin: 0 0 65px;
    padding: 0 0 65px;
    border-bottom: 1px solid #e7e7e7;
}
.blog-wrp .blog-list-block .list-item:last-child{
    margin: 0;
    border: none;
}
.blog-wrp .list-item .blog-image{
    height: 400px;
    width: 100%;
    margin: 0 0 40px;
}
.blog-wrp .list-item .blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.blog-wrp .list-item .blog-detail label{
    background-color: #2a2a2a;
    border-radius: 40px;
    padding: 4px 12px;
    font-size: 15px;
    color: #fff;
    letter-spacing: 1.2px;
    margin: 0 0 20px;
}

.blog-wrp .list-item .blog-detail h1{
    font-size: 36px;
    font-family: "Outfit", sans-serif, serif;
    color: #2a2a2a;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 20px;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}

.blog-wrp .list-item .blog-detail h2{
    font-size: 32px;
    font-family: "Outfit", sans-serif, serif;
    color: #2a2a2a;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 20px;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}

.blog-wrp .list-item .blog-detail h3{
    font-size: 28px;
    font-family: "Outfit", sans-serif, serif;
    color: #2a2a2a;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 20px;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}

.blog-wrp .list-item .blog-detail h2:hover{
    color: #2a2a2a;
}



.blog-wrp .list-item .blog-detail p{
    font-size: 18px;
    color: #5c5c5c;
    line-height: 1.444;
    margin: 0 0 15px;
}

#detailPage .blog-detail p{ margin: 0 0 25px;}
#detailPage h2{margin: 35px 0 15px;}
.blog-about-detail img{border: 1px solid #ddd;padding: 5px;}
.blog-image-lits img{border: 1px solid #ddd;padding: 5px;}

.blog-wrp .list-item .blog-detail h6{
    font-size: 12px;
    color: #5c5c5c;
    font-weight: 400;
    line-height: 1.444;
    text-transform: uppercase;
    margin: 0 0 15px;
}
.blog-wrp .list-item .blog-detail h6 b{
    color: #000;
    font-weight: 600;
}
.blog-wrp .list-item .blog-detail h6 span{
    margin-left: 15px;
    display: inline-block;
}
.blog-wrp .list-item .blog-detail .btn-primary{
    font-size: 15px;
    letter-spacing: 1.2px;
    border-radius: 40px;
    padding: 20px 40px;
    display: table;
}
.load-more{
    display: table;
    margin: 0 auto;
    padding: 12px 15px;
    border: 2px solid #093757;
    font-size: 12px;
    font-weight:500;
    color: #093757;
}
.load-more:hover{
    background-color: #093757;
    color: #fff;
}


.about-blog{
    margin: 0 0 30px;
}
.blog-title{
    border: 1px solid #e7e7e7;
    border-top: 2px solid #ec2554;
    padding: 15px 20px;
}
.blog-title h3{
    font-size: 16px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
}
.blog-about-detail{
    border: 1px solid #e7e7e7;
    border-top: none;
    padding: 24px;
}
.blog-about-detail img{
    width: 100%;
    margin: 0 0 20px;
}
.blog-about-detail p{
    font-size: 18px;
    color: #5c5c5c;
    line-height: 1.6;
    margin: 0 0 20px;
    text-align: center;
}
.blog-about-detail a{
    font-size: 15px;
    color: #ec2554;
    line-height: 1.6;
    letter-spacing: 1.2px;
    display: table;
    margin: 0 auto;
}

.social-detail{
    border: 1px solid #e7e7e7;
    border-top: none;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
}
.social-detail a{
    border: 1px solid #e7e7e7;
    height: 38px;
    width: 38px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-detail a img{
    max-width: 15px;
    max-height: 15px;
    object-fit: contain;
}
.social-detail a:hover{
    background-color: #000;
}


.blog-image-lits{
    border: 1px solid #e7e7e7;
    border-top: none;
    padding: 24px;
    display: flex;
    align-items: center;
    flex-flow: column;
    gap: 20px;
}
.blog-image-lits a{
    display: block;
}
.blog-image-lits a img{
    width: 100%;
}
/* **** End Blog **** */

#menu-footer-bottom-menu {
  display: flex;         /* Aligns items horizontally */
  list-style: none;      /* Removes default bullet points */
  padding: 0;            /* Removes default indentation */
  margin: 0;             
  gap: 15px;             /* Easily sets the space between items */
}
#menu-footer-bottom-menu li{display:flex;}
#menu-footer-bottom-menu li:not(:last-child)::after {
  content: "";                  /* Required to render the pseudo-element */
  display: block;
  width: 1px;                   /* Thickness of the vertical line */
  height: 16px;                 /* Height of the vertical line */
  background-color: #ccc;       /* Color of the line */
  margin: 10px 0px 10px 10px;               /* Horizontal spacing around the line */
}
ol, ul{margin-bottom:25px;}
.blog_block_single ul li {
    list-style: outside disc;
    padding: 0 0 10px 5px;
    margin-left: 30px;
    font-size: 20px;
}

.blog_block_single ol li {
    list-style-type: decimal;
    padding: 0 0 4px 10px;
    margin-left: 25px;
    font-size: 20px;
}
.blog_block_single h1{margin-bottom:25px !important;}
.blog_block_single h2{font-size:32px;margin-top:15px;margin-bottom:25px;}
.blog_block_single h3{font-size:28px;margin-top:15px;margin-bottom:25px;}
.blog_block_single h4{font-size:24px;margin-top:15px;margin-bottom:25px;}
.blog_block_single h5{font-size:20px;margin-top:15px;margin-bottom:25px;}
.blog_block_single h6{font-size:12px !important;margin-top:15px !important;margin-bottom:25px !important;}
.blog_block_single p{font-size:20px !important;}

 
.blog_block_single img{margin:15px 0px 25px 0px;}
.blog_block_single .alignright {float: right; margin: 0 0 1em 1em !important; }
img.alignleft, .blog_block_single.alignleft { display: table; margin: 8px 25px 15px 0px !important;float: left;}

/* **** About Page **** */
.about-pg-wrp{
    padding: 130px 0;
}
.abt-left-dt{
    max-width: 95%;
}
.abt-left-dt h6{
    margin: 0 0 15px;
    padding: 0 0 0 25px;
    position: relative;
    font-size: 20px;
    color: #1A3942;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 3px;
}
.abt-left-dt h6:after{
    position: absolute;
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 100%;
    border: 2px solid #1A3942;
    top: 5px;
    left: 0;
}
.abt-left-dt h2{
    font-size: 40px;
    font-weight: 600;
    color: #1A3942;
    line-height: 50px;
    margin: 0 0 30px;
    font-family: "Playfair Display", serif;
}
.abt-left-dt figure img{
    width: 58%;
	margin:0 auto;
}
.abt-right-dt{
    padding: 0 0 0 30px;
}
.abt-right-dt h3{
    margin: 0 0 50px;
    font-size: 34px;
    font-family: "Playfair Display", serif;
    color: #ec2554;
    font-weight: bold;
    font-style: italic;
    line-height: 1.2;
    margin: 0 0 25px;
    padding: 25px 0 25px 20px;
    border-left: 2px solid #2a2a2a;
}
.abt-right-dt p{
    color: #5c5c5c;
    font-size: 22px;
    line-height: 38px;
    font-weight: normal;
    margin: 0 0 30px;
}
.abt-right-dt p:last-child{
    margin: 0;
}

.classes-wrp{
    background-color: #FAF3EB;
    position: relative;
    padding: 100px 0;
}
.classes-row{
    display: flex;
    flex-wrap: wrap;
}
.classes-box{
    width: 50%;
    padding: 0 45px 0 0;
    border-right: 1px solid #2A2A2A;
}
.classes-box:last-child{
    border: none;
    padding: 0 0 0 45px;
}
.classes-box h6{
    margin: 0 0 25px;
    padding: 0 0 0 30px;
    font-size: 20px;
    position: relative;
    color: #1A3942;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 3px;
}
.classes-box h6:after{
    position: absolute;
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 100%;
    border: 2px solid #1A3942;
    top: 5px;
    left: 0;
}
.classes-box h3{
    font-size: 36px;
    font-family: "Playfair Display", serif;
    color: #1A3942;
    line-height: 46px;
    font-weight: 500;
    margin: 0 0 15px;
}
.classes-box p{
    color: #1A3942;
    font-size: 24px;
    line-height: 50px;
    font-style: italic;
    font-weight: normal;
    letter-spacing: 0.5px;
    margin: 0 0;
    padding: 25px 0;
}

.our-mission-wrp{
    padding: 90px 0;
}
.mission-block{
    padding: 0 30px 0 0;
}
.mission-block h3{
    font-size: 36px;
    font-family: "Playfair Display", serif;
    color: #2A2A2A;
    line-height: 46px;
    font-weight: 500;
    margin: 0 0 25px;
}
.mission-block p{
    color: #5c5c5c;
    font-size: 22px;
    line-height: 38px;
    font-weight: normal;
    margin: 0 0 25px;
}
.mission-img img{
    width: 100%;
}

/* Page/post */

.content-block-wrp{
    padding: 90px 0;
	font-size:18px;
}
.content-block{
    padding: 0 30px 0 0;
	line-height: 28px;
}
.content-block h3{
    font-size: 36px;
    font-family: "Playfair Display", serif;
    color: #2A2A2A;
    line-height: 46px;
    font-weight: 500;
    margin: 0 0 25px;
}
.content-block p{
    color: #5c5c5c;
    font-size: 22px;
    line-height: 38px;
    font-weight: normal;
    margin: 0 0 25px;
}

.content-block p {
        font-size: 18px;
        line-height: 28px;
        margin: 0 0 25px;
    }

.content-block ul {
    margin: 25px 0 25px 0;
    padding: 0 0 0 35px;
}

.content-block ul li {
    margin: 0 0 11px;
    padding: 0 0 0 0px;
    font-size: 18px;
    font-weight: 400;
    color:#5c5c5c;
    list-style: disc;
}

.content-block ol {
    margin: 25px 0 25px 0;
    padding: 0 0 0 25px;
}

.content-block ol li {
    margin: 0 0 11px;
    padding: 0 0 0 0px;
    font-size: 18px;
    font-weight: 400;
    color:#000;
    list-style-type: decimal;
}
.content-block a{
	color:#ec2554;
}
.content-block h1{margin-bottom:35px;}
.content-block h2{font-family: "Outfit", sans-serif;font-size:32px;margin-top:35px;margin-bottom:15px;}
.content-block h3{font-family: "Outfit", sans-serif;font-size:28px;margin:50px 0px 15px 0px;}
.content-block h4{font-family: "Outfit", sans-serif;font-size:25px;margin:50px 0px 15px 0px;}

.content-block table {
		width: 100%;
		border-collapse: collapse;
		margin: 20px auto;
}
.content-block th, td {
		border: 1px solid #000;
		padding: 15px;
		text-align: left;
		width:33.3%;
		font-size:18px;
}
 .content-block th {
        background-color: #fbf4e7;
}
.content-block address{font-size:18px;}
/* Page/post */

.our-history-wrp{
    background-color: #FAF3EB;
    position: relative;
    padding: 100px 0;
}
.our-history-wrp h2{
    font-size: 36px;
    font-family: "Playfair Display", serif;
    color: #2A2A2A;
    line-height: 46px;
    font-weight: 700;
    margin: 0 0 35px;
    text-align: center;
}

.history-timeline-rw{
    position: relative;
}
.history-timeline-rw ul{
    position: relative;
}
.history-timeline-rw li{
    position: relative;
    padding: 0 0 70px;
}
.history-timeline-rw li:after{
    position: absolute;
    content: '';
    width: 5px;
    height: 100%;
    background-color: #E67E52;
    left: 50%;
    top: 0;
    transform: translate(-50% , 0);
    -webkit-transform: translate(-50% , 0);
}
.history-timeline-rw li:last-child:after{
    height: 25%;
}
.history-timeline-rw li label{
    margin: 0 auto 50px;
    display: table;
    padding: 12px 35px;
    border-radius: 15px;
    border: none;
    background-color: #E67E52;
    color: #fff;
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    border: 8px solid #FAF3EB;
    position: relative;
    z-index: 1;
}
.history-timeline-rw li span{
    position: absolute;
    width: 35px;
    height: 35px;
    display: block;
    background: #FAF3EB;
    border-radius: 100%;
    border: 5px solid #FAF3EB;
    top: 130px;
    left: 50%;
    transform: translate(-50% , 0);
    -webkit-transform: translate(-50% , 0);
    z-index: 1;
}
.history-timeline-rw li span:after{
    position: absolute;
    content: '';
    width: 25px;
    height: 25px;
    background: #FAF3EB;
    border-radius: 100%;
    border: 5px solid #E67E52;
    top: 0;
    left: 0;
}

.history-row{
    display: flex;
    gap: 130px;
}
.history-row .history-data{
    padding: 35px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #F6F6F6;
    width: 50%;
    position: relative;
}
.history-row .history-data:after{
    position: absolute;
    content: '';
    border-top: 15px solid transparent;
    border-left: 15px solid #fff;
    border-bottom: 15px solid transparent;
    right: -15px;
    top: 15px;
}
.history-row .history-data h3{
    font-size: 30px;
    color: #2A2A2A;
    line-height: 40px;
    font-weight: 600;
    margin: 0 0 15px;
}
.history-row .history-data p{
    color: #666666;
    font-size: 22px;
    line-height: 32px;
    font-weight: normal;
    margin: 0;
}
.history-imgbx{
    width: 50%;
    padding: 40px 0 0;
}
.history-img img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.history-timeline-rw li:nth-child(even) .history-row{
    flex-flow: row-reverse;
}
.history-timeline-rw li:nth-child(even) .history-row .history-data:after{
    position: absolute;
    content: '';
    border-left: none;
    right: auto;
    top: 15px;
    border-top: 15px solid transparent;
    border-right: 15px solid #fff;
    border-bottom: 15px solid transparent;
    left: -15px;
}
.videobox{
    width: 100%;
    height: 350px;
}

.core-value-wrp{
    padding: 80px 0 30px;
    background-color: #FFDC74;
}
.core-value-wrp h2{
    font-size: 36px;
    font-family: "Playfair Display", serif;
    color: #2A2A2A;
    line-height: 46px;
    font-weight: 700;
    margin: 0 0 60px;
    text-align: center;
}

.core-block{
    display: flex;
    margin: 0 0 50px;
}
.core-block figure{
    min-width: 100px;
    max-width: 100px;
    margin-right: 30px;
}
.core-block figure img{
    width: 100%;
}
.core-data h3{
    margin: 0 0 15px;
    font-size: 30px;
    font-weight: bold;
    color: #000;
    line-height: 40px;
}
.core-data p{
    margin: 0;
    font-size: 26px;
    font-weight: 300;
    color: #333;
    line-height: 40px;
}
/* **** End About Page **** */

/* **** Steps Page **** */
.stps-wrp{
    padding: 100px 0 60px;
}
.stps-wrp h2{
    font-size: 36px;
    font-family: "Playfair Display", serif;
    color: #2A2A2A;
    line-height: 46px;
    font-weight: 700;
    margin: 0 0 15px;
    text-align: center;
}
.stps-wrp h4{
    font-size: 24px;
    color: #5c5c5c;
    line-height: 34px;
    font-weight: 400;
    margin: 0 0 45px;
    text-align: center;
}
.steps-box{
    margin: 0 0 50px;
    display: flex;
    align-items: center;
}
.step-ic{
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 100%;
    border: 2px solid #F02656;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}
.step-ic img{
    width: 40px;
}
.steps-data h3{
    font-size: 28px;
    font-weight: bold;
    color: #000;
    line-height: 36px;
    margin: 0 0 10px;
}
.steps-data p{
    margin: 0;
    font-size: 24px;
    color: #5c5c5c;
    line-height: 34px;
    font-weight: 400;
}

.whats-include-wrp{
    padding: 100px 0;
    background-color: #FFDC74;
}
.include-data h2{
    font-size: 38px;
    font-family: "Playfair Display", serif;
    color: #000;
    line-height: 46px;
    font-weight: 700;
    margin: 0 0 15px;
}
.include-data p{
    margin: 0;
    font-size: 24px;
    color: #5c5c5c;
    line-height: 36px;
    font-weight: 400;
}

.include-accordian-box{
    padding: 0 0 0 50px;
}
.include-accordian-box .accordion .accordion-item{
    margin: 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.include-accordian-box .accordion .accordion-item:last-child{
    border: none;
}
.include-accordian-box .accordion .accordion-item .accordion-button{
    font-size: 22px;
    color:#000;
    font-weight: 700;
    background-color: transparent;
    position: relative;
    padding: 25px 50px 25px 0;
}
.include-accordian-box .accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}
.include-accordian-box .accordion .accordion-item .accordion-button:focus {
    box-shadow: none;
}
.include-accordian-box .accordion .accordion-item .accordion-button::after {
    display: none;
}
.include-accordian-box .accordion .accordion-item .accordion-button:before {
    position: absolute;
    content: "";
    right: 15px;
    top: 23px;
    font-size: 15px;
    height: 30px;
    width: 30px;
    background: url('../images/close.svg') 0 0 no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);    
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.include-accordian-box .accordion .accordion-item .accordion-button.collapsed:before {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}
.include-accordian-box .accordion .accordion-body {
    padding: 25px 50px 25px 25px;
}
.include-accordian-box .accordion .accordion-body p{
    margin: 0 0 25px;
    font-size: 20px;
    font-weight: normal;
    line-height: 34px;
    color: #5c5c5c;
}
.include-accordian-box .accordion .accordion-body p:last-child{
    margin: 0;
}

.the-process-wrp{
    padding: 100px 0;
}
.the-process-wrp h2{
    font-size: 38px;
    font-family: "Playfair Display", serif;
    color: #000;
    line-height: 46px;
    font-weight: 700;
    margin: 0 0 45px;
}
.process-row{
    margin: 0 0 40px;
}
.process-row:last-child{
    margin: 0;
}
.arrow-rw{
    position: relative;
    margin: 0 0 35px;
}
.arrow-rw:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #E82659;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.arrow-rw figure{
    max-width: 60px;
    background-color: #fff;
    padding: 0 30px 0 0;
    position: relative;
    z-index: 1;
}
.arrow-rw figure img{
    width: 100%;
}
.process-row h3{
    font-size: 34px;
    color: #E82659;
    line-height: 46px;
    font-weight: 700;
    margin: 0 0;
}
.process-row p{
    margin: 0;
    font-size: 24px;
    font-weight: normal;
    line-height: 38px;
    color: #5c5c5c;
}

.costs-franchise-wrp{
    padding: 100px 0;
    background-color: #FDE6DE;
}
.costs-franchise-wrp h2{
    font-size: 38px;
    font-family: "Playfair Display", serif;
    color: #000;
    line-height: 46px;
    text-align: center;
    font-weight: 700;
    margin: 0 0 50px;
}
.cost-row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.cost-col{
    width: 20%;
    padding: 0 10px;
}
.cost-row .cost-box{    
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-flow: column;
    height: 100%;
}
.cost-top h3{
    font-size: 26px;
    font-weight: 600;
    color: #000;
    line-height: 36px;
    text-align: center;
    margin: 0 auto 20px;
    min-height: 72px;
}
.cost-top h4{
    margin: 0 auto 25px;
    font-size: 29px;
    color: #E82659;
    min-height: 72px;
    line-height: 36px;
    text-align: center;
    word-break: break-all;
    font-weight: 700;
}
.cost-bottom figure{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #E82659;
    margin: 0 auto 20px;
}
.cost-bottom p{
    text-align: center;
    margin: 0;
    font-size: 18px;
    font-weight: normal;
    line-height: 26px;
    color: #5c5c5c;
}

.fashion-video-wrp{
    padding: 100px 0;
}
.fashion-video{
    width: 100%;
    height: 750px;
}
/* **** End Steps Page **** */

/* **** Why The Fashion Class **** */
.aux-modern-wrp{
    background-color: #fbf4e7;
    padding: 100px 0 70px;
}
.aux-modern-wrp .titlebar{
    margin: 0 0 50px;
    text-align: center;
}
.aux-modern-wrp .titlebar h2 {
    font-size: 42px;
    font-family: "Playfair Display", serif;
    color: #2a2a2a;
    font-weight: bold;
    line-height: 1.2;
    text-transform: capitalize;
    margin: 0 0 15px;
}
.aux-modern-wrp .titlebar h3 {
    font-size: 26px;
    color: #5c5c5c;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 ;
}

.inner-why-box{
    padding: 15px;
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    flex-flow: column;
    height: calc(100% - 30px);
    margin: 0 0 30px;
}
.inner-why-img img{
    width: 100%;
    border-radius: 15px;
    height: 250px;
    object-fit: cover;
}
.inner-why-box .modern-box{
    padding: 20px 15px;
}
.inner-why-box .modern-box h4 {
    font-size: 22px;
    color: #ec2554;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 15px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.inner-why-box .modern-box p {
    font-size: 17px;
    color: #2a2a2a;
    line-height: 25px;
    letter-spacing: 0.5px;
    margin: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}


.populated-wrp{
    padding: 100px 0;
}
.populated-wrp .row{
    align-items: center;
}
.populated-wrp .titlebar{
    margin: 0 0 40px;
}
.populated-wrp .titlebar h2 {
    font-size: 42px;
    font-family: "Playfair Display", serif;
    color: #2a2a2a;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    margin: 0 0 20px;
}
.populated-wrp .titlebar p {
    font-size: 18px;
    color: #5c5c5c;
    font-weight: 600;
    line-height: 1.444;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}
.populated-block{
    padding: 0 0 0 0px;
    max-width: 850px;
    margin: 0 0 0 auto;
}
.populated-block .populate-group{
    margin: 0 0 40px;
}
.populated-block .populate-group label{
    font-size: 20px;
    color: #ec2554;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.2;
    margin: 0 0 10px;
    width: 100%;
    display: flex;
    align-items: center;
}
.populated-block .populate-group label span{
    margin: 0 0 0 auto;
    color: #777;
    font-weight: 700;
    font-size: 16px;
}
.populated-block .populate-group .progress{
    border-radius: 40px;
    background-color: #fde6de;
    height: 8px;
}
.chart-inner-data{
    max-width: 400px;
    margin: 30px auto 0;
}
.chart-inner-data h4{
    font-size: 22px;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 30px;
    margin: 0 auto 15px;
}
.chart-inner-data p{
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #777;
}


.fashion-wrp{
    background-color: #fbf4e7;
    padding: 100px 0;
}
.fashion-wrp .titlebar{
    max-width: 750px;
    text-align: center;
    margin: 0 auto 60px;
}
.fashion-wrp .titlebar h6 {
    font-size: 20px;
    color: #ec2554;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 3px;
    margin: 0 0 5px;
}
.fashion-wrp .titlebar h2 {
    font-size: 42px;
    font-family: "Playfair Display", serif;
    color: #2a2a2a;
    font-weight: bold;
    line-height: 1.2;
    text-transform: capitalize;
    margin: 0 0 15px;
}
.fashion-wrp .titlebar p {
    font-size: 18px;
    color: #5c5c5c;
    line-height: 1.444;
    margin: 0;
}
.fashion-wrp .fashion-img{
    height: 100%;
    padding: 0 30px 0 0;
}
.fashion-wrp .fashion-img img{
    aspect-ratio: 1 / 0.76;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    object-fit: cover;
}

.fashion-blogs-rw{
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 0 0 15px;
    border-bottom: 1px solid #e0e0e0;
    margin: 0 0 15px;
}
.fashion-blogs-rw:last-child{
    margin: 0;
    border: none;
    padding: 0;
}
.fashion-blg-right{
    min-width: 200px;
    max-width: 200px;
}
.fashion-blg-right img{
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.fashion-blg-left h3{
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    color: #000;
    margin: 0 0 10px;
}
.fashion-blg-left p{
    font-size: 16px;
    font-weight: normal;
    line-height: 22px;
    letter-spacing: 0.5px;
    color: #777;
    margin: 0;
}



.program-section{
    padding: 100px 0;
    position: relative;
}
.program-section .program-block{
    max-width: 1050px;
    margin: 0 auto;
}
.program-section .titlebar{
    max-width: 850px;
    margin: 0 auto 50px;
}
.program-section .titlebar h2 {
    font-size: 42px;
    font-family: "Playfair Display", serif;
    font-weight: bold;
    line-height: 1.2;
    text-transform: capitalize;
    margin: 0 0 15px;
    text-align: center;
}
.program-section .titlebar p {
    font-size: 16px;
    line-height: 1.444;
    margin: 0;
    text-align: center;
}
.program-data p{
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 25px;
    color: #333;
}
.program-section .program-block li{
    position: relative;
    font-size: 18px;
    color: #333;
    line-height: 1.444;
    margin: 0;
    text-align: left;
    padding-left: 30px;
    margin: 0 0 10px;
}
.program-section .program-block li:last-child{
    margin: 0;
}
.program-section .program-block li::before{
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background-image: url('../images/check-circle-solid.svg');
    background-size: contain;
    opacity: 0.8;
}

.program-img{
    height: 100%;
}
.program-img img{
    width: 100%;
    border-radius: 5px;
    height: 100%;
    object-fit: cover;
}
/* **** End Why The Fashion Class **** */

.cont-rpt {
    padding: 0 0 40px;
	font-size: 18px;
}
.cont-rpt label {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 1px solid #adadad;
    display: block;
    margin-bottom: 10px;
}
.contactFrm{
	background-color: #ddd;
    padding: 25px 35px !important;
}
.contactFrm .wpcf7-form-control {
    margin: 0;
    padding: 0 25px !important;
    height: 50px;
    border-radius: 5px;
    width: 100%;
    background: #fff;
    font-size: 15px;
    font-weight: 400;
    color: #1e2226;
    border: none;
    
}
.contactFrm .wpcf7-submit {
    background-color: #ec2554;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}
ul.pagination_info{
	width: 100%;
    float: left;
    padding: 0;
    margin: 0;
    text-align: center;
}
ul.pagination_info li {
    padding: 0;
    margin: 0;
    display: inline-block;
}
ul.pagination_info li a {
    padding: 5px 10px;
    margin: 0 6px;
    display: block;
    font-size: 14px;
    color: #ec2554;
    font-weight: 600;
    border: 1px solid #ec2554;
}
ul.pagination_info li a:hover, ul.pagination_info li.active a {
    color: #fff;
    border: 1px solid #a77ab5;
    background: #ec2554;
}
.social-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}
.social-icon a {
    border-radius: 50%;
    background-color: #ec2554;
    width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-icon a img {
    max-width: 100%;
}