* {
  box-sizing: border-box;
  font-family: "Montserrat", serif;
  box-shadow: none;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  transition: all .3s linear;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  box-shadow: none;
}
body {
  font-family: "Montserrat", serif;
  transition: all 0.3s;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  line-height: 1.5;
  background-color: var(--ff-background-color);
  box-shadow: none;
  overflow-x: hidden;
  overflow-y: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", serif;
}

ul,
p {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-family: "Montserrat", serif;
}

span {
  font-family: "Montserrat", serif;
}

ul li {
  list-style-type: none;
}

a {
  text-decoration: none;
  font-family: "Montserrat", serif;
}

.form-control:focus {
  box-shadow: none;
}

input:focus-visible {
  outline: none;
}

.form-control:focus {
  box-shadow: none;
  border-color: transparent;
}

img {
  max-width: 100%;
}

:root {
  --ff-primary-color: #e83f53;
  --ff-white-color: #ffffff;
  --ff-heading-color: #222222;
  --ff-para-color:#B4C5DD;
  --ff-footerbg-color: #333333;
  --ff-border-color:#212731;
  --ff-demoborder-color:#283342;
  --ff-background-color:#181e26;
}

:focus-visible {
  outline: none;
  border-color: transparent;
}

/* Scroll */
::-webkit-scrollbar {
  width: 8px;
} 
::-webkit-scrollbar-track {
  background-color: #fff;
  -webkit-border-radius: 10px;    
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  height: 100px;
  background-color: var(--ff-primary-color);
}
/* Scroll */
/* loader css */
.ff-loader {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--ff-background-color);
}
.ff-loader svg path{
  fill: var(--ff-primary-color);
}
.loader_circle_1{
  animation: rotateClockwise 1.5s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes rotateClockwise {
  from {
  transform: rotate(0deg);
  }
  to {
  transform: rotate(360deg);
  }
}
/*-------------- Header section css start ----------*/
.ff_banner_section{
  background-image: url('../images/banner-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px 0 0;
  overflow: hidden;
}
.ff_heading_text{
  position: relative;
  z-index: 1;
  text-align: center;
}
.ff_heading {
  padding: 0 0 30px;
}
.ff-banner-img {
  text-align: center;
  padding: 0 0 0 12px;
}
.ff_heading h1{
  font-size: 50px;
  font-weight: 700;
  color: var(--ff-white-color);
  padding: 24px 0 20px;
}
.ff_heading p {
  font-size: 18px;
  font-weight: 400;
  color: var(--ff-para-color);
  padding: 0px 0 27px;
  margin: 0 auto;
  text-align: center;
}
.ff_btn {
  min-width: 150px;
  max-width: 100%;
  border-radius: 0px;
  background-color: var(--ff-primary-color);
  min-height: 45px;
  display: inline-block;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transform: perspective(1px) translateZ(0);
  -webkit-transform: perspective(1px) translateZ(0);
  -o-transform: perspective(1px) translateZ(0);
  padding: 9px 0;
  border: 1px solid var(--ff-primary-color);
}
.ff_btn a{
  font-size: 16px;
  color: var(--ff-white-color);
  font-weight: 500;
  text-align: center;
  font-family: "Montserrat", serif;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ff_btn:hover{
  background-color: transparent;
  animation: scaleLoop 1s ease-in-out 2;
}
@keyframes scaleLoop {
  0%,
  100% {
    transform: scale(1)
  }
  50% {
    transform: scale(1.08);
  }
}
.ff_banner_right img{
  position: absolute;
}
.ff_banner_right img:nth-child(1) {
  right: 678px;
  top: 19%;
}
.ff_banner_right img:nth-child(2) {
  top: 14%;
  right: 263px;
}
.ff_banner_right img:nth-child(3) {
  right: -7%;
  top: 3%;
}
.ff_banner_right img:nth-child(4) {
  left: 51%;
  bottom: 70px;
}
.ff_banner_right img:nth-child(5) {
  right: 5px;
  bottom: 45px;
}
@keyframes floating {
  from {
    -webkit-transform: rotate(0deg) translate(-12px) rotate(0deg);
    -moz-transform: rotate(0deg) translate(-12px) rotate(0deg);
    -ms-transform: rotate(0deg) translate(-12px) rotate(0deg);
    -o-transform: rotate(0deg) translate(-12px) rotate(0deg);
    transform: rotate(0deg) translate(-12px) rotate(0deg);
    transition:1s ease-in-out;
  }
  to {
    -webkit-transform: rotate(360deg) translate(-12px) rotate(-360deg);
    -moz-transform: rotate(360deg) translate(-12px) rotate(-360deg);
    -ms-transform: rotate(360deg) translate(-12px) rotate(-360deg);
    -o-transform: rotate(360deg) translate(-12px) rotate(-360deg);
    transform: rotate(360deg) translate(-12px) rotate(-360deg);
    transition:1s ease-in-out;
  }
}
.ff_menu_wrapper {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0px;
  box-shadow: none;
  background-color: transparent;
  padding: 30px 0 30px;
  margin: auto;
  max-width: 1700px;
}
.ff_navmenu_wrapper{
  text-align: end;
}
.ff_navmenu_wrapper ul li {
  display: inline-block;
  position: relative;
  padding: 0 35px;
}
.ff_navmenu_wrapper ul li a{
  font-size: 16px;
  color: var(--ff-white-color);
  font-weight: 400;
  font-family: "Montserrat", serif;
  transition: all .5s ease-in-out;
}
.ff_navmenu_wrapper ul li a:hover{
  color: var(--ff-heading-color);
}
.ff_nav_menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 44px;
}
.ff_toggle{
  display: none;
}
.ff_toggle span, .ff-cancel-btn span {
  display: block;
  height: 2px;
  width: 15px;
  margin-bottom: 2px;
  background: var(--ff-white-color);
  transition: all .5s ease-in-out;
}
/* version section Design css */
.ff_sec{
  position: relative;
  padding: 100px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.ff_sec.ff_version_section {
  padding: 85px 0 29px;
}
.ff_heading_sec {
  text-align: center;
  margin: 0 0 32px;
}
.ff_head_text h3{
  font-size: 18px;
  font-weight: 500;
  color: var(--ff-primary-color);
  padding: 0 0 10px;
  text-transform: uppercase;
}
.ff_head_text h2{
  font-size: 38px;
  color: var(--ff-white-color);
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
}
.ff_ver_box {
  margin: 0 auto 30px;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
}
.ff_ver_box_img img{
  background-color: #f4f4f4;
  box-shadow: 5.353px 5.945px 20px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid #181e26;
  transition: all .5s ease-in-out;
}
.ff-view-btn {
  max-width: 300px;
  min-width: 200px;
  background-color: transparent;
  padding: 12px 0;
  border: 1px solid var(--ff-demoborder-color);
  transition: all .5s ease-in-out;
}
.ff-view-btn h4{
  font-size: 18px;
  font-weight: 500;
  color: var(--ff-white-color);
  text-align: center;
  transition: all .5s ease-in-out;
}
.ff_ver_box_img img{
  transition: all .5s ease-in-out;
  transform: scale(1);
}
.ff_ver_box:hover .ff-view-btn {
  background-color: #e83f53;
}
.ff_ver_box:hover .ff_ver_box_img img{
  transform: scale(1.07);
}
.ff-ver-btn {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 15px 0px 5px;
}
.ff-ver-btn  h3{
  font-size: 115px;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(104, 104, 104, .4);
  color: transparent;
  transform: translateX(-20px);
  transition: .3s cubic-bezier(.78,.2,.21,.88);
  visibility: hidden;
  opacity: 0;
   margin-top: -22px; 
  /*margin-top: -10px;*/
  font-family: "Barlow", sans-serif;
}
.ff_ver_box:hover .ff_ver_box_img{
  border: 1px solid var(--ff-demoborder-color);
}
.ff_ver_box_img {
  position: relative;
  overflow: hidden;
}
.ff_ver_box:hover .ff-ver-btn  h3{
  visibility: visible;
  opacity: 1;
  transform: translateX(0px);
}
.ff_ver_leaf img{
  position: absolute;
  z-index: -1;
  animation: 3s installation01 infinite alternate;
}
.ff_ver_leaf img:nth-child(1){
  left: 0;
  bottom: 0px;
}
.ff_ver_leaf img:nth-child(2){
  right: 0;
  top: 30px;
}
.ff_ver_leaf img:nth-child(3) {
  left: -10%;
  top: 31%;
}
@keyframes installation01 {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}
.ff_blog_leaf img{
  position: absolute;
  animation: 3s installation01 infinite alternate;
  z-index: -1;
}
.ff_blog_leaf img:nth-child(1){
  left: 0;
  top: 0;
}
.ff_blog_leaf img:nth-child(2){
  right: 0;
  top: 0;
}
/* Responsive-section design */
.ff_responsive_section{
  background-image: url('../images/res-bgimg.png');
  padding: 86px 0 0;
  max-width: 1820px;
  margin: 0 auto;
}
.ff_heading_sec.ff_head_res{
  margin: 0 0 13px;
}
.ff_head_res .ff_head_text h2{
  color: var(--ff-white-color);
}
.ff_resp_img {
  position: relative;
  z-index: 1;
  text-align: center;
  left: 0;
  top: 30px;
}
.ff_resp_shape img {
  position: absolute;
  z-index: -1;
}
.ff_resp_shape img:nth-child(1) {
  left: 13px;
  bottom: 28%;
  animation: 3s right infinite alternate;
}
.ff_resp_shape img:nth-child(2) {
  right: 20px;
  top: 10%;
  animation: 3s right infinite alternate;
}
@keyframes right {
	0% {
		transform: translateX(0px);
	}
	50% {
		transform: translateX(-20px);
	}
}
.ff-resp-img img {
  position: absolute;
  right: -9px;
  bottom: 0;
  z-index: 1;
  animation: leftright 2s linear infinite alternate;
}
@keyframes leftright{
  0% {
    transform: translateX(0px);        
  }
  50% {
      transform: translateX(-10px);        
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg) translate(-5px) rotate(0deg);
		-moz-transform: rotate(0deg) translate(-5px) rotate(0deg);
		-ms-transform: rotate(0deg) translate(-5px) rotate(0deg);
		-o-transform: rotate(0deg) translate(-5px) rotate(0deg);
		transform: rotate(0deg) translate(-5px) rotate(0deg);
		transition: 1s ease-in-out;
	}
	to {
    -webkit-transform: rotate(360deg) translate(-5px) rotate(-360deg);
		-moz-transform: rotate(360deg) translate(-5px) rotate(-360deg);
		-ms-transform: rotate(360deg) translate(-5px) rotate(-360deg);
		-o-transform: rotate(360deg) translate(-5px) rotate(-360deg);
		transform: rotate(360deg) translate(-5px) rotate(-360deg);
		transition: 1s ease-in-out;
	}
}
/* inner pages css start */
.ff_trainning_section, .ff_classes_section{
  padding: 91px 0 90px;
}
.ff_trainning_section{
  padding: 0 0 90px;
}
.ff_class_head , .ff_train_head{
  text-align: left;
}
.ff_class_head h2, .ff_train_head h2{
  text-align: left;
  padding: 0 0 23px;
}
.ff_class_head p, .ff_train_head p{
  font-size: 16px;
  font-weight: 400;
  color: var(--ff-para-color);
  text-align: left;
  max-width: 545px;
}
/* inner pages css end */
/* portfolio section css */
.ff_feature_section {
  padding: 20px 0 100px;
}
.ff_feature_box p{
  font-size: 20px;
  font-weight: 500;
  color: var(--ff-white-color);
  font-family: "Montserrat", serif;
  text-align: center;
  padding: 16px 0 0;
}
.ff_feabox_wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.ff_feabox_wrapper .ff_feature_box{
  flex: 0 0 22%;
  text-align: center;
  transition: all .5s ease-in-out;
  padding: 40px 0;
  border: 1px solid var(--ff-demoborder-color);
 background-color: transparent;
}
.ff_feature_box:hover{
  transform: translateY(-10px);
  border: 1px solid var(--ff-border-color);
  background-color: var(--ff-border-color);
}
.ff_feat_img img{
  transition: all .5s linear;
  min-height: 55px;
  max-height: 64px;
  max-width: 100%;
  object-fit: cover;
}
.ff_feature_box:hover .ff_feat_img img{
  transform: scale(1.1) translateY(-10px);
}
.ff_feabox_wrapper .ff_feature_box:hover{
  border: 1px solid var(--ff-demoborder-color);
}
/* footer section css */
.ff_footer_section{
  background-image: url('../images/footer-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 1820px;
  padding: 110px 0 0px;
  margin: 0 auto 50px;
}
.ff_footer_heading {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0 65px;
}
.ff_footer_text h4{
  font-size: 38px;
  font-weight: 300;
  color: var(--ff-white-color);
  padding: 14px 0 7px;
}
.ff_footer_text h3 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--ff-white-color);
  text-align: center;
  padding: 0 0 10px;
}
.ff_footer_text {
  padding: 0 0 50px;
}
.ff_footer_img img{
  position: absolute;
}
.ff_footer_img img:nth-child(1) {
  left: -28px;
  bottom: 0;
  animation: leftright 2s linear infinite alternate;
}
.ff_footer_img img:nth-child(2) {
  right: -20px;
  bottom: 0;
  animation: rightleft 2s linear infinite alternate;
}
@keyframes rightleft{
  0% {
    transform: translateX(-10px);        
  }
  50% {
      transform: translateX(-0px);        
  }
}

.ff_copyright_section{
  padding: 13px 0;
  background-color: var(--ff-copyright-bgcolor);
}
.ff_copy_text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--ff-white-color);
  text-align: center;
  padding: 12px 0;
  border-top: 1px solid #181e26;
}

/*-------------- go-top section css start ----------*/
.go-top{
  position: fixed;
  bottom: 7%;
  right: 3%;
  padding: 20px;
  display: none;
  cursor: pointer;
  -webkit-font-smoothing:antialiased;
  height: 50px;
  width: 50px;
  border-radius: 10px;
  background:var(--ff-primary-color);
  transition: all .5s ease-in-out;
}
.go-top svg {
  position: absolute;
  top: 17px;
  left: 20px;
  transform: rotate(90deg);
}
.go-top svg path{
  fill: var(--ff-white-color);
}
.go-top:hover{
  transform: translateY(-10px);
}
/*-------------- go-top section css end ----------*/