@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');

:root{
	--color-primary:#fe5917;
	--color-secondary:#21348b;
	--color-black:#000;
	--color-white:#fff;
	--site-font:"Lexend Deca", sans-serif;
	--color-bg:#f4f4f4;
	--color-text:#5c5c5c;
}

html,
body {
    scroll-behavior: auto !important
}

body {
    font-family: var(--site-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 26px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.container{
	max-width:1240px;
}
.preloader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    background-color: var(--color-bg)
}

.preloader-inner {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 1
}

.preloader-inner img {
    display: block;
    margin: 0 auto 10px auto
}

.loader {
    display: block;
    width: 48px;
    height: 48px;
    margin: auto;
    position: relative
}

.loader:before {
    content: '';
    width: 48px;
    height: 5px;
    background: #000;
    opacity: 0.25;
    position: absolute;
    top: 60px;
    left: 0;
    border-radius: 50%;
    -webkit-animation: shadow 0.5s linear infinite;
    animation: shadow 0.5s linear infinite
}

.loader:after {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    -webkit-animation: bxSpin 0.5s linear infinite;
    animation: bxSpin 0.5s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px
}

@-webkit-keyframes bxSpin {
    17% {
        border-bottom-right-radius: 3px
    }
    25% {
        -webkit-transform: translateY(9px) rotate(22.5deg);
        transform: translateY(9px) rotate(22.5deg)
    }
    50% {
        -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
        transform: translateY(18px) scale(1, 0.9) rotate(45deg);
        border-bottom-right-radius: 40px
    }
    75% {
        -webkit-transform: translateY(9px) rotate(67.5deg);
        transform: translateY(9px) rotate(67.5deg)
    }
    100% {
        -webkit-transform: translateY(0) rotate(90deg);
        transform: translateY(0) rotate(90deg)
    }
}

@keyframes bxSpin {
    17% {
        border-bottom-right-radius: 3px
    }
    25% {
        -webkit-transform: translateY(9px) rotate(22.5deg);
        transform: translateY(9px) rotate(22.5deg)
    }
    50% {
        -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
        transform: translateY(18px) scale(1, 0.9) rotate(45deg);
        border-bottom-right-radius: 40px
    }
    75% {
        -webkit-transform: translateY(9px) rotate(67.5deg);
        transform: translateY(9px) rotate(67.5deg)
    }
    100% {
        -webkit-transform: translateY(0) rotate(90deg);
        transform: translateY(0) rotate(90deg)
    }
}

@-webkit-keyframes shadow {
    0%,
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
    50% {
        -webkit-transform: scale(1.2, 1);
        transform: scale(1.2, 1)
    }
}

@keyframes shadow {
    0%,
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
    50% {
        -webkit-transform: scale(1.2, 1);
        transform: scale(1.2, 1)
    }
}
.home-header{
	position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 9;
    background: var(--color-white);
    border-radius: 20px;
	will-change: width;
	transition: 
        width 0.4s ease,
        top 0.4s ease,
        border-radius 0.4s ease,
        box-shadow 0.4s ease;
}
.home-header-white{
	background:transparent;
}
.home-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    border-radius: 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
}
.header-logo img {
    width: 16%;
}
.header-logo {
    gap: 10px;
}
.header-logo span{
    font-size: 20px;
    font-weight: 600;
    color: var(--color-secondary);
}
.tm {
  font-size: 20px;
  margin-left: 2px;
  font-weight:400;
}
sup {
    top: -5px;
}
.home-banner-section{
	height:100vh;
	background-image:url('../images/home-bg.png');
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
	display: flex;
    align-items: center;
}
.home-banner-section-white{
	height:100vh;
	background-image:url('../images/home-bg-2.png');
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
	display: flex;
    align-items: center;
	position:relative;
}
.second-section{
	position: relative;
	background:#fffaf9;
	padding:60px 0;
}
.second-section .semi-circle-wrapper {
  width: 65%;
  height: 450px;
  background: transparent;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.semi-circle-border{
	position: relative;
    width: 100%;
    height: 100%;
    border-radius: 500px 500px 0 0;
    background:
        linear-gradient(#f4f4f4, #f4f4f4) padding-box,
        linear-gradient(
            to right,
            #ffb347,
            #ff6a2a
        ) border-box;
    border: 35px solid transparent;
    border-bottom: 0;
}
.second-section .dot {
	position: absolute;
    top: 100%;
    width: 25px;
    height: 25px;
    background: transparent;
    border: 3px solid #c75426;
    border-bottom: 0;
    border-left: 0;
}
.second-section .dot-1 { transform: rotate(328deg) translateY(-150px);
    left: 98px; }
.second-section .dot-2 { transform: rotate(2.8deg) translateY(-354px);;
    left: 147px; }
.second-section .dot-3 { transform: rotate(45deg) translateY(0px);
    top: 5px; left: 0; right: 0; margin: 0 auto; }
.second-section .dot-4 {     transform: rotate(264deg) translateY(-83px);
    right: 85px;
    border: 3px solid #c75426;
    border-top: 0;
    border-right: 0;
    top: 85px; }
.second-section .dot-5 { transform: rotate(290deg) translateY(-150px);
    right: -120px;
    border: 3px solid #c75426;
    border-top: 0;
    border-right: 0;
    top: 363px;}
.label-circle {
  position: absolute;
    font-size: 18px;
    color: var(--color-secondary);
    white-space: nowrap;
    font-weight: 700;
}
.label-circle.label-1 {
    bottom: 15px;
    left: -80px;
    transform: rotate(32deg) translateX(-50%);
}
.label-circle.label-2 {
    right: 35px;
    top: 40%;
    transform: rotate(357deg) translateY(-50%);
}
.label-circle.label-3 {
 left: -60px;
    top: -25px;
    transform: rotate(315deg) translateY(-50%);
}
.label-circle.label-4 {
    left: -62px;
    top: 92px;
    transform: rotate(96deg) translateY(-50%);
}
.label-circle.label-5 {
    bottom: -155px;
    left: -5px;
    transform: rotate(70deg) translateX(-50%);
}
.myslider .item h4 {
    font-size: 55px;
    line-height: 1;
    color: var(--color-primary);
    font-weight: 600;
}
.myslider .item p{
    font-size:20px;
    font-weight:300;
    color:var(--color-white);
    margin:0;
}
.home-banner-section-white .myslider .item p{
    font-size:20px;
    font-weight:300;
    color:var(--color-secondary);
    margin:0;
}
footer {
    background: var(--color-bg);
    padding: 30px 0 0;
}
.footer-widget{
	padding-bottom:20px;
}
.footer-widget .contact-info {
    font-size: 16px;
}
.footer-widget .contact-info i {
    margin-right: 5px;
    color: var(--color-secondary);
}
.footer-widget .contact-info h6{
	margin-bottom:3px;
	font-weight:500;
}
.accent1 {
    color: var(--color-primary);
}
.footer-widget .contact-info a, 
.footer-widget .contact-info p {
    color: var(--color-text);
    font-weight: 400;
    margin-bottom: 0;
	text-decoration:none;
}
.footer-widget .contact-info a:hover{
	color:var(--color-secondary);
	text-decoration:underline;
}
.footer__contact-col{
	max-width:50%;
	padding-right:32px;	
}
.copy-area{
    border-top:1px solid #ccc;
    padding:20px 0 20px;
    
}
.copyright-area p {
    margin-bottom: 0;
    font-weight:400;
    color:var(--color-text);
	line-height:1;
	text-align:center;
}
.holy-area p {
    margin-bottom: 0;
    font-weight:400;
    color:var(--color-text);
	line-height:1;
	text-align:right;
}
.rose-info-section{
	position:relative;
	padding:60px 0;
}
.rose-info-section .row .col-lg-3, 
.rose-info-section .row .col-lg-5 {
    padding: 0;
}
.section-heading{
	margin-bottom:40px;
}
.section-heading .subtitle {
    color: var(--color-secondary);
    font-weight: 500;
    font-size: 20px;
    line-height:1.4;
}
.section-heading .title{
    font-size:24px;
    line-height:34px;
    font-weight:700;
    color:var(--color-primary);
}
.section-heading .title span{
	color:var(--color-secondary);
}
.section-heading p{
	font-weight:300;
	margin-bottom:0;
	color:var(--color-text);
	font-size:19px;
}
.border-rb-gradient {
    position: relative;
    background: #fff;
    overflow: hidden;
}
.border-rb-gradient-2 {
    position: relative;
    background: #fff;
    overflow: hidden;
}
.border-rb-gradient::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        #ff6a2a,
        #ffb347
    );
}
.border-rb-gradient-2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        #ff6a2a,
        #ffb347
    );
}
.border-rb-gradient::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        #ff6a2a,
        #ffb347
    );
}
.border-rb-gradient-2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to left,
        #ff6a2a,
        #ffb347
    );
}
.brain-rb::after{
    background: linear-gradient(to top, #2c3e91, #fffaf9);
}
.brain-rb::before {
    background: linear-gradient(to left, #2c3e91, #fffaf9);
}
.voice-rb::after{
    background: linear-gradient(to top, #ff6a2a, #fffaf9);
}
.voice-rb::before {
    background: linear-gradient(to right, #ff6a2a, #fffaf9);
}
.touch-rb::after{
    background: linear-gradient(to top, #1bb7a1, #fffaf9);
}
.touch-rb::before {
    background: linear-gradient(to right, #1bb7a1, #fffaf9);
}
.info-box {
    padding: 10px 15px;
    margin-bottom:20px
}
.info-box.brain{
    padding-left:0;
}
.info-box.touch,
.info-box.voice{
    padding-right:0;
}
.info-box h6{
    font-size:16px;
    font-weight:800;
    line-height:1;
    margin-bottom:3px;
}
.info-box.voice h6,
.info-box.voice h4{
	color:var(--color-primary);
}
.info-box.brain h6,
.info-box.brain h4{
	color:var(--color-secondary);
}
.info-box.touch h6,
.info-box.touch h4{
	color:#35c9bd;
}
.info-box h4{
    font-size:20px;
    line-height:1.4;
	font-weight:300;
	position: relative;
    padding-bottom:15px;
    margin-bottom:15px
}
.info-box h4:after {
    position: absolute;
    content:"";
    width:60px;
    height:4px;
    bottom:0;
    left:0;
    background:#000
}
.info-box.brain h4:after{
	 background: linear-gradient(to right, #2c3e91, #fffaf9);
}
.info-box.voice h4:after{
	background: linear-gradient(to right, #ff6a2a, #fffaf9);
}
.info-box.touch h4:after{
	background: linear-gradient(to right, #1bb7a1, #fffaf9);
}
.info-box ul{
	list-style: none;
  padding-left: 0;
}
.info-box ul li{
    font-size:16px;
    line-height:24px;
	padding-bottom:5px;
	font-weight:300;
	position: relative;
	padding-left: 45px;
}
.info-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background-image: url("../images/favicon.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.info-box ul li:last-child{
	padding-bottom:0;
}
.rose-video-section{
	position:relative;
	padding:60px 0 0;
}
.rose-video-section video{
	width:100%;
	height:auto;
	display:block;
	margin:auto;
}
.rose-video-section .vimeo-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}
.rose-video-section .vimeo-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.rose-info-section{
	position:relative;
	padding:60px 0;
}
.form-control {
    border-radius: 10px;
    height: 48px;
    font-size: 15px;
    font-weight: 300;
    color: var(--color-black);
}
.form-control:focus{
	box-shadow:none;
	border-color:var(--color-primary);
}
.btn-contact{
	padding: 10px 15px !important;
    border-radius: 10px !important;
	background:transparent;
	border:2px solid var(--color-secondary);
	color:var(--color-secondary);
	font-size:16px;
	font-weight:500
}
.btn-contact:hover{
	background:var(--color-primary);
	border-color:var(--color-primary);
}
.rose-contact-section{
	padding:60px 0;
	background:var(--color-white);
	position:relative;
}
.rose-contact-section form{
	margin-bottom:0;
}
.btn-sec {
	position:absolute;
	bottom:30px;
    gap: 15px;
    display: inline-flex;
}
.btn-sec .btn-glowing {
    position: relative;
    display: inline-block;
    padding: 10px 18px;
    color: var(--color-black);
    text-decoration: none;
    transition: 0.5s;
    overflow: hidden;
    background: #e5eaff;
	border-radius:10px;
	border:2px solid var(--color-secondary);
}
.btn-sec .btn-glowing:hover{
	background: var(--color-primary);
	color: var(--color-white);
	border-color:var(--color-primary);
}
/**.btn-glowing span{
    position: absolute;
    display: block;
}
.btn-glowing span:nth-child(1){
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,transparent,var(--color-secondary));
    animation: animate1 1s linear infinite;
}
@keyframes animate1{
    0%{
        left: -100%;
    }
    50%,100%{
        left: 100%;
    }
}
.btn-glowing span:nth-child(2){
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,transparent,var(--color-secondary));
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
}
@keyframes animate2{
    0%{
        top: -100%;
    }
    50%,100%{
        top: 100%;
    }
}
.btn-glowing span:nth-child(3){
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg,transparent,var(--color-secondary));
    animation: animate3 1s linear infinite;
    animation-delay: 0.50s;
}
@keyframes animate3{
    0%{
        right: -100%;
    }
    50%,100%{
        right: 100%;
    }
}


.btn-glowing span:nth-child(4){
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg,transparent,var(--color-secondary));
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
}
@keyframes animate4{
    0%{
        bottom: -100%;
    }
    50%,100%{
        bottom: 100%;
    }
}**/
.rose-example-section{
	padding:60px 0;
	position:relative;
	background:var(--color-bg);
}
.rose-example-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-secondary);
	margin-bottom:20px;
}
.chat-sec {
    background: var(--color-white);
    padding: 15px;
    border-radius: 20px;
    border: 1px solid var(--color-primary);
}
.chat-div {
    display: flex;
    gap: 15px;
	margin-bottom: 15px;
}
.chat-div img{
    border-radius:10px;
    border:1px solid var(--color-primary);
	width: 20.2%;
}
.chat-div p{
    font-size:15px;
    line-height:24px;
    font-weight:300;
}
.rose-example-section .col-lg-5{
	padding-right:30px;
}
.call-img{
	margin:15px 0;
}
.call-img img{
	border-radius:20px;
}
.contact-home {
    background: var(--color-white);
    padding: 20px;
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    margin-top: 250px;
}
.contact-home textarea{
	min-height:100px;
}
.contact-home .form-control{
	margin-bottom:10px ;
}
.home-text-rotate p{
  display: inline-block;
  vertical-align: top;
  margin: 0;
  font-size:60px;
  line-height:70px;
  font-weight:700;
  color:var(--color-primary);
}

.word {
  position: absolute;
  width: 100%;
  opacity: 0;
}
.letter {
  display: inline-block;
  position: relative;
  float: left;
  transform: translateZ(25px);
  transform-origin: 50% 50% 25px;
}

.letter.out {
  transform: rotateX(90deg);
  transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.letter.behind {
  transform: rotateX(-90deg);
}

.letter.in {
  transform: rotateX(0deg);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.home-banner-content p {
    font-size: 18px;
    line-height: 26px;
    text-align: justify;
    margin-bottom: 5px;
    color: var(--color-secondary);
    font-weight: 300;
	padding-right:30px;
}
.home-banner-content p .color-second{
	color:var(--color-primary);
	font-weight:400;
}
.home-text-rotate-2 p{
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 5px;
  font-weight:400;
  line-height: 1.3;
  color: var(--color-secondary);
}
.home-text-rotate-2 p span{
	color:var(--color-primary);
	line-height:1;
	font-weight:700;
}
#description-rotate {
  min-width:5%;
}
#description-rotate-2 {
  min-width:5%;
}
.second-info {
    background: transparent;
	display: flex;
    gap: 15px;
    justify-content: space-between;
}
.second-info-inner {
    background: var(--color-white);
    padding: 10px;
    border-radius: 15px;
    text-align:center;
	width: 20%;
	min-height: 75px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
	border: 2px solid var(--color-primary);
}
.second-info-inner h4{
    font-size:16px;
    color:var(--color-secondary);
    line-height:24px;
    margin-bottom:0;
    font-weight:600;
}
.moretext {
  display: none;
}
.read-btn {
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--color-primary);
}
.moreless-button{
	display:inline-block;
	font-size: 16px;
        color: var(--color-primary);
        line-height: 24px;
}
.moreless-button:hover{
	color:var(--color-secondary);
}
.play-btn {
    width: 85px;
    height: 85px;
    border-radius: 100px;
    background: var(--color-white);
    border: 3px solid var(--color-primary);
    font-size: 40px;
    line-height: 78px;
    text-align: center;
    color: var(--color-primary);
    position: absolute;
    top: 32%;
    right: 17%;
	box-shadow: 0 0 50px 35px var(--color-white);
}
.play-btn:hover{
	border-color:var(--color-secondary);
	color:var(--color-secondary);
}
.read-slide .play-btn{
	top:80px;
}












@media (min-width:200px) and (max-width:768px){
	.home-header{
		top:10px;
	}
	.word{
		width:auto;
	}
.home-text-rotate p{
	font-size: 45px;
    line-height: 55px;
}
.home-text-rotate-2 h1{
	font-size:20px;
}
.home-text-rotate-2 .text-container{
	width:25%;
}
.btn-sec{
	bottom:0px;
	display:block;
}
.home-banner-content p {
    font-size: 14px;
    line-height: 22px;
	padding-right:0;
}
.home-banner-content div.expanded {
  background-color: #fff;
  transition: background-color 0.3s ease;
  position:relative;
  z-index:9;
}

.btn-sec .btn-glowing{
	display:block;
	    padding: 3px 8px;
        font-size: 13px;
        text-align: center;
        margin-bottom: 5px;
}
.rose-info-section,
.rose-example-section,
.rose-contact-section,
.second-section{
	padding:40px 0;
}
.section-heading .subtitle{
	font-size:16px;
	line-height:24px;
}
.section-heading .title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
}
.section-heading {
    margin-bottom: 20px;
}
.rose-info-section .row .col-lg-3, 
.rose-info-section .row .col-lg-5 {
	padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}
.info-box ul li {
    font-size: 14px;
    line-height: 22px;
}
.info-box h4 {
    font-size: 18px;
    font-weight: 400;
}
.rose-example-section h4{
	margin-top:20px;
}
.rose-video-section{
	padding-top:40px;
}
.rose-video-section video{
	width:100%;
	height:auto;
	display:block;
	margin:auto;
}
.rose-contact-section form .form-control{
	margin-bottom:10px;
}
.footer__contact-col {
    max-width: 100%;
    padding-right: 0;
}
.footer-widget {
    padding-bottom: 10px;
}
.copyright-area p{
	text-align:center;
	padding-bottom:10px;
}
.holy-area p {
	text-align:center;
}
.chat-div:last-child{
	margin-bottom:0;
}
.section-heading p{
	font-size: 14px;
    line-height: 22px;
}
.form-control {
    height: 45px;
    font-size: 14px;
    font-weight: 400;
}
.btn-contact{
	padding: 8px 15px !important;
   font-size: 14px;
}
.second-info{
	display:block;
}
.second-info-inner{
	width: 100%;
    min-height: auto;
	margin-bottom: 5px;
    border-width: 1px;
}
.second-info-inner:last-child{
	margin-bottom:0px;
}
.home-banner-section-white{
	height:100vh;
	background-image:url('../images/mobile-bg.jpg');
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
	display: flex;
    align-items: self-start;
    padding-top: 110px;
}
.rose-example-section .col-lg-5{
	padding-right:30px;
}
.home-text-rotate-2 p {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 400;
	line-height:1.3;
}
.home-text-rotate-2 p span{
	font-weight:600;
	line-height:1;
}
.moreless-button {
    font-size: 14px;
    line-height: 22px;
}
.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 100px;
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    font-size: 30px;
    line-height: 55px;
    text-align: center;
    color: var(--color-primary);
    position: absolute;
    top: 52%;
    right: 35%;
	box-shadow: 0 0 50px 25px var(--color-white);
}
}