/* ----------------------------------------------------------------------------------------
Template: GYMFIT
 -----------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]

MAIN PAGES

1. BODY
2. HEADER
3. SLIDER
4. ABOUT 
5. OUR COURSES
6. TRAINERS
7. SCHEDULE
8. EXPLORE(VIDEO)
9. BLOG
10. NEWSLETTER
11. FOOTER

INNER PAGES
12.ABOUT PAGE
13.OUR COURSES PAGE
14.TRAINERS PAGE
15.BLOG PAGE
19.BLOG DETAILS PAGE
20.CONTACT US PAGE
21.COMING SOON PAGE
22.ERROR PAGE
23.LOADER
-------------------------------------------------------------------*/

/* 
---------------------------------------------
body
--------------------------------------------- 
*/
* {
  outline: none;
  -webkit-box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  height: 100%;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.page_loader {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #242529;
  display: flex;
  justify-content: center;
  align-items: center;
}
a {
  text-decoration: none;
}

/* fonts */
@font-face {
  font-family: "Poppins";
  src: url("Poppins-Medium.html") format("woff2"),
    url("Poppins-Medium-2.html") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"),
    url("../fonts/Poppins-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2"),
    url("../fonts/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraBold.woff2") format("woff2"),
    url("../fonts/Poppins-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.woff2") format("woff2"),
    url("../fonts/Poppins-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* 
---------------------------------------------
navigation bar
--------------------------------------------- 
*/
.site-logo
{
  width: 200px;
}
header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 999;
  padding-top: 30px;
}
header.shrink {
  width: 100%;
  padding: 15px 0;
  background: #1f1815;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  z-index: 99;
  top: 0;
  position: fixed;
}
.bg-light {
  background-color: transparent !important;
  padding-top: 10px;
  padding: 0;
  margin: 0;
}
.navbar-light .navbar-nav .nav-link {
  color: #ffffff;
}
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: #ffffff;
}
a.nav-btn {
  width: 170px;
  background-color: transparent;
  border-radius: 25px;
  padding: 11px 30px;
  border-top: 1px solid #9258f9;
  border-left: 1px solid #c253db;
  border-bottom: 1px solid #dc58c0;
  border-right: 1px solid #e8799b;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  outline: none;
  transition: all ease 0.5s 0s;
}
li.btn-nav {
  margin: 7px 0 0 0;
}
a.nav-btn:hover {
  background-image: linear-gradient(
    to right,
    #9258f9,
    #c253db,
    #dc58c0,
    #e767aa,
    #e8799b
  );
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  border: 1px solid transparent;
  transition: all ease 0.5s 0s;
}
li.nav-item {
  padding: 0 12px;
}
li.nav-item a {
  color: #ffffff;
  text-decoration: none;
}
.navbar-light .navbar-nav .nav-link:active,
.navbar-light .navbar-nav .nav-link:hover {
  color: #ffffff;
}
.navbar-light .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255);
}
.collapse.show {
  display: block;
  background-color: #1f1815;
  padding: 0;
}
.navbar-toggler.collapsed .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.navbar-toggler .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 10% 10%;
  -ms-transform-origin: 10% 10%;
  transform-origin: 10% 10%;
}
.navbar-toggler .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 20% 10%;
  -ms-transform-origin: 20% 10%;
  transform-origin: 20% 10%;
}
.navbar-toggler .icon-bar {
  width: 31px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.navbar-toggler .icon-bar {
  display: block;
  width: 32px;
  height: 3px;
  border-radius: 1px;
}
.navbar-toggler .icon-bar {
  background-color: #ffffff;
}
.navbar-toggler.collapsed .icon-bar:nth-of-type(2) {
  opacity: 1;
  filter: alpha(opacity=100);
}
.navbar-toggler .icon-bar:nth-of-type(2) {
  opacity: 0;
  filter: alpha(opacity=0);
}
.navbar-toggler.collapsed .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.navbar-toggler .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 10% 90%;
  -ms-transform-origin: 10% 90%;
  transform-origin: 10% 90%;
}
.inner-page .navbar-toggler .icon-bar {
  background-color: #000000;
}
.inner-page .collapse.show {
  display: block;
  background-color: #ffffff;
  padding: 30px 0;
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0);
  border-color: transparent;
}
li.nav-item.btn:hover {
  background-color: transparent;
  box-shadow: none;
}
.inner-page li.nav-item a {
  color: #2e3438;
}
button:focus {
  outline: transparent;
}
span.icon-bar {
  margin: 5px 0;
}
.navbar-light .navbar-nav .nav-link:after {
  content: "";
  position: absolute;
  left: 20%;
  width: 0%;
  background-image: linear-gradient(
    to right,
    #9258f9,
    #c253db,
    #dc58c0,
    #e767aa,
    #e8799b
  );
  height: 3px;
  bottom: 4px;
  border: 0;
  margin: 0;
  transition: 0.5s all ease;
}
.navbar-light .navbar-nav .nav-link:hover:after,
.navbar-light .navbar-nav .nav-link:active:after {
  width: 65%;
  transition: 0.5s all ease;
}
/* dropdown menu */

.dropdown:hover > .dropdown-menu {
  display: block;
  transition: 0.5s all ease-in;
}
.dropdown > .dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}
li.dropdown.nav-item a {
  color: #1f1815;
  text-decoration: none;
  position: relative;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  z-index: 2;
  display: inline-block;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #ffffff;
}
li.dropdown.nav-item a:after {
  content: "";
  position: absolute;
  left: 13%;
  width: 0%;
  background-image: linear-gradient(
    to right,
    #9258f9,
    #c253db,
    #dc58c0,
    #e767aa,
    #e8799b
  );
  height: 3px;
  bottom: 4px;
  border: 0;
  margin: 0;
  transition: 0.5s all ease;
}
li.dropdown.nav-item a:hover:after,
li.dropdown.nav-item a:active:after {
  width: 65%;
  transition: 0.5s all ease;
}
.banner-img-section h1 {
  font-size: 68px;
  text-transform: uppercase;
  font-weight: 700;
  background: -webkit-linear-gradient(#ff6c00, #e06a16);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* 
---------------------------------------------
start header banner
--------------------------------------------- 
*/
.hero-header-banner-section {
	position: relative;
	display: block;
	background-image: url(../img/main-page/header-bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 200px 0;
}
.content-btn {
  background-image: linear-gradient(
    to right,
    #f76c06,
    #f76c06
  );
  width: 180px;
  text-align: center;
  display: block;
  padding: 10px 0;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 25px;
  transition: 0.5s all ease;
  color: #fff;
  text-decoration: none;
}
.content-btn:hover {
  border-top: 1px solid #9258f9;
  border-left: 1px solid #c253db;
  border-bottom: 1px solid #dc58c0;
  border-right: 1px solid #e8799b;
  color: #ffffff;
  text-decoration: none;
  background: none;
  transition: 0.5s all ease;
}
.content-btn a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
}
.hero-header-banner-section .content-section p {
  display: block;
  margin: 20px auto;
  text-align: left;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  letter-spacing: 0.5px;
}
.hero-header-banner-section .banner-img-section {
  display: block;
  margin: 0 auto;
  text-align: left;
}
li.nav-item {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  z-index: 2;
  display: inline-block;
}
.down-arrow {
  position: absolute;
  display: block;
  bottom: -3%;
  left: 49%;
  background-image: linear-gradient(
    to right,
    #f76c06,
    #f76c06,
    #f18131,
    #f76c06,
    #ca7030
  );
  border-radius: 50%;
  padding: 10px;
  height: 45px;
  text-align: center;
  width: 45px;
  cursor: pointer;
  box-shadow: 0 4px 15px #7c3808;
}
.down-arrow img.img-fluid {
  width: 60%;
}
/* 
---------------------------------------------
ABOUT SECTION
--------------------------------------------- 
*/
.about-btn {
  background-image: linear-gradient( to right, #f76c06, rgb(211, 70, 15) );
  width: 180px;
  text-align: center;
  display: block;
  padding: 10px 0;
  border-radius: 25px;
  margin-top: 50px;
  box-shadow: 0px 0px 10px #f76c06;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s all ease;
}
.about-btn:hover {
  color: #ffffff;
  text-decoration: none;
  box-shadow: none;
  transition: 0.5s all ease;
}
.about-btn a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
}
.about-header h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  color: #322b40;
  background: url(../img/main-page/line.png) left bottom / 200px
    no-repeat;
}
.self h4 {
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  color: #322b40;
  background: url(../img/main-page/about-header-line.webp) left bottom / 200px
    no-repeat;
}
.about-header h1 span {
  color: #f76c06;
}
.about-content p {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  color: #616783;
  letter-spacing: 0.5px;
}
.hero-about-content {
  margin: 30px 0 0 0;
}
section.hero-about {
  margin: 80px 0;
}
.about-content {
  margin-top: 50px;
}
/* 
---------------------------------------------
OUR COURSES
--------------------------------------------- 
*/
section.hero-course-banner-section {
  position: relative;
  display: block;
  background-image: url(../img/inner-page/course-bg-img.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 150px 0;
}
.our-courses-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  color: #322b40;
  background: url(../img/main-page/line.png) center bottom / 200px
    no-repeat;
}
.our-courses-header h2 span {
  color: #f76c06;
}
.our-courses-header p {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
  color: #616783;
  display: block;
  margin: 30px auto;
  letter-spacing: 0.5px;
}
.course-img {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.course-content h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  text-align: center;
  color: #322b40;
  display: block;
  letter-spacing: 0.5px;
  margin: 20px 0;
}
.course-content p {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
  color: #616783;
  margin: 0;
}
.our-courses-box {
  display: block;
  position: relative;
  background-color: #ffffff;
  padding: 20px 30px;
}
section.hero-courses.section {
  padding: 80px 0;
  background-color: #f8f8f9;
}
.our-courses-box {
  display: block;
  position: relative;
  background-color: #ffffff;
  padding: 30px;
  margin: 15px 0;
  border-radius: 10px;
  box-shadow: 0px 0px 15px #f8e6ff;
  transition: 0.5s all ease;
}
.our-courses-box:hover {
  background-image: linear-gradient(
    to top,
    #f76c06,
    rgb(211, 70, 15)
   
  );
  transition-duration: 5s;
}
.our-courses-box:hover .course-content h2 {
  color: #ffffff;
}
.our-courses-box:hover .course-content p {
  color: #ffffff;
}
.course-btn {
  background-image: linear-gradient(
    to right,
    #f76c06,
    rgb(211, 70, 15)
  );
  width: 180px;
  text-align: center;
  display: block;
  margin: 0 auto;
  padding: 10px 0;
  border-radius: 25px;
  margin-top: 10px;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0px 0px 20px #f76c06;
  transition: 0.5s all ease;
}
.course-btn:hover {
  box-shadow: none;
  color: #ffffff;
  text-decoration: none;
  transition: 0.5s all ease;
}
.course-btn a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
}
.our-courses-box:hover .course-img img.img-fluid {
  filter: grayscale(1) brightness(0) invert(1) opacity(1);
  -webkit-filter: grayscale(1) brightness(0) invert(1) opacity(1);
  -moz-filter: grayscale(1) brightness(0) invert(1) opacity(1);
}
/* 
---------------------------------------------
OUR TRAINERS
--------------------------------------------- 
*/

.trainer-header h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  color: #322b40;
  background: url(../img/main-page/line.png) center bottom / 200px
    no-repeat;
}
.trainer-header h1 span {
  color: #f76c06;
}
.trainer-header p {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
  color: #616783;
  display: block;
  letter-spacing: 0.5px;
  margin: 30px auto;
}
section.hero-trainers {
  margin: 80px 0;
}
.trainer-img {
  position: relative;
  display: block;
  overflow: hidden;
  
}
.trainer-img:hover {
  transform: translateY(-10px);
  transition: 0.5s ease-in-out;
  /* border: 10px solid rgb(64, 3, 70); */
}
.trainer-img img {
  text-align: center;
  width: 100%;
}
.trainers-tag-name h2 {
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  color: #ffffff;
  background-image: linear-gradient(
    to right,
   
    #ca510b,
    #f76a0c
  );
  padding: 16px 39px;
  margin: 0;
  width: 213px;
  border-radius: 6px 6px 0 0;
}
.trainers-tag-name {
  position: absolute;
  top: 45%;
  right: -66px;
  display: block;
  opacity: 1;
  transform: rotateZ(270deg);
}
.trainer-box:hover .trainers-tag-name {
  opacity: 0;
}
.trainer-box .trainer-box-content {
  position: absolute;
  display: block;
  background-image: linear-gradient(
    to top,
  );
  width: 100%;
  height: 100%;
  bottom: 0;
  border-radius: 6px;
  padding: 0 30px;
  padding-top: 125px;
  opacity: 0;
  transition: 0.7s all ease;
}
.trainer-box:hover .trainer-box-content {
  position: absolute;
  display: block;
  background-image: linear-gradient(
    to top,
   
  );
  width: 100%;
  height: 100%;
  bottom: 0;
  border-radius: 6px;
  padding: 0 30px;
  padding-top: 125px;
  opacity: 1;
  transition: 0.7s all ease;
}
.trainer-box-content ul {
  padding: 0;
  display: block;
  text-align: center;
}
.trainer-box-content ul li {
  position: relative;
  display: inline-block;
  margin: 0 10px;
  font-size: 18px;
}
.trainer-box-content ul li a {
  color: #ffffff;
  text-decoration: none;
}
.trainer-box-content h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 13.45;
  text-align: center;
  color: #ffffff;
  margin-bottom: 5px;
}
.trainer-box-content h5 {
  font-size: 12px;
  font-weight: 500;
  line-height: 2;
  color: #eb7a98;
  text-align: center;
  background-color: #fff;
  width: 30%;
  padding: 4px 0;
  margin: 0 auto;
  border-radius: 25px;
}
.trainer-box-content p {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin: 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.trainer-box-content ul li {
  transform: scale(1);
  transition: 0.5s all ease;
}
.trainer-box-content ul li:hover {
  transform: scale(1.3);
  transition: 0.5s all ease;
}
/* --------------owl carousel-------------- */
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
#slider1 .item {
  margin: 0 15px;
}
#slider1 .owl-pagination {
  display: block;
  margin: 0 auto;
  text-align: center;
}
#slider1 .owl-dots {
  display: block;
  text-align: center;
  margin: 0 6px;
  margin-top: 20px;
}
#slider1 .owl-dot span {
  background-color: #b3b3b3;
  height: 8px;
  width: 8px;
  display: inline-block;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  margin: 0px 5px;
}
#slider1 .active span {
  background-color: #eb7a98;
  width: 30px;
  border-radius: 10px;
}
#slider1 .owl-prev {
  display: none;
}
#slider1 .owl-next {
  display: none;
}
#slider2 .owl-pagination {
  display: block;
  margin: 0 auto;
  text-align: center;
}
#slider2 .owl-dots {
  display: block;
  text-align: center;
  margin: 0 6px;
  margin-top: 20px;
}
#slider2 .owl-dot span {
  background-color: #b3b3b3;
  height: 8px;
  width: 8px;
  display: inline-block;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}
#slider2 .active span {
  background-color: #eb7a98;
  width: 30px;
  border-radius: 10px;
}
#slider2 .owl-prev {
  display: none;
}
#slider2 .owl-next {
  display: none;
}

/* 
---------------------------------------------
VIDEO SECTION
--------------------------------------------- 
*/

section.hero-routine {
  display: block;
  position: relative;
  padding: 80px 0;
  background-color: #f8f8f9;
}
.routine-title h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  color: #322b40;
  background: url(../img/main-page/line.png) center bottom / 200px
    no-repeat;
}
.routine-title h1 span {
  color: #f76c06;
}
.routine-title p {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
  color: #616783;
  display: block;
  letter-spacing: 0.5px;
  margin: 30px auto;
}
/* Center website */
.main {
  max-width: 100%;
  margin: auto;
}
div#pills-tabContent {
  width: 100%;
  display: block;
}
h1 {
  font-size: 50px;
  word-break: break-all;
}
/* Add padding BETWEEN each column */
.row,
.row > .column {
  padding: 8px;
}
/* Create three equal columns that floats next to each other */
.column {
  width: 25%;
  display: none;
}
.content {
  position: relative;
  display: block;
  text-align: center;
}
/* The "show" class is added to the filtered elements */
.show {
  display: block;
}
/* Style the buttons */
div#myBtnContainer .btn {
  border: none;
  outline: none;
  padding: 6px 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: #322b40;
  border-radius: 25px;
}
div#myBtnContainer .btn:focus {
  background-color: #f76c06;
  color: white;
  box-shadow: none;
  border-radius: 25px;
}
.btn:hover {
  background-color: #ddd;
}
div#myBtnContainer .btn.active {
  background-color: #f17a25;
  color: white;
  border-radius: 25px;
}
.time p {
  padding: 5px 4px;
  margin: 0 auto;
  background-image: linear-gradient( to right, #f76c06, rgb(211, 70, 15) );
  color: #ffffff !important;
  border-radius: 20px;
  font-size: 14px !important;
  margin-top: 7px;
  display: block;
  width: 45%;
 
}
.time {
  margin-top: 15px;
}
.content h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  color: #616685;
  margin-top: 30px;
}
.content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #616685;
}
#myBtnContainer {
  background-color: #f0f0f0;
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 72%;
  border-radius: 25px;
  margin-bottom: 40px !important;
}
.footer-tag- {
  margin-top: 10px;
}
/* 
---------------------------------------------
VIDEO SECTION
--------------------------------------------- 
*/

.hero-video-section {
  background-image: linear-gradient( to right, rgb(249 88 88 / 70%), rgb(219 125 83 / 70%), rgb(255 147 26 / 70%), rgb(246 108 114 / 70%), rgb(246 133 12 / 70%) ), url(../img/main-page/video-bg-img.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 80px 0;
}
.video-section {
  display: block;
  position: relative;
  text-align: center;
  margin: 0 auto;
}
.video-section h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  color: #ffffff;
  margin: 0;
}
.video-section p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
  margin: 0;
}
.video-img img.img-fluid {
  border-radius: 50%;
  transform: scale(1);
  transition: 0.5s all ease;
}
.video-img img.img-fluid:hover {
  border-radius: 50%;
  transform: scale(1.1);
  transition: 0.5s all ease;
}
.video-img {
  position: relative;
  display: block;
  margin: 35px 0 25px 0;
}
.video-circle {
  position: absolute;
  display: block;
  bottom: 0%;
  top: 50%;
  left: 50%;
  width: 101px;
  height: 101px;
  border-radius: 50%;
  background: #c89bcb;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.video-img a img.img-fluid {
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 2;
}
/* 
---------------------------------------------
OUR BLOG
--------------------------------------------- 
*/

.hero-blog-section {
  margin: 80px 0;
}
.blog-header h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  color: #322b40;
  background: url(../img/main-page/line.png) center bottom / 200px
    no-repeat;
}
.blog-header p {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
  color: #616783;
  display: block;
  letter-spacing: 0.5px;
  margin: 30px auto;
}
.blog-header h1 span {
  color: #e45310;
}
.blog-content p:nth-child(1) {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #616783;
  margin-bottom: 0px;
}
.blog-content h2 {
  text-align: center;
}
.blog-content h2 a {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  color: #8e56fd;
}
.blog-box:hover h2 a {
  text-decoration: none;
  color: #d84cc7;
}
.blog-content p {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
  color: #616783;
  letter-spacing: 0.5px;
}
#slider2.owl-carousel .owl-item img {
  display: inline-block;
}
.blog-link a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  color: #d84cc7;
}
.blog-link a:hover {
  text-decoration: none;
  color: #d84cc7;
  transition: all ease 0.5s 0s;
  opacity: 0.5;
}

.blog-link {
  position: relative;
  display: block;
  text-align: center;
}
.blog-box {
  position: relative;
  display: block;
  box-shadow: 0px 5px 15px 0px #fca178;
  margin: 30px 15px;
  border-radius: 10px;
  transition: 0.5s all ease;
}
.blog-content {
  display: block;
  padding: 40px 25px;
}
.blog-box:hover {
  box-shadow: 0px 3px 15px 0px #e76901;
  transition: 0.5s all ease;
}
.blog-img {
  position: relative;
  display: block;
  overflow: hidden;
}
.blog-box .img-overlay {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-image: none;
  top: 0;
  z-index: 5;
  border-radius: 6px 6px 0 0;
  transition: 0.5s all ease;
}
.blog-box:hover .img-overlay {

  border-radius: 6px 6px 0 0;
  transition: 0.5s all ease;
}
.blog-link a img.img-fluid {
  transform: rotateX(0deg);
  width: 4%;
  transition: 0.5s all ease;
}
.blog-link a:hover img.img-fluid {
  transform: rotateX(360deg);
  transition: 0.5s all ease;
}
/* 
---------------------------------------------
FOOTER SECTION
--------------------------------------------- 
*/

footer {
  position: relative;
  display: block;
  margin: 0px 0;
  background-image: url(../img/main-page/footer-bg-img.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 140px;
}
.footer-logo {
  display: block;
  text-align: center;
  /* margin-top: 60px; */
}
.footer-nav ul {
  padding: 0;
  list-style-type: none;
  text-align: center;
  display: block;
  margin: 30px auto;
  border-top: 1px dashed #ffffff;
  border-bottom: 1px dashed #ffffff;
  max-width: 800px;
}
.footer-nav ul li {
  display: inline-block;
  margin: 0 15px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  transition: 0.5s all ease;
}
.footer-nav ul li a {
  color: #ffffff;
  text-decoration: none;
}
.footer-nav ul li:hover a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.5s all ease;
}
.footer-content p {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  width: 88%;
  margin: 0 auto;
  letter-spacing: 0.5px;
}
i.fa.fa-phone {
  height: 40px;
  width: 40px;
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  line-height: 40px;
  font-size: 20px;
  text-align: center;
  /* line-height: 40px; */
}
/* i.fa.fa-envelope {
  height: 40px;
  width: 40px;
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  line-height: 40px;
  font-size: 15px;
  text-align: center; */
  /* line-height: 40px; */
/* } */
/* footer span {
  margin-right: 10px;
}
.footer-social-link ul {
  padding: 0;
  list-style-type: none;
  text-align: center;
  display: block;
  margin: 20px auto;
}
.footer-social-link ul li {
  display: inline-block;
  margin: 0 25px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.footer-social-link ul li a {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  letter-spacing: 0.5px;
}
.footer-social-link ul li:hover a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.5s all ease;
}
.footer-social-link ul li span img.img-fluid {
  padding: 12px;
  width: 40px;
}
.footer-tag- p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  color: #ffffff;
  margin: 0;
}
.footer-tag-2 ul {
  padding: 0;
  list-style-type: none;
  text-align: right;
  display: block;
  margin-bottom: 15px;
}
.footer-tag-2 ul li {
  display: inline-block;
  margin: 0 5px;
  font-size: 21px;
  background: transparent;
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.5s all ease;
}
.footer-tag-2 ul li:hover {
  background-color: #7038b9;
  box-shadow: 0 0 15px #9c7ae4;
  transition: 0.5s all ease;
}
.footer-tag-2 ul li a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}
.bottom-line {
  width: 100%;
  display: block;
  border-top: 1px solid #fff;
  margin: 10px 0;
}
.footer-social-link {
  margin: 30px 0 80px 0;
  display: block;
}
.card-box {
  position: relative;
  width: 80%;
  background-color: #ffffff;
  text-align: center;
  border-radius: 6px;
  padding: 60px 0;
  top: -50px;
  box-shadow: 0 0 20px rgb(159 93 235 / 40%);
  margin: 0 auto;
  margin-bottom: -50px;
}
.card-box-title h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  color: #322b40;
  background: url(../img/main-page/line.png) center bottom / 200px
    no-repeat;
}
.card-box-title h1 span {
  color: #f76c06;
}
.card-box-content p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #616783;
  margin: 0;
  letter-spacing: 0.5px;
}
.card-box-input {
  display: inline-block;
  position: relative;
  margin: 30px 0;
}
input.card-input {
  display: block;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.5;
  color: #000;
  border-radius: 25px;
  border: none;
  box-shadow: 0 3px 15px rgba(159, 93, 235, 0.5);
  padding: 12px 0;
  padding-left: 15px;
  padding-right: 60px;
}
.input-img {
  position: absolute;
  top: 0;
  background-image: linear-gradient(
    to right,
    #9258f9,
    #c253db,
    #dc58c0,
    #e767aa,
    #e8799b
  );
  right: 0;
  border-radius: 50%;
  padding: 11px;
} */
/* 
---------------------------------------------
START INNER PAGES
--------------------------------------------- 
*/

/* 
---------------------------------------------
ABOUT PAGE
--------------------------------------------- 
*/
.hero-about-banner-section {
  position: relative;
  display: block;
  background-image: url(../img/inner-page/about-bg-img.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 11% 0;
}
.hero-range-slider {
  background-image: linear-gradient(
      to right,
      #f76c06,
      rgba(255, 159, 15, 0.7)
    
    ),
    url(../img/inner-page/about-img-3.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 20px;
}
.row {
  padding: 0;
  outline: none;
}
.about-img {
  padding: 40px 40px 0 40px;
}
.range-title p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  color: #ffffff;
  margin-top: 40px;
}
.range-title {
  margin-top: 60px;
}
.range-title h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  background: url(../img/main-page/about-line-img.webp) left bottom / 200px
    no-repeat;
}
/* skill */

.container-skills {
  margin: 0;
  max-width: 100%;
}
.bar {
  position: relative;
  background-color: #d8d8d8;
  height: 10px;
  border-radius: 25px;
  margin: 0 0 20px 0;
}
.bar-fill {
  position: absolute;
  height: 10px;
  border-radius: 25px;
}
.bar-title {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  margin: 0 0 5px 10px;
  line-height: 1.5;
  color: #ffffff;
}
.percent {
  position: absolute;
  right: 0;
  color: #ffffff;
}
/* Animations Below - Replace ease-out with infinite for infinite loop*/
/*Edit here for html*/
.bar-fill-html {
  width: 90%;
  background-color: #ffffff;
  animation: bar-fill-html 2s ease-out;
  -moz-animation: bar-fill-html 2s ease-out;
  -webkit-animation: bar-fill-html 2s ease-out;
}
@keyframes bar-fill-html {
  0% {
    width: 0px;
  }
  100% {
    width: 90%;
  }
}
@-moz-keyframes bar-fill-html {
  0% {
    width: 0px;
  }
  100% {
    width: 90%;
  }
}
@-webkit-keyframes bar-fill-html {
  0% {
    width: 0px;
  }
  100% {
    width: 90%;
  }
}
/*Edit here for Javascript*/
.bar-fill-javascript {
  width: 60%;
  background-color: #ffffff;
  animation: bar-fill-javascript 2s ease-out;
  -moz-animation: bar-fill-javascript 2s ease-out;
  -webkit-animation: bar-fill-javascript 2s ease-out;
}
@keyframes bar-fill-javascript {
  0% {
    width: 0px;
  }
  100% {
    width: 60%;
  }
}
@-moz-keyframes bar-fill-javascript {
  0% {
    width: 0px;
  }
  100% {
    width: 60%;
  }
}
@-webkit-keyframes bar-fill-javascript {
  0% {
    width: 0px;
  }
  100% {
    width: 60%;
  }
}
/*Edit here for Jquery*/
.bar-fill-jquery {
  width: 84%;
  background-color: #ffffff;
  animation: bar-fill-jquery 2s ease-out;
  -moz-animation: bar-fill-jquery 2s ease-out;
  -webkit-animation: bar-fill-jquery 2s ease-out;
}
@keyframes bar-fill-jquery {
  0% {
    width: 0px;
  }
  100% {
    width: 70%;
  }
}
@-moz-keyframes bar-fill-jquery {
  0% {
    width: 0px;
  }
  100% {
    width: 70%;
  }
}
@-webkit-keyframes bar-fill-jquery {
  0% {
    width: 0px;
  }
  100% {
    width: 70%;
  }
}
/*Edit here for Responsive*/
.bar-fill-responsive {
  width: 94%;
  background-color: #ffffff;
  animation: bar-fill-responsive 2s ease-out;
  -moz-animation: bar-fill-responsive 2s ease-out;
  -webkit-animation: bar-fill-responsive 2s ease-out;
}
@keyframes bar-fill-responsive {
  0% {
    width: 0px;
  }
  100% {
    width: 90%;
  }
}
@-moz-keyframes bar-fill-responsive {
  0% {
    width: 0px;
  }
  100% {
    width: 90%;
  }
}
@-webkit-keyframes bar-fill-responsive {
  0% {
    width: 0px;
  }
  100% {
    width: 90%;
  }
}
/*Edit here for Photoshop*/
.bar-fill-photoshop {
  width: 20%;
  background-color: #ffffff;
  animation: bar-fill-photoshop 2s ease-out;
  -moz-animation: bar-fill-photoshop 2s ease-out;
  -webkit-animation: bar-fill-photoshop 2s ease-out;
}
@keyframes bar-fill-photoshop {
  0% {
    width: 0px;
  }
  100% {
    width: 20%;
  }
}
@-moz-keyframes bar-fill-photoshop {
  0% {
    width: 0px;
  }
  100% {
    width: 20%;
  }
}
@-webkit-keyframes bar-fill-photoshop {
  0% {
    width: 0px;
  }
  100% {
    width: 20%;
  }
}
/* end skill section */

.testimonials-title h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  color: #322b40;
  background: url(../img/main-page/line.png) center bottom / 200px
    no-repeat;
}
.testimonials-title h1 span {
  color: #8e56fd;
}
.testimonials-title p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #616783;
  display: block;
  margin: 30px auto;
}
#slider3.owl-carousel .owl-item img {
  display: block;
  width: auto;
  border-radius: 100%;
}
.testimonials-box {
  position: relative;
  display: flex;
  width: 100%;
}
.testimonials-img {
  position: relative;
}
.testimonials-content {
  position: relative;
  display: inline-block;
  width: 76%;
  padding-left: 10px;
}
section.hero-testimonials {
  margin: 80px 0;
}
.testimonials-content h2 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  color: #322b40;
  background: url(../img/main-page/line.png) left bottom / 50px
    no-repeat;
}
.testimonials-content span {
  color: #a4a1aa;
  font-weight: 400;
}
.quote {
  position: absolute;
  display: block;
  right: 0;
  top: -15px;
}
.testimonials-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  color: #616783;
  margin: 0;
}
#slider3 .owl-dots {
  display: block;
  margin: 0 auto;
  text-align: center;
}
#slider3 .owl-dot {
  display: inline-block;
  text-align: center;
  margin: 0 0px;
  margin-top: 0px;
}
#slider3 .owl-dot span {
  background-color: #b3b3b3;
  height: 8px;
  width: 8px;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
}
#slider3 .owl-dot.active span {
  background-color: #eb7a98;
  width: 30px;
  height: 8px;
  border-radius: 10px;
}
#slider3 .owl-dot span {
  border: none;
  height: 8px;
  width: 8px;
  background: #b3b3b3;
}
#slider3 .owl-prev {
  display: none;
}
#slider3 .owl-next {
  display: none;
}
#slider3 .owl-dots {
  position: relative;
  display: block;
  width: 100%;
  padding: 0px 10px;
  border-radius: 6px;
  margin: 14px 0;
}
.img-back {
  position: absolute;
  display: block;
  background: #cccccc;
  height: 71px;
  width: 71px;
  border-radius: 50%;
  top: -3px;
  left: -5px;
  z-index: -1;
}
#slider3 .owl-item.active.center .img-back {
  background-image: linear-gradient(
    to right,
    #9258f9,
    #c253db,
    #dc58c0,
    #e767aa,
    #e8799b
  );
}
#slider3 .owl-item .quote img.img-fluid {
  filter: grayscale(1) brightness(1) invert(0) opacity(1);
  -webkit-filter: grayscale(1) brightness(1) invert(0) opacity(1);
  -moz-filter: grayscale(1) brightness(1) invert(0) opacity(1);
}
#slider3 .owl-item.active.center .quote img.img-fluid {
  filter: grayscale(0) brightness(1) invert(0) opacity(1);
  -webkit-filter: grayscale(0) brightness(1) invert(0) opacity(1);
  -moz-filter: grayscale(0) brightness(1) invert(0) opacity(1);
}
#slider3 .owl-item.active.center {
  box-shadow: 0 0 15px rgba(167, 96, 227, 0.5);
}
#slider3 .owl-item {
  padding: 35px 20px;
  margin: 20px 0px;
  border-radius: 10px;
}
/* 
---------------------------------------------
OUR COURSES PAGE
--------------------------------------------- 
*/
.hero-courses-section {
  margin: 80px 0 0 0;
}
/* 
---------------------------------------------
TRAINERS PAGE
--------------------------------------------- 
*/
section.hero-team-section {
  margin: 80px 0 0 0;
}
section.hero-trainer-banner-section {
  position: relative;
  display: block;
  background-image: url(../img/inner-page/team-bg-img.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 150px 0;
}
.banner-img-section {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.content-section p {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  margin-top: 15px;
}
.content-section p span {
  margin: 0 5px;
}
.content-section p a {
  color: #ffffff;
  text-decoration: none;
}
.trainer-box {
  margin: 15px 0;
}
/* 
---------------------------------------------
BLOG PAGE
--------------------------------------------- 
*/
.hero-blog-banner-section {
  position: relative;
  display: block;
  background-image: url(../img/inner-page/blog-bg-img.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 11% 0;
}
.blog-main-section {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}
.blog-card {
  display: inline-block;
  width: 46%;
  margin: 0 20px 0 0;
}
.blog-box-content p:nth-child(1) {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  color: #616783;
}
.blog-box-content p span img.img-fluid {
  width: 5%;
  display: inline-block;
}
.blog-box-content h2 a {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
  color: #322b40;
}
.date_box a {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  color: #616783;
  transition: all ease 0.5s 0s;
  letter-spacing: 0.5px;
}
.date_box a:hover {
  color: #d84cc7;
  text-decoration: none;
  transition: all ease 0.5s 0s;
}
.admin_box a {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  color: #616783;
  transition: all ease 0.5s 0s;
  letter-spacing: 0.5px;
}
.admin_box a:hover {
  color: #d84cc7;
  text-decoration: none;
  transition: all ease 0.5s 0s;
}
i.fa.fa-user {
  color: #d84cc7;
  font-size: 17px;
  padding-left: 1px;
  margin-right: 10px;
}
.blog-box-content p {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  color: #616783;
  letter-spacing: 0.5px;
}
.blog-card-link a {
  font-size: 14px;
  font-weight: 500;
  color: #d84cc7;
  text-decoration: none;
  text-transform: uppercase;
}
.blog-card-link a span img.img-fluid {
  transform: rotateX(0deg);
  width: 4%;
  transition: 0.5s all ease;
}
.blog-card-link a:hover span img.img-fluid {
  transform: rotateX(360deg);
  transition: 0.5s all ease;
}
.blog-box-content {
  margin: 35px 0;
}
.bottom-nav ul {
  padding: 0;
  list-style-type: none;
  text-align: center;
}
.bottom-nav ul li {
  display: inline-block;
  margin: 0 2px;
  font-size: 15px;
  line-height: 1.5;
  cursor: pointer;
  transition: 0.5s all ease;
}
.bottom-nav ul li a {
  color: #7e7e7e;
  text-decoration: none;
}
.bottom-nav ul li:hover a {
  color: #ffffff;
}
li.bottom-link {
  background: #f3f3f3;
  padding: 6px 25px;
  border-radius: 25px;
}
li.bottom-number-link {
  background: #f3f3f3;
  padding: 6px 0px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.bottom-nav ul li:hover {
  background-image: linear-gradient(
    to right,
    #9258f9,
    #c253db,
    #dc58c0,
    #e767aa,
    #e8799b
  );
  box-shadow: 0 3px 15px rgba(167, 96, 227, 0.8);
  transition: 0.5s all ease;
}
.blog-categories h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  color: #322b40;
  background: url(../img/main-page/line.png) left bottom / 200px
    no-repeat;
  margin-bottom: 20px;
}
.blog-categories p:hover .tag-1 {
  color: #8e56fd;
  transition: 0.5s all ease-in;
}
.blog-categories p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #322b40;
  margin-bottom: 12px;
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0px 3px 15px 0px rgba(248, 127, 71, 0.959);
  cursor: pointer;
  transition: 0.5s all ease;
}
.blog-categories p:hover {
  box-shadow: 0px 3px 15px 0px rgba(248, 127, 71, 0.959);
  transition: 0.5s all ease;
}
.tag-1 {
  text-align: left;
  width: 50%;
}
.tag-2 {
  text-align: center;
  width: 30px;
  height: 30px;
  padding: 5px 0;
  border-radius: 50%;
  float: right;
  background-image: linear-gradient(
    to right,
    rgba(248, 127, 71, 0.959),
    rgba(226, 103, 46, 0.959)
    
  );
  color: #ffffff;
  margin-top: -5px;
}
.post-title h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  text-transform: uppercase;
  color: #322b40;
  background: url(../img/main-page/line.png) left bottom / 200px
    no-repeat;
  margin-bottom: 20px;
}
.post {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
  margin: 15px 0;
  padding: 10px 10px;
  border-radius: 10px;
  box-shadow: none;
  cursor: pointer;
  transition: 0.5s all ease-in;
}
.post:hover {
  box-shadow: 0px 3px 15px 0px rgba(167, 96, 227, 0.5);
  transition: 0.5s all ease-in;
}
.post:hover .post-content h5 {
  color: #8e56fd;
  transition: 0.5s all ease-in;
}
.post-img {
  position: relative;
  display: inline-block;
  padding-right: 10px;
  flex: 0 0 100px;
}
.post-content {
  position: relative;
  display: inline-block;
}
.post-content h5 {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  color: #322b40;
}
.post-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  color: #616783;
  margin: 0;
}
.recent-post {
  position: relative;
  display: block;
  margin: 50px 0;
}
.popular-tag-title h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  text-transform: uppercase;
  color: #322b40;
  background: url(../img/main-page/line.png) left bottom / 200px
    no-repeat;
  margin-bottom: 20px;
}
.tag-link ul {
  padding: 0;
  list-style-type: none;
  text-align: left;
}
.tag-link ul li {
  display: inline-block;
  border: 1px solid #000;
  margin: 6px 2px;
  padding: 2px 12px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
}
.tag-link ul li a {
  color: #616783;
  text-decoration: none;
}
.tag-link ul li:hover a {
  color: #ffffff;
  text-decoration: none;
}
.tag-link ul li:hover {
  border: 1px solid transparent;
  box-shadow: 0px 3px 15px 0px rgba(167, 96, 227, 0.5);
  background-image: linear-gradient(
    to right,
    #9258f9,
    #c253db,
    #dc58c0,
    #e767aa,
    #e8799b
  );
}
section.hero-blog {
  margin: 80px 0 0 0;
}
.blog-box-img {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
}
.blog-box-img a img {
  width: 100%;
}
.blog-box-img img {
  width: 100%;
}
.blog-card:hover .blog-overlay {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background-image: linear-gradient(
    to right,
    rgba(146, 88, 249, 0.6),
    rgba(194, 83, 219, 0.6),
    rgba(220, 88, 192, 0.6),
    rgba(231, 103, 170, 0.6),
    rgba(232, 121, 155, 0.6)
  );
}
/* 
---------------------------------------------
BLOG DETAILS
--------------------------------------------- 
*/

.hero-blog-details-banner-section {
  position: relative;
  display: block;
  background-image: url(../img/inner-page/blog-dtails-bg-img.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 11% 0;
}
.details-tag-1 ul {
  list-style-type: none;
  padding: 0;
  text-align: left;
}
.details-tag-1 ul li {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: #616783;
}
.details-tag-1 ul li span img.img-fluid {
  width: 13%;
  margin-right: 5px;
}
.details-tag-2 ul {
  list-style-type: none;
  padding: 0;
  text-align: right;
}
.details-tag-2 ul li {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 3px;
  color: #616783;
}
.details-tag-2 ul li a {
  color: #616783;
}
.details-tag-2 ul li:hover a {
  color: #dc58c0;
}
.details-tag-2 ul li span img.img-fluid {
  width: 13%;
  margin-right: 5px;
}
.blog-details-tag {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 30px 0;
}
.details-tag-1 {
  position: relative;
  display: inline-block;
  width: 60%;
  float: left;
}
.details-tag-2 {
  position: relative;
  display: inline-block;
  width: 40%;
}
.blog-details-content h2 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
  color: #8e56fd;
}
.blog-details-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(97, 103, 131, 0.9);
}
.special-paragraph p {
  color: #322b40;
  font-style: italic;
  font-weight: 500;
}
.special-paragraph {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  margin-left: 30px;
}
.special-para-img {
  position: relative;
  display: inline-block;
  width: 2.5%;
  float: left;
}
.blog-details-tag-list ul {
  padding: 5px 0;
  list-style-type: none;
  text-align: left;
  margin: 0;
  border-top: 1px dashed #ccc;
  border-bottom: 1px dashed #ccc;
}
.blog-details-tag-list ul li {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 4px;
}
.blog-details-tag-list ul li a {
  color: #616783;
  text-decoration: none;
}
.blog-details-tag-list ul li span {
  color: #8e56fd;
}
.bottom-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  overflow: hidden;
  margin: 40px 0;
}
.bottom-btn-1 {
  position: relative;
  display: inline-block;
  background: #f3f3f3;
  padding: 6px 20px;
  border-radius: 25px;
  cursor: pointer;
}
.bottom-btn-1 a {
  color: #7e7e7e;
  text-decoration: none;
}
.bottom-btn-1 a span img.img-fluid {
  width: 15%;
}
.bottom-btn-1:hover a span img.img-fluid {
  filter: grayscale(1) brightness(0) invert(1) opacity(1);
  -webkit-filter: grayscale(1) brightness(0) invert(1) opacity(1);
  -moz-filter: grayscale(1) brightness(0) invert(1) opacity(1);
}
.bottom-btn-2 {
  position: relative;
  background: #f3f3f3;
  padding: 6px 20px;
  border-radius: 25px;
  cursor: pointer;
}
.bottom-btn-2 a {
  color: #7e7e7e;
  text-decoration: none;
}
.bottom-btn-2 a span img.img-fluid {
  width: 24%;
}
.bottom-btn-2:hover a span img.img-fluid {
  filter: grayscale(1) brightness(0) invert(1) opacity(1);
  -webkit-filter: grayscale(1) brightness(0) invert(1) opacity(1);
  -moz-filter: grayscale(1) brightness(0) invert(1) opacity(1);
}
.bottom-btn-1:hover {
  background-image: linear-gradient(
    to right,
    #9258f9,
    #c253db,
    #dc58c0,
    #e767aa,
    #e8799b
  );
}
.bottom-btn-2:hover {
  background-image: linear-gradient(
    to right,
    #9258f9,
    #c253db,
    #dc58c0,
    #e767aa,
    #e8799b
  );
}
.bottom-btn-1:hover a {
  color: #ffffff;
  text-decoration: none;
}
.bottom-btn-2:hover a {
  color: #ffffff;
  text-decoration: none;
}
.author-title h2 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  text-transform: uppercase;
  color: #322b40;
  background: url(../img/main-page/line.png) left bottom / 200px
    no-repeat;
  margin-bottom: 30px;
}
.author-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  box-shadow: 0px 3px 15px 0px rgba(167, 96, 227, 0.5);
  border-radius: 6px;
  padding: 20px;
}
.author-img {
  position: relative;
  flex: 0 0 131px;
}
.authore-content {
  position: relative;
  padding-left: 20px;
  text-align: left;
}
.authore-content h2 {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  color: #322b40;
}
.authore-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
  color: rgba(97, 103, 131, 0.8);
  margin: 0;
}
.author-img-border {
  position: absolute;
  display: block;
  width: 140px;
  height: 140px;
  border-top: 2px solid #9258f9;
  border-right: 2px solid #c253db;
  border-bottom: 2px solid #dc58c0;
  border-left: 2px solid #e767aa;
  top: -4px;
  left: -4px;
  border-radius: 8px;
}
.comment-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.comment-box-img {
  position: relative;
  margin-right: 15px;
  overflow: hidden;
}
.comment-box-content {
  position: relative;
  width: 80%;
  overflow: hidden;
}
.comment-box-title {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}
.comment-box-header {
  position: relative;
  display: inline-block;
  width: 50%;
  float: left;
  overflow: hidden;
}
.comment-box-reply-section {
  position: relative;
  display: inline-block;
  width: 14%;
  float: right;
  background: #e6eaee;
  text-align: center;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}
.comment-box-reply-section a {
  color: #616783;
  text-decoration: none;
}
.comment-box-reply-section:hover a {
  color: #ffffff;
  text-decoration: none;
}
.comment-box-reply-section:hover {
  background-image: linear-gradient(
    to right,
    #9258f9,
    #c253db,
    #dc58c0,
    #e767aa,
    #e8799b
  );
}
.comment-box-header h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
  color: #322b40;
}
.comment-box-header h5 {
  font-size: 13px;
  font-weight: 400;
  color: #d84cc7;
  line-height: 1.45;
}
.comment-box-sub-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  color: rgba(97, 103, 131, 0.9);
  margin: 0;
}
.comment-title h2 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  text-transform: uppercase;
  color: #322b40;
  background: url(../img/main-page/line.png) left bottom / 200px
    no-repeat;
  margin-bottom: 30px;
}
.comment-box-2 {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding-left: 10%;
  margin: 30px 0px;
}
.comment {
  position: relative;
  display: block;
  margin: 60px 0;
}
.box-img-bg {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: -1;
  transition: 0.5s all ease;
  background-image: linear-gradient(
    to right,
    #9258f9,
    #c253db,
    #dc58c0,
    #e767aa,
    #e8799b
  );
}
.comment-box-img img.img-fluid {
  padding: 5px;
}
.form-title h2 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #322b40;
  background: url(../img/main-page/line.png) left bottom / 200px
    no-repeat;
  margin-bottom: 30px;
}
input.input-form {
  padding: 10px 0;
  display: inline-block;
  width: 30%;
  margin: 0 6px;
  padding-left: 25px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  border-radius: 25px;
  border: 1px solid #cbcbcb;
  transition: 0.5s all ease;
}
textarea.input-massege {
  padding: 10px 0;
  display: inline-block;
  width: 95%;
  margin: 15px 6px;
  padding-left: 25px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  min-height: 100px;
  border-radius: 12px;
  border: 1px solid #cbcbcb;
  transition: 0.5s all ease;
}
input.input-form:focus {
  border-top: 1px solid #9258f9;
  border-right: 1px solid #c253db;
  border-bottom: 1px solid #dc58c0;
  border-left: 1px solid #e767aa;
  box-shadow: 0px 3px 15px 0px rgba(167, 96, 227, 0.5);
  transition: 0.5s all ease;
}
textarea.input-massege:focus {
  border-top: 1px solid #9258f9;
  border-right: 1px solid #c253db;
  border-bottom: 1px solid #dc58c0;
  border-left: 1px solid #e767aa;
  box-shadow: 0px 3px 15px 0px rgba(167, 96, 227, 0.5);
  transition: 0.5s all ease;
}
button.form-btn {
  background-image: linear-gradient(
    to right,
    #9258f9,
    #c253db,
    #dc58c0,
    #e767aa,
    #e8799b
  );
  width: 180px;
  text-align: center;
  display: inline-block;
  margin: 0 auto;
  padding: 10px 0;
  border-radius: 25px;
  border: none;
  color: #ffffff;
  margin-left: 10px;
  box-shadow: 0px 0px 10px #b465d2;
}
/* 
---------------------------------------------
CONATCT US PAGE
--------------------------------------------- 
*/
section.hero-contact {
  margin-top: 80px;
}
section.hero-contact-banner-section {
  position: relative;
  display: block;

  background-image: url(../img/inner-page/blog-dtails-bg-img.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 11% 0;
}
.get-in-touch-title h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  color: #322b40;
  background: url(../img/main-page/line.png) center bottom / 200px
    no-repeat;
}
.get-in-touch-title h1 span {
  color: #fc5e03;
}
.get-in-touch-title p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #616783;
  display: block;
  margin: 30px auto;
}
.contact-card h3 {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: rgba(50, 43, 64, 0.9);
  margin: 0;
  line-height: 1.45;
}
.contact-card {
  position: relative;
  display: block;
  box-shadow: 0 1px 8px rgb(255, 160, 18);
  padding: 90px 50px 60px 50px;
  border-radius: 6px;
  margin: 10px 6px;
  cursor: pointer;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contact-box-icons {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0px;
  max-height: 80px;
  max-width: 80px;
  height: 100%;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 0;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #fa9107;
  /* border-right: 1px solid #c253db;
  border-bottom: 1px solid #dc58c0;
  border-left: 1px solid #e767aa; */
  cursor: pointer;
  z-index: 2;
  margin: 20px auto;
  outline: none;
  box-shadow: 0 0 15px rgb(159 93 235 / 40%);
}
.contact-box {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 60px 0 0 0;
}
.contact-box:hover .contact-card {
  box-shadow: 0 1px 8px #f76c06;
}
.contact-box:hover .contact-box-icons {
  background-image: linear-gradient(
    to right,
    #f76c06,
    #c75300
   
  );
  box-shadow: 0 2px 15px #f76c06;
  transition: 0.5s all ease;
}
.contact-box:hover .contact-box-icons img.img-fluid {
  filter: grayscale(1) brightness(0) invert(1) opacity(1);
  -webkit-filter: grayscale(1) brightness(0) invert(1) opacity(1);
  -moz-filter: grayscale(1) brightness(0) invert(1) opacity(1);
}
/* 
---------------------------------------------
CONTACT PAGE
--------------------------------------------- 
*/
input.contact-form-input {
  padding: 10px 0;
  display: inline-block;
  width: 35%;
  margin: 0 6px;
  padding-left: 25px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  border-radius: 25px;
  border: 1px solid #f36100;;
  transition: 0.5s all ease;
}
@media screen and (max-width: 480px) {
  input.contact-form-input {
    width: 100%;
    margin: 0 auto;
    margin-top: 25px;
  }
}
.contact-form {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  overflow: hidden;
}
textarea.contact-form-message {
  padding: 10px 0;
  display: block;
  margin: 20px auto;
  width: 71%;
  padding-left: 25px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  min-height: 100px;
  border-radius: 12px;
  border: 1px solid #f36100;;
  transition: 0.5s all ease;
}
button.contact-form-btn {
  background-image: linear-gradient(
    to right,
    #f76c06,
    #aa4e0c
   
  );
  width: 180px;
  text-align: center;
  display: inline-block;
  margin: 0 auto;
  padding: 10px 0;
  border-radius: 25px;
  border: none;
  color: #ffffff;
  margin-left: 10px;
  margin: 20px 0;
  box-shadow: 0px 0px 10px #ffc812;
}
button.contact-form-btn:hover {
  box-shadow: none;
  transition: 0.5s all ease;
}
input.contact-form-input:focus {
  border: 1px solid #f8611a;

  box-shadow: 0px 3px 15px 0px rgba(255, 147, 6, 0.952);
  transition: 0.5s all ease;
}
textarea.contact-form-message:focus {
  border-top: 1px solid rgba(231, 118, 12, 0.993);

  box-shadow: 0px 3px 15px 0px rgba(231, 118, 12, 0.993);
  transition: 0.5s all ease;
}
section.hero-contact-form {
  margin-top: 60px;
}
.map iframe {
  width: 100%;
  height: 550px;
  display: block;
  margin-top: 60px;
}
footer.hero-footer {
  margin-top: -30px;
}
/* 
---------------------------------------------
COMING SOON PAGE
--------------------------------------------- 
*/

section.hero-schedule {
  display: block;
  margin: 80px 0;
}
section.hero-schedule-banner-section {
  position: relative;
  display: block;
  background-image: url(../img/inner-page/schedule-bg-img.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 11% 0;
}
.img-fliter li.nav-item a {
  color: #000;
}
.blog-column-1 {
  display: inline-block;
  width: 24%;
}
.blog-column-2 {
  display: inline-block;
  width: 24%;
}
.blog-column-3 {
  display: inline-block;
  width: 24%;
}
.blog-column-4 {
  display: inline-block;
  width: 24%;
}
.blog-column-5 {
  display: inline-block;
  width: 24%;
}
.blog-img-1 {
  width: 100%;
  display: inline-block;
}
.blog-img-2 {
  width: 100%;
  display: inline-block;
}
.blog-img-3 {
  width: 100%;
  display: inline-block;
}
.blog-img-4 {
  width: 100%;
  display: inline-block;
}
/* 
---------------------------------------------
COMING SOON PAGE
--------------------------------------------- 
*/
section.hero-coming-soon-banner-section {
  background-image: url(../img/inner-page/comming-soon-bg-img.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 11% 0 0 0;
  height: 100%;
}
.coming-soon-block ul {
  padding: 0;
  list-style-type: none;
  text-align: center;
}
.coming-soon-content h2 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  color: #ffffff;
  margin: 10px 0 20px 0;
}
.coming-soon-block ul li {
  display: inline-block;
  color: #ffffff;
  margin: 0 15px;
}
.coming-soon-block ul li h5 {
  margin: 0;
  text-align: center;
  padding: 18px;
  border-radius: 6px;
  background-color: #515151;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  width: 120px;
}
.coming-soon-block ul li p {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}
.coming-soon-card-input {
  width: 100%;
  display: block;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.5;
  color: #000;
  border-radius: 25px;
  border: none;
  padding: 12px 0;
  padding-left: 15px;
  padding-right: 55px;
}
.coming-soon-input-img {
  position: absolute;
  top: 0%;
  background-image: linear-gradient(
    to right,
    #9258f9,
    #c253db,
    #dc58c0,
    #e767aa,
    #e8799b
  );
  right: 0%;
  border-radius: 50%;
  padding: 11px;
}
.coming-soon-card-box-input {
  position: relative;
  display: block;
  margin: 30px 0;
  width: 30%;
  margin: 30px auto;
}
.coming-soon-social-link ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
}
.coming-soon-social-link ul li {
  display: inline-block;
  margin: 0 10px;
  font-size: 20px;
}
.coming-soon-social-link ul li a {
  color: #ffffff;
  text-align: center;
}
.coming-soon-social-link ul li {
  display: inline-block;
  margin: 0 4px;
  font-size: 17px;
  background-color: transparent;
  padding: 6px 6px;
  height: 35px;
  width: 35px;
  box-shadow: none;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.5s all ease;
}
.coming-soon-social-link ul li:hover {
  background-image: linear-gradient(
    to right,
    #9258f9,
    #c253db,
    #dc58c0,
    #e767aa,
    #e8799b
  );
  box-shadow: 0 0px 20px rgba(159, 93, 235, 0.4);
  transition: 0.5s all ease;
}
.coming-soon-footer p {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #fefefe;
  margin-top: 100px;
}
/* 
---------------------------------------------
ERROR PAGE
--------------------------------------------- 
*/

section.hero-error-banner-section {
  background-image: url(../img/inner-page/error-img.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 16% 0;
  height: 100vh;
}
.error-img img.img-fluid {
  width: 30%;
}
.banner-content-section {
  display: block;
  position: relative;
  text-align: center;
  margin: 0 auto;
}
.error-btn {
  background-image: linear-gradient(
    to right,
    #9258f9,
    #c253db,
    #dc58c0,
    #e767aa,
    #e8799b
  );
  width: 180px;
  text-align: center;
  display: block;
  font-size: 14px;
  padding: 10px 0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  margin: 0 auto;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.5s all ease;
}
.error-btn:hover {
  background-image: none;
  border-top: 2px solid #9258f9;
  border-left: 2px solid #c253db;
  border-bottom: 2px solid #dc58c0;
  border-right: 2px solid #e8799b;
  color: #ffffff;
  text-decoration: none;
  transition: 0.5s all ease;
}
.error-btn a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
}
.error-content h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  margin: 10px 0;
}
.error-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 2550);
  margin-bottom: 30px;
}
.blog-card:hover h2 a {
  color: #d84cc7;
  text-decoration: none;
  transition: all ease 0.5s 0s;
}
i.fa.fa-angle-right {
  font-size: 20px;
  margin-left: 5px;
}
i.fa.fa-clock-o {
  color: #d84cc7;
  font-size: 17px;
  padding-left: 1px;
  margin-right: 5px;
}
.date_box {
  float: left;
  margin-right: 20px;
}
.blog-card-link a:hover {
  text-decoration: none;
  color: #d84cc7;
  opacity: 0.5;
  transition: all ease 0.5s 0s;
}
.banner-img-section h2 {
  font-size: 68px;
  text-transform: uppercase;
  font-weight: 800;
  background: -webkit-linear-gradient(#f86000, #f87838);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 480px) {
  textarea.contact-form-message {
    width: 100%;
    margin: 25px auto 0 auto;
    margin-top: 25px;
  }
}
/* self */
.self-img img {
  height: 40px;
  width: 60px;
  display: flex;
}
.conteiner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image:  linear-gradient( to right, #ff7e23, rgb(201, 56, 12) );
  color: #fff;
  border-radius: 5px;
  height: 65%;
} 

h1 {
  font-family: "Roboto";
}

.gender {
  display: flex;
  justify-content: center;
  align-items: center;
}

.man,
.woman {
  margin: 1rem 2rem;
  border: 1px solid #fff;
  padding: 2rem;
  font-size: 2rem;
}

.man {
  color: #f7fbfc;
}

.woman {
  color: #ffffff;
}

.man:focus,
.woman:focus {
  box-shadow: 0px 0px 17px 3px rgba(255, 255, 255, 0.75);
}

form {
  text-align: center;
  font-size: 1.2rem;
}

input {
  width: 80%;
  border-radius: 5px;
  border: 1px solid white;
  padding: 10px;
  margin: 5px;
  font-size: 1.2rem;
  text-align: center;
  color: rgb(8, 8, 8);
  background-color: #f4f3fc;
}

button {
  background-color: #0a0503;
  color: white;
  border: none;
  padding: 1rem;
  font-size: 1.2rem;
  cursor: pointer;
  margin-top: 2rem;
}

button:hover {
  background-color: #000000;
  transition: 0.8s ease;
  cursor: pointer;
  box-shadow: 0px 0px 20px #f76c06;
}

#result {
  font-size: 3rem;
  font-family: "Roboto";
  font-weight: 900;
}

#meaning {
  font-size: 2rem;
  font-family: "Roboto";
  font-weight: 900;
  margin: -2rem;
}
@import url("https://fonts.googleapis.com/css?family=Roboto");
@-webkit-keyframes come-in {
  0% {
    -webkit-transform: translatey(100px);
            transform: translatey(100px);
    opacity: 0;
  }
  30% {
    -webkit-transform: translateX(-50px) scale(0.4);
            transform: translateX(-50px) scale(0.4);
  }
  70% {
    -webkit-transform: translateX(0px) scale(1.2);
            transform: translateX(0px) scale(1.2);
  }
  100% {
    -webkit-transform: translatey(0px) scale(1);
            transform: translatey(0px) scale(1);
    opacity: 1;
  }
}
@keyframes come-in {
  0% {
    -webkit-transform: translatey(100px);
            transform: translatey(100px);
    opacity: 0;
  }
  30% {
    -webkit-transform: translateX(-50px) scale(0.4);
            transform: translateX(-50px) scale(0.4);
  }
  70% {
    -webkit-transform: translateX(0px) scale(1.2);
            transform: translateX(0px) scale(1.2);
  }
  100% {
    -webkit-transform: translatey(0px) scale(1);
            transform: translatey(0px) scale(1);
    opacity: 1;
  }
}
* {
  margin: 0;
  padding: 0;
}

html, body {
  background: #eaedf2;
  font-family: 'Roboto', sans-serif;
}

.floating-container {
  position: fixed;
  width: 100px;
  height: 100px;
  bottom: 0;
  right: 0;
  margin: 35px 25px;
}
.floating-container:hover {
  height: 300px;
}
.floating-container:hover .floating-button {
  box-shadow: 0 10px 25px rgba(44, 179, 240, 0.6);
  -webkit-transform: translatey(5px);
          transform: translatey(5px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.floating-container:hover .element-container .float-element:nth-child(1) {
  -webkit-animation: come-in 0.4s forwards 0.2s;
          animation: come-in 0.4s forwards 0.2s;
}
.floating-container:hover .element-container .float-element:nth-child(2) {
  -webkit-animation: come-in 0.4s forwards 0.4s;
          animation: come-in 0.4s forwards 0.4s;
}
.floating-container:hover .element-container .float-element:nth-child(3) {
  -webkit-animation: come-in 0.4s forwards 0.6s;
          animation: come-in 0.4s forwards 0.6s;
}
.floating-container .floating-button {
  position: absolute;
  width: 65px;
  height: 65px;
  background: #ce5d00;
  bottom: 0;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: auto;
  color: white;
  line-height: 65px;
  text-align: center;
  font-size: 23px;
  z-index: 100;
  box-shadow: 0 10px 25px -5px rgba(240, 148, 44, 0.6);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.floating-container .float-element {
  position: relative;
  display: block;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 15px auto;
  color: white;
  font-weight: 500;
  text-align: center;
  line-height: 50px;
  z-index: 0;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.floating-container .float-element .material-icons {
  vertical-align: middle;
  font-size: 16px;
}
.floating-container .float-element:nth-child(1) {
  background: #f14400;
  box-shadow: 0 20px 20px -10px rgba(227, 245, 66, 0.623);
}
.floating-container .float-element:nth-child(2) {
  background: #4CAF50;
  box-shadow: 0 20px 20px -10px rgba(76, 175, 80, 0.5);
}
.floating-container .float-element:nth-child(3) {
  background: #FF9800;
  box-shadow: 0 20px 20px -10px rgba(255, 152, 0, 0.5);
}
.round-btn {display: inline;height: 40px; width: 40px; background:#fff;border-radius: 50%;float: left;margin: 15px 8px;box-shadow: 2px 2px 5px 0px rgb(82, 0, 67);border: 1px solid;/*border: 1px solid #622657;*/}
.round-btn a {display: block !important;padding: 7px 12px;font-size: 18px;border-radius: 50%;}
.round-btn .icon {padding: 3px;}
.round-btn .icon img{height: 24px; width: 32px;margin-top: 6px;}
.btn-facebook a {color: #3b5998;padding: 8px 13px;}
.btn-linkedin a {color: #007bb6;}
.btn-twitter a{color: #1c9deb;}
.btn-instagram a{color: #dd3f5c;}
.btn-whatsapp a{color: #155E54;}
.btn-envelop a{color: #D6403A;font-size: 15px; padding: 9px 12px;}
.standard_header .standard_social_links {margin-left: 1rem;}

  /*
  =========================================================================================
                                    footer
  =========================================================================================
  */
  
  .footer-wrap {
    padding-top: 43px;
    background-size: cover;
    width: 100%;
}

.footer-wrap h3 {
    color: #fff;
    font-size: 17px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-wrap p {
    font-size: 13px;
    line-height: 24px;
    color: #b3b3b3;
    margin-top: 15px;
}

.footer-wrap p a {
    color: #fff;
    text-decoration: underline;
    font-style: italic;
}

.footer-wrap p a:hover {
    text-decoration: none;
    color: #ff7800;
}

.footer-links li a {
    font-size: 13px;
    line-height: 30px;
    color: #ccc;
    text-decoration: none;
}


.footer-links li:before {
    content: "\f105";
    font-family: 'FontAwesome';
    padding-right: 10px;
    color: #ccc;
}

.footer-category li a {
    font-size: 13px;
    line-height: 30px;
    color: #ccc;
    text-decoration: none;
}

.footer-category li:before {
    content: "\f105";
    font-family: 'FontAwesome';
    padding-right: 10px;
    color: #b3b3b3;
}

.address {
    
    color: #b3b3b3;
    font-size: 14px;
    position: relative;
    padding-left: 30px;
    line-height: 30px;
}

.address:before {
    content: "\f277";
    font-family: 'FontAwesome';
    position: absolute;
    top: 0;
    left: 0;
}

.info a {
 
    color: #b3b3b3;
    font-size: 14px;
    line-height: 30px;
    font-weight: normal;
}

.fa-phone:before {
    content: "\f095";
}

.info a {

    color: #b3b3b3;
    font-size: 14px;
    line-height: 30px;
    font-weight: normal;
}

.fa-fax:before {
    content: "\f1ac";
}

.copyright {
    border-top: 1px solid #111;
    font-size: 14px;
    color: #ccc;
    padding-top: 15px;
    text-align: center;
    padding-bottom: 15px;
    background: #222;
}
footer .second_class{
    border-bottom: 1px solid #444;
    padding-bottom: 25px;
}
footer .first_class {
    padding-bottom: 21px;
    border-bottom: 1px solid #444;
}
footer .first_class p, footer .first_class h3{
    margin: 0 0;
    
}
footer{
    background: #333;
}

footer .newsletter input[type="text"] {
    width: 100%;
    background: #fff;
    color: #333;
    border: 1px solid #222;
    padding: 14px 20px;
    border-radius: 50px;
    margin-top: 12px;
}

.newsletter .newsletter_submit_btn {
    background: #fff;
    position: absolute;
    right: 30px;
    border: 0;
    top: 26px;
    font-size: 17px;
    color: #333;
}


footer .second_class_bdr{
    padding-top: 25px;
    border-top:1px solid #222;
}

footer .btn-facebook a {
    padding: 6px 14px !important;
}

footer .btn-envelop a {
    color: #D6403A;
    font-size: 15px;
    padding: 12px 12px;
}

footer .round-btn a {
    padding: 6px 12px;
}

footer .round-btn {
    box-shadow: 2px 2px 5px 0px #222 !important;}

footer .round-btn {
    margin: 15px 4px;}
  
footer dl, ol, ul {
    padding-left: 5px;
}
  footer li{
    list-style: none;
  }

@media(max-width:768px){
    .footer-wrap h3 {
    margin-top: 27px;}
    
    footer .round-btn {
    margin: 15px 4px;}
}
@media(max-width:320px){
.copyright {
    font-size: 13px;}
} 

.round-icons a {
	background: #ee6307;
	color: #fff;
	display: inline-block;
	width: 3em;
	height: 3em;
	/* margin-right: 0.5em; */
	text-align: center;
	border-radius: 50%;
	transition: 0.15s all ease-in-out;

	svg {
		display: inline-block;
		vertical-align: middle;
		height: 100%;
	}

	&:hover {
		background: #0d5880;
	}
}

@media only screen and (max-width: 820px) {
  .round-icons{
   display: inline-block;
   height: 100%;

  
  }
  
}
.footer-links li a:hover{
  color: #ff6c00;
}
.footer-category li a:hover{
  color: #ff6c00;
}
.round-icons a:hover{
  background-color: white;
  color:#ff6c00;

}