/*
Theme Name: lamusiqueauxenfants
Author: Olivier Bigras
Author URI: https://olivierbigras.com
Description: A lightweight WordPress theme designed for lamusiqueauxenfants.
Version: 1.0
Text Domain: lamusiqueauxenfants
*/

/*** 

====================================================================
  Root Code Variables.program-block_five-list li
====================================================================

 ***/


.theme_color{
  color:var(--main-color);
}

/* Theme Color */

:root {
  
  /* #fec716 in decimal RGB */
  --main-color: rgb(254,199,22);
  --main-color-rgb:244,131,31;
  
  /* #08C76A in decimal RGB */
  --color-two: rgb(14, 171, 165);
  --color-two-rgb:254,199,22;
  
  /* #FDFAF8 in decimal RGB */
  --color-three: rgb(253,250,248);
  --color-three-rgb:253,250,248;
  
  /* #002D45 in decimal RGB */
  --color-four: rgb(30,39,46);
  --color-four-rgb:30,39,46;
  
  /* #fdf3ea in decimal RGB */
  --color-five: rgb(253,243,234);
  --color-five-rgb:253,243,234;
  
  /* #FFE68D in decimal RGB */
  --color-six: rgb(255,230,141);
  --color-six-rgb:255,230,141;
  
  /* #1F8EF4 in decimal RGB */
  --color-seven: rgb(31,142,244);
  --color-seven-rgb:31,142,244;
  
  /* #E5EFD7 in decimal RGB */
  --color-eight: rgb(229,239,215);
  --color-eight-rgb:229,239,215;
  
  /* #E0EBF4 in decimal RGB */
  --color-nine: rgb(224,235,244);
  --color-nine-rgb:224,235,244;




    /* #ffffff in decimal RGB */
  --white-color:rgb(255,255,255);
  --white-color-rgb:255,255,255;

  /* #000000 in decimal RGB */
  --black-color:rgb(0,0,0);
  --black-color-rgb:0,0,0;

}

/*** 

====================================================================
  Reset
====================================================================

 ***/
 
* {
  margin:0px;
  padding:0px;
  border:none;
  outline:none;
}

/*** 

====================================================================
  Global Settings
====================================================================

***/


/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-three);
}

body {
  font-family: 'Quicksand', sans-serif; 
  color:#1e272e;
  line-height:1.6em;
  font-weight:400;
  font-size:16px;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
 
}

.text-left{
  text-align: left;
}

.dark-layout{
  position: relative;
  background-color: var(--black-color);
}

/* Preloader */

.preloader{ 
  position:fixed;
  left:0px;
  top:0px;
  width:100%;
  height:100%;
  z-index:999999999;
  background-color:#ffffff;
  background-position:center center;
  background-repeat:no-repeat;
  background-image:url(../images/icons/preloader.gif);
    background-size: 120px;
}

i{
    font-style: normal;
  line-height: 1em;
    display: inline-block;
}

a{
  text-decoration:none;
  cursor:pointer;
  transition:all 0.3s ease;
  -moz-transition:all 0.3s ease;
  -webkit-transition:all 0.3s ease;
  -ms-transition:all 0.3s ease;
  -o-transition:all 0.3s ease;
  color:var(--main-color);
}

button,
a:hover,a:focus,a:visited{
  text-decoration:none;
  outline:none !important;
}

h1,h2,h3,h4,h5,h6 {
  position:relative;
  margin:0px;
  background:none;
  color:#1e272e;
    font-family: 'Quicksand', sans-serif;;
}
.equipe-fsize{
  font-size: 16px!important;
  margin-bottom: 0px !important;
}
.camp-jour-h1{
  color: white;
  font-size: 48px;
}
input,button,select,textarea{
  
}

textarea{
  overflow:hidden;
}

.text,
p{
  position:relative;
  line-height:1.7em;
  color:#1e272e;
  font-size:18px;
  opacity: 0.80;
}



/* Typography */

h1{
  line-height:82px;
  font-size:72px;
  font-weight:600;
}

h2{
  line-height:54px;
  font-size:48px;
  font-weight:600;
}

h3{
  line-height:42px;
  font-size:32px;
}

h4{
  line-height:34px;
  font-size:24px;
}

h5{
  line-height:30px;
  font-size:22px;
}

h6{
  line-height:28px;
  font-size:18px;
}

.auto-container{
  position:static;
  max-width:1330px;
  padding:0px 15px;
  margin:0 auto;
}

.page-wrapper{
  position:relative;
  margin:0 auto;
  width:100%;
  min-width:300px;
    overflow: hidden;
  background-color:var(--color-five);
}

ul,li{
 list-style: none;
  padding:0px;
  margin:0px; 
   

}

ul.accordion-box ul, ul.accordion-box li{

    
    font-size: 18px;
    color: #1e272e;
    opacity: 0.80;

}

li.accordion > div.acc-content > div.content > ul > li {
      list-style: disc!important;
      margin-left: 20px;
}

img{
  display:inline-block;
  max-width:100%;
}

.theme-btn{
  cursor:pointer;
  display:inline-block;
  transition:all 0.3s ease;
  -moz-transition:all 0.3s ease;
  -webkit-transition:all 0.3s ease;
  -ms-transition:all 0.3s ease;
  -o-transition:all 0.3s ease;
}

.centered{
  text-align:center;  
}

::-webkit-input-placeholder{color: inherit;}
::-moz-input-placeholder{color: inherit;}
::-ms-input-placeholder{color: inherit;}


/* Hide the cursor element on screens smaller than 768px */
@media (max-width: 1024px) {
    .cursor {
        display: none !important;
    }
}

/***

====================================================================
  Scroll To Top style
====================================================================

***/

/* backtoup */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 40px;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.20);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px); }
  .progress-wrap::after {
    position: absolute;
    content: '\f176';
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 35px;
    font-size: 15px;
    color: var(--main-color);
    left: 0;
    top: 0;
    height: 35px;
    width: 35px;
    cursor: pointer;
    display: block;
    font-weight: 700;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    font-size: 13px; }
  .progress-wrap svg path {
    fill: none; }
  .progress-wrap svg.progress-circle path {
    stroke: var(--main-color);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; }
  .progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  .progress-wrap.style2::after {
    color: var(--thm-color-2); }
  .progress-wrap.style2 svg.progress-circle path {
    stroke: var(--thm-color-2); }
  .progress-wrap.style3::after {
    color: var(--thm-color-3); }
  .progress-wrap.style3 svg.progress-circle path {
    stroke: var(--thm-color-3);
}

/* List Style One */

.list-style-one{
  position:relative;
}

.list-style-one li{
  position:relative;
  color:var(--white-color);
  font-size:18px;
  font-weight:400;
  line-height:1.8em;
  margin-bottom:10px;
  padding-left:30px;
}

.list-style-one li a{
  position:relative;
  color:var(--white-color);
  -webkit-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  transition:all 300ms ease;
}

.list-style-one li a:hover{
  color:var(--main-color);
}

.list-style-one li .icon{
  position:absolute;
  left:0px;
  top:5px;
  color:var(--main-color);
  font-size:18px;
  line-height:1em;
  font-weight:300;
  -webkit-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  transition:all 300ms ease;
}



.single-page-button{
  padding-top: 25px;
}

.single-page-button .btn-style-one{
  margin: 5px;
}


/* Btn Style One */

.btn-style-one{ 
  position: relative;
  font-weight:600;
    font-size: 18px;
  overflow: hidden;
  text-align:center;
  border-radius:50px;
  padding:17px 32px;
  display:inline-block;
    color: var(--white-color);

  background-color: var(--color-two);
  font-family: 'Quicksand', sans-serif; 
}

.btn-style-one:before{
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;

}

.btn-style-one:hover:before{
  top: 0%;
}

.btn-style-one i{
  position:relative;
  margin-left:5px;
  font-size:12px;
}

.btn-style-one .btn-wrap{
  position:relative;
  z-index:1;
  float:left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-one .btn-wrap .text-one{
  position: relative;
  display: block;
  color: var(--white-color);
  transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.main-header_button i.fa-heart {
font-size: 18px;
}

.btn-style-one:hover .btn-wrap  .text-one:first-child{
  -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-one .btn-wrap .text-two{
  position: absolute;
    top: 100%;
    display: block;
  color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap .text-two{
  top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-style-one:hover .btn-wrap .text-two{
  color: var(--white-color);
}

.btn-style-one:hover{
  
}

.btn-style-one:hover:before{
  top: -40%;
}

/* Btn Style Two */

.btn-style-two{ 
  position: relative;
  font-weight:600;
    font-size: 18px;
  overflow: hidden;
  text-align:center;
  border-radius:50px;
  padding:17px 32px;
  display:inline-block;
    color: var(--white-color);
  font-family: 'Quicksand', sans-serif; 
  background-color: rgba(237, 47, 77);
}

.btn-style-two:before{
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
/*  background-color: #1e272e;*/
}

.btn-style-two:hover:before{
  top: 0%;
}

.btn-style-two i{
  position:relative;
  margin-left:5px;
  font-size:12px;
}

.btn-style-two .btn-wrap{
  position:relative;
  z-index:1;
  float:left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-two .btn-wrap .text-one{
  position: relative;
  display: block;
  color: var(--white-color);
  transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap  .text-one:first-child{
  -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-two .btn-wrap .text-two{
  position: absolute;
    top: 100%;
    display: block;
  color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap .text-two{
  top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-style-two:hover .btn-wrap .text-two{
  color: var(--white-color);
}

.btn-style-two:hover{
  
}

.btn-style-two:hover:before{
  top: -40%;
}

/* Btn Style Three */

.btn-style-three{
  position: relative;
  font-weight:600;
    font-size: 18px;
  overflow: hidden;
  text-align:center;
  border-radius:50px;
  padding:17px 32px;
  display:inline-block;
    color: var(--color-two);

  font-family: 'Quicksand', sans-serif; 
  border:1px solid var(--color-two);
}

.btn-style-three:before{
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background-color: var(--color-two);
}

.btn-style-three:hover:before{
  top: 0%;
}

.btn-style-three i{
  position:relative;
  margin-left:5px;
  font-size:12px;
}

.btn-style-three .btn-wrap{
  position:relative;
  z-index:1;
  float:left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-three .btn-wrap .text-one{
  position: relative;
  display: block;
  color: var(--color-two);
  transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.btn-style-three:hover .btn-wrap  .text-one:first-child{
  -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-three .btn-wrap .text-two{
  position: absolute;
    top: 100%;
    display: block;
  color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-three:hover .btn-wrap .text-two{
  top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-style-three:hover .btn-wrap .text-two{
  color: var(--white-color);
}

.btn-style-three:hover{
  
}

.btn-style-three:hover:before{
  top: -40%;
}

img{
  display:inline-block;
  max-width:100%;
  height:auto;  
}

/*** 

====================================================================
  Section Title
====================================================================

***/

.sec-title{
  position:relative;
    z-index: 2;
  margin-bottom:40px;
}

.sec-title_title{
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(237, 47, 77);
  text-transform:uppercase;
}

.sec-title_heading{
  position:relative;
  margin-top: 15px; 
    color: #1e272e;
     
}

.sec-title_heading span{
  position:relative;
  color: rgba(237, 47, 77);
}

.sec-title_text{
  line-height:27px;

  font-size:18px;
  margin-top:20px;
    color:#1e272e;
}

.sec-title.light .sec-title_title{
    
}

.sec-title.light .sec-title_big-title{
  -webkit-text-stroke-color: rgba(var(--color-three-rgb), 0.30);
}

.sec-title.light .sec-title_text{
  opacity: 0.60;
   color: var(--white-color);
}

.sec-title.light .sec-title_heading{
  color:var(--white-color);
}

.sec-title.centered{
  text-align: center !important;
}

.sec-title.centered .separator{
  margin:0 auto;
}

/* Style Two */

.sec-title.style-two .sec-title_title{
  padding:4px 15px;
  font-size:15px;
  font-weight:700;
  letter-spacing:0px;
  border-radius:50px;
  display:inline-block;

  background-color:rgba(var(--main-color-rgb), 0.10);
}

.faq-two h2.sec-title_heading, .sec-title.style-two .sec-title_heading{
  font-weight:700;
}

/* Style Three */

.sec-title.style-three .sec-title_title{
  padding:4px 15px;
  font-size:15px;
  font-weight:700;
  letter-spacing:0px;
  border-radius:50px;
  display:inline-block;

  border:1px solid rgba(var(--main-color-rgb), 0.10);
}

.sec-title.style-three.light .sec-title_title{
  border-color:rgba(var(--main-color-rgb), 0.50);
}

/* Custom Select */

.form-group .ui-selectmenu-button.ui-button{
  top:-2px;
  width:100%;
  border:0px;
  padding: 15px 25px;
  font-weight:500;
  line-height:28px;
  font-size:18px;
  background-color: var(--white-color);
  color:rgba(var(--color-four-rgb), 0.80);
}

.form-group .ui-button .ui-icon{
  background:none;
  position:relative;
  top:3px;
  text-indent:0px;
  color:#a5a5a5;  
}

.form-group .ui-button .ui-icon:before{
  font-family: 'Font Awesome 6 Free';
  content: "\f107";
  position:absolute;
  right:0px;
  top:2px !important;
  top:10px;
  height:22px;
  display:block;
  line-height:20px;
  font-size:18px;
  font-weight:800;
  text-align:center;
  z-index:5;
  color:rgba(var(--color-four-rgb), 0.30);
}

.ui-menu .ui-menu-item{
  font-size:16px;
}

.ui-menu .ui-menu-item:last-child{
  border:none;  
}

.ui-state-active, .ui-widget-content .ui-state-active{
  background-color:var(--main-color) !important;
  border-color:var(--main-color) !important;
}

.ui-menu .ui-menu-item-wrapper{
  position:relative;
  display:block;
  padding:8px 20px;
  line-height:24px;
  font-size:16px;
}

.ui-menu-item:hover{
  background-color:var(--color-two);
}

/* Cursor */

.cursor {
    position: fixed;
    background-color: var(--main-color);
    width: 10px;
    height: 10px;
    border-radius: 100%;
    z-index: 1;
    -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  -webkit-transform: scale(1);
  transform: scale(1);
}
  
.cursor.active {
  opacity: 1;
  -webkit-transform: scale(0);
  transform: scale(0);
}
  
.cursor.menu-active {
  opacity: 1;
  -webkit-transform: scale(0);
  transform: scale(0);
}
  
.cursor.hovered {
  opacity: 1;
}
  

  
/* Cursor End */

.xs-sidebar-group .close-button{
  font-family: "flaticon_lamusiqueauxenfants-icons";
}

.newsletter-popup-area-section{
  display: none;
}

.ui-datepicker td span, .ui-datepicker td a{
  text-align: center !important;
}

/* Shop Sidebar */

.xs-sidebar-group .xs-overlay {
    left: 100%;
    top: 0;
    position: fixed;
    z-index: 999999;
    height: 100%;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in 0.8s;
    -o-transition: all 0.4s ease-in 0.8s;
    transition: all 0.4s ease-in 0.8s;
    cursor: url(../images/cross-out.png), pointer;
}

.xs-sidebar-group .close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 10;
  cursor:pointer;
  font-size:var(--font-18);
}

.xs-sidebar-group .close-button .mdi{
  color:#1e272e;
  font-size:var(--font-14);
  font-family: "Material Design Icons";
}

.xs-sidebar-group .close-button .mdi:hover{
  color:var(--black-color);
}

.xs-sidebar-widget:nth-child(2){
  right:-380px;
}

.xs-sidebar-widget {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 370px;
    z-index: 999999;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #ffffff;
    -webkit-transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
    -o-transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
    transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
}
.xs-sidebar-group.isActive .xs-overlay {
    opacity: 0.7;
    visibility: visible;
    -webkit-transition: all 0.8s ease-out 0s;
    -o-transition: all 0.8s ease-out 0s;
    transition: all 0.8s ease-out 0s;
    left: 0;
}
.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    right: 0px;
    -webkit-transition: all 0.8s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    -o-transition: all 0.7s cubic-bezier(0.8, 0.03, 0, 0.96) 0.4s;
    transition: all 0.8s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
    padding: 0px;
}

.close-side-widget {
    font-size: rem(15px);
    display: block;
}

.sidebar-widget-container {
    position: relative;
    top: 0px;
    -webkit-transition: all 0.3s ease-in 0.3s;
    -o-transition: all 0.3s ease-in 0.3s;
    transition: all 0.3s ease-in 0.3s;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    -webkit-transition: all 1s ease-out 1.2s;
    -o-transition: all 1s ease-out 1.2s;
    transition: all 1s ease-out 1.2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    z-index: 0;
}
.xs-bg-black {
    background-color: #000000;
}
.xs-menu-tools > li {
    display: inline-block;
    margin-right: 15px;
}
.xs-menu-tools > li:last-child {
    margin-right: 0;
}
.xs-menu-tools > li > a {
    color: #000000;
    text-decoration: none;
}
.nav-alignment-dynamic,
.nav-alignment-flex-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.waves {
  position: absolute;
  left:0px;
  bottom:0px;
  width: 100%;
  height: 15vh;
  z-index:1;
  margin-bottom: -8px;
  min-height: 100px;
  max-height: 150px; }

.waves .content {
  position: relative;
  height: 20vh;
  text-align: center;
  background-color:var(--color-five); }



/*** 

====================================================================
  Header style One
====================================================================

***/

.main-header{
  position:absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  z-index:1001;
  width:100%;

  
}

.header-top{
  position: relative;
  background-color:var(--color-two);
}

.header-top .inner-container{
  position: relative;
}

.header-top .left-box{
  position: relative;
  padding: 17px 0px 24px;
}

/* Top List */

.header-top_list{
  position: relative;
}

.header-top_list li{
  position: relative;
  line-height: 14px;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  gap: 8px;
  margin-right: 20px;
  align-items: center;
  color: var(--white-color);
}

.header-top_list li .icon{
  position: relative;
  left: 0px;
  top:0px;
  line-height: 1em;
  font-weight:normal;
  font-family: "flaticon_lamusiqueauxenfants-icons";
}

.header-top_list li a{
  position: relative;
  color: var(--white-color);
}

.header-top_list li:last-child{
  margin-right: 0px;
}

.header-top .right-box{
  position: relative;
  padding: 5px 0px;
}

.header-top_socials{
  position: relative;
  margin-left: 15px;
}

.header-top_socials a{
  position: relative;
    width: 28px;
    height: 28px;
    font-size: 18px;
    margin-left: 5px;
    line-height: 26px;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    color: var(--white-color);
   
    font-family: 'Font Awesome 5 Brands';
}

.header-style-one .auto-container{
  max-width: 1750px;
}

/* Header Upper */

.main-header .header-lower{
  position: relative;

}

.main-header .header-lower .inner-container{
  position: relative;
}

/* NavSidebar Button */

.navSidebar-button{
  position: relative;
    width: 64px;
    height: 64px;
  cursor: pointer;
    font-size: 20px;
  margin-left: 20px;
    line-height: 62px;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    color: var(--color-two);
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
    border: 1px solid rgba(var(--color-two-rgb), 0.15);
}

.navSidebar-button span{
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  font-size: 10px;
  line-height: 20px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  color: var(--white-color);
  background-color: var(--main-color);
}

.navSidebar-button:hover{
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.navSidebar-button:hover span{
  color: var(--white-color);
  background-color: var(--color-two);
}

.header-search_box .form-group{
  position:relative;
  margin:0px;
}

.header-search_box .form-group input:focus + button{
  color: var(--white-color);
  background-color: var(--main-color);
}

.header-search_box .form-group input[type="text"],
.header-search_box .form-group input[type="search"]{
  position:relative;
  line-height:28px;
  font-size:18px;
  padding:10px 50px 10px 25px;
  background:none;
  display:block;
  width:100%;
  height:64px;
  border-radius:50px;
  color:var(--black-color);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  border:1px solid rgba(var(--black-color-rgb), 0.10);
}

.header-search_box .form-group input::placeholder,
.header-search_box .form-group textarea::placeholder{
  color:var(--color-two);
  font-size: 18px;
}

.header-search_box .form-group button{
  position:absolute;
  right:5px;
  top:5px;
  bottom: 5px;
  width:60px;
  display:block;
  cursor:pointer;
  line-height:50px;
  font-weight:normal;
  border-radius:50px;
  font-size:18px;
  color:var(--color-two);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  background-color: var(--color-six);
}

.header-search_box .form-group button:hover{
  background-color:var(--main-color);
  color:var(--white-color);
}

.main-header .main-box .outer-container{
  position:relative;
}


.main-header .main-box .logo-box{
  position:relative;
  float:left;
  left:0px;
  z-index:10;
  padding:30px 0px;
}

.main-header .main-box .logo-box .logo img{
  display:inline-block;
  max-width:100%;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  transition:all 300ms ease;  
}

.main-header .header-lower .nav-outer{
  position:static;
}

.main-header .header-lower .logo-box{
  position: relative;
  z-index: 1;
  margin-right:80px;
}

.main-header .header-lower .logo-box .logo{
  position:relative;
  padding: 30px 0px;
}

.main-header.fixed-header .header-lower .logo-box .logo{
  padding:0px;
}

.main-header .main-menu .navigation > li:nth-child(7) > ul,
.main-header .main-menu .navigation > li:nth-child(8) > ul{
  left:0px;
  right:auto !important;
}



/* Media query for screens 1023px and below */
@media (max-width: 1023px) {
    .main-header .header-lower .logo-box .logo {
        padding: 0px;
    }
}


/* Main Menu */

.main-header .main-menu{
  position:static;
  
}

.main-header .main-menu .navbar-collapse{
  padding:0px;
  display:block;
}

.main-header .header-lower .main-menu .navigation{
  position:static;
}

.main-header .main-menu .navigation > li{
  position:relative;
  margin-right:28px;
  display:inline-block;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-header .main-menu .navigation > li.current a::after,
.main-header .main-menu .navigation > li:hover a::after{
  opacity: 1;
}

.main-header .main-menu .navigation > li.dropdown > a{
  padding-right:15px;
}

.main-header .main-menu .navigation > li.dropdown > a:before{
  position: absolute;
    content: "\f12c";
    right: 0px;
  font-weight:800;
  font-size:12px;
  font-family: "flaticon_lamusiqueauxenfants-icons";
}

.main-header .main-menu .navigation > li.dropdown:hover > a:before{
  transform: rotate(180deg);
}

.main-header.fixed-header .header-lower{
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  z-index:9999999;
  opacity:1;
  visibility:visible;
  background-color: #1e272e;
  
}

/* .main-header.fixed-header .main-menu .navigation > li > a{
  padding: 34px 0px;
} */

.main-header .main-menu .navigation > li > a{
  position:relative;
  display:block;
  font-size:18px;
  font-weight:500;
  line-height:20px;
  padding:36px 0px;
  text-align:center;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  text-transform: capitalize;
  color: rgba(var(--color-three-rgb), 0.80);
}

.main-header .main-menu .navigation > li.dropdown > a{
  padding-right:15px !important;
}

.main-header .main-menu .navigation > li:hover > a::before{
  color: var(--main-color);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-header .main-menu .navigation > li >

.main-header .sticky-header .main-menu .navigation > li >

.main-header .main-menu .navigation > li >

.main-header .main-menu .navigation > li:hover > a span{
    --m: calc(17px * -1);
}

.main-menu > li > a .menu-text span:nth-child(1), .main-menu-4 > li >

.main-header .main-menu .navigation > li >

.main-header .main-menu .navigation > li >

.main-header .main-menu .navigation > li >

.main-header .main-menu .navigation > li >

.main-header .main-menu .navigation > li >

.main-header .main-menu .navigation > li >

.main-header .main-menu .navigation > li >

.main-header .main-menu .navigation > li >

.main-header .main-menu .navigation > li >

.main-header .main-menu .navigation > li >

.main-header .main-menu .navigation > li > a > span{
  position:absolute;
  right:-25px;
  top:20px;
  width:42px;
  height:16px;
  font-weight:600;
  line-height:1.6em;
  border-radius:50px;
  letter-spacing:1px;
  font-size:12px;
  text-transform:uppercase;
  color:var(--black-color);
  background-color:var(--main-color);
}

.main-header .main-menu .navigation > li:last-child{
  margin-right:0px;
}

.main-header .sticky-header .main-menu .navigation > li{
  position:relative;
}

.main-header .sticky-header .main-menu .navigation > li:last-child{
  margin-right:0px;
}

.main-header .main-menu .navigation > li:last-child ul{
  right:0px;
}

.main-header .main-menu .navigation > li:hover > a,
.main-header .main-menu .navigation > li.current > a{
  opacity:1;
  color: var(--main-color);
}

.main-header .main-menu .navigation > li > ul{
  position:absolute;
  width:16rem;
  top:100%;
  padding:15px 15px;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
  border-radius:0px;
  background-color:var(--white-color);
  box-shadow: 0px 0px 10px rgba(0,0,0,0.10);
}

.main-header .main-menu .navigation > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-header .main-menu .navigation > li > ul > li{
  position:relative;
  width:100%;
  opacity:0;
  text-align:left;
  margin-bottom:2px;
  transform:translateY(11px);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-header .main-menu .navigation > li > ul > li:last-child{
  margin-bottom:0px;
}

.main-header .main-menu .navigation > li:hover > ul > li{
  opacity:1;
  transform:translateY(0px);
  -webkit-transition-delay: 70ms;
  -moz-transition-delay: 70ms;
  -ms-transition-delay: 70ms;
  -o-transition-delay: 70ms;
  transition-delay: 70ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(2){
  -webkit-transition-delay: 140ms;
  -moz-transition-delay: 140ms;
  -ms-transition-delay: 140ms;
  -o-transition-delay: 140ms;
  transition-delay: 140ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(3){
  -webkit-transition-delay: 210ms;
  -moz-transition-delay: 210ms;
  -ms-transition-delay: 210ms;
  -o-transition-delay: 210ms;
  transition-delay: 210ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(4){
  -webkit-transition-delay: 280ms;
  -moz-transition-delay: 280ms;
  -ms-transition-delay: 280ms;
  -o-transition-delay: 280ms;
  transition-delay: 280ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(5){
  -webkit-transition-delay: 350ms;
  -moz-transition-delay: 350ms;
  -ms-transition-delay: 350ms;
  -o-transition-delay: 350ms;
  transition-delay: 350ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(6){
  -webkit-transition-delay: 420ms;
  -moz-transition-delay: 420ms;
  -ms-transition-delay: 420ms;
  -o-transition-delay: 420ms;
  transition-delay: 420ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(7){
  -webkit-transition-delay: 490ms;
  -moz-transition-delay: 490ms;
  -ms-transition-delay: 490ms;
  -o-transition-delay: 490ms;
  transition-delay: 490ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(8){
  -webkit-transition-delay: 560ms;
  -moz-transition-delay: 560ms;
  -ms-transition-delay: 560ms;
  -o-transition-delay: 560ms;
  transition-delay: 560ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(9){
  -webkit-transition-delay: 630ms;
  -moz-transition-delay: 630ms;
  -ms-transition-delay: 630ms;
  -o-transition-delay: 630ms;
  transition-delay: 630ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(10){
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(11){
  -webkit-transition-delay: 770ms;
  -moz-transition-delay: 770ms;
  -ms-transition-delay: 770ms;
  -o-transition-delay: 770ms;
  transition-delay: 770ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(12){
  -webkit-transition-delay: 840ms;
  -moz-transition-delay: 840ms;
  -ms-transition-delay: 840ms;
  -o-transition-delay: 840ms;
  transition-delay: 840ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(13){
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}

.main-header .main-menu .navigation > li > ul > li:last-child{
  border-bottom:none;
}

.main-header .main-menu .navigation > li > ul > li > a{
  position:relative;
  display:block;
  line-height:24px;
  font-weight:600;
  font-size:16px;
  padding: 10px 15px;
  color:var(--black-color);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  background-color: rgba(var(--black-color-rgb), 0.06);
}

.main-header .main-menu .navigation > li > ul > li > a:hover{
  color: var(--white-color);
  background-color: var(--color-two);
}

.main-header .main-menu .navigation > li > ul > li.dropdown > a:after{
  position:absolute;
  content: "\f105";
  right: 15px;
    top: 12px;
  z-index:5;
  width:10px;
  height:20px;
  display:block;
  line-height:20px;
  font-weight:normal;
  text-align:center;
  font-weight:800;
  font-size:16px;
  color:var(--black-color);
  font-family: 'Font Awesome 6 Free';
}

.main-header .main-menu .navigation > li > ul > li > ul{
  position:absolute;
  left:100%;
  top:0px;
  width: 16rem;
    padding:15px 15px;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
    visibility: hidden;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
  border-radius:0px;
  background-color:var(--white-color);
  box-shadow: 0px 0px 10px rgba(0,0,0,0.10);
}

.main-header .main-menu .navigation > li > ul > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-header .main-menu .navigation > li > ul > li > ul > li{
  position:relative;
  width:100%;
  text-align:left;
  opacity:0;
  margin-bottom:2px;
  transform:translateY(-8px);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-header .main-menu .navigation > li > ul > li > ul > li:last-child{
  margin-bottom:0px;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li{
  opacity:1;
  transform:translateY(0px);
  -webkit-transition-delay: 70ms;
  -moz-transition-delay: 70ms;
  -ms-transition-delay: 70ms;
  -o-transition-delay: 70ms;
  transition-delay: 70ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(2){
  -webkit-transition-delay: 140ms;
  -moz-transition-delay: 140ms;
  -ms-transition-delay: 140ms;
  -o-transition-delay: 140ms;
  transition-delay: 140ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(3){
  -webkit-transition-delay: 210ms;
  -moz-transition-delay: 210ms;
  -ms-transition-delay: 210ms;
  -o-transition-delay: 210ms;
  transition-delay: 210ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(4){
  -webkit-transition-delay: 280ms;
  -moz-transition-delay: 280ms;
  -ms-transition-delay: 280ms;
  -o-transition-delay: 280ms;
  transition-delay: 280ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(5){
  -webkit-transition-delay: 350ms;
  -moz-transition-delay: 350ms;
  -ms-transition-delay: 350ms;
  -o-transition-delay: 350ms;
  transition-delay: 350ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(6){
  -webkit-transition-delay: 420ms;
  -moz-transition-delay: 420ms;
  -ms-transition-delay: 420ms;
  -o-transition-delay: 420ms;
  transition-delay: 420ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(7){
  -webkit-transition-delay: 490ms;
  -moz-transition-delay: 490ms;
  -ms-transition-delay: 490ms;
  -o-transition-delay: 490ms;
  transition-delay: 490ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(8){
  -webkit-transition-delay: 560ms;
  -moz-transition-delay: 560ms;
  -ms-transition-delay: 560ms;
  -o-transition-delay: 560ms;
  transition-delay: 560ms;
}

.main-header .main-menu .navigation > li > ul > li > ul > li:last-child{
  border-bottom:none; 
}

.main-header .main-menu .navigation > li > ul > li > ul > li > a{
  position:relative;
  display:block;
  line-height:24px;
  font-weight:600;
  font-size:16px;
  padding: 10px 15px;
  text-transform:uppercase;
  color:var(--black-color);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  background-color: rgba(var(--black-color-rgb), 0.06);
}

.main-header .main-menu .navigation > li > ul > li > ul > li > a:hover{
  color: var(--white-color);
  background-color: var(--main-color);
}

.main-header .main-menu .navigation > li.dropdown:hover > ul{
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

.main-header .main-menu .navigation li > ul > li.dropdown:hover > ul{
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

.main-header .main-menu .navbar-collapse > ul li.dropdown .dropdown-btn{
  position:absolute;
  right:10px;
  top:6px;
  width:30px;
  height:30px;
  text-align:center;
  color:var(--white-color);
  line-height:28px;
  border:1px solid var(--white-color);
  background-size:20px;
  cursor:pointer;
  z-index:5;
  display:none;
}

/* Header Style Two */

.header-style-two{
  position:relative;
  background-color:var(--white-color);
}



.header-style-two .auto-container {
    max-width: 1250px;
}

.main-header.header-style-two .main-menu .navigation > li > a{
  font-weight:700;
  padding:34px 0px;
  color:#1e272e;
}

.main-header.header-style-two .header-lower .logo-box .logo{
  padding:unset;
}

.main-header.header-style-two.fixed-header .header-lower{
  background-color:var(--white-color);
}

.header-style-three .header-top{
  background:none;
}

.header-style-three .header-top .left-box{
  padding:16px 0px;
}

.header-style-three .header-top_list li{
  font-weight:400;
}

.header-style-three .header-top_list li .icon{
  opacity:0.50;
  color:var(--color-three);
}

.header-style-three .header-top .inner-container{
  position:relative;
  padding:0px 25px;
  border-radius:12px 12px 0px 0px;
  background-color:#1e272e;
}

.header-style-three .header-lower .inner-container{
  padding-right:25px;
  background-color:var(--color-three);
}

.header-style-three .header-lower .logo-box .logo{
  padding:15px 25px;
  background-color:var(--main-color);
}

.main-header.header-style-three .header-lower .logo-box{
  margin-right:30px;
  border-radius:0px 0px 0px 15px;
}

.main-header.header-style-three .main-menu .navigation > li > a{
  padding:32px 0px;
  color:#1e272e;
}

.main-header.header-style-three.fixed-header .header-lower{
  background-color:var(--color-three);
}

.main-header.header-style-three.fixed-header .header-lower .logo-box .logo {
    padding: 15px 16px;
}

/*** 

====================================================================
  Mobile Menu
====================================================================

***/

.main-header .mobile-nav-toggler{
  position: relative;
  float: right;
  font-size: 25px;
  line-height: 44px;
  cursor: pointer;
  display: none;
  color:var(--white-color);
  font-family: "flaticon_lamusiqueauxenfants-icons";
}

.main-header.header-style-two .mobile-nav-toggler{
  color:var(--black-color);
}

.main-header.header-style-three .mobile-nav-toggler{
  color:var(--black-color);
}

.main-header .sticky-header .mobile-nav-toggler{
  color:var(--black-color);
}

.mobile-menu{
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right:30px;
  max-width:100%;
  height: 100%;
  visibility: hidden;
  z-index: 99999999;
}

.mobile-menu .nav-logo{
  position:relative;
  padding:20px 20px;
  text-align:left;  
}

.mobile-menu .nav-logo img{
  max-width:200px;
}

.mobile-menu-visible{
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu{
  visibility: visible;
  box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, 0.1);
}

.mobile-menu .menu-backdrop{
  position: fixed;
  right: 0;
  top: 0;
  width: 0%;
  height: 100%;
  z-index: 1;
  background: rgba(0,0,0,0.90);
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
  transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
  
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}

.mobile-menu-visible .mobile-menu .menu-backdrop{
  opacity: 1;
  width:100%;
  visibility: visible;
  transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .menu-box{
  position: absolute;
  right: -400px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #ffffff;
  padding: 0px 0px;
  z-index: 5;
  border-radius: 0px;
  
  transition: all 0ms ease;
    -moz-transition: all 0ms ease;
    -webkit-transition: all 0ms ease;
    -ms-transition: all 0ms ease;
    -o-transition: all 0ms ease;
}

.mobile-menu-visible .mobile-menu .menu-box{
  right:0px;
  -webkit-transition-delay: 0ms;
  -moz-transition-delay: 0ms;
  -ms-transition-delay: 0ms;
  -o-transition-delay: 0ms;
  transition-delay: 0ms;
}

.mobile-menu .close-btn{
  position: absolute;
  right: 15px;
  top: 15px;
  line-height: 30px;
  width: 30px;
  text-align: center;
  font-size: 16px;
  color: #202020;
  cursor: pointer;
  z-index: 10;
  -webkit-transition:all 0.1s ease;
  -moz-transition:all 0.1s ease;
  -ms-transition:all 0.1s ease;
  -o-transition:all 0.1s ease;
  transition:all 0.1s ease;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
  font-family: "flaticon_lamusiqueauxenfants-icons";
}

.mobile-menu-visible .mobile-menu .close-btn{
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
}

.mobile-menu .close-btn:hover{
  opacity: 0.50;
}

.mobile-menu .navigation{
  position: relative;
  display: block;
  width:100%;
  border-top: 1px solid rgba(0,0,0,0.10);
}

.mobile-menu .navigation li > ul > li:last-child{
  border-bottom: none;
}

.mobile-menu .navigation li > ul > li:first-child{
  border-top: 1px solid rgba(0,0,0,0.10);
}

.mobile-menu .navigation li:hover > a,
.mobile-menu .navigation li.current > a{
  color:#111111;
}

.mobile-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:0px;
  top:0px;
  width:44px;
  height:44px;
  text-align:center;
  font-size:18px;
  line-height:44px;
  color:#404040;
  cursor:pointer;
  z-index:5;
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul{
  display: none;
}

.mobile-menu .navigation li > ul > li > a{
  padding-left:30px;
}

.mobile-menu .navigation li > ul > li > ul{
  padding-left:0px;
}

.mobile-menu .navigation li > ul > li > ul > li > a{
  padding-left:40px;
}

.main-header .mobile-menu .close-btn:hover{
  opacity: 0.50;
}

.main-header .mobile-menu .navigation{
  position: relative;
  display: block;
  width:100%;
  border-top: 1px solid #dddddd;
}

.main-header .mobile-menu .navigation li{
  position: relative;
  display: block;
  border-bottom: 1px solid #dddddd;
}

.main-header .mobile-menu .navigation li > ul > li:last-child{
  border-bottom: none;
}

.main-header .mobile-menu .navigation li > ul > li:first-child{
  border-top: 1px solid #dddddd;
}

.main-header .mobile-menu .navigation li > a{
  position: relative;
  display: block;
  line-height: 24px;
  padding: 12px 20px;
  font-size: 18px;
  color: var(--black-color);

}

ul.navigation .last-ul {padding-left: 10px;}

.main-header .mobile-menu .navigation li:hover > a,
.main-header .mobile-menu .navigation li.current > a{
  
}

.main-header .mobile-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:0px;
  top:0px;
  width:44px;
  height:44px;
  text-align:center;
  color: var(--dark-color);
  font-size: 18px;
  line-height:44px;
  cursor:pointer;
  z-index:5;
}

.main-header .mobile-menu .navigation li.dropdown .dropdown-btn:after{
  content:'';
  position:absolute;
  left:0px;
  top:10px;
  width:1px;
  height:24px;
  border-left:1px solid #dddddd;
}

.main-header .mobile-menu .navigation li > ul,
.main-header .mobile-menu .navigation li > ul > li > ul{
  display: none;
}

.main-header .sticky-header .navbar-header{
  display:none;
}

.main-header .outer-box{
  position: relative;
  gap:15px;
  display:flex;
}

.main-header_button{
  position: relative;
  height: 58px;
}

/* Search Box Outer */

.main-header .search-box-outer{
  position:relative;
}

/*** 

====================================================================
  Search Popup
====================================================================

***/

.search-popup{
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 999999999;
  margin-top: -540px;
  transform: translateY(-100%); 
    transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.search-popup .color-layer{
  position: absolute;
  content:'';
  left: 0;
  top: 0;
  height: 120px;
  width: 100%;
  box-shadow:0px 15px 15px rgba(0,0,0,0.07);
  background-color: rgba(255,255,255,1);
    transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.sidenav-bar-visible .search-popup{
  width: 80%;
}

.search-active .search-popup{
  transform: translateY(0%);
  margin-top:0px;
}

.search-popup .close-search{
  position: absolute;
  right: 25px;
  top: 25px;
  cursor:pointer;
  background:none;
  font-family: "flaticon_lamusiqueauxenfants-icons";
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
  z-index:9999;
  visibility: hidden;
}

.search-popup .close-search span{
  position: relative;
  display: block;
  z-index:2;
  font-weight:800;
  font-size:22px;
  color: var(--black-color);
}

.search-active .search-popup .close-search{
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}

.search-popup form{
  position: absolute;
  max-width: 1300px;
  top: 25px;
  left: 15px;
  right: 15px;
  z-index:999;
  margin:0px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  background-color: var(--dark-color);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.search-active .search-popup form{
  transform: scaleX(1);
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}

.search-popup .form-group{
  position:relative;
  margin:var(--margin-zero);
  overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"]{
  position:relative;
  display:block;
  height:70px;
  width:100%;
  line-height: 50px;
  font-size:18px;
  color:var(--color-two);
  padding: 10px 30px 10px 60px;
  background-color: var(--white-color);
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
  font-weight:400;
  text-transform:capitalize;
  border-bottom:1px solid rgba(0,0,0,0.10)
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button{
  position:absolute;
  left:10px;
  top:0px;
  line-height: 70px;
  background: transparent;
  text-align:center;
  font-size:24px;
  color:var(--black-color);
  cursor:pointer;
  font-weight:800;
  display:inline-block;
  font-family: 'Font Awesome 6 Free';
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover{
  color: var(--black-color);
}

.search-popup input::placeholder,
.search-popup textarea::placeholder{
  color:var(--color-two);
}

.search-popup .close-search.style-two{
  position: absolute;
  right: 25px;
  left: auto;
  color: var(--white-color);
  width:auto;
  height:auto;
  top:25px;
  margin:0px;
  border:none;
  background:none !important;
  box-shadow:none !important;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}

.search-popup .close-search.style-two span{
  font-size:18px;
  color: var(--white-color);
}

.xs-sidebar-widget::-webkit-scrollbar,
  width: 8px;
}

/* Track */
.xs-sidebar-widget::-webkit-scrollbar-track,
  background: #dddddd;
}

/* Handle */
.xs-sidebar-widget::-webkit-scrollbar-thumb,
  background-color:var(--color-three);
}

/* Handle on hover */
.xs-sidebar-widget::-webkit-scrollbar-thumb:hover,
  background: #555;
}

.about-widget{
  position: relative;
  border-radius: 50px;
  cursor: pointer;
  background: none;
}

/* About Sidebar */

.about-sidebar{
  position:fixed;
  left:-500px;
  top:0px;
  bottom:0px;
  width:450px;
  z-index:999999;
  -webkit-transition:all 900ms ease;
  -ms-transition:all 900ms ease;
  -o-transition:all 900ms ease;
  -moz-transition:all 900ms ease;
  transition:all 900ms ease;
  background-color:var(--white-color);
}

.about-sidebar .gradient-layer{
  position:absolute;
  left:0%;
  top:0px;
  bottom:0px;
  width:0%;
  opacity:0.60;
  z-index:-1;
  background-color:var(--black-color);
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  transition:all 500ms ease;
  cursor: url(assets/images/cross-out.png), pointer;
}

.about-sidebar.active .gradient-layer{
  width:500%;
  left:100%;
}

.about-sidebar.active{
  left:0px;
}

.about-sidebar .close-button span{
  position:absolute;
  right:20px;
  top:10px;
  width: 50px;
  height: 50px;
  z-index:10;
  cursor:pointer;
  line-height: 50px;
  text-align: center;
  font-size:22px;
  color:var(--black-color);
  background-color:var(--white-color);
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  transition:all 300ms ease;
}

.about-sidebar .close-button span:hover{
  color: var(--white-color);
  background-color: var(--main-color);
}

.about-sidebar .content-box{
  position:relative;
  padding:30px 50px;
}

.about-sidebar h3{
  margin-bottom:15px;
  color:var(--black-color);
}

.about-sidebar h3 span{
  font-weight:700;
}

.about-sidebar .text{
  margin-top:20px;
  margin-bottom:30px;
}
  
  @-webkit-keyframes burger-hover {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
  }
  
  @keyframes burger-hover {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
  }


.main-footer .color-one{
  position:absolute;
  left:5%;
  top:20%;
  z-index:1;
  width:166px;
  height:166px;
  opacity:0.08;
  color: var(--color-three);
  font-size: 80px;
  
}

.main-footer .color-two{
  position:absolute;
  right:6%;
  top:45%;
  z-index:1;
  width:91px;
  height:91px;
  opacity:0.08;
  color: var(--color-three);
  font-size: 80px;
}

.main-footer .widgets-section{
  position: relative;
  padding: 80px 0px 40px;
}

.main-footer .widgets-section .big-column:first-child .footer_column:nth-child(2) .links-widget,
.footer-style_two .widgets-section .big-column:first-child .footer_column:nth-child(2) .links-widget{
  padding-left:60px;
}

/* Footer Widget */

.footer-widget{
  position: relative;
  margin-bottom: 30px;
}

.footer-logo{
  position: relative;
  margin-bottom: 22px;
}

.footer-text{
  position:relative;
  opacity:0.70;
  font-size:18px;
  line-height:26px;
  color:var(--color-three);
}

.footer_socials{
  position: relative;
  margin-top: 25px;
}

.footer_socials a{
  position: relative;
  width: 40px;
  height: 40px;
  font-size:16px;
  margin-right: 5px;
  line-height: 38px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  color: var(--white-color);
  border: 1px solid rgba(var(--color-three-rgb), 0.20);
  font-family: 'Font Awesome 5 Brands';
}

.footer_socials a:hover{
  color: var(--color-two);
  background-color: var(--white-color);
}

.footer-title{
  position: relative;
  margin-top: 15px;
  font-weight:700;
  margin-bottom: 20px;
  color: var(--white-color);
  text-transform: capitalize;
  font-family: 'Quicksand', sans-serif; 
}

.newsletter-box .form-group {
    position: relative;
    margin: 0px;
    width: 100%;
    max-width: 100%;
}

.newsletter-box .form-group input[type="text"],
.newsletter-box .form-group input[type="email"] {
    position: relative;
    line-height: 43px;
    display: block;
    height: 72px;
    width: 100%;
  border-radius: 50px;
    box-shadow: inherit;
    font-size: 17px;
  padding: 10px 10px 10px 35px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    color:#1e272e;
    background-color:var(--white-color);
}

.newsletter-box .form-group .icon{
  position: absolute;
  left: 18px;
  top: 20px;
  font-size: 18px;
  color: var(--main-color);
}

.newsletter-box .form-group button {
    position: absolute;
    right: 9px;
    top: 8px;
  padding: 17px 32px;
}

.footer-list{
  position:relative;
}

.footer-list li{
  position:relative;
  margin-bottom:12px;
}

.footer-list li a{
  position:relative;
  font-size: 18px;
  font-weight:500;
  font-family: 'Quicksand', sans-serif; 
  color: rgba(var(--color-three-rgb), 0.70);
}

.footer-list li a:hover{
  color: rgba(var(--color-three-rgb), 1);
}

.footer-bottom{
  position:relative;
  padding:36px 0px;
  background-color: rgba(var(--color-three-rgb), 0.10);
}

.footer-bottom .copyright{
  position:relative;
  font-weight:500;
  font-size:18px;
  opacity:0.70;
  color:var(--color-three);
}

.footer-bottom .designs_by{
  position:relative;
  text-align:right;
  color: rgba(var(--color-three-rgb), 0.70);
}

.footer-bottom .designs_by a{
font-weight: bold;
color: var(--color-two);
font-size: 18px;
}

a.designs_by{
  font-weight: bold;
color: var(--color-two);
}
/*** 

====================================================================
  Footer Style Two
====================================================================

***/

.footer-style_two{
  position:relative;
  padding-bottom:30px;
}

.footer-style_two .outer-container{
  position:relative;
  max-width:1760px;
  margin:0 auto;
  border-radius:24px;
  padding:100px 0px 0px;
  background-color:var(--color-three);
}

.footer-style_two .auto-container{
  position:relative;
  overflow:hidden;
}

.footer-style_two .footer-text{
  font-weight:700;
  color:#1e272e;
}

.footer-style_two .footer_socials a{
  color:#1e272e;
  border:1px solid rgba(var(--color-four-rgb), 0.15);
}

.footer-style_two .footer_socials a:hover{
  color:var(--white-color);
  border-color:var(--main-color);
  background-color:var(--main-color);
}

.footer-style_two .footer-title{
  color:#1e272e;
}

.footer-style_two .footer-list li{
  margin-bottom:15px;
}

.footer-style_two .footer-list li a{
  font-weight:600;
      color: #1e272e;
      opacity: 0.80;
}

.footer-style_two .footer-list li a:hover{
      color: #1e272e;
  }

/* Newsletter Widget */



.newsletter_footer-text{
  position:relative;
  font-weight: 700;
  font-size: 18px;
  line-height:24px;
  padding-right:30px;
  margin-bottom:20px;
    color:rgba(var(--color-four-rgb), 0.70);
}

/* Newsletter Box */

.newsletter-box_two{
    position: relative;
  margin-top: 20px;
}

.newsletter-box_two .form-group {
    position: relative;
    margin: 0px;
    width: 100%;
    max-width: 100%;
}

.newsletter-box_two .form-group input[type="text"],
.newsletter-box_two .form-group input[type="email"] {
    position: relative;
    line-height: 43px;
    display: block;
    height: 64px;
    width: 100%;
  border-radius: 50px;
    box-shadow: inherit;
    font-size: 18px;
  padding: 10px 10px 10px 50px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
  background:none;
    color:rgba(var(--color-four-rgb), 0.70);
    border:1px solid rgba(var(--main-color-rgb), 0.20);
}

.newsletter-box_two .form-group .icon{
  position: absolute;
  left: 20px;
  top: 22px;
  font-size: 18px;
  color: var(--main-color);
}

.newsletter-box_two .form-group button {
    position: absolute;
    right: 7px;
    top: 6px;
  width:52px;
  height:52px;
  line-height:52px;
  font-size: 20px;
  border-radius:50px;
  display:inline-block;
  color:var(--white-color);
  background-color:var(--color-two);
  font-family: "flaticon_lamusiqueauxenfants-icons";
}

.footer-style_two .footer-bottom{
  padding:0px 0px;
  margin-top:40px;
}

.footer-style_two .footer-bottom .inner-container{
  position:relative;
  padding:26px 0px;
  border-top:1px solid rgba(var(--color-four-rgb), 0.08);
}

.footer-style_two .footer-bottom .copyright{
  font-weight:700;
  color:#1e272e;
}

.footer-style_two .footer-bottom .designs_by{
  color:#1e272e;
  opacity: 0.70;
  font-weight: 700;
}

.copyright a {
  color: var(--color-two);
}

.main-footer.style-two{
  padding-top:0px;
}

.main-footer.style-two .widgets-section{
  padding-top:90px;
  padding-bottom:60px;
}

.main-footer.style-two .footer-bottom{
  padding:30px 0px;
}

.main-footer.style-two .newsletter-widget{
  background-color:rgba(var(--white-color-rgb), 0.10);
}

.main-footer.style-two .newsletter_footer-text{
  color:rgba(var(--color-three-rgb), 0.70);
}

.main-footer.style-two .newsletter-box_two .form-group input[type="text"],
.main-footer.style-two .newsletter-box_two .form-group input[type="email"]{
  color:rgba(var(--white-color-rgb), 0.70);
  border-color:rgba(var(--white-color-rgb), 0.20);
}
/*! jQuery UI - v1.12.1 - 2016-09-14
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
* Copyright jQuery Foundation and other contributors; Licensed MIT */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}
.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}
.ui-helper-clearfix:after {
  clear: both;
}

.ui-front {
  z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}


/* Icons
----------------------------------*/
.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: .5em .5em .5em .7em;
  font-size: 100%;
}
.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}
.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}
.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
}
.ui-menu .ui-menu {
  position: absolute;
}
.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  /* support: IE10, see #8844 */
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding:8px 1em 8px 15px;
}
.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px;
}

/* icon support */
.ui-menu-icons {
  position: relative;
}
.ui-menu-icons .ui-menu-item-wrapper {
  padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: .2em;
  margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}
.ui-button {
  padding: .4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: .1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  /* Support: IE <= 11 */
  overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
  width: 2em;
  box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap;
}

/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
  text-indent: 0;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap;

}

input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: .4em 1em;
}

/* workarounds */
/* Support: Firefox 5 - 40 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.ui-controlgroup {
  vertical-align: middle;
  display: inline-block;
}
.ui-controlgroup > .ui-controlgroup-item {
  float: left;
  margin-left: 0;
  margin-right: 0;
}
.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
  z-index: 9999;
}
.ui-controlgroup-vertical > .ui-controlgroup-item {
  display: block;
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}
.ui-controlgroup-vertical .ui-controlgroup-item {
  box-sizing: border-box;
}
.ui-controlgroup .ui-controlgroup-label {
  padding: .4em 1em;
}
.ui-controlgroup .ui-controlgroup-label span {
  font-size: 80%;
}
.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
  border-left: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
  border-top: none;
}
.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
  border-right: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
  border-bottom: none;
}

/* Spinner specific style fixes */
.ui-controlgroup-vertical .ui-spinner-input {

  /* Support: IE8 only, Android < 4.4 only */
  width: 75%;
  width: calc( 100% - 2.4em );
}
.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
  box-shadow: inset 1px 1px 1px #ccc;
  border-radius: .12em;
  border: none;
}
.ui-checkboxradio-radio-label .ui-icon-background {
  width: 16px;
  height: 16px;
  border-radius: 1em;
  overflow: visible;
  border: none;
}
.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  background-image: none;
  width: 8px;
  height: 8px;
  border-width: 4px;
  border-style: solid;
}
.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none;
}
.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}
.ui-datepicker .ui-datepicker-next {
  right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}
.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em;
}
.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}
.ui-datepicker td {
  border: 0;
  padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}
.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: .5em;
  top: .3em;
}
.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: .2em;
  outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
  padding: .4em 1em;
  position: relative;
}
.ui-dialog .ui-dialog-title {
  float: left;
  margin: .1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: .3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}
.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: .5em 1em;
  background: none;
  overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: .5em;
  padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
  margin: .5em .4em .5em 0;
  cursor: pointer;
}
.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0;
}
.ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0;
}
.ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0;
}
.ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0;
}
.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
  width: 7px;
  height: 7px;
}
.ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0;
}
.ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0;
}
.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0;
}
.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0;
}
.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}
.ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none;
}
.ui-resizable {
  position: relative;
}
.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}
.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}
.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}
.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}
.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}
.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}
.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}
.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  filter: alpha(opacity=25); /* support: IE8 */
  opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}
.ui-selectable {
  -ms-touch-action: none;
  touch-action: none;
}
.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}
.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0;
}
.ui-selectmenu-open {
  display: block;
}
.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ui-selectmenu-button.ui-button {
  text-align: left;
  white-space: nowrap;
  width: 14em;
}
.ui-selectmenu-icon.ui-icon {
  float: right;
  margin-top: 0;
}
.ui-slider {
  position: relative;
  text-align: left;
}
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}
.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

.ui-slider-horizontal {
  height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -.3em;
  margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: .8em;
  height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
  left: -.3em;
  margin-left: 0;
  margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}
.ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none;
}
.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}
.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: .222em 0;
  margin: .2em 0;
  vertical-align: middle;
  margin-left: .4em;
  margin-right: 2em;
}
.ui-spinner-button {
  width: 1.6em;
  height: 50%;
  font-size: .5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}
/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
  border-top-style: none;
  border-bottom-style: none;
  border-right-style: none;
}
.ui-spinner-up {
  top: 0;
}
.ui-spinner-down {
  bottom: 0;
}
.ui-tabs {
  position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
  padding: .2em;
}
.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px .2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: .5em 1em;
  text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}
.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
}
body .ui-tooltip {
  border-width: 2px;
}
/* Component containers
----------------------------------*/
.ui-widget {
  font-family: 'Quicksand', sans-serif; 
  font-size: 1em;
}
.ui-widget .ui-widget {
  font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: 'Quicksand', sans-serif; 
  font-size: 1em;
}
.ui-widget.ui-widget-content {
  border: none;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.10);
}
.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}
.ui-widget-content a {
  color: #333333;
}
.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}
.ui-widget-header a {
  color: #333333;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,

/* We use html here because we need a greater specificity to make sure disabled
works properly when clicked or hovered */
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}
.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}
.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter:Alpha(Opacity=70); /* support: IE8 */
  font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter:Alpha(Opacity=35); /* support: IE8 */
  background-image: none;
}
.ui-state-disabled .ui-icon {
  filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}
.ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  /*background-image: url("images/ui-icons_555555_256x240.png");*/
}
.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  /*background-image: url("images/ui-icons_ffffff_256x240.png");*/
}
.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("images/ui-icons_777620_256x240.png");
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("images/ui-icons_cc0000_256x240.png");
}
.ui-button .ui-icon {
  background-image: url("images/ui-icons_777777_256x240.png");
}

/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-caret-1-e { background-position: -32px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-s { background-position: -65px -16px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-check { background-position: -64px -144px; }

@-webkit-keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0); }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0); } }

@keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0); }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0); } }

@-webkit-keyframes move-up-down {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px); }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); } }

@keyframes move-up-down {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px); }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); } }
/* ui-icon-seek-first is deprecated{ background-position: -80px -160px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left{
  border-top-left-radius: 3px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left{
  border-bottom-left-radius: 3px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}

/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa;
  opacity: .3;
  filter: Alpha(Opacity=30); /* support: IE8 */
}
.ui-widget-shadow {
  -webkit-box-shadow: 0px 0px 5px #666666;
  box-shadow: 0px 0px 5px #666666;
}
/**
 * Swiper 6.6.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 11, 2021
 */
 @font-face {
    font-family: swiper-icons;
    src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') format('woff');
    font-weight: 400;
    font-style: normal
}
:root {
    --swiper-theme-color: #007aff
}
.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}
.swiper-container-vertical > .swiper-wrapper {
    flex-direction: column
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0)
}
.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap
}
.swiper-container-multirow-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}
.swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}
.swiper-container-pointer-events {
    touch-action: pan-y
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform
}
.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-container-autoheight .swiper-slide {
    height: auto
}
.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}
.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
    transform-style: preserve-3d
}
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}
.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}
.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}
.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}
.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}
.swiper-container-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start
}
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
    scroll-snap-type: x mandatory
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
    scroll-snap-type: y mandatory
}
:root {
    --swiper-navigation-size: 44px
}
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
    content: 'prev'
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto
}
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
    content: 'next'
}
.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
    --swiper-navigation-color: #ffffff
}
.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
    --swiper-navigation-color: #000000
}
.swiper-button-lock {
    display: none
}
.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10
}
.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}
.swiper-container-horizontal > .swiper-pagination-bullets,
    bottom: 10px;
    left: 0;
    width: 100%
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1)
}
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #000;
    opacity: .2
}
button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none
}
.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}
.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0px, -50%, 0)
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block
}
.swiper-container-vertical >
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform, .2s top
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}
.swiper-container-horizontal >
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s left
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s right
}
.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, .25);
    position: absolute
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}
.swiper-pagination-lock {
    display: none
}
.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, .1)
}
.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}
.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}
.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    left: 0;
    top: 0
}
.swiper-scrollbar-lock {
    display: none
}
.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}
.swiper-slide-zoomed {
    cursor: move
}
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    animation: swiper-preloader-spin 1s infinite linear;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}
@keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg)
    }
}
.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out
}
.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}
.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}
.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}
.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
    transform-origin: 100% 0
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}
.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: 0
}
.swiper-container-cube .swiper-cube-shadow:before {
    content: '';
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px)
}
.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}
.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}
/*!
 * Font Awesome Free 6.2.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2022 Fonticons, Inc.
 */
.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900); }

.fa,
.fa-classic,
.fa-sharp,
.fas,
.fa-solid,
.far,
.fa-regular,
.fab,
.fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto; }

.fas,
.fa-classic,
.fa-solid,
.far,
.fa-regular {
  font-family: 'Font Awesome 6 Free'; }

.fab,
.fa-brands {
  font-family: 'Font Awesome 6 Brands'; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em; }

.fa-xs {
  font-size: 0.75em;
  line-height: 0.08333em;
  vertical-align: 0.125em; }

.fa-sm {
  font-size: 0.875em;
  line-height: 0.07143em;
  vertical-align: 0.05357em; }

.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em; }

.fa-xl {
  font-size: 1.5em;
  line-height: 0.04167em;
  vertical-align: -0.125em; }

.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  left: calc(var(--fa-li-width, 2em) * -1);
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit; }

.fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.08em);
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); }

.fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, 0.3em); }

.fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, 0.3em); }

.fa-beat {
  -webkit-animation-name: fa-beat;
          animation-name: fa-beat;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
          animation-timing-function: var(--fa-animation-timing, ease-in-out); }

.fa-bounce {
  -webkit-animation-name: fa-bounce;
          animation-name: fa-bounce;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); }

.fa-fade {
  -webkit-animation-name: fa-fade;
          animation-name: fa-fade;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); }

.fa-beat-fade {
  -webkit-animation-name: fa-beat-fade;
          animation-name: fa-beat-fade;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); }

.fa-flip {
  -webkit-animation-name: fa-flip;
          animation-name: fa-flip;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
          animation-timing-function: var(--fa-animation-timing, ease-in-out); }

.fa-shake {
  -webkit-animation-name: fa-shake;
          animation-name: fa-shake;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, linear);
          animation-timing-function: var(--fa-animation-timing, linear); }

.fa-spin {
  -webkit-animation-name: fa-spin;
          animation-name: fa-spin;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 2s);
          animation-duration: var(--fa-animation-duration, 2s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, linear);
          animation-timing-function: var(--fa-animation-timing, linear); }

.fa-spin-reverse {
  --fa-animation-direction: reverse; }

.fa-pulse,
.fa-spin-pulse {
  -webkit-animation-name: fa-spin;
          animation-name: fa-spin;
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));
          animation-timing-function: var(--fa-animation-timing, steps(8)); }

@media (prefers-reduced-motion: reduce) {
  .fa-beat,
  .fa-bounce,
  .fa-fade,
  .fa-beat-fade,
  .fa-flip,
  .fa-pulse,
  .fa-shake,
  .fa-spin,
  .fa-spin-pulse {
    -webkit-animation-delay: -1ms;
            animation-delay: -1ms;
    -webkit-animation-duration: 1ms;
            animation-duration: 1ms;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s; } }

@-webkit-keyframes fa-beat {
  0%, 90% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  45% {
    -webkit-transform: scale(var(--fa-beat-scale, 1.25));
            transform: scale(var(--fa-beat-scale, 1.25)); } }

@keyframes fa-beat {
  0%, 90% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  45% {
    -webkit-transform: scale(var(--fa-beat-scale, 1.25));
            transform: scale(var(--fa-beat-scale, 1.25)); } }

@-webkit-keyframes fa-bounce {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0); }
  10% {
    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); }
  30% {
    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); }
  50% {
    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); }
  57% {
    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); }
  64% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0); }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0); } }

@keyframes fa-bounce {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0); }
  10% {
    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); }
  30% {
    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); }
  50% {
    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); }
  57% {
    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); }
  64% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0); }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0); } }

@-webkit-keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4); } }

@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4); } }

@-webkit-keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    opacity: 1;
    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
            transform: scale(var(--fa-beat-fade-scale, 1.125)); } }

@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    opacity: 1;
    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
            transform: scale(var(--fa-beat-fade-scale, 1.125)); } }

@-webkit-keyframes fa-flip {
  50% {
    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } }

@keyframes fa-flip {
  50% {
    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } }

@-webkit-keyframes fa-shake {
  0% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg); }
  4% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg); }
  8%, 24% {
    -webkit-transform: rotate(-18deg);
            transform: rotate(-18deg); }
  12%, 28% {
    -webkit-transform: rotate(18deg);
            transform: rotate(18deg); }
  16% {
    -webkit-transform: rotate(-22deg);
            transform: rotate(-22deg); }
  20% {
    -webkit-transform: rotate(22deg);
            transform: rotate(22deg); }
  32% {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg); }
  36% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg); }
  40%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); } }

@keyframes fa-shake {
  0% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg); }
  4% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg); }
  8%, 24% {
    -webkit-transform: rotate(-18deg);
            transform: rotate(-18deg); }
  12%, 28% {
    -webkit-transform: rotate(18deg);
            transform: rotate(18deg); }
  16% {
    -webkit-transform: rotate(-22deg);
            transform: rotate(-22deg); }
  20% {
    -webkit-transform: rotate(22deg);
            transform: rotate(22deg); }
  32% {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg); }
  36% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg); }
  40%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); } }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.fa-rotate-90 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }

.fa-rotate-180 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }

.fa-rotate-270 {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg); }

.fa-flip-horizontal {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1); }

.fa-flip-vertical {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1); }

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1); }

.fa-rotate-by {
  -webkit-transform: rotate(var(--fa-rotate-angle, none));
          transform: rotate(var(--fa-rotate-angle, none)); }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: var(--fa-stack-z-index, auto); }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: var(--fa-inverse, #fff); }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-0::before {
  content: "\30"; }

.fa-1::before {
  content: "\31"; }

.fa-2::before {
  content: "\32"; }

.fa-3::before {
  content: "\33"; }

.fa-4::before {
  content: "\34"; }

.fa-5::before {
  content: "\35"; }

.fa-6::before {
  content: "\36"; }

.fa-7::before {
  content: "\37"; }

.fa-8::before {
  content: "\38"; }

.fa-9::before {
  content: "\39"; }

.fa-fill-drip::before {
  content: "\f576"; }

.fa-arrows-to-circle::before {
  content: "\e4bd"; }

.fa-circle-chevron-right::before {
  content: "\f138"; }

.fa-chevron-circle-right::before {
  content: "\f138"; }

.fa-at::before {
  content: "\40"; }

.fa-trash-can::before {
  content: "\f2ed"; }

.fa-trash-alt::before {
  content: "\f2ed"; }

.fa-text-height::before {
  content: "\f034"; }

.fa-user-xmark::before {
  content: "\f235"; }

.fa-user-times::before {
  content: "\f235"; }

.fa-stethoscope::before {
  content: "\f0f1"; }

.fa-message::before {
  content: "\f27a"; }

.fa-comment-alt::before {
  content: "\f27a"; }

.fa-info::before {
  content: "\f129"; }

.fa-down-left-and-up-right-to-center::before {
  content: "\f422"; }

.fa-compress-alt::before {
  content: "\f422"; }

.fa-explosion::before {
  content: "\e4e9"; }

.fa-file-lines::before {
  content: "\f15c"; }

.fa-file-alt::before {
  content: "\f15c"; }

.fa-file-text::before {
  content: "\f15c"; }

.fa-wave-square::before {
  content: "\f83e"; }

.fa-ring::before {
  content: "\f70b"; }

.fa-building-un::before {
  content: "\e4d9"; }

.fa-dice-three::before {
  content: "\f527"; }

.fa-calendar-days::before {
  content: "\f073"; }

.fa-calendar-alt::before {
  content: "\f073"; }

.fa-anchor-circle-check::before {
  content: "\e4aa"; }

.fa-building-circle-arrow-right::before {
  content: "\e4d1"; }

.fa-volleyball::before {
  content: "\f45f"; }

.fa-volleyball-ball::before {
  content: "\f45f"; }

.fa-arrows-up-to-line::before {
  content: "\e4c2"; }

.fa-sort-down::before {
  content: "\f0dd"; }

.fa-sort-desc::before {
  content: "\f0dd"; }

.fa-circle-minus::before {
  content: "\f056"; }

.fa-minus-circle::before {
  content: "\f056"; }

.fa-door-open::before {
  content: "\f52b"; }

.fa-right-from-bracket::before {
  content: "\f2f5"; }

.fa-sign-out-alt::before {
  content: "\f2f5"; }

.fa-atom::before {
  content: "\f5d2"; }

.fa-soap::before {
  content: "\e06e"; }

.fa-icons::before {
  content: "\f86d"; }

.fa-heart-music-camera-bolt::before {
  content: "\f86d"; }

.fa-microphone-lines-slash::before {
  content: "\f539"; }

.fa-microphone-alt-slash::before {
  content: "\f539"; }

.fa-bridge-circle-check::before {
  content: "\e4c9"; }

.fa-pump-medical::before {
  content: "\e06a"; }

.fa-fingerprint::before {
  content: "\f577"; }

.fa-hand-point-right::before {
  content: "\f0a4"; }

.fa-magnifying-glass-location::before {
  content: "\f689"; }

.fa-search-location::before {
  content: "\f689"; }

.fa-forward-step::before {
  content: "\f051"; }

.fa-step-forward::before {
  content: "\f051"; }

.fa-face-smile-beam::before {
  content: "\f5b8"; }

.fa-smile-beam::before {
  content: "\f5b8"; }

.fa-flag-checkered::before {
  content: "\f11e"; }

.fa-football::before {
  content: "\f44e"; }

.fa-football-ball::before {
  content: "\f44e"; }

.fa-school-circle-exclamation::before {
  content: "\e56c"; }

.fa-crop::before {
  content: "\f125"; }

.fa-angles-down::before {
  content: "\f103"; }

.fa-angle-double-down::before {
  content: "\f103"; }

.fa-users-rectangle::before {
  content: "\e594"; }

.fa-people-roof::before {
  content: "\e537"; }

.fa-people-line::before {
  content: "\e534"; }

.fa-beer-mug-empty::before {
  content: "\f0fc"; }

.fa-beer::before {
  content: "\f0fc"; }

.fa-diagram-predecessor::before {
  content: "\e477"; }

.fa-arrow-up-long::before {
  content: "\f176"; }

.fa-long-arrow-up::before {
  content: "\f176"; }

.fa-fire-flame-simple::before {
  content: "\f46a"; }

.fa-burn::before {
  content: "\f46a"; }

.fa-person::before {
  content: "\f183"; }

.fa-male::before {
  content: "\f183"; }

.fa-laptop::before {
  content: "\f109"; }

.fa-file-csv::before {
  content: "\f6dd"; }

.fa-menorah::before {
  content: "\f676"; }

.fa-truck-plane::before {
  content: "\e58f"; }

.fa-record-vinyl::before {
  content: "\f8d9"; }

.fa-face-grin-stars::before {
  content: "\f587"; }

.fa-grin-stars::before {
  content: "\f587"; }

.fa-bong::before {
  content: "\f55c"; }

.fa-spaghetti-monster-flying::before {
  content: "\f67b"; }

.fa-pastafarianism::before {
  content: "\f67b"; }

.fa-arrow-down-up-across-line::before {
  content: "\e4af"; }

.fa-spoon::before {
  content: "\f2e5"; }

.fa-utensil-spoon::before {
  content: "\f2e5"; }

.fa-jar-wheat::before {
  content: "\e517"; }

.fa-envelopes-bulk::before {
  content: "\f674"; }

.fa-mail-bulk::before {
  content: "\f674"; }

.fa-file-circle-exclamation::before {
  content: "\e4eb"; }

.fa-circle-h::before {
  content: "\f47e"; }

.fa-hospital-symbol::before {
  content: "\f47e"; }

.fa-pager::before {
  content: "\f815"; }

.fa-address-book::before {
  content: "\f2b9"; }

.fa-contact-book::before {
  content: "\f2b9"; }

.fa-strikethrough::before {
  content: "\f0cc"; }

.fa-k::before {
  content: "\4b"; }

.fa-landmark-flag::before {
  content: "\e51c"; }

.fa-pencil::before {
  content: "\f303"; }

.fa-pencil-alt::before {
  content: "\f303"; }

.fa-backward::before {
  content: "\f04a"; }

.fa-caret-right::before {
  content: "\f0da"; }

.fa-comments::before {
  content: "\f086"; }

.fa-paste::before {
  content: "\f0ea"; }

.fa-file-clipboard::before {
  content: "\f0ea"; }

.fa-code-pull-request::before {
  content: "\e13c"; }

.fa-clipboard-list::before {
  content: "\f46d"; }

.fa-truck-ramp-box::before {
  content: "\f4de"; }

.fa-truck-loading::before {
  content: "\f4de"; }

.fa-user-check::before {
  content: "\f4fc"; }

.fa-vial-virus::before {
  content: "\e597"; }

.fa-sheet-plastic::before {
  content: "\e571"; }

.fa-blog::before {
  content: "\f781"; }

.fa-user-ninja::before {
  content: "\f504"; }

.fa-person-arrow-up-from-line::before {
  content: "\e539"; }

.fa-scroll-torah::before {
  content: "\f6a0"; }

.fa-torah::before {
  content: "\f6a0"; }

.fa-broom-ball::before {
  content: "\f458"; }

.fa-quidditch::before {
  content: "\f458"; }

.fa-quidditch-broom-ball::before {
  content: "\f458"; }

.fa-toggle-off::before {
  content: "\f204"; }

.fa-box-archive::before {
  content: "\f187"; }

.fa-archive::before {
  content: "\f187"; }

.fa-person-drowning::before {
  content: "\e545"; }

.fa-arrow-down-9-1::before {
  content: "\f886"; }

.fa-sort-numeric-desc::before {
  content: "\f886"; }

.fa-sort-numeric-down-alt::before {
  content: "\f886"; }

.fa-face-grin-tongue-squint::before {
  content: "\f58a"; }

.fa-grin-tongue-squint::before {
  content: "\f58a"; }

.fa-spray-can::before {
  content: "\f5bd"; }

.fa-truck-monster::before {
  content: "\f63b"; }

.fa-w::before {
  content: "\57"; }

.fa-earth-africa::before {
  content: "\f57c"; }

.fa-globe-africa::before {
  content: "\f57c"; }

.fa-rainbow::before {
  content: "\f75b"; }

.fa-circle-notch::before {
  content: "\f1ce"; }

.fa-tablet-screen-button::before {
  content: "\f3fa"; }

.fa-tablet-alt::before {
  content: "\f3fa"; }

.fa-paw::before {
  content: "\f1b0"; }

.fa-cloud::before {
  content: "\f0c2"; }

.fa-trowel-bricks::before {
  content: "\e58a"; }

.fa-face-flushed::before {
  content: "\f579"; }

.fa-flushed::before {
  content: "\f579"; }

.fa-hospital-user::before {
  content: "\f80d"; }

.fa-tent-arrow-left-right::before {
  content: "\e57f"; }

.fa-gavel::before {
  content: "\f0e3"; }

.fa-legal::before {
  content: "\f0e3"; }

.fa-binoculars::before {
  content: "\f1e5"; }

.fa-microphone-slash::before {
  content: "\f131"; }

.fa-box-tissue::before {
  content: "\e05b"; }

.fa-motorcycle::before {
  content: "\f21c"; }

.fa-bell-concierge::before {
  content: "\f562"; }

.fa-concierge-bell::before {
  content: "\f562"; }

.fa-pen-ruler::before {
  content: "\f5ae"; }

.fa-pencil-ruler::before {
  content: "\f5ae"; }

.fa-people-arrows::before {
  content: "\e068"; }

.fa-people-arrows-left-right::before {
  content: "\e068"; }

.fa-mars-and-venus-burst::before {
  content: "\e523"; }

.fa-square-caret-right::before {
  content: "\f152"; }

.fa-caret-square-right::before {
  content: "\f152"; }

.fa-scissors::before {
  content: "\f0c4"; }

.fa-cut::before {
  content: "\f0c4"; }

.fa-sun-plant-wilt::before {
  content: "\e57a"; }

.fa-toilets-portable::before {
  content: "\e584"; }

.fa-hockey-puck::before {
  content: "\f453"; }

.fa-table::before {
  content: "\f0ce"; }

.fa-magnifying-glass-arrow-right::before {
  content: "\e521"; }

.fa-tachograph-digital::before {
  content: "\f566"; }

.fa-digital-tachograph::before {
  content: "\f566"; }

.fa-users-slash::before {
  content: "\e073"; }

.fa-clover::before {
  content: "\e139"; }

.fa-reply::before {
  content: "\f3e5"; }

.fa-mail-reply::before {
  content: "\f3e5"; }

.fa-star-and-crescent::before {
  content: "\f699"; }

.fa-house-fire::before {
  content: "\e50c"; }

.fa-square-minus::before {
  content: "\f146"; }

.fa-minus-square::before {
  content: "\f146"; }

.fa-helicopter::before {
  content: "\f533"; }

.fa-compass::before {
  content: "\f14e"; }

.fa-square-caret-down::before {
  content: "\f150"; }

.fa-caret-square-down::before {
  content: "\f150"; }

.fa-file-circle-question::before {
  content: "\e4ef"; }

.fa-laptop-code::before {
  content: "\f5fc"; }

.fa-swatchbook::before {
  content: "\f5c3"; }

.fa-prescription-bottle::before {
  content: "\f485"; }

.fa-bars::before {
  content: "\f0c9"; }

.fa-navicon::before {
  content: "\f0c9"; }

.fa-people-group::before {
  content: "\e533"; }

.fa-hourglass-end::before {
  content: "\f253"; }

.fa-hourglass-3::before {
  content: "\f253"; }

.fa-heart-crack::before {
  content: "\f7a9"; }

.fa-heart-broken::before {
  content: "\f7a9"; }

.fa-square-up-right::before {
  content: "\f360"; }

.fa-external-link-square-alt::before {
  content: "\f360"; }

.fa-face-kiss-beam::before {
  content: "\f597"; }

.fa-kiss-beam::before {
  content: "\f597"; }

.fa-film::before {
  content: "\f008"; }

.fa-ruler-horizontal::before {
  content: "\f547"; }

.fa-people-robbery::before {
  content: "\e536"; }

.fa-lightbulb::before {
  content: "\f0eb"; }

.fa-caret-left::before {
  content: "\f0d9"; }

.fa-circle-exclamation::before {
  content: "\f06a"; }

.fa-exclamation-circle::before {
  content: "\f06a"; }

.fa-school-circle-xmark::before {
  content: "\e56d"; }

.fa-arrow-right-from-bracket::before {
  content: "\f08b"; }

.fa-sign-out::before {
  content: "\f08b"; }

.fa-circle-chevron-down::before {
  content: "\f13a"; }

.fa-chevron-circle-down::before {
  content: "\f13a"; }

.fa-unlock-keyhole::before {
  content: "\f13e"; }

.fa-unlock-alt::before {
  content: "\f13e"; }

.fa-cloud-showers-heavy::before {
  content: "\f740"; }

.fa-headphones-simple::before {
  content: "\f58f"; }

.fa-headphones-alt::before {
  content: "\f58f"; }

.fa-sitemap::before {
  content: "\f0e8"; }

.fa-circle-dollar-to-slot::before {
  content: "\f4b9"; }

.fa-donate::before {
  content: "\f4b9"; }

.fa-memory::before {
  content: "\f538"; }

.fa-road-spikes::before {
  content: "\e568"; }

.fa-fire-burner::before {
  content: "\e4f1"; }

.fa-flag::before {
  content: "\f024"; }

.fa-hanukiah::before {
  content: "\f6e6"; }

.fa-feather::before {
  content: "\f52d"; }

.fa-volume-low::before {
  content: "\f027"; }

.fa-volume-down::before {
  content: "\f027"; }

.fa-comment-slash::before {
  content: "\f4b3"; }

.fa-cloud-sun-rain::before {
  content: "\f743"; }

.fa-compress::before {
  content: "\f066"; }

.fa-wheat-awn::before {
  content: "\e2cd"; }

.fa-wheat-alt::before {
  content: "\e2cd"; }

.fa-ankh::before {
  content: "\f644"; }

.fa-hands-holding-child::before {
  content: "\e4fa"; }

.fa-asterisk::before {
  content: "\2a"; }

.fa-square-check::before {
  content: "\f14a"; }

.fa-check-square::before {
  content: "\f14a"; }

.fa-peseta-sign::before {
  content: "\e221"; }

.fa-heading::before {
  content: "\f1dc"; }

.fa-header::before {
  content: "\f1dc"; }

.fa-ghost::before {
  content: "\f6e2"; }

.fa-list::before {
  content: "\f03a"; }

.fa-list-squares::before {
  content: "\f03a"; }

.fa-square-phone-flip::before {
  content: "\f87b"; }

.fa-phone-square-alt::before {
  content: "\f87b"; }

.fa-cart-plus::before {
  content: "\f217"; }

.fa-gamepad::before {
  content: "\f11b"; }

.fa-circle-dot::before {
  content: "\f192"; }

.fa-dot-circle::before {
  content: "\f192"; }

.fa-face-dizzy::before {
  content: "\f567"; }

.fa-dizzy::before {
  content: "\f567"; }

.fa-egg::before {
  content: "\f7fb"; }

.fa-house-medical-circle-xmark::before {
  content: "\e513"; }

.fa-campground::before {
  content: "\f6bb"; }

.fa-folder-plus::before {
  content: "\f65e"; }

.fa-futbol::before {
  content: "\f1e3"; }

.fa-futbol-ball::before {
  content: "\f1e3"; }

.fa-soccer-ball::before {
  content: "\f1e3"; }

.fa-paintbrush::before {
  content: "\f1fc"; }

.fa-paint-brush::before {
  content: "\f1fc"; }

.fa-lock::before {
  content: "\f023"; }

.fa-gas-pump::before {
  content: "\f52f"; }

.fa-hot-tub-person::before {
  content: "\f593"; }

.fa-hot-tub::before {
  content: "\f593"; }

.fa-map-location::before {
  content: "\f59f"; }

.fa-map-marked::before {
  content: "\f59f"; }

.fa-house-flood-water::before {
  content: "\e50e"; }

.fa-tree::before {
  content: "\f1bb"; }

.fa-bridge-lock::before {
  content: "\e4cc"; }

.fa-sack-dollar::before {
  content: "\f81d"; }

.fa-pen-to-square::before {
  content: "\f044"; }

.fa-edit::before {
  content: "\f044"; }

.fa-car-side::before {
  content: "\f5e4"; }

.fa-share-nodes::before {
  content: "\f1e0"; }

.fa-share-alt::before {
  content: "\f1e0"; }

.fa-heart-circle-minus::before {
  content: "\e4ff"; }

.fa-hourglass-half::before {
  content: "\f252"; }

.fa-hourglass-2::before {
  content: "\f252"; }

.fa-microscope::before {
  content: "\f610"; }

.fa-sink::before {
  content: "\e06d"; }

.fa-bag-shopping::before {
  content: "\f290"; }

.fa-shopping-bag::before {
  content: "\f290"; }

.fa-arrow-down-z-a::before {
  content: "\f881"; }

.fa-sort-alpha-desc::before {
  content: "\f881"; }

.fa-sort-alpha-down-alt::before {
  content: "\f881"; }

.fa-mitten::before {
  content: "\f7b5"; }

.fa-person-rays::before {
  content: "\e54d"; }

.fa-users::before {
  content: "\f0c0"; }

.fa-eye-slash::before {
  content: "\f070"; }

.fa-flask-vial::before {
  content: "\e4f3"; }

.fa-hand::before {
  content: "\f256"; }

.fa-hand-paper::before {
  content: "\f256"; }

.fa-om::before {
  content: "\f679"; }

.fa-worm::before {
  content: "\e599"; }

.fa-house-circle-xmark::before {
  content: "\e50b"; }

.fa-plug::before {
  content: "\f1e6"; }

.fa-chevron-up::before {
  content: "\f077"; }

.fa-hand-spock::before {
  content: "\f259"; }

.fa-stopwatch::before {
  content: "\f2f2"; }

.fa-face-kiss::before {
  content: "\f596"; }

.fa-kiss::before {
  content: "\f596"; }

.fa-bridge-circle-xmark::before {
  content: "\e4cb"; }

.fa-face-grin-tongue::before {
  content: "\f589"; }

.fa-grin-tongue::before {
  content: "\f589"; }

.fa-chess-bishop::before {
  content: "\f43a"; }

.fa-face-grin-wink::before {
  content: "\f58c"; }

.fa-grin-wink::before {
  content: "\f58c"; }

.fa-ear-deaf::before {
  content: "\f2a4"; }

.fa-deaf::before {
  content: "\f2a4"; }

.fa-deafness::before {
  content: "\f2a4"; }

.fa-hard-of-hearing::before {
  content: "\f2a4"; }

.fa-road-circle-check::before {
  content: "\e564"; }

.fa-dice-five::before {
  content: "\f523"; }

.fa-square-rss::before {
  content: "\f143"; }

.fa-rss-square::before {
  content: "\f143"; }

.fa-land-mine-on::before {
  content: "\e51b"; }

.fa-i-cursor::before {
  content: "\f246"; }

.fa-stamp::before {
  content: "\f5bf"; }

.fa-stairs::before {
  content: "\e289"; }

.fa-i::before {
  content: "\49"; }

.fa-hryvnia-sign::before {
  content: "\f6f2"; }

.fa-hryvnia::before {
  content: "\f6f2"; }

.fa-pills::before {
  content: "\f484"; }

.fa-face-grin-wide::before {
  content: "\f581"; }

.fa-grin-alt::before {
  content: "\f581"; }

.fa-tooth::before {
  content: "\f5c9"; }

.fa-v::before {
  content: "\56"; }

.fa-bangladeshi-taka-sign::before {
  content: "\e2e6"; }

.fa-bicycle::before {
  content: "\f206"; }

.fa-staff-snake::before {
  content: "\e579"; }

.fa-rod-asclepius::before {
  content: "\e579"; }

.fa-rod-snake::before {
  content: "\e579"; }

.fa-staff-aesculapius::before {
  content: "\e579"; }

.fa-head-side-cough-slash::before {
  content: "\e062"; }

.fa-truck-medical::before {
  content: "\f0f9"; }

.fa-ambulance::before {
  content: "\f0f9"; }

.fa-wheat-awn-circle-exclamation::before {
  content: "\e598"; }

.fa-snowman::before {
  content: "\f7d0"; }

.fa-mortar-pestle::before {
  content: "\f5a7"; }

.fa-road-barrier::before {
  content: "\e562"; }

.fa-school::before {
  content: "\f549"; }

.fa-igloo::before {
  content: "\f7ae"; }

.fa-joint::before {
  content: "\f595"; }

.fa-angle-right::before {
  content: "\f105"; }

.fa-horse::before {
  content: "\f6f0"; }

.fa-q::before {
  content: "\51"; }

.fa-g::before {
  content: "\47"; }

.fa-notes-medical::before {
  content: "\f481"; }

.fa-temperature-half::before {
  content: "\f2c9"; }

.fa-temperature-2::before {
  content: "\f2c9"; }

.fa-thermometer-2::before {
  content: "\f2c9"; }

.fa-thermometer-half::before {
  content: "\f2c9"; }

.fa-dong-sign::before {
  content: "\e169"; }

.fa-capsules::before {
  content: "\f46b"; }

.fa-poo-storm::before {
  content: "\f75a"; }

.fa-poo-bolt::before {
  content: "\f75a"; }

.fa-face-frown-open::before {
  content: "\f57a"; }

.fa-frown-open::before {
  content: "\f57a"; }

.fa-hand-point-up::before {
  content: "\f0a6"; }

.fa-money-bill::before {
  content: "\f0d6"; }

.fa-bookmark::before {
  content: "\f02e"; }

.fa-align-justify::before {
  content: "\f039"; }

.fa-umbrella-beach::before {
  content: "\f5ca"; }

.fa-helmet-un::before {
  content: "\e503"; }

.fa-bullseye::before {
  content: "\f140"; }

.fa-bacon::before {
  content: "\f7e5"; }

.fa-hand-point-down::before {
  content: "\f0a7"; }

.fa-arrow-up-from-bracket::before {
  content: "\e09a"; }

.fa-folder::before {
  content: "\f07b"; }

.fa-folder-blank::before {
  content: "\f07b"; }

.fa-file-waveform::before {
  content: "\f478"; }

.fa-file-medical-alt::before {
  content: "\f478"; }

.fa-radiation::before {
  content: "\f7b9"; }

.fa-chart-simple::before {
  content: "\e473"; }

.fa-mars-stroke::before {
  content: "\f229"; }

.fa-vial::before {
  content: "\f492"; }

.fa-gauge::before {
  content: "\f624"; }

.fa-dashboard::before {
  content: "\f624"; }

.fa-gauge-med::before {
  content: "\f624"; }

.fa-tachometer-alt-average::before {
  content: "\f624"; }

.fa-wand-magic-sparkles::before {
  content: "\e2ca"; }

.fa-magic-wand-sparkles::before {
  content: "\e2ca"; }

.fa-e::before {
  content: "\45"; }

.fa-pen-clip::before {
  content: "\f305"; }

.fa-pen-alt::before {
  content: "\f305"; }

.fa-bridge-circle-exclamation::before {
  content: "\e4ca"; }

.fa-user::before {
  content: "\f007"; }

.fa-school-circle-check::before {
  content: "\e56b"; }

.fa-dumpster::before {
  content: "\f793"; }

.fa-van-shuttle::before {
  content: "\f5b6"; }

.fa-shuttle-van::before {
  content: "\f5b6"; }

.fa-building-user::before {
  content: "\e4da"; }

.fa-square-caret-left::before {
  content: "\f191"; }

.fa-caret-square-left::before {
  content: "\f191"; }

.fa-highlighter::before {
  content: "\f591"; }

.fa-key::before {
  content: "\f084"; }

.fa-bullhorn::before {
  content: "\f0a1"; }

.fa-globe::before {
  content: "\f0ac"; }

.fa-synagogue::before {
  content: "\f69b"; }

.fa-person-half-dress::before {
  content: "\e548"; }

.fa-road-bridge::before {
  content: "\e563"; }

.fa-location-arrow::before {
  content: "\f124"; }

.fa-c::before {
  content: "\43"; }

.fa-tablet-button::before {
  content: "\f10a"; }

.fa-building-lock::before {
  content: "\e4d6"; }

.fa-pizza-slice::before {
  content: "\f818"; }

.fa-money-bill-wave::before {
  content: "\f53a"; }

.fa-chart-area::before {
  content: "\f1fe"; }

.fa-area-chart::before {
  content: "\f1fe"; }

.fa-house-flag::before {
  content: "\e50d"; }

.fa-person-circle-minus::before {
  content: "\e540"; }

.fa-ban::before {
  content: "\f05e"; }

.fa-cancel::before {
  content: "\f05e"; }

.fa-camera-rotate::before {
  content: "\e0d8"; }

.fa-spray-can-sparkles::before {
  content: "\f5d0"; }

.fa-air-freshener::before {
  content: "\f5d0"; }

.fa-star::before {
  content: "\f005"; }

.fa-repeat::before {
  content: "\f363"; }

.fa-cross::before {
  content: "\f654"; }

.fa-box::before {
  content: "\f466"; }

.fa-venus-mars::before {
  content: "\f228"; }

.fa-arrow-pointer::before {
  content: "\f245"; }

.fa-mouse-pointer::before {
  content: "\f245"; }

.fa-maximize::before {
  content: "\f31e"; }

.fa-expand-arrows-alt::before {
  content: "\f31e"; }

.fa-charging-station::before {
  content: "\f5e7"; }

.fa-shapes::before {
  content: "\f61f"; }

.fa-triangle-circle-square::before {
  content: "\f61f"; }

.fa-shuffle::before {
  content: "\f074"; }

.fa-random::before {
  content: "\f074"; }

.fa-person-running::before {
  content: "\f70c"; }

.fa-running::before {
  content: "\f70c"; }

.fa-mobile-retro::before {
  content: "\e527"; }

.fa-grip-lines-vertical::before {
  content: "\f7a5"; }

.fa-spider::before {
  content: "\f717"; }

.fa-hands-bound::before {
  content: "\e4f9"; }

.fa-file-invoice-dollar::before {
  content: "\f571"; }

.fa-plane-circle-exclamation::before {
  content: "\e556"; }

.fa-x-ray::before {
  content: "\f497"; }

.fa-spell-check::before {
  content: "\f891"; }

.fa-slash::before {
  content: "\f715"; }

.fa-computer-mouse::before {
  content: "\f8cc"; }

.fa-mouse::before {
  content: "\f8cc"; }

.fa-arrow-right-to-bracket::before {
  content: "\f090"; }

.fa-sign-in::before {
  content: "\f090"; }

.fa-shop-slash::before {
  content: "\e070"; }

.fa-store-alt-slash::before {
  content: "\e070"; }

.fa-server::before {
  content: "\f233"; }

.fa-virus-covid-slash::before {
  content: "\e4a9"; }

.fa-shop-lock::before {
  content: "\e4a5"; }

.fa-hourglass-start::before {
  content: "\f251"; }

.fa-hourglass-1::before {
  content: "\f251"; }

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

.fa-building-wheat::before {
  content: "\e4db"; }

.fa-person-breastfeeding::before {
  content: "\e53a"; }

.fa-right-to-bracket::before {
  content: "\f2f6"; }

.fa-sign-in-alt::before {
  content: "\f2f6"; }

.fa-venus::before {
  content: "\f221"; }

.fa-passport::before {
  content: "\f5ab"; }

.fa-heart-pulse::before {
  content: "\f21e"; }

.fa-heartbeat::before {
  content: "\f21e"; }

.fa-people-carry-box::before {
  content: "\f4ce"; }

.fa-people-carry::before {
  content: "\f4ce"; }

.fa-temperature-high::before {
  content: "\f769"; }

.fa-microchip::before {
  content: "\f2db"; }

.fa-crown::before {
  content: "\f521"; }

.fa-weight-hanging::before {
  content: "\f5cd"; }

.fa-xmarks-lines::before {
  content: "\e59a"; }

.fa-file-prescription::before {
  content: "\f572"; }

.fa-weight-scale::before {
  content: "\f496"; }

.fa-weight::before {
  content: "\f496"; }

.fa-user-group::before {
  content: "\f500"; }

.fa-user-friends::before {
  content: "\f500"; }

.fa-arrow-up-a-z::before {
  content: "\f15e"; }

.fa-sort-alpha-up::before {
  content: "\f15e"; }

.fa-chess-knight::before {
  content: "\f441"; }

.fa-face-laugh-squint::before {
  content: "\f59b"; }

.fa-laugh-squint::before {
  content: "\f59b"; }

.fa-wheelchair::before {
  content: "\f193"; }

.fa-circle-arrow-up::before {
  content: "\f0aa"; }

.fa-arrow-circle-up::before {
  content: "\f0aa"; }

.fa-toggle-on::before {
  content: "\f205"; }

.fa-person-walking::before {
  content: "\f554"; }

.fa-walking::before {
  content: "\f554"; }

.fa-l::before {
  content: "\4c"; }

.fa-fire::before {
  content: "\f06d"; }

.fa-bed-pulse::before {
  content: "\f487"; }

.fa-procedures::before {
  content: "\f487"; }

.fa-shuttle-space::before {
  content: "\f197"; }

.fa-space-shuttle::before {
  content: "\f197"; }

.fa-face-laugh::before {
  content: "\f599"; }

.fa-laugh::before {
  content: "\f599"; }

.fa-folder-open::before {
  content: "\f07c"; }

.fa-heart-circle-plus::before {
  content: "\e500"; }

.fa-code-fork::before {
  content: "\e13b"; }

.fa-city::before {
  content: "\f64f"; }

.fa-microphone-lines::before {
  content: "\f3c9"; }

.fa-microphone-alt::before {
  content: "\f3c9"; }

.fa-pepper-hot::before {
  content: "\f816"; }

.fa-unlock::before {
  content: "\f09c"; }

.fa-colon-sign::before {
  content: "\e140"; }

.fa-headset::before {
  content: "\f590"; }

.fa-store-slash::before {
  content: "\e071"; }

.fa-road-circle-xmark::before {
  content: "\e566"; }

.fa-user-minus::before {
  content: "\f503"; }

.fa-mars-stroke-up::before {
  content: "\f22a"; }

.fa-mars-stroke-v::before {
  content: "\f22a"; }

.fa-champagne-glasses::before {
  content: "\f79f"; }

.fa-glass-cheers::before {
  content: "\f79f"; }

.fa-clipboard::before {
  content: "\f328"; }

.fa-house-circle-exclamation::before {
  content: "\e50a"; }

.fa-file-arrow-up::before {
  content: "\f574"; }

.fa-file-upload::before {
  content: "\f574"; }

.fa-wifi::before {
  content: "\f1eb"; }

.fa-wifi-3::before {
  content: "\f1eb"; }

.fa-wifi-strong::before {
  content: "\f1eb"; }

.fa-bath::before {
  content: "\f2cd"; }

.fa-bathtub::before {
  content: "\f2cd"; }

.fa-underline::before {
  content: "\f0cd"; }

.fa-user-pen::before {
  content: "\f4ff"; }

.fa-user-edit::before {
  content: "\f4ff"; }

.fa-signature::before {
  content: "\f5b7"; }

.fa-stroopwafel::before {
  content: "\f551"; }

.fa-bold::before {
  content: "\f032"; }

.fa-anchor-lock::before {
  content: "\e4ad"; }

.fa-building-ngo::before {
  content: "\e4d7"; }

.fa-manat-sign::before {
  content: "\e1d5"; }

.fa-not-equal::before {
  content: "\f53e"; }

.fa-border-top-left::before {
  content: "\f853"; }

.fa-border-style::before {
  content: "\f853"; }

.fa-map-location-dot::before {
  content: "\f5a0"; }

.fa-map-marked-alt::before {
  content: "\f5a0"; }

.fa-jedi::before {
  content: "\f669"; }

.fa-square-poll-vertical::before {
  content: "\f681"; }

.fa-poll::before {
  content: "\f681"; }

.fa-mug-hot::before {
  content: "\f7b6"; }

.fa-car-battery::before {
  content: "\f5df"; }

.fa-battery-car::before {
  content: "\f5df"; }

.fa-gift::before {
  content: "\f06b"; }

.fa-dice-two::before {
  content: "\f528"; }

.fa-chess-queen::before {
  content: "\f445"; }

.fa-glasses::before {
  content: "\f530"; }

.fa-chess-board::before {
  content: "\f43c"; }

.fa-building-circle-check::before {
  content: "\e4d2"; }

.fa-person-chalkboard::before {
  content: "\e53d"; }

.fa-mars-stroke-right::before {
  content: "\f22b"; }

.fa-mars-stroke-h::before {
  content: "\f22b"; }

.fa-hand-back-fist::before {
  content: "\f255"; }

.fa-hand-rock::before {
  content: "\f255"; }

.fa-square-caret-up::before {
  content: "\f151"; }

.fa-caret-square-up::before {
  content: "\f151"; }

.fa-cloud-showers-water::before {
  content: "\e4e4"; }

.fa-chart-bar::before {
  content: "\f080"; }

.fa-bar-chart::before {
  content: "\f080"; }

.fa-hands-bubbles::before {
  content: "\e05e"; }

.fa-hands-wash::before {
  content: "\e05e"; }

.fa-less-than-equal::before {
  content: "\f537"; }

.fa-train::before {
  content: "\f238"; }

.fa-eye-low-vision::before {
  content: "\f2a8"; }

.fa-low-vision::before {
  content: "\f2a8"; }

.fa-crow::before {
  content: "\f520"; }

.fa-sailboat::before {
  content: "\e445"; }

.fa-window-restore::before {
  content: "\f2d2"; }

.fa-square-plus::before {
  content: "\f0fe"; }

.fa-plus-square::before {
  content: "\f0fe"; }

.fa-torii-gate::before {
  content: "\f6a1"; }

.fa-frog::before {
  content: "\f52e"; }

.fa-bucket::before {
  content: "\e4cf"; }

.fa-image::before {
  content: "\f03e"; }

.fa-microphone::before {
  content: "\f130"; }

.fa-cow::before {
  content: "\f6c8"; }

.fa-caret-up::before {
  content: "\f0d8"; }

.fa-screwdriver::before {
  content: "\f54a"; }

.fa-folder-closed::before {
  content: "\e185"; }

.fa-house-tsunami::before {
  content: "\e515"; }

.fa-square-nfi::before {
  content: "\e576"; }

.fa-arrow-up-from-ground-water::before {
  content: "\e4b5"; }

.fa-martini-glass::before {
  content: "\f57b"; }

.fa-glass-martini-alt::before {
  content: "\f57b"; }

.fa-rotate-left::before {
  content: "\f2ea"; }

.fa-rotate-back::before {
  content: "\f2ea"; }

.fa-rotate-backward::before {
  content: "\f2ea"; }

.fa-undo-alt::before {
  content: "\f2ea"; }

.fa-table-columns::before {
  content: "\f0db"; }

.fa-columns::before {
  content: "\f0db"; }

.fa-lemon::before {
  content: "\f094"; }

.fa-head-side-mask::before {
  content: "\e063"; }

.fa-handshake::before {
  content: "\f2b5"; }

.fa-gem::before {
  content: "\f3a5"; }

.fa-dolly::before {
  content: "\f472"; }

.fa-dolly-box::before {
  content: "\f472"; }

.fa-smoking::before {
  content: "\f48d"; }

.fa-minimize::before {
  content: "\f78c"; }

.fa-compress-arrows-alt::before {
  content: "\f78c"; }

.fa-monument::before {
  content: "\f5a6"; }

.fa-snowplow::before {
  content: "\f7d2"; }

.fa-angles-right::before {
  content: "\f101"; }

.fa-angle-double-right::before {
  content: "\f101"; }

.fa-cannabis::before {
  content: "\f55f"; }

.fa-circle-play::before {
  content: "\f144"; }

.fa-play-circle::before {
  content: "\f144"; }

.fa-tablets::before {
  content: "\f490"; }

.fa-ethernet::before {
  content: "\f796"; }

.fa-euro-sign::before {
  content: "\f153"; }

.fa-eur::before {
  content: "\f153"; }

.fa-euro::before {
  content: "\f153"; }

.fa-chair::before {
  content: "\f6c0"; }

.fa-circle-check::before {
  content: "\f058"; }

.fa-check-circle::before {
  content: "\f058"; }

.fa-circle-stop::before {
  content: "\f28d"; }

.fa-stop-circle::before {
  content: "\f28d"; }

.fa-compass-drafting::before {
  content: "\f568"; }

.fa-drafting-compass::before {
  content: "\f568"; }

.fa-plate-wheat::before {
  content: "\e55a"; }

.fa-icicles::before {
  content: "\f7ad"; }

.fa-person-shelter::before {
  content: "\e54f"; }

.fa-neuter::before {
  content: "\f22c"; }

.fa-id-badge::before {
  content: "\f2c1"; }

.fa-marker::before {
  content: "\f5a1"; }

.fa-face-laugh-beam::before {
  content: "\f59a"; }

.fa-laugh-beam::before {
  content: "\f59a"; }

.fa-helicopter-symbol::before {
  content: "\e502"; }

.fa-universal-access::before {
  content: "\f29a"; }

.fa-circle-chevron-up::before {
  content: "\f139"; }

.fa-chevron-circle-up::before {
  content: "\f139"; }

.fa-lari-sign::before {
  content: "\e1c8"; }

.fa-volcano::before {
  content: "\f770"; }

.fa-person-walking-dashed-line-arrow-right::before {
  content: "\e553"; }

.fa-sterling-sign::before {
  content: "\f154"; }

.fa-gbp::before {
  content: "\f154"; }

.fa-pound-sign::before {
  content: "\f154"; }

.fa-viruses::before {
  content: "\e076"; }

.fa-square-person-confined::before {
  content: "\e577"; }

.fa-user-tie::before {
  content: "\f508"; }

.fa-arrow-down-long::before {
  content: "\f175"; }

.fa-long-arrow-down::before {
  content: "\f175"; }

.fa-tent-arrow-down-to-line::before {
  content: "\e57e"; }

.fa-certificate::before {
  content: "\f0a3"; }

.fa-reply-all::before {
  content: "\f122"; }

.fa-mail-reply-all::before {
  content: "\f122"; }

.fa-suitcase::before {
  content: "\f0f2"; }

.fa-person-skating::before {
  content: "\f7c5"; }

.fa-skating::before {
  content: "\f7c5"; }

.fa-filter-circle-dollar::before {
  content: "\f662"; }

.fa-funnel-dollar::before {
  content: "\f662"; }

.fa-camera-retro::before {
  content: "\f083"; }

.fa-circle-arrow-down::before {
  content: "\f0ab"; }

.fa-arrow-circle-down::before {
  content: "\f0ab"; }

.fa-file-import::before {
  content: "\f56f"; }

.fa-arrow-right-to-file::before {
  content: "\f56f"; }

.fa-square-arrow-up-right::before {
  content: "\f14c"; }

.fa-external-link-square::before {
  content: "\f14c"; }

.fa-box-open::before {
  content: "\f49e"; }

.fa-scroll::before {
  content: "\f70e"; }

.fa-spa::before {
  content: "\f5bb"; }

.fa-location-pin-lock::before {
  content: "\e51f"; }

.fa-pause::before {
  content: "\f04c"; }

.fa-hill-avalanche::before {
  content: "\e507"; }

.fa-temperature-empty::before {
  content: "\f2cb"; }

.fa-temperature-0::before {
  content: "\f2cb"; }

.fa-thermometer-0::before {
  content: "\f2cb"; }

.fa-thermometer-empty::before {
  content: "\f2cb"; }

.fa-bomb::before {
  content: "\f1e2"; }

.fa-registered::before {
  content: "\f25d"; }

.fa-address-card::before {
  content: "\f2bb"; }

.fa-contact-card::before {
  content: "\f2bb"; }

.fa-vcard::before {
  content: "\f2bb"; }

.fa-scale-unbalanced-flip::before {
  content: "\f516"; }

.fa-balance-scale-right::before {
  content: "\f516"; }

.fa-subscript::before {
  content: "\f12c"; }

.fa-diamond-turn-right::before {
  content: "\f5eb"; }

.fa-directions::before {
  content: "\f5eb"; }

.fa-burst::before {
  content: "\e4dc"; }

.fa-house-laptop::before {
  content: "\e066"; }

.fa-laptop-house::before {
  content: "\e066"; }

.fa-face-tired::before {
  content: "\f5c8"; }

.fa-tired::before {
  content: "\f5c8"; }

.fa-money-bills::before {
  content: "\e1f3"; }

.fa-smog::before {
  content: "\f75f"; }

.fa-crutch::before {
  content: "\f7f7"; }

.fa-cloud-arrow-up::before {
  content: "\f0ee"; }

.fa-cloud-upload::before {
  content: "\f0ee"; }

.fa-cloud-upload-alt::before {
  content: "\f0ee"; }

.fa-palette::before {
  content: "\f53f"; }

.fa-arrows-turn-right::before {
  content: "\e4c0"; }

.fa-vest::before {
  content: "\e085"; }

.fa-ferry::before {
  content: "\e4ea"; }

.fa-arrows-down-to-people::before {
  content: "\e4b9"; }

.fa-seedling::before {
  content: "\f4d8"; }

.fa-sprout::before {
  content: "\f4d8"; }

.fa-left-right::before {
  content: "\f337"; }

.fa-arrows-alt-h::before {
  content: "\f337"; }

.fa-boxes-packing::before {
  content: "\e4c7"; }

.fa-circle-arrow-left::before {
  content: "\f0a8"; }

.fa-arrow-circle-left::before {
  content: "\f0a8"; }

.fa-group-arrows-rotate::before {
  content: "\e4f6"; }

.fa-bowl-food::before {
  content: "\e4c6"; }

.fa-candy-cane::before {
  content: "\f786"; }

.fa-arrow-down-wide-short::before {
  content: "\f160"; }

.fa-sort-amount-asc::before {
  content: "\f160"; }

.fa-sort-amount-down::before {
  content: "\f160"; }

.fa-cloud-bolt::before {
  content: "\f76c"; }

.fa-thunderstorm::before {
  content: "\f76c"; }

.fa-text-slash::before {
  content: "\f87d"; }

.fa-remove-format::before {
  content: "\f87d"; }

.fa-face-smile-wink::before {
  content: "\f4da"; }

.fa-smile-wink::before {
  content: "\f4da"; }

.fa-file-word::before {
  content: "\f1c2"; }

.fa-file-powerpoint::before {
  content: "\f1c4"; }

.fa-arrows-left-right::before {
  content: "\f07e"; }

.fa-arrows-h::before {
  content: "\f07e"; }

.fa-house-lock::before {
  content: "\e510"; }

.fa-cloud-arrow-down::before {
  content: "\f0ed"; }

.fa-cloud-download::before {
  content: "\f0ed"; }

.fa-cloud-download-alt::before {
  content: "\f0ed"; }

.fa-children::before {
  content: "\e4e1"; }

.fa-chalkboard::before {
  content: "\f51b"; }

.fa-blackboard::before {
  content: "\f51b"; }

.fa-user-large-slash::before {
  content: "\f4fa"; }

.fa-user-alt-slash::before {
  content: "\f4fa"; }

.fa-envelope-open::before {
  content: "\f2b6"; }

.fa-handshake-simple-slash::before {
  content: "\e05f"; }

.fa-handshake-alt-slash::before {
  content: "\e05f"; }

.fa-mattress-pillow::before {
  content: "\e525"; }

.fa-guarani-sign::before {
  content: "\e19a"; }

.fa-arrows-rotate::before {
  content: "\f021"; }

.fa-refresh::before {
  content: "\f021"; }

.fa-sync::before {
  content: "\f021"; }

.fa-fire-extinguisher::before {
  content: "\f134"; }

.fa-cruzeiro-sign::before {
  content: "\e152"; }

.fa-greater-than-equal::before {
  content: "\f532"; }

.fa-shield-halved::before {
  content: "\f3ed"; }

.fa-shield-alt::before {
  content: "\f3ed"; }

.fa-book-atlas::before {
  content: "\f558"; }

.fa-atlas::before {
  content: "\f558"; }

.fa-virus::before {
  content: "\e074"; }

.fa-envelope-circle-check::before {
  content: "\e4e8"; }

.fa-layer-group::before {
  content: "\f5fd"; }

.fa-arrows-to-dot::before {
  content: "\e4be"; }

.fa-archway::before {
  content: "\f557"; }

.fa-heart-circle-check::before {
  content: "\e4fd"; }

.fa-house-chimney-crack::before {
  content: "\f6f1"; }

.fa-house-damage::before {
  content: "\f6f1"; }

.fa-file-zipper::before {
  content: "\f1c6"; }

.fa-file-archive::before {
  content: "\f1c6"; }

.fa-square::before {
  content: "\f0c8"; }

.fa-martini-glass-empty::before {
  content: "\f000"; }

.fa-glass-martini::before {
  content: "\f000"; }

.fa-couch::before {
  content: "\f4b8"; }

.fa-cedi-sign::before {
  content: "\e0df"; }

.fa-italic::before {
  content: "\f033"; }

.fa-church::before {
  content: "\f51d"; }

.fa-comments-dollar::before {
  content: "\f653"; }

.fa-democrat::before {
  content: "\f747"; }

.fa-z::before {
  content: "\5a"; }

.fa-person-skiing::before {
  content: "\f7c9"; }

.fa-skiing::before {
  content: "\f7c9"; }

.fa-road-lock::before {
  content: "\e567"; }

.fa-a::before {
  content: "\41"; }

.fa-temperature-arrow-down::before {
  content: "\e03f"; }

.fa-temperature-down::before {
  content: "\e03f"; }

.fa-feather-pointed::before {
  content: "\f56b"; }

.fa-feather-alt::before {
  content: "\f56b"; }

.fa-p::before {
  content: "\50"; }

.fa-snowflake::before {
  content: "\f2dc"; }

.fa-newspaper::before {
  content: "\f1ea"; }

.fa-rectangle-ad::before {
  content: "\f641"; }

.fa-ad::before {
  content: "\f641"; }

.fa-circle-arrow-right::before {
  content: "\f0a9"; }

.fa-arrow-circle-right::before {
  content: "\f0a9"; }

.fa-filter-circle-xmark::before {
  content: "\e17b"; }

.fa-locust::before {
  content: "\e520"; }

.fa-sort::before {
  content: "\f0dc"; }

.fa-unsorted::before {
  content: "\f0dc"; }

.fa-list-ol::before {
  content: "\f0cb"; }

.fa-list-1-2::before {
  content: "\f0cb"; }

.fa-list-numeric::before {
  content: "\f0cb"; }

.fa-person-dress-burst::before {
  content: "\e544"; }

.fa-money-check-dollar::before {
  content: "\f53d"; }

.fa-money-check-alt::before {
  content: "\f53d"; }

.fa-vector-square::before {
  content: "\f5cb"; }

.fa-bread-slice::before {
  content: "\f7ec"; }

.fa-language::before {
  content: "\f1ab"; }

.fa-face-kiss-wink-heart::before {
  content: "\f598"; }

.fa-kiss-wink-heart::before {
  content: "\f598"; }

.fa-filter::before {
  content: "\f0b0"; }

.fa-question::before {
  content: "\3f"; }

.fa-file-signature::before {
  content: "\f573"; }

.fa-up-down-left-right::before {
  content: "\f0b2"; }

.fa-arrows-alt::before {
  content: "\f0b2"; }

.fa-house-chimney-user::before {
  content: "\e065"; }

.fa-hand-holding-heart::before {
  content: "\f4be"; }

.fa-puzzle-piece::before {
  content: "\f12e"; }

.fa-money-check::before {
  content: "\f53c"; }

.fa-star-half-stroke::before {
  content: "\f5c0"; }

.fa-star-half-alt::before {
  content: "\f5c0"; }

.fa-code::before {
  content: "\f121"; }

.fa-whiskey-glass::before {
  content: "\f7a0"; }

.fa-glass-whiskey::before {
  content: "\f7a0"; }

.fa-building-circle-exclamation::before {
  content: "\e4d3"; }

.fa-magnifying-glass-chart::before {
  content: "\e522"; }

.fa-arrow-up-right-from-square::before {
  content: "\f08e"; }

.fa-external-link::before {
  content: "\f08e"; }

.fa-cubes-stacked::before {
  content: "\e4e6"; }

.fa-won-sign::before {
  content: "\f159"; }

.fa-krw::before {
  content: "\f159"; }

.fa-won::before {
  content: "\f159"; }

.fa-virus-covid::before {
  content: "\e4a8"; }

.fa-austral-sign::before {
  content: "\e0a9"; }

.fa-f::before {
  content: "\46"; }

.fa-leaf::before {
  content: "\f06c"; }

.fa-road::before {
  content: "\f018"; }

.fa-taxi::before {
  content: "\f1ba"; }

.fa-cab::before {
  content: "\f1ba"; }

.fa-person-circle-plus::before {
  content: "\e541"; }

.fa-chart-pie::before {
  content: "\f200"; }

.fa-pie-chart::before {
  content: "\f200"; }

.fa-bolt-lightning::before {
  content: "\e0b7"; }

.fa-sack-xmark::before {
  content: "\e56a"; }

.fa-file-excel::before {
  content: "\f1c3"; }

.fa-file-contract::before {
  content: "\f56c"; }

.fa-fish-fins::before {
  content: "\e4f2"; }

.fa-building-flag::before {
  content: "\e4d5"; }

.fa-face-grin-beam::before {
  content: "\f582"; }

.fa-grin-beam::before {
  content: "\f582"; }

.fa-object-ungroup::before {
  content: "\f248"; }

.fa-poop::before {
  content: "\f619"; }

.fa-location-pin::before {
  content: "\f041"; }

.fa-map-marker::before {
  content: "\f041"; }

.fa-kaaba::before {
  content: "\f66b"; }

.fa-toilet-paper::before {
  content: "\f71e"; }

.fa-helmet-safety::before {
  content: "\f807"; }

.fa-hard-hat::before {
  content: "\f807"; }

.fa-hat-hard::before {
  content: "\f807"; }

.fa-eject::before {
  content: "\f052"; }

.fa-circle-right::before {
  content: "\f35a"; }

.fa-arrow-alt-circle-right::before {
  content: "\f35a"; }

.fa-plane-circle-check::before {
  content: "\e555"; }

.fa-face-rolling-eyes::before {
  content: "\f5a5"; }

.fa-meh-rolling-eyes::before {
  content: "\f5a5"; }

.fa-object-group::before {
  content: "\f247"; }

.fa-chart-line::before {
  content: "\f201"; }

.fa-line-chart::before {
  content: "\f201"; }

.fa-mask-ventilator::before {
  content: "\e524"; }

.fa-arrow-right::before {
  content: "\f061"; }

.fa-signs-post::before {
  content: "\f277"; }

.fa-map-signs::before {
  content: "\f277"; }

.fa-cash-register::before {
  content: "\f788"; }

.fa-person-circle-question::before {
  content: "\e542"; }

.fa-h::before {
  content: "\48"; }

.fa-tarp::before {
  content: "\e57b"; }

.fa-screwdriver-wrench::before {
  content: "\f7d9"; }

.fa-tools::before {
  content: "\f7d9"; }

.fa-arrows-to-eye::before {
  content: "\e4bf"; }

.fa-plug-circle-bolt::before {
  content: "\e55b"; }

.fa-heart::before {
  content: "\f004"; }

.fa-mars-and-venus::before {
  content: "\f224"; }

.fa-house-user::before {
  content: "\e1b0"; }

.fa-home-user::before {
  content: "\e1b0"; }

.fa-dumpster-fire::before {
  content: "\f794"; }

.fa-house-crack::before {
  content: "\e3b1"; }

.fa-martini-glass-citrus::before {
  content: "\f561"; }

.fa-cocktail::before {
  content: "\f561"; }

.fa-face-surprise::before {
  content: "\f5c2"; }

.fa-surprise::before {
  content: "\f5c2"; }

.fa-bottle-water::before {
  content: "\e4c5"; }

.fa-circle-pause::before {
  content: "\f28b"; }

.fa-pause-circle::before {
  content: "\f28b"; }

.fa-toilet-paper-slash::before {
  content: "\e072"; }

.fa-apple-whole::before {
  content: "\f5d1"; }

.fa-apple-alt::before {
  content: "\f5d1"; }

.fa-kitchen-set::before {
  content: "\e51a"; }

.fa-r::before {
  content: "\52"; }

.fa-temperature-quarter::before {
  content: "\f2ca"; }

.fa-temperature-1::before {
  content: "\f2ca"; }

.fa-thermometer-1::before {
  content: "\f2ca"; }

.fa-thermometer-quarter::before {
  content: "\f2ca"; }

.fa-cube::before {
  content: "\f1b2"; }

.fa-bitcoin-sign::before {
  content: "\e0b4"; }

.fa-shield-dog::before {
  content: "\e573"; }

.fa-solar-panel::before {
  content: "\f5ba"; }

.fa-lock-open::before {
  content: "\f3c1"; }

.fa-elevator::before {
  content: "\e16d"; }

.fa-money-bill-transfer::before {
  content: "\e528"; }

.fa-money-bill-trend-up::before {
  content: "\e529"; }

.fa-house-flood-water-circle-arrow-right::before {
  content: "\e50f"; }

.fa-square-poll-horizontal::before {
  content: "\f682"; }

.fa-poll-h::before {
  content: "\f682"; }

.fa-circle::before {
  content: "\f111"; }

.fa-backward-fast::before {
  content: "\f049"; }

.fa-fast-backward::before {
  content: "\f049"; }

.fa-recycle::before {
  content: "\f1b8"; }

.fa-user-astronaut::before {
  content: "\f4fb"; }

.fa-plane-slash::before {
  content: "\e069"; }

.fa-trademark::before {
  content: "\f25c"; }

.fa-basketball::before {
  content: "\f434"; }

.fa-basketball-ball::before {
  content: "\f434"; }

.fa-satellite-dish::before {
  content: "\f7c0"; }

.fa-circle-up::before {
  content: "\f35b"; }

.fa-arrow-alt-circle-up::before {
  content: "\f35b"; }

.fa-mobile-screen-button::before {
  content: "\f3cd"; }

.fa-mobile-alt::before {
  content: "\f3cd"; }

.fa-volume-high::before {
  content: "\f028"; }

.fa-volume-up::before {
  content: "\f028"; }

.fa-users-rays::before {
  content: "\e593"; }

.fa-wallet::before {
  content: "\f555"; }

.fa-clipboard-check::before {
  content: "\f46c"; }

.fa-file-audio::before {
  content: "\f1c7"; }

.fa-burger::before {
  content: "\f805"; }

.fa-hamburger::before {
  content: "\f805"; }

.fa-wrench::before {
  content: "\f0ad"; }

.fa-bugs::before {
  content: "\e4d0"; }

.fa-rupee-sign::before {
  content: "\f156"; }

.fa-rupee::before {
  content: "\f156"; }

.fa-file-image::before {
  content: "\f1c5"; }

.fa-circle-question::before {
  content: "\f059"; }

.fa-question-circle::before {
  content: "\f059"; }

.fa-plane-departure::before {
  content: "\f5b0"; }

.fa-handshake-slash::before {
  content: "\e060"; }

.fa-book-bookmark::before {
  content: "\e0bb"; }

.fa-code-branch::before {
  content: "\f126"; }

.fa-hat-cowboy::before {
  content: "\f8c0"; }

.fa-bridge::before {
  content: "\e4c8"; }

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

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

.fa-truck-front::before {
  content: "\e2b7"; }

.fa-cat::before {
  content: "\f6be"; }

.fa-anchor-circle-exclamation::before {
  content: "\e4ab"; }

.fa-truck-field::before {
  content: "\e58d"; }

.fa-route::before {
  content: "\f4d7"; }

.fa-clipboard-question::before {
  content: "\e4e3"; }

.fa-panorama::before {
  content: "\e209"; }

.fa-comment-medical::before {
  content: "\f7f5"; }

.fa-teeth-open::before {
  content: "\f62f"; }

.fa-file-circle-minus::before {
  content: "\e4ed"; }

.fa-tags::before {
  content: "\f02c"; }

.fa-wine-glass::before {
  content: "\f4e3"; }

.fa-forward-fast::before {
  content: "\f050"; }

.fa-fast-forward::before {
  content: "\f050"; }

.fa-face-meh-blank::before {
  content: "\f5a4"; }

.fa-meh-blank::before {
  content: "\f5a4"; }

.fa-square-parking::before {
  content: "\f540"; }

.fa-parking::before {
  content: "\f540"; }

.fa-house-signal::before {
  content: "\e012"; }

.fa-bars-progress::before {
  content: "\f828"; }

.fa-tasks-alt::before {
  content: "\f828"; }

.fa-faucet-drip::before {
  content: "\e006"; }

.fa-cart-flatbed::before {
  content: "\f474"; }

.fa-dolly-flatbed::before {
  content: "\f474"; }

.fa-ban-smoking::before {
  content: "\f54d"; }

.fa-smoking-ban::before {
  content: "\f54d"; }

.fa-terminal::before {
  content: "\f120"; }

.fa-mobile-button::before {
  content: "\f10b"; }

.fa-house-medical-flag::before {
  content: "\e514"; }

.fa-basket-shopping::before {
  content: "\f291"; }

.fa-shopping-basket::before {
  content: "\f291"; }

.fa-tape::before {
  content: "\f4db"; }

.fa-bus-simple::before {
  content: "\f55e"; }

.fa-bus-alt::before {
  content: "\f55e"; }

.fa-eye::before {
  content: "\f06e"; }

.fa-face-sad-cry::before {
  content: "\f5b3"; }

.fa-sad-cry::before {
  content: "\f5b3"; }

.fa-audio-description::before {
  content: "\f29e"; }

.fa-person-military-to-person::before {
  content: "\e54c"; }

.fa-file-shield::before {
  content: "\e4f0"; }

.fa-user-slash::before {
  content: "\f506"; }

.fa-pen::before {
  content: "\f304"; }

.fa-tower-observation::before {
  content: "\e586"; }

.fa-file-code::before {
  content: "\f1c9"; }

.fa-signal::before {
  content: "\f012"; }

.fa-signal-5::before {
  content: "\f012"; }

.fa-signal-perfect::before {
  content: "\f012"; }

.fa-bus::before {
  content: "\f207"; }

.fa-heart-circle-xmark::before {
  content: "\e501"; }

.fa-house-chimney::before {
  content: "\e3af"; }

.fa-home-lg::before {
  content: "\e3af"; }

.fa-window-maximize::before {
  content: "\f2d0"; }

.fa-face-frown::before {
  content: "\f119"; }

.fa-frown::before {
  content: "\f119"; }

.fa-prescription::before {
  content: "\f5b1"; }

.fa-shop::before {
  content: "\f54f"; }

.fa-store-alt::before {
  content: "\f54f"; }

.fa-floppy-disk::before {
  content: "\f0c7"; }

.fa-save::before {
  content: "\f0c7"; }

.fa-vihara::before {
  content: "\f6a7"; }

.fa-scale-unbalanced::before {
  content: "\f515"; }

.fa-balance-scale-left::before {
  content: "\f515"; }

.fa-sort-up::before {
  content: "\f0de"; }

.fa-sort-asc::before {
  content: "\f0de"; }

.fa-comment-dots::before {
  content: "\f4ad"; }

.fa-commenting::before {
  content: "\f4ad"; }

.fa-plant-wilt::before {
  content: "\e5aa"; }

.fa-diamond::before {
  content: "\f219"; }

.fa-face-grin-squint::before {
  content: "\f585"; }

.fa-grin-squint::before {
  content: "\f585"; }

.fa-hand-holding-dollar::before {
  content: "\f4c0"; }

.fa-hand-holding-usd::before {
  content: "\f4c0"; }

.fa-bacterium::before {
  content: "\e05a"; }

.fa-hand-pointer::before {
  content: "\f25a"; }

.fa-drum-steelpan::before {
  content: "\f56a"; }

.fa-hand-scissors::before {
  content: "\f257"; }

.fa-hands-praying::before {
  content: "\f684"; }

.fa-praying-hands::before {
  content: "\f684"; }

.fa-arrow-rotate-right::before {
  content: "\f01e"; }

.fa-arrow-right-rotate::before {
  content: "\f01e"; }

.fa-arrow-rotate-forward::before {
  content: "\f01e"; }

.fa-redo::before {
  content: "\f01e"; }

.fa-biohazard::before {
  content: "\f780"; }

.fa-location-crosshairs::before {
  content: "\f601"; }

.fa-location::before {
  content: "\f601"; }

.fa-mars-double::before {
  content: "\f227"; }

.fa-child-dress::before {
  content: "\e59c"; }

.fa-users-between-lines::before {
  content: "\e591"; }

.fa-lungs-virus::before {
  content: "\e067"; }

.fa-face-grin-tears::before {
  content: "\f588"; }

.fa-grin-tears::before {
  content: "\f588"; }

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

.fa-calendar-xmark::before {
  content: "\f273"; }

.fa-calendar-times::before {
  content: "\f273"; }

.fa-child-reaching::before {
  content: "\e59d"; }

.fa-head-side-virus::before {
  content: "\e064"; }

.fa-user-gear::before {
  content: "\f4fe"; }

.fa-user-cog::before {
  content: "\f4fe"; }

.fa-arrow-up-1-9::before {
  content: "\f163"; }

.fa-sort-numeric-up::before {
  content: "\f163"; }

.fa-door-closed::before {
  content: "\f52a"; }

.fa-shield-virus::before {
  content: "\e06c"; }

.fa-dice-six::before {
  content: "\f526"; }

.fa-mosquito-net::before {
  content: "\e52c"; }

.fa-bridge-water::before {
  content: "\e4ce"; }

.fa-person-booth::before {
  content: "\f756"; }

.fa-text-width::before {
  content: "\f035"; }

.fa-hat-wizard::before {
  content: "\f6e8"; }

.fa-pen-fancy::before {
  content: "\f5ac"; }

.fa-person-digging::before {
  content: "\f85e"; }

.fa-digging::before {
  content: "\f85e"; }

.fa-trash::before {
  content: "\f1f8"; }

.fa-gauge-simple::before {
  content: "\f629"; }

.fa-gauge-simple-med::before {
  content: "\f629"; }

.fa-tachometer-average::before {
  content: "\f629"; }

.fa-book-medical::before {
  content: "\f7e6"; }

.fa-poo::before {
  content: "\f2fe"; }

.fa-quote-right::before {
  content: "\f10e"; }

.fa-quote-right-alt::before {
  content: "\f10e"; }

.fa-shirt::before {
  content: "\f553"; }

.fa-t-shirt::before {
  content: "\f553"; }

.fa-tshirt::before {
  content: "\f553"; }

.fa-cubes::before {
  content: "\f1b3"; }

.fa-divide::before {
  content: "\f529"; }

.fa-tenge-sign::before {
  content: "\f7d7"; }

.fa-tenge::before {
  content: "\f7d7"; }

.fa-headphones::before {
  content: "\f025"; }

.fa-hands-holding::before {
  content: "\f4c2"; }

.fa-hands-clapping::before {
  content: "\e1a8"; }

.fa-republican::before {
  content: "\f75e"; }

.fa-arrow-left::before {
  content: "\f060"; }

.fa-person-circle-xmark::before {
  content: "\e543"; }

.fa-ruler::before {
  content: "\f545"; }

.fa-align-left::before {
  content: "\f036"; }

.fa-dice-d6::before {
  content: "\f6d1"; }

.fa-restroom::before {
  content: "\f7bd"; }

.fa-j::before {
  content: "\4a"; }

.fa-users-viewfinder::before {
  content: "\e595"; }

.fa-file-video::before {
  content: "\f1c8"; }

.fa-up-right-from-square::before {
  content: "\f35d"; }

.fa-external-link-alt::before {
  content: "\f35d"; }

.fa-table-cells::before {
  content: "\f00a"; }

.fa-th::before {
  content: "\f00a"; }

.fa-file-pdf::before {
  content: "\f1c1"; }

.fa-book-bible::before {
  content: "\f647"; }

.fa-bible::before {
  content: "\f647"; }

.fa-o::before {
  content: "\4f"; }

.fa-suitcase-medical::before {
  content: "\f0fa"; }

.fa-medkit::before {
  content: "\f0fa"; }

.fa-user-secret::before {
  content: "\f21b"; }

.fa-otter::before {
  content: "\f700"; }

.fa-person-dress::before {
  content: "\f182"; }

.fa-female::before {
  content: "\f182"; }

.fa-comment-dollar::before {
  content: "\f651"; }

.fa-business-time::before {
  content: "\f64a"; }

.fa-briefcase-clock::before {
  content: "\f64a"; }

.fa-table-cells-large::before {
  content: "\f009"; }

.fa-th-large::before {
  content: "\f009"; }

.fa-book-tanakh::before {
  content: "\f827"; }

.fa-tanakh::before {
  content: "\f827"; }

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

.fa-volume-control-phone::before {
  content: "\f2a0"; }

.fa-hat-cowboy-side::before {
  content: "\f8c1"; }

.fa-clipboard-user::before {
  content: "\f7f3"; }

.fa-child::before {
  content: "\f1ae"; }

.fa-lira-sign::before {
  content: "\f195"; }

.fa-satellite::before {
  content: "\f7bf"; }

.fa-plane-lock::before {
  content: "\e558"; }

.fa-tag::before {
  content: "\f02b"; }

.fa-comment::before {
  content: "\f075"; }

.fa-cake-candles::before {
  content: "\f1fd"; }

.fa-birthday-cake::before {
  content: "\f1fd"; }

.fa-cake::before {
  content: "\f1fd"; }

.fa-envelope::before {
  content: "\f0e0"; }

.fa-angles-up::before {
  content: "\f102"; }

.fa-angle-double-up::before {
  content: "\f102"; }

.fa-paperclip::before {
  content: "\f0c6"; }

.fa-arrow-right-to-city::before {
  content: "\e4b3"; }

.fa-ribbon::before {
  content: "\f4d6"; }

.fa-lungs::before {
  content: "\f604"; }

.fa-arrow-up-9-1::before {
  content: "\f887"; }

.fa-sort-numeric-up-alt::before {
  content: "\f887"; }

.fa-litecoin-sign::before {
  content: "\e1d3"; }

.fa-border-none::before {
  content: "\f850"; }

.fa-circle-nodes::before {
  content: "\e4e2"; }

.fa-parachute-box::before {
  content: "\f4cd"; }

.fa-indent::before {
  content: "\f03c"; }

.fa-truck-field-un::before {
  content: "\e58e"; }

.fa-hourglass::before {
  content: "\f254"; }

.fa-hourglass-empty::before {
  content: "\f254"; }

.fa-mountain::before {
  content: "\f6fc"; }

.fa-user-doctor::before {
  content: "\f0f0"; }

.fa-user-md::before {
  content: "\f0f0"; }

.fa-circle-info::before {
  content: "\f05a"; }

.fa-info-circle::before {
  content: "\f05a"; }

.fa-cloud-meatball::before {
  content: "\f73b"; }

.fa-camera::before {
  content: "\f030"; }

.fa-camera-alt::before {
  content: "\f030"; }

.fa-square-virus::before {
  content: "\e578"; }

.fa-meteor::before {
  content: "\f753"; }

.fa-car-on::before {
  content: "\e4dd"; }

.fa-sleigh::before {
  content: "\f7cc"; }

.fa-arrow-down-1-9::before {
  content: "\f162"; }

.fa-sort-numeric-asc::before {
  content: "\f162"; }

.fa-sort-numeric-down::before {
  content: "\f162"; }

.fa-hand-holding-droplet::before {
  content: "\f4c1"; }

.fa-hand-holding-water::before {
  content: "\f4c1"; }

.fa-water::before {
  content: "\f773"; }

.fa-calendar-check::before {
  content: "\f274"; }

.fa-braille::before {
  content: "\f2a1"; }

.fa-prescription-bottle-medical::before {
  content: "\f486"; }

.fa-prescription-bottle-alt::before {
  content: "\f486"; }

.fa-landmark::before {
  content: "\f66f"; }

.fa-truck::before {
  content: "\f0d1"; }

.fa-crosshairs::before {
  content: "\f05b"; }

.fa-person-cane::before {
  content: "\e53c"; }

.fa-tent::before {
  content: "\e57d"; }

.fa-vest-patches::before {
  content: "\e086"; }

.fa-check-double::before {
  content: "\f560"; }

.fa-arrow-down-a-z::before {
  content: "\f15d"; }

.fa-sort-alpha-asc::before {
  content: "\f15d"; }

.fa-sort-alpha-down::before {
  content: "\f15d"; }

.fa-money-bill-wheat::before {
  content: "\e52a"; }

.fa-cookie::before {
  content: "\f563"; }

.fa-arrow-rotate-left::before {
  content: "\f0e2"; }

.fa-arrow-left-rotate::before {
  content: "\f0e2"; }

.fa-arrow-rotate-back::before {
  content: "\f0e2"; }

.fa-arrow-rotate-backward::before {
  content: "\f0e2"; }

.fa-undo::before {
  content: "\f0e2"; }

.fa-hard-drive::before {
  content: "\f0a0"; }

.fa-hdd::before {
  content: "\f0a0"; }

.fa-face-grin-squint-tears::before {
  content: "\f586"; }

.fa-grin-squint-tears::before {
  content: "\f586"; }

.fa-dumbbell::before {
  content: "\f44b"; }

.fa-rectangle-list::before {
  content: "\f022"; }

.fa-list-alt::before {
  content: "\f022"; }

.fa-tarp-droplet::before {
  content: "\e57c"; }

.fa-house-medical-circle-check::before {
  content: "\e511"; }

.fa-person-skiing-nordic::before {
  content: "\f7ca"; }

.fa-skiing-nordic::before {
  content: "\f7ca"; }

.fa-calendar-plus::before {
  content: "\f271"; }

.fa-plane-arrival::before {
  content: "\f5af"; }

.fa-circle-left::before {
  content: "\f359"; }

.fa-arrow-alt-circle-left::before {
  content: "\f359"; }

.fa-train-subway::before {
  content: "\f239"; }

.fa-subway::before {
  content: "\f239"; }

.fa-chart-gantt::before {
  content: "\e0e4"; }

.fa-indian-rupee-sign::before {
  content: "\e1bc"; }

.fa-indian-rupee::before {
  content: "\e1bc"; }

.fa-inr::before {
  content: "\e1bc"; }

.fa-crop-simple::before {
  content: "\f565"; }

.fa-crop-alt::before {
  content: "\f565"; }

.fa-money-bill-1::before {
  content: "\f3d1"; }

.fa-money-bill-alt::before {
  content: "\f3d1"; }

.fa-left-long::before {
  content: "\f30a"; }

.fa-long-arrow-alt-left::before {
  content: "\f30a"; }

.fa-dna::before {
  content: "\f471"; }

.fa-virus-slash::before {
  content: "\e075"; }

.fa-minus::before {
  content: "\f068"; }

.fa-subtract::before {
  content: "\f068"; }

.fa-chess::before {
  content: "\f439"; }

.fa-arrow-left-long::before {
  content: "\f177"; }

.fa-long-arrow-left::before {
  content: "\f177"; }

.fa-plug-circle-check::before {
  content: "\e55c"; }

.fa-street-view::before {
  content: "\f21d"; }

.fa-franc-sign::before {
  content: "\e18f"; }

.fa-volume-off::before {
  content: "\f026"; }

.fa-hands-asl-interpreting::before {
  content: "\f2a3"; }

.fa-american-sign-language-interpreting::before {
  content: "\f2a3"; }

.fa-asl-interpreting::before {
  content: "\f2a3"; }

.fa-hands-american-sign-language-interpreting::before {
  content: "\f2a3"; }

.fa-gear::before {
  content: "\f013"; }

.fa-cog::before {
  content: "\f013"; }

.fa-droplet-slash::before {
  content: "\f5c7"; }

.fa-tint-slash::before {
  content: "\f5c7"; }

.fa-mosque::before {
  content: "\f678"; }

.fa-mosquito::before {
  content: "\e52b"; }

.fa-star-of-david::before {
  content: "\f69a"; }

.fa-person-military-rifle::before {
  content: "\e54b"; }

.fa-cart-shopping::before {
  content: "\f07a"; }

.fa-shopping-cart::before {
  content: "\f07a"; }

.fa-vials::before {
  content: "\f493"; }

.fa-plug-circle-plus::before {
  content: "\e55f"; }

.fa-place-of-worship::before {
  content: "\f67f"; }

.fa-grip-vertical::before {
  content: "\f58e"; }

.fa-arrow-turn-up::before {
  content: "\f148"; }

.fa-level-up::before {
  content: "\f148"; }

.fa-u::before {
  content: "\55"; }

.fa-square-root-variable::before {
  content: "\f698"; }

.fa-square-root-alt::before {
  content: "\f698"; }

.fa-clock::before {
  content: "\f017"; }

.fa-clock-four::before {
  content: "\f017"; }

.fa-backward-step::before {
  content: "\f048"; }

.fa-step-backward::before {
  content: "\f048"; }

.fa-pallet::before {
  content: "\f482"; }

.fa-faucet::before {
  content: "\e005"; }

.fa-baseball-bat-ball::before {
  content: "\f432"; }

.fa-s::before {
  content: "\53"; }

.fa-timeline::before {
  content: "\e29c"; }

.fa-keyboard::before {
  content: "\f11c"; }

.fa-caret-down::before {
  content: "\f0d7"; }

.fa-house-chimney-medical::before {
  content: "\f7f2"; }

.fa-clinic-medical::before {
  content: "\f7f2"; }

.fa-temperature-three-quarters::before {
  content: "\f2c8"; }

.fa-temperature-3::before {
  content: "\f2c8"; }

.fa-thermometer-3::before {
  content: "\f2c8"; }

.fa-thermometer-three-quarters::before {
  content: "\f2c8"; }

.fa-mobile-screen::before {
  content: "\f3cf"; }

.fa-mobile-android-alt::before {
  content: "\f3cf"; }

.fa-plane-up::before {
  content: "\e22d"; }

.fa-piggy-bank::before {
  content: "\f4d3"; }

.fa-battery-half::before {
  content: "\f242"; }

.fa-battery-3::before {
  content: "\f242"; }

.fa-mountain-city::before {
  content: "\e52e"; }

.fa-coins::before {
  content: "\f51e"; }

.fa-khanda::before {
  content: "\f66d"; }

.fa-sliders::before {
  content: "\f1de"; }

.fa-sliders-h::before {
  content: "\f1de"; }

.fa-folder-tree::before {
  content: "\f802"; }

.fa-network-wired::before {
  content: "\f6ff"; }

.fa-map-pin::before {
  content: "\f276"; }

.fa-hamsa::before {
  content: "\f665"; }

.fa-cent-sign::before {
  content: "\e3f5"; }

.fa-flask::before {
  content: "\f0c3"; }

.fa-person-pregnant::before {
  content: "\e31e"; }

.fa-wand-sparkles::before {
  content: "\f72b"; }

.fa-ellipsis-vertical::before {
  content: "\f142"; }

.fa-ellipsis-v::before {
  content: "\f142"; }

.fa-ticket::before {
  content: "\f145"; }

.fa-power-off::before {
  content: "\f011"; }

.fa-right-long::before {
  content: "\f30b"; }

.fa-long-arrow-alt-right::before {
  content: "\f30b"; }

.fa-flag-usa::before {
  content: "\f74d"; }

.fa-laptop-file::before {
  content: "\e51d"; }

.fa-tty::before {
  content: "\f1e4"; }

.fa-teletype::before {
  content: "\f1e4"; }

.fa-diagram-next::before {
  content: "\e476"; }

.fa-person-rifle::before {
  content: "\e54e"; }

.fa-house-medical-circle-exclamation::before {
  content: "\e512"; }

.fa-closed-captioning::before {
  content: "\f20a"; }

.fa-person-hiking::before {
  content: "\f6ec"; }

.fa-hiking::before {
  content: "\f6ec"; }

.fa-venus-double::before {
  content: "\f226"; }

.fa-images::before {
  content: "\f302"; }

.fa-calculator::before {
  content: "\f1ec"; }

.fa-people-pulling::before {
  content: "\e535"; }

.fa-n::before {
  content: "\4e"; }

.fa-cable-car::before {
  content: "\f7da"; }

.fa-tram::before {
  content: "\f7da"; }

.fa-cloud-rain::before {
  content: "\f73d"; }

.fa-building-circle-xmark::before {
  content: "\e4d4"; }

.fa-ship::before {
  content: "\f21a"; }

.fa-arrows-down-to-line::before {
  content: "\e4b8"; }

.fa-download::before {
  content: "\f019"; }

.fa-face-grin::before {
  content: "\f580"; }

.fa-grin::before {
  content: "\f580"; }

.fa-delete-left::before {
  content: "\f55a"; }

.fa-backspace::before {
  content: "\f55a"; }

.fa-eye-dropper::before {
  content: "\f1fb"; }

.fa-eye-dropper-empty::before {
  content: "\f1fb"; }

.fa-eyedropper::before {
  content: "\f1fb"; }

.fa-file-circle-check::before {
  content: "\e5a0"; }

.fa-forward::before {
  content: "\f04e"; }

.fa-mobile::before {
  content: "\f3ce"; }

.fa-mobile-android::before {
  content: "\f3ce"; }

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

.fa-face-meh::before {
  content: "\f11a"; }

.fa-meh::before {
  content: "\f11a"; }

.fa-align-center::before {
  content: "\f037"; }

.fa-book-skull::before {
  content: "\f6b7"; }

.fa-book-dead::before {
  content: "\f6b7"; }

.fa-id-card::before {
  content: "\f2c2"; }

.fa-drivers-license::before {
  content: "\f2c2"; }

.fa-outdent::before {
  content: "\f03b"; }

.fa-dedent::before {
  content: "\f03b"; }

.fa-heart-circle-exclamation::before {
  content: "\e4fe"; }

.fa-house::before {
  content: "\f015"; }

.fa-home::before {
  content: "\f015"; }

.fa-home-alt::before {
  content: "\f015"; }

.fa-home-lg-alt::before {
  content: "\f015"; }

.fa-calendar-week::before {
  content: "\f784"; }

.fa-laptop-medical::before {
  content: "\f812"; }

.fa-b::before {
  content: "\42"; }

.fa-file-medical::before {
  content: "\f477"; }

.fa-dice-one::before {
  content: "\f525"; }

.fa-kiwi-bird::before {
  content: "\f535"; }

.fa-arrow-right-arrow-left::before {
  content: "\f0ec"; }

.fa-exchange::before {
  content: "\f0ec"; }

.fa-rotate-right::before {
  content: "\f2f9"; }

.fa-redo-alt::before {
  content: "\f2f9"; }

.fa-rotate-forward::before {
  content: "\f2f9"; }

.fa-utensils::before {
  content: "\f2e7"; }

.fa-cutlery::before {
  content: "\f2e7"; }

.fa-arrow-up-wide-short::before {
  content: "\f161"; }

.fa-sort-amount-up::before {
  content: "\f161"; }

.fa-mill-sign::before {
  content: "\e1ed"; }

.fa-bowl-rice::before {
  content: "\e2eb"; }

.fa-skull::before {
  content: "\f54c"; }

.fa-tower-broadcast::before {
  content: "\f519"; }

.fa-broadcast-tower::before {
  content: "\f519"; }

.fa-truck-pickup::before {
  content: "\f63c"; }

.fa-up-long::before {
  content: "\f30c"; }

.fa-long-arrow-alt-up::before {
  content: "\f30c"; }

.fa-stop::before {
  content: "\f04d"; }

.fa-code-merge::before {
  content: "\f387"; }

.fa-upload::before {
  content: "\f093"; }

.fa-hurricane::before {
  content: "\f751"; }

.fa-mound::before {
  content: "\e52d"; }

.fa-toilet-portable::before {
  content: "\e583"; }

.fa-compact-disc::before {
  content: "\f51f"; }

.fa-file-arrow-down::before {
  content: "\f56d"; }

.fa-file-download::before {
  content: "\f56d"; }

.fa-caravan::before {
  content: "\f8ff"; }

.fa-shield-cat::before {
  content: "\e572"; }

.fa-bolt::before {
  content: "\f0e7"; }

.fa-zap::before {
  content: "\f0e7"; }

.fa-glass-water::before {
  content: "\e4f4"; }

.fa-oil-well::before {
  content: "\e532"; }

.fa-vault::before {
  content: "\e2c5"; }

.fa-mars::before {
  content: "\f222"; }

.fa-toilet::before {
  content: "\f7d8"; }

.fa-plane-circle-xmark::before {
  content: "\e557"; }

.fa-yen-sign::before {
  content: "\f157"; }

.fa-cny::before {
  content: "\f157"; }

.fa-jpy::before {
  content: "\f157"; }

.fa-rmb::before {
  content: "\f157"; }

.fa-yen::before {
  content: "\f157"; }

.fa-ruble-sign::before {
  content: "\f158"; }

.fa-rouble::before {
  content: "\f158"; }

.fa-rub::before {
  content: "\f158"; }

.fa-ruble::before {
  content: "\f158"; }

.fa-sun::before {
  content: "\f185"; }

.fa-guitar::before {
  content: "\f7a6"; }

.fa-face-laugh-wink::before {
  content: "\f59c"; }

.fa-laugh-wink::before {
  content: "\f59c"; }

.fa-horse-head::before {
  content: "\f7ab"; }

.fa-bore-hole::before {
  content: "\e4c3"; }

.fa-industry::before {
  content: "\f275"; }

.fa-circle-down::before {
  content: "\f358"; }

.fa-arrow-alt-circle-down::before {
  content: "\f358"; }

.fa-arrows-turn-to-dots::before {
  content: "\e4c1"; }

.fa-florin-sign::before {
  content: "\e184"; }

.fa-arrow-down-short-wide::before {
  content: "\f884"; }

.fa-sort-amount-desc::before {
  content: "\f884"; }

.fa-sort-amount-down-alt::before {
  content: "\f884"; }

.fa-less-than::before {
  content: "\3c"; }

.fa-angle-down::before {
  content: "\f107"; }

.fa-car-tunnel::before {
  content: "\e4de"; }

.fa-head-side-cough::before {
  content: "\e061"; }

.fa-grip-lines::before {
  content: "\f7a4"; }

.fa-thumbs-down::before {
  content: "\f165"; }

.fa-user-lock::before {
  content: "\f502"; }

.fa-arrow-right-long::before {
  content: "\f178"; }

.fa-long-arrow-right::before {
  content: "\f178"; }

.fa-anchor-circle-xmark::before {
  content: "\e4ac"; }

.fa-ellipsis::before {
  content: "\f141"; }

.fa-ellipsis-h::before {
  content: "\f141"; }

.fa-chess-pawn::before {
  content: "\f443"; }

.fa-kit-medical::before {
  content: "\f479"; }

.fa-first-aid::before {
  content: "\f479"; }

.fa-person-through-window::before {
  content: "\e5a9"; }

.fa-toolbox::before {
  content: "\f552"; }

.fa-hands-holding-circle::before {
  content: "\e4fb"; }

.fa-bug::before {
  content: "\f188"; }

.fa-credit-card::before {
  content: "\f09d"; }

.fa-credit-card-alt::before {
  content: "\f09d"; }

.fa-car::before {
  content: "\f1b9"; }

.fa-automobile::before {
  content: "\f1b9"; }

.fa-hand-holding-hand::before {
  content: "\e4f7"; }

.fa-book-open-reader::before {
  content: "\f5da"; }

.fa-book-reader::before {
  content: "\f5da"; }

.fa-mountain-sun::before {
  content: "\e52f"; }

.fa-arrows-left-right-to-line::before {
  content: "\e4ba"; }

.fa-dice-d20::before {
  content: "\f6cf"; }

.fa-truck-droplet::before {
  content: "\e58c"; }

.fa-file-circle-xmark::before {
  content: "\e5a1"; }

.fa-temperature-arrow-up::before {
  content: "\e040"; }

.fa-temperature-up::before {
  content: "\e040"; }

.fa-medal::before {
  content: "\f5a2"; }

.fa-bed::before {
  content: "\f236"; }

.fa-square-h::before {
  content: "\f0fd"; }

.fa-h-square::before {
  content: "\f0fd"; }

.fa-podcast::before {
  content: "\f2ce"; }

.fa-temperature-full::before {
  content: "\f2c7"; }

.fa-temperature-4::before {
  content: "\f2c7"; }

.fa-thermometer-4::before {
  content: "\f2c7"; }

.fa-thermometer-full::before {
  content: "\f2c7"; }

.fa-bell::before {
  content: "\f0f3"; }

.fa-superscript::before {
  content: "\f12b"; }

.fa-plug-circle-xmark::before {
  content: "\e560"; }

.fa-star-of-life::before {
  content: "\f621"; }

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

.fa-paint-roller::before {
  content: "\f5aa"; }

.fa-handshake-angle::before {
  content: "\f4c4"; }

.fa-hands-helping::before {
  content: "\f4c4"; }

.fa-location-dot::before {
  content: "\f3c5"; }

.fa-map-marker-alt::before {
  content: "\f3c5"; }

.fa-file::before {
  content: "\f15b"; }

.fa-greater-than::before {
  content: "\3e"; }

.fa-person-swimming::before {
  content: "\f5c4"; }

.fa-swimmer::before {
  content: "\f5c4"; }

.fa-arrow-down::before {
  content: "\f063"; }

.fa-droplet::before {
  content: "\f043"; }

.fa-tint::before {
  content: "\f043"; }

.fa-eraser::before {
  content: "\f12d"; }

.fa-earth-americas::before {
  content: "\f57d"; }

.fa-earth::before {
  content: "\f57d"; }

.fa-earth-america::before {
  content: "\f57d"; }

.fa-globe-americas::before {
  content: "\f57d"; }

.fa-person-burst::before {
  content: "\e53b"; }

.fa-dove::before {
  content: "\f4ba"; }

.fa-battery-empty::before {
  content: "\f244"; }

.fa-battery-0::before {
  content: "\f244"; }

.fa-socks::before {
  content: "\f696"; }

.fa-inbox::before {
  content: "\f01c"; }

.fa-section::before {
  content: "\e447"; }

.fa-gauge-high::before {
  content: "\f625"; }

.fa-tachometer-alt::before {
  content: "\f625"; }

.fa-tachometer-alt-fast::before {
  content: "\f625"; }

.fa-envelope-open-text::before {
  content: "\f658"; }

.fa-hospital::before {
  content: "\f0f8"; }

.fa-hospital-alt::before {
  content: "\f0f8"; }

.fa-hospital-wide::before {
  content: "\f0f8"; }

.fa-wine-bottle::before {
  content: "\f72f"; }

.fa-chess-rook::before {
  content: "\f447"; }

.fa-bars-staggered::before {
  content: "\f550"; }

.fa-reorder::before {
  content: "\f550"; }

.fa-stream::before {
  content: "\f550"; }

.fa-dharmachakra::before {
  content: "\f655"; }

.fa-hotdog::before {
  content: "\f80f"; }

.fa-person-walking-with-cane::before {
  content: "\f29d"; }

.fa-blind::before {
  content: "\f29d"; }

.fa-drum::before {
  content: "\f569"; }

.fa-ice-cream::before {
  content: "\f810"; }

.fa-heart-circle-bolt::before {
  content: "\e4fc"; }

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

.fa-paragraph::before {
  content: "\f1dd"; }

.fa-check-to-slot::before {
  content: "\f772"; }

.fa-vote-yea::before {
  content: "\f772"; }

.fa-star-half::before {
  content: "\f089"; }

.fa-boxes-stacked::before {
  content: "\f468"; }

.fa-boxes::before {
  content: "\f468"; }

.fa-boxes-alt::before {
  content: "\f468"; }

.fa-link::before {
  content: "\f0c1"; }

.fa-chain::before {
  content: "\f0c1"; }

.fa-ear-listen::before {
  content: "\f2a2"; }

.fa-assistive-listening-systems::before {
  content: "\f2a2"; }

.fa-tree-city::before {
  content: "\e587"; }

.fa-play::before {
  content: "\f04b"; }

.fa-font::before {
  content: "\f031"; }

.fa-rupiah-sign::before {
  content: "\e23d"; }

.fa-magnifying-glass::before {
  content: "\f002"; }

.fa-search::before {
  content: "\f002"; }

.fa-table-tennis-paddle-ball::before {
  content: "\f45d"; }

.fa-ping-pong-paddle-ball::before {
  content: "\f45d"; }

.fa-table-tennis::before {
  content: "\f45d"; }

.fa-person-dots-from-line::before {
  content: "\f470"; }

.fa-diagnoses::before {
  content: "\f470"; }

.fa-trash-can-arrow-up::before {
  content: "\f82a"; }

.fa-trash-restore-alt::before {
  content: "\f82a"; }

.fa-naira-sign::before {
  content: "\e1f6"; }

.fa-cart-arrow-down::before {
  content: "\f218"; }

.fa-walkie-talkie::before {
  content: "\f8ef"; }

.fa-file-pen::before {
  content: "\f31c"; }

.fa-file-edit::before {
  content: "\f31c"; }

.fa-receipt::before {
  content: "\f543"; }

.fa-square-pen::before {
  content: "\f14b"; }

.fa-pen-square::before {
  content: "\f14b"; }

.fa-pencil-square::before {
  content: "\f14b"; }

.fa-suitcase-rolling::before {
  content: "\f5c1"; }

.fa-person-circle-exclamation::before {
  content: "\e53f"; }

.fa-chevron-down::before {
  content: "\f078"; }

.fa-battery-full::before {
  content: "\f240"; }

.fa-battery::before {
  content: "\f240"; }

.fa-battery-5::before {
  content: "\f240"; }

.fa-skull-crossbones::before {
  content: "\f714"; }

.fa-code-compare::before {
  content: "\e13a"; }

.fa-list-ul::before {
  content: "\f0ca"; }

.fa-list-dots::before {
  content: "\f0ca"; }

.fa-school-lock::before {
  content: "\e56f"; }

.fa-tower-cell::before {
  content: "\e585"; }

.fa-down-long::before {
  content: "\f309"; }

.fa-long-arrow-alt-down::before {
  content: "\f309"; }

.fa-ranking-star::before {
  content: "\e561"; }

.fa-chess-king::before {
  content: "\f43f"; }

.fa-person-harassing::before {
  content: "\e549"; }

.fa-brazilian-real-sign::before {
  content: "\e46c"; }

.fa-landmark-dome::before {
  content: "\f752"; }

.fa-landmark-alt::before {
  content: "\f752"; }

.fa-arrow-up::before {
  content: "\f062"; }

.fa-tv::before {
  content: "\f26c"; }

.fa-television::before {
  content: "\f26c"; }

.fa-tv-alt::before {
  content: "\f26c"; }

.fa-shrimp::before {
  content: "\e448"; }

.fa-list-check::before {
  content: "\f0ae"; }

.fa-tasks::before {
  content: "\f0ae"; }

.fa-jug-detergent::before {
  content: "\e519"; }

.fa-circle-user::before {
  content: "\f2bd"; }

.fa-user-circle::before {
  content: "\f2bd"; }

.fa-user-shield::before {
  content: "\f505"; }

.fa-wind::before {
  content: "\f72e"; }

.fa-car-burst::before {
  content: "\f5e1"; }

.fa-car-crash::before {
  content: "\f5e1"; }

.fa-y::before {
  content: "\59"; }

.fa-person-snowboarding::before {
  content: "\f7ce"; }

.fa-snowboarding::before {
  content: "\f7ce"; }

.fa-truck-fast::before {
  content: "\f48b"; }

.fa-shipping-fast::before {
  content: "\f48b"; }

.fa-fish::before {
  content: "\f578"; }

.fa-user-graduate::before {
  content: "\f501"; }

.fa-circle-half-stroke::before {
  content: "\f042"; }

.fa-adjust::before {
  content: "\f042"; }

.fa-clapperboard::before {
  content: "\e131"; }

.fa-circle-radiation::before {
  content: "\f7ba"; }

.fa-radiation-alt::before {
  content: "\f7ba"; }

.fa-baseball::before {
  content: "\f433"; }

.fa-baseball-ball::before {
  content: "\f433"; }

.fa-jet-fighter-up::before {
  content: "\e518"; }

.fa-diagram-project::before {
  content: "\f542"; }

.fa-project-diagram::before {
  content: "\f542"; }

.fa-copy::before {
  content: "\f0c5"; }

.fa-volume-xmark::before {
  content: "\f6a9"; }

.fa-volume-mute::before {
  content: "\f6a9"; }

.fa-volume-times::before {
  content: "\f6a9"; }

.fa-hand-sparkles::before {
  content: "\e05d"; }

.fa-grip::before {
  content: "\f58d"; }

.fa-grip-horizontal::before {
  content: "\f58d"; }

.fa-share-from-square::before {
  content: "\f14d"; }

.fa-share-square::before {
  content: "\f14d"; }

.fa-child-combatant::before {
  content: "\e4e0"; }

.fa-child-rifle::before {
  content: "\e4e0"; }

.fa-gun::before {
  content: "\e19b"; }

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

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

.fa-plus::before {
  content: "\2b"; }

.fa-add::before {
  content: "\2b"; }

.fa-expand::before {
  content: "\f065"; }

.fa-computer::before {
  content: "\e4e5"; }

.fa-xmark::before {
  content: "\f00d"; }

.fa-close::before {
  content: "\f00d"; }

.fa-multiply::before {
  content: "\f00d"; }

.fa-remove::before {
  content: "\f00d"; }

.fa-times::before {
  content: "\f00d"; }

.fa-arrows-up-down-left-right::before {
  content: "\f047"; }

.fa-arrows::before {
  content: "\f047"; }

.fa-chalkboard-user::before {
  content: "\f51c"; }

.fa-chalkboard-teacher::before {
  content: "\f51c"; }

.fa-peso-sign::before {
  content: "\e222"; }

.fa-building-shield::before {
  content: "\e4d8"; }

.fa-baby::before {
  content: "\f77c"; }

.fa-users-line::before {
  content: "\e592"; }

.fa-quote-left::before {
  content: "\f10d"; }

.fa-quote-left-alt::before {
  content: "\f10d"; }

.fa-tractor::before {
  content: "\f722"; }

.fa-trash-arrow-up::before {
  content: "\f829"; }

.fa-trash-restore::before {
  content: "\f829"; }

.fa-arrow-down-up-lock::before {
  content: "\e4b0"; }

.fa-lines-leaning::before {
  content: "\e51e"; }

.fa-ruler-combined::before {
  content: "\f546"; }

.fa-copyright::before {
  content: "\f1f9"; }

.fa-equals::before {
  content: "\3d"; }

.fa-blender::before {
  content: "\f517"; }

.fa-teeth::before {
  content: "\f62e"; }

.fa-shekel-sign::before {
  content: "\f20b"; }

.fa-ils::before {
  content: "\f20b"; }

.fa-shekel::before {
  content: "\f20b"; }

.fa-sheqel::before {
  content: "\f20b"; }

.fa-sheqel-sign::before {
  content: "\f20b"; }

.fa-map::before {
  content: "\f279"; }

.fa-rocket::before {
  content: "\f135"; }

.fa-photo-film::before {
  content: "\f87c"; }

.fa-photo-video::before {
  content: "\f87c"; }

.fa-folder-minus::before {
  content: "\f65d"; }

.fa-store::before {
  content: "\f54e"; }

.fa-arrow-trend-up::before {
  content: "\e098"; }

.fa-plug-circle-minus::before {
  content: "\e55e"; }

.fa-sign-hanging::before {
  content: "\f4d9"; }

.fa-sign::before {
  content: "\f4d9"; }

.fa-bezier-curve::before {
  content: "\f55b"; }

.fa-bell-slash::before {
  content: "\f1f6"; }

.fa-tablet::before {
  content: "\f3fb"; }

.fa-tablet-android::before {
  content: "\f3fb"; }

.fa-school-flag::before {
  content: "\e56e"; }

.fa-fill::before {
  content: "\f575"; }

.fa-angle-up::before {
  content: "\f106"; }

.fa-drumstick-bite::before {
  content: "\f6d7"; }

.fa-holly-berry::before {
  content: "\f7aa"; }

.fa-chevron-left::before {
  content: "\f053"; }

.fa-bacteria::before {
  content: "\e059"; }

.fa-hand-lizard::before {
  content: "\f258"; }

.fa-notdef::before {
  content: "\e1fe"; }

.fa-disease::before {
  content: "\f7fa"; }

.fa-briefcase-medical::before {
  content: "\f469"; }

.fa-genderless::before {
  content: "\f22d"; }

.fa-chevron-right::before {
  content: "\f054"; }

.fa-retweet::before {
  content: "\f079"; }

.fa-car-rear::before {
  content: "\f5de"; }

.fa-car-alt::before {
  content: "\f5de"; }

.fa-pump-soap::before {
  content: "\e06b"; }

.fa-video-slash::before {
  content: "\f4e2"; }

.fa-battery-quarter::before {
  content: "\f243"; }

.fa-battery-2::before {
  content: "\f243"; }

.fa-radio::before {
  content: "\f8d7"; }

.fa-baby-carriage::before {
  content: "\f77d"; }

.fa-carriage-baby::before {
  content: "\f77d"; }

.fa-traffic-light::before {
  content: "\f637"; }

.fa-thermometer::before {
  content: "\f491"; }

.fa-vr-cardboard::before {
  content: "\f729"; }

.fa-hand-middle-finger::before {
  content: "\f806"; }

.fa-percent::before {
  content: "\25"; }

.fa-percentage::before {
  content: "\25"; }

.fa-truck-moving::before {
  content: "\f4df"; }

.fa-glass-water-droplet::before {
  content: "\e4f5"; }

.fa-display::before {
  content: "\e163"; }

.fa-face-smile::before {
  content: "\f118"; }

.fa-smile::before {
  content: "\f118"; }

.fa-thumbtack::before {
  content: "\f08d"; }

.fa-thumb-tack::before {
  content: "\f08d"; }

.fa-trophy::before {
  content: "\f091"; }

.fa-person-praying::before {
  content: "\f683"; }

.fa-pray::before {
  content: "\f683"; }

.fa-hammer::before {
  content: "\f6e3"; }

.fa-hand-peace::before {
  content: "\f25b"; }

.fa-rotate::before {
  content: "\f2f1"; }

.fa-sync-alt::before {
  content: "\f2f1"; }

.fa-spinner::before {
  content: "\f110"; }

.fa-robot::before {
  content: "\f544"; }

.fa-peace::before {
  content: "\f67c"; }

.fa-gears::before {
  content: "\f085"; }

.fa-cogs::before {
  content: "\f085"; }

.fa-warehouse::before {
  content: "\f494"; }

.fa-arrow-up-right-dots::before {
  content: "\e4b7"; }

.fa-splotch::before {
  content: "\f5bc"; }

.fa-face-grin-hearts::before {
  content: "\f584"; }

.fa-grin-hearts::before {
  content: "\f584"; }

.fa-dice-four::before {
  content: "\f524"; }

.fa-sim-card::before {
  content: "\f7c4"; }

.fa-transgender::before {
  content: "\f225"; }

.fa-transgender-alt::before {
  content: "\f225"; }

.fa-mercury::before {
  content: "\f223"; }

.fa-arrow-turn-down::before {
  content: "\f149"; }

.fa-level-down::before {
  content: "\f149"; }

.fa-person-falling-burst::before {
  content: "\e547"; }

.fa-award::before {
  content: "\f559"; }

.fa-ticket-simple::before {
  content: "\f3ff"; }

.fa-ticket-alt::before {
  content: "\f3ff"; }

.fa-building::before {
  content: "\f1ad"; }

.fa-angles-left::before {
  content: "\f100"; }

.fa-angle-double-left::before {
  content: "\f100"; }

.fa-qrcode::before {
  content: "\f029"; }

.fa-clock-rotate-left::before {
  content: "\f1da"; }

.fa-history::before {
  content: "\f1da"; }

.fa-face-grin-beam-sweat::before {
  content: "\f583"; }

.fa-grin-beam-sweat::before {
  content: "\f583"; }

.fa-file-export::before {
  content: "\f56e"; }

.fa-arrow-right-from-file::before {
  content: "\f56e"; }

.fa-shield::before {
  content: "\f132"; }

.fa-shield-blank::before {
  content: "\f132"; }

.fa-arrow-up-short-wide::before {
  content: "\f885"; }

.fa-sort-amount-up-alt::before {
  content: "\f885"; }

.fa-house-medical::before {
  content: "\e3b2"; }

.fa-golf-ball-tee::before {
  content: "\f450"; }

.fa-golf-ball::before {
  content: "\f450"; }

.fa-circle-chevron-left::before {
  content: "\f137"; }

.fa-chevron-circle-left::before {
  content: "\f137"; }

.fa-house-chimney-window::before {
  content: "\e00d"; }

.fa-pen-nib::before {
  content: "\f5ad"; }

.fa-tent-arrow-turn-left::before {
  content: "\e580"; }

.fa-tents::before {
  content: "\e582"; }

.fa-wand-magic::before {
  content: "\f0d0"; }

.fa-magic::before {
  content: "\f0d0"; }

.fa-dog::before {
  content: "\f6d3"; }

.fa-carrot::before {
  content: "\f787"; }

.fa-moon::before {
  content: "\f186"; }

.fa-wine-glass-empty::before {
  content: "\f5ce"; }

.fa-wine-glass-alt::before {
  content: "\f5ce"; }

.fa-cheese::before {
  content: "\f7ef"; }

.fa-yin-yang::before {
  content: "\f6ad"; }

.fa-music::before {
  content: "\f001"; }

.fa-code-commit::before {
  content: "\f386"; }

.fa-temperature-low::before {
  content: "\f76b"; }

.fa-person-biking::before {
  content: "\f84a"; }

.fa-biking::before {
  content: "\f84a"; }

.fa-broom::before {
  content: "\f51a"; }

.fa-shield-heart::before {
  content: "\e574"; }

.fa-gopuram::before {
  content: "\f664"; }

.fa-earth-oceania::before {
  content: "\e47b"; }

.fa-globe-oceania::before {
  content: "\e47b"; }

.fa-square-xmark::before {
  content: "\f2d3"; }

.fa-times-square::before {
  content: "\f2d3"; }

.fa-xmark-square::before {
  content: "\f2d3"; }

.fa-hashtag::before {
  content: "\23"; }

.fa-up-right-and-down-left-from-center::before {
  content: "\f424"; }

.fa-expand-alt::before {
  content: "\f424"; }

.fa-oil-can::before {
  content: "\f613"; }

.fa-t::before {
  content: "\54"; }

.fa-hippo::before {
  content: "\f6ed"; }

.fa-chart-column::before {
  content: "\e0e3"; }

.fa-infinity::before {
  content: "\f534"; }

.fa-vial-circle-check::before {
  content: "\e596"; }

.fa-person-arrow-down-to-line::before {
  content: "\e538"; }

.fa-voicemail::before {
  content: "\f897"; }

.fa-fan::before {
  content: "\f863"; }

.fa-person-walking-luggage::before {
  content: "\e554"; }

.fa-up-down::before {
  content: "\f338"; }

.fa-arrows-alt-v::before {
  content: "\f338"; }

.fa-cloud-moon-rain::before {
  content: "\f73c"; }

.fa-calendar::before {
  content: "\f133"; }

.fa-trailer::before {
  content: "\e041"; }

.fa-bahai::before {
  content: "\f666"; }

.fa-haykal::before {
  content: "\f666"; }

.fa-sd-card::before {
  content: "\f7c2"; }

.fa-dragon::before {
  content: "\f6d5"; }

.fa-shoe-prints::before {
  content: "\f54b"; }

.fa-circle-plus::before {
  content: "\f055"; }

.fa-plus-circle::before {
  content: "\f055"; }

.fa-face-grin-tongue-wink::before {
  content: "\f58b"; }

.fa-grin-tongue-wink::before {
  content: "\f58b"; }

.fa-hand-holding::before {
  content: "\f4bd"; }

.fa-plug-circle-exclamation::before {
  content: "\e55d"; }

.fa-link-slash::before {
  content: "\f127"; }

.fa-chain-broken::before {
  content: "\f127"; }

.fa-chain-slash::before {
  content: "\f127"; }

.fa-unlink::before {
  content: "\f127"; }

.fa-clone::before {
  content: "\f24d"; }

.fa-person-walking-arrow-loop-left::before {
  content: "\e551"; }

.fa-arrow-up-z-a::before {
  content: "\f882"; }

.fa-sort-alpha-up-alt::before {
  content: "\f882"; }

.fa-fire-flame-curved::before {
  content: "\f7e4"; }

.fa-fire-alt::before {
  content: "\f7e4"; }

.fa-tornado::before {
  content: "\f76f"; }

.fa-file-circle-plus::before {
  content: "\e494"; }

.fa-book-quran::before {
  content: "\f687"; }

.fa-quran::before {
  content: "\f687"; }

.fa-anchor::before {
  content: "\f13d"; }

.fa-border-all::before {
  content: "\f84c"; }

.fa-face-angry::before {
  content: "\f556"; }

.fa-angry::before {
  content: "\f556"; }

.fa-cookie-bite::before {
  content: "\f564"; }

.fa-arrow-trend-down::before {
  content: "\e097"; }

.fa-rss::before {
  content: "\f09e"; }

.fa-feed::before {
  content: "\f09e"; }

.fa-draw-polygon::before {
  content: "\f5ee"; }

.fa-scale-balanced::before {
  content: "\f24e"; }

.fa-balance-scale::before {
  content: "\f24e"; }

.fa-gauge-simple-high::before {
  content: "\f62a"; }

.fa-tachometer::before {
  content: "\f62a"; }

.fa-tachometer-fast::before {
  content: "\f62a"; }

.fa-shower::before {
  content: "\f2cc"; }

.fa-desktop::before {
  content: "\f390"; }

.fa-desktop-alt::before {
  content: "\f390"; }

.fa-m::before {
  content: "\4d"; }

.fa-table-list::before {
  content: "\f00b"; }

.fa-th-list::before {
  content: "\f00b"; }

.fa-comment-sms::before {
  content: "\f7cd"; }

.fa-sms::before {
  content: "\f7cd"; }

.fa-book::before {
  content: "\f02d"; }

.fa-user-plus::before {
  content: "\f234"; }

.fa-check::before {
  content: "\f00c"; }

.fa-battery-three-quarters::before {
  content: "\f241"; }

.fa-battery-4::before {
  content: "\f241"; }

.fa-house-circle-check::before {
  content: "\e509"; }

.fa-angle-left::before {
  content: "\f104"; }

.fa-diagram-successor::before {
  content: "\e47a"; }

.fa-truck-arrow-right::before {
  content: "\e58b"; }

.fa-arrows-split-up-and-left::before {
  content: "\e4bc"; }

.fa-hand-fist::before {
  content: "\f6de"; }

.fa-fist-raised::before {
  content: "\f6de"; }

.fa-cloud-moon::before {
  content: "\f6c3"; }

.fa-briefcase::before {
  content: "\f0b1"; }

.fa-person-falling::before {
  content: "\e546"; }

.fa-image-portrait::before {
  content: "\f3e0"; }

.fa-portrait::before {
  content: "\f3e0"; }

.fa-user-tag::before {
  content: "\f507"; }

.fa-rug::before {
  content: "\e569"; }

.fa-earth-europe::before {
  content: "\f7a2"; }

.fa-globe-europe::before {
  content: "\f7a2"; }

.fa-cart-flatbed-suitcase::before {
  content: "\f59d"; }

.fa-luggage-cart::before {
  content: "\f59d"; }

.fa-rectangle-xmark::before {
  content: "\f410"; }

.fa-rectangle-times::before {
  content: "\f410"; }

.fa-times-rectangle::before {
  content: "\f410"; }

.fa-window-close::before {
  content: "\f410"; }

.fa-baht-sign::before {
  content: "\e0ac"; }

.fa-book-open::before {
  content: "\f518"; }

.fa-book-journal-whills::before {
  content: "\f66a"; }

.fa-journal-whills::before {
  content: "\f66a"; }

.fa-handcuffs::before {
  content: "\e4f8"; }

.fa-triangle-exclamation::before {
  content: "\f071"; }

.fa-exclamation-triangle::before {
  content: "\f071"; }

.fa-warning::before {
  content: "\f071"; }

.fa-database::before {
  content: "\f1c0"; }

.fa-share::before {
  content: "\f064"; }

.fa-arrow-turn-right::before {
  content: "\f064"; }

.fa-mail-forward::before {
  content: "\f064"; }

.fa-bottle-droplet::before {
  content: "\e4c4"; }

.fa-mask-face::before {
  content: "\e1d7"; }

.fa-hill-rockslide::before {
  content: "\e508"; }

.fa-right-left::before {
  content: "\f362"; }

.fa-exchange-alt::before {
  content: "\f362"; }

.fa-paper-plane::before {
  content: "\f1d8"; }

.fa-road-circle-exclamation::before {
  content: "\e565"; }

.fa-dungeon::before {
  content: "\f6d9"; }

.fa-align-right::before {
  content: "\f038"; }

.fa-money-bill-1-wave::before {
  content: "\f53b"; }

.fa-money-bill-wave-alt::before {
  content: "\f53b"; }

.fa-life-ring::before {
  content: "\f1cd"; }

.fa-hands::before {
  content: "\f2a7"; }

.fa-sign-language::before {
  content: "\f2a7"; }

.fa-signing::before {
  content: "\f2a7"; }

.fa-calendar-day::before {
  content: "\f783"; }

.fa-water-ladder::before {
  content: "\f5c5"; }

.fa-ladder-water::before {
  content: "\f5c5"; }

.fa-swimming-pool::before {
  content: "\f5c5"; }

.fa-arrows-up-down::before {
  content: "\f07d"; }

.fa-arrows-v::before {
  content: "\f07d"; }

.fa-face-grimace::before {
  content: "\f57f"; }

.fa-grimace::before {
  content: "\f57f"; }

.fa-wheelchair-move::before {
  content: "\e2ce"; }

.fa-wheelchair-alt::before {
  content: "\e2ce"; }

.fa-turn-down::before {
  content: "\f3be"; }

.fa-level-down-alt::before {
  content: "\f3be"; }

.fa-person-walking-arrow-right::before {
  content: "\e552"; }

.fa-square-envelope::before {
  content: "\f199"; }

.fa-envelope-square::before {
  content: "\f199"; }

.fa-dice::before {
  content: "\f522"; }

.fa-bowling-ball::before {
  content: "\f436"; }

.fa-brain::before {
  content: "\f5dc"; }

.fa-bandage::before {
  content: "\f462"; }

.fa-band-aid::before {
  content: "\f462"; }

.fa-calendar-minus::before {
  content: "\f272"; }

.fa-circle-xmark::before {
  content: "\f057"; }

.fa-times-circle::before {
  content: "\f057"; }

.fa-xmark-circle::before {
  content: "\f057"; }

.fa-gifts::before {
  content: "\f79c"; }

.fa-hotel::before {
  content: "\f594"; }

.fa-earth-asia::before {
  content: "\f57e"; }

.fa-globe-asia::before {
  content: "\f57e"; }

.fa-id-card-clip::before {
  content: "\f47f"; }

.fa-id-card-alt::before {
  content: "\f47f"; }

.fa-magnifying-glass-plus::before {
  content: "\f00e"; }

.fa-search-plus::before {
  content: "\f00e"; }

.fa-thumbs-up::before {
  content: "\f164"; }

.fa-user-clock::before {
  content: "\f4fd"; }

.fa-hand-dots::before {
  content: "\f461"; }

.fa-allergies::before {
  content: "\f461"; }

.fa-file-invoice::before {
  content: "\f570"; }

.fa-window-minimize::before {
  content: "\f2d1"; }

.fa-mug-saucer::before {
  content: "\f0f4"; }

.fa-coffee::before {
  content: "\f0f4"; }

.fa-brush::before {
  content: "\f55d"; }

.fa-mask::before {
  content: "\f6fa"; }

.fa-magnifying-glass-minus::before {
  content: "\f010"; }

.fa-search-minus::before {
  content: "\f010"; }

.fa-ruler-vertical::before {
  content: "\f548"; }

.fa-user-large::before {
  content: "\f406"; }

.fa-user-alt::before {
  content: "\f406"; }

.fa-train-tram::before {
  content: "\e5b4"; }

.fa-user-nurse::before {
  content: "\f82f"; }

.fa-syringe::before {
  content: "\f48e"; }

.fa-cloud-sun::before {
  content: "\f6c4"; }

.fa-stopwatch-20::before {
  content: "\e06f"; }

.fa-square-full::before {
  content: "\f45c"; }

.fa-magnet::before {
  content: "\f076"; }

.fa-jar::before {
  content: "\e516"; }

.fa-note-sticky::before {
  content: "\f249"; }

.fa-sticky-note::before {
  content: "\f249"; }

.fa-bug-slash::before {
  content: "\e490"; }

.fa-arrow-up-from-water-pump::before {
  content: "\e4b6"; }

.fa-bone::before {
  content: "\f5d7"; }

.fa-user-injured::before {
  content: "\f728"; }

.fa-face-sad-tear::before {
  content: "\f5b4"; }

.fa-sad-tear::before {
  content: "\f5b4"; }

.fa-plane::before {
  content: "\f072"; }

.fa-tent-arrows-down::before {
  content: "\e581"; }

.fa-exclamation::before {
  content: "\21"; }

.fa-arrows-spin::before {
  content: "\e4bb"; }

.fa-print::before {
  content: "\f02f"; }

.fa-turkish-lira-sign::before {
  content: "\e2bb"; }

.fa-try::before {
  content: "\e2bb"; }

.fa-turkish-lira::before {
  content: "\e2bb"; }

.fa-dollar-sign::before {
  content: "\24"; }

.fa-dollar::before {
  content: "\24"; }

.fa-usd::before {
  content: "\24"; }

.fa-x::before {
  content: "\58"; }

.fa-magnifying-glass-dollar::before {
  content: "\f688"; }

.fa-search-dollar::before {
  content: "\f688"; }

.fa-users-gear::before {
  content: "\f509"; }

.fa-users-cog::before {
  content: "\f509"; }

.fa-person-military-pointing::before {
  content: "\e54a"; }

.fa-building-columns::before {
  content: "\f19c"; }

.fa-bank::before {
  content: "\f19c"; }

.fa-institution::before {
  content: "\f19c"; }

.fa-museum::before {
  content: "\f19c"; }

.fa-university::before {
  content: "\f19c"; }

.fa-umbrella::before {
  content: "\f0e9"; }

.fa-trowel::before {
  content: "\e589"; }

.fa-d::before {
  content: "\44"; }

.fa-stapler::before {
  content: "\e5af"; }

.fa-masks-theater::before {
  content: "\f630"; }

.fa-theater-masks::before {
  content: "\f630"; }

.fa-kip-sign::before {
  content: "\e1c4"; }

.fa-hand-point-left::before {
  content: "\f0a5"; }

.fa-handshake-simple::before {
  content: "\f4c6"; }

.fa-handshake-alt::before {
  content: "\f4c6"; }

.fa-jet-fighter::before {
  content: "\f0fb"; }

.fa-fighter-jet::before {
  content: "\f0fb"; }

.fa-square-share-nodes::before {
  content: "\f1e1"; }

.fa-share-alt-square::before {
  content: "\f1e1"; }

.fa-barcode::before {
  content: "\f02a"; }

.fa-plus-minus::before {
  content: "\e43c"; }

.fa-video::before {
  content: "\f03d"; }

.fa-video-camera::before {
  content: "\f03d"; }

.fa-graduation-cap::before {
  content: "\f19d"; }

.fa-mortar-board::before {
  content: "\f19d"; }

.fa-hand-holding-medical::before {
  content: "\e05c"; }

.fa-person-circle-check::before {
  content: "\e53e"; }

.fa-turn-up::before {
  content: "\f3bf"; }

.fa-level-up-alt::before {
  content: "\f3bf"; }

.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0; }

.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0; }
:root, :host {
  --fa-style-family-brands: 'Font Awesome 6 Brands';
  --fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands'; }

@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("assets/fonts/fa-brands-400.woff2") format("woff2"), url("assets/fonts/fa-brands-400.ttf") format("truetype"); }

.fab,
.fa-brands {
  font-weight: 400; }

.fa-monero:before {
  content: "\f3d0"; }

.fa-hooli:before {
  content: "\f427"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-shopware:before {
  content: "\f5b5"; }

.fa-creative-commons-nc:before {
  content: "\f4e8"; }

.fa-aws:before {
  content: "\f375"; }

.fa-redhat:before {
  content: "\f7bc"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-cloudflare:before {
  content: "\e07d"; }

.fa-ups:before {
  content: "\f7e0"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-dyalog:before {
  content: "\f399"; }

.fa-bity:before {
  content: "\f37a"; }

.fa-stackpath:before {
  content: "\f842"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-modx:before {
  content: "\f285"; }

.fa-guilded:before {
  content: "\e07e"; }

.fa-vnv:before {
  content: "\f40b"; }

.fa-square-js:before {
  content: "\f3b9"; }

.fa-js-square:before {
  content: "\f3b9"; }

.fa-microsoft:before {
  content: "\f3ca"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-orcid:before {
  content: "\f8d2"; }

.fa-java:before {
  content: "\f4e4"; }

.fa-invision:before {
  content: "\f7b0"; }

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"; }

.fa-centercode:before {
  content: "\f380"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

.fa-creative-commons-by:before {
  content: "\f4e7"; }

.fa-unity:before {
  content: "\e049"; }

.fa-whmcs:before {
  content: "\f40d"; }

.fa-rocketchat:before {
  content: "\f3e8"; }

.fa-vk:before {
  content: "\f189"; }

.fa-untappd:before {
  content: "\f405"; }

.fa-mailchimp:before {
  content: "\f59e"; }

.fa-css3-alt:before {
  content: "\f38b"; }

.fa-square-reddit:before {
  content: "\f1a2"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-vimeo-v:before {
  content: "\f27d"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-square-font-awesome:before {
  content: "\e5ad"; }

.fa-deskpro:before {
  content: "\f38f"; }

.fa-sistrix:before {
  content: "\f3ee"; }

.fa-square-instagram:before {
  content: "\e055"; }

.fa-instagram-square:before {
  content: "\e055"; }

.fa-battle-net:before {
  content: "\f835"; }

.fa-the-red-yeti:before {
  content: "\f69d"; }

.fa-square-hacker-news:before {
  content: "\f3af"; }

.fa-hacker-news-square:before {
  content: "\f3af"; }

.fa-edge:before {
  content: "\f282"; }

.fa-napster:before {
  content: "\f3d2"; }

.fa-square-snapchat:before {
  content: "\f2ad"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-google-plus-g:before {
  content: "\f0d5"; }

.fa-artstation:before {
  content: "\f77a"; }

.fa-markdown:before {
  content: "\f60f"; }

.fa-sourcetree:before {
  content: "\f7d3"; }

.fa-google-plus:before {
  content: "\f2b3"; }

.fa-diaspora:before {
  content: "\f791"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-phoenix-squadron:before {
  content: "\f511"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-algolia:before {
  content: "\f36c"; }

.fa-red-river:before {
  content: "\f3e3"; }

.fa-creative-commons-sa:before {
  content: "\f4ef"; }

.fa-safari:before {
  content: "\f267"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-square-font-awesome-stroke:before {
  content: "\f35c"; }

.fa-font-awesome-alt:before {
  content: "\f35c"; }

.fa-atlassian:before {
  content: "\f77b"; }

.fa-linkedin-in:before {
  content: "\f0e1"; }

.fa-digital-ocean:before {
  content: "\f391"; }

.fa-nimblr:before {
  content: "\f5a8"; }

.fa-chromecast:before {
  content: "\f838"; }

.fa-evernote:before {
  content: "\f839"; }

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-creative-commons-sampling:before {
  content: "\f4f0"; }

.fa-adversal:before {
  content: "\f36a"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-watchman-monitoring:before {
  content: "\e087"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-weixin:before {
  content: "\f1d7"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-git-alt:before {
  content: "\f841"; }

.fa-lyft:before {
  content: "\f3c3"; }

.fa-rev:before {
  content: "\f5b2"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-wizards-of-the-coast:before {
  content: "\f730"; }

.fa-square-viadeo:before {
  content: "\f2aa"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-meetup:before {
  content: "\f2e0"; }

.fa-centos:before {
  content: "\f789"; }

.fa-adn:before {
  content: "\f170"; }

.fa-cloudsmith:before {
  content: "\f384"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-square-dribbble:before {
  content: "\f397"; }

.fa-dribbble-square:before {
  content: "\f397"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-node:before {
  content: "\f419"; }

.fa-mix:before {
  content: "\f3cb"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-cc-apple-pay:before {
  content: "\f416"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-instalod:before {
  content: "\e081"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-sellcast:before {
  content: "\f2da"; }

.fa-square-twitter:before {
  content: "\f081"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-r-project:before {
  content: "\f4f7"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-freebsd:before {
  content: "\f3a4"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-accusoft:before {
  content: "\f369"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-fonticons-fi:before {
  content: "\f3a2"; }

.fa-app-store:before {
  content: "\f36f"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-itunes-note:before {
  content: "\f3b5"; }

.fa-golang:before {
  content: "\e40f"; }

.fa-kickstarter:before {
  content: "\f3bb"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-uncharted:before {
  content: "\e084"; }

.fa-firstdraft:before {
  content: "\f3a1"; }

.fa-square-youtube:before {
  content: "\f431"; }

.fa-youtube-square:before {
  content: "\f431"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-wpressr:before {
  content: "\f3e4"; }

.fa-rendact:before {
  content: "\f3e4"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-galactic-republic:before {
  content: "\f50c"; }

.fa-nfc-directional:before {
  content: "\e530"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-joget:before {
  content: "\f3b7"; }

.fa-fedora:before {
  content: "\f798"; }

.fa-stripe-s:before {
  content: "\f42a"; }

.fa-meta:before {
  content: "\e49b"; }

.fa-laravel:before {
  content: "\f3bd"; }

.fa-hotjar:before {
  content: "\f3b1"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-sticker-mule:before {
  content: "\f3f7"; }

.fa-creative-commons-zero:before {
  content: "\f4f3"; }

.fa-hips:before {
  content: "\f452"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-discord:before {
  content: "\f392"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-app-store-ios:before {
  content: "\f370"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-confluence:before {
  content: "\f78d"; }

.fa-mdb:before {
  content: "\f8ca"; }

.fa-dochub:before {
  content: "\f394"; }

.fa-accessible-icon:before {
  content: "\f368"; }

.fa-ebay:before {
  content: "\f4f4"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-unsplash:before {
  content: "\e07c"; }

.fa-yarn:before {
  content: "\f7e3"; }

.fa-square-steam:before {
  content: "\f1b7"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-500px:before {
  content: "\f26e"; }

.fa-square-vimeo:before {
  content: "\f194"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-asymmetrik:before {
  content: "\f372"; }

.fa-font-awesome:before {
  content: "\f2b4"; }

.fa-font-awesome-flag:before {
  content: "\f2b4"; }

.fa-font-awesome-logo-full:before {
  content: "\f2b4"; }

.fa-gratipay:before {
  content: "\f184"; }

.fa-apple:before {
  content: "\f179"; }

.fa-hive:before {
  content: "\e07f"; }

.fa-gitkraken:before {
  content: "\f3a6"; }

.fa-keybase:before {
  content: "\f4f5"; }

.fa-apple-pay:before {
  content: "\f415"; }

.fa-padlet:before {
  content: "\e4a0"; }

.fa-amazon-pay:before {
  content: "\f42c"; }

.fa-square-github:before {
  content: "\f092"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-fedex:before {
  content: "\f797"; }

.fa-phoenix-framework:before {
  content: "\f3dc"; }

.fa-shopify:before {
  content: "\e057"; }

.fa-neos:before {
  content: "\f612"; }

.fa-hackerrank:before {
  content: "\f5f7"; }

.fa-researchgate:before {
  content: "\f4f8"; }

.fa-swift:before {
  content: "\f8e1"; }

.fa-angular:before {
  content: "\f420"; }

.fa-speakap:before {
  content: "\f3f3"; }

.fa-angrycreative:before {
  content: "\f36e"; }

.fa-y-combinator:before {
  content: "\f23b"; }

.fa-empire:before {
  content: "\f1d1"; }

.fa-envira:before {
  content: "\f299"; }

.fa-square-gitlab:before {
  content: "\e5ae"; }

.fa-gitlab-square:before {
  content: "\e5ae"; }

.fa-studiovinari:before {
  content: "\f3f8"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-goodreads:before {
  content: "\f3a8"; }

.fa-square-odnoklassniki:before {
  content: "\f264"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-sith:before {
  content: "\f512"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-page4:before {
  content: "\f3d7"; }

.fa-hashnode:before {
  content: "\e499"; }

.fa-react:before {
  content: "\f41b"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-squarespace:before {
  content: "\f5be"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-creative-commons-share:before {
  content: "\f4f2"; }

.fa-bitcoin:before {
  content: "\f379"; }

.fa-keycdn:before {
  content: "\f3ba"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-itch-io:before {
  content: "\f83a"; }

.fa-umbraco:before {
  content: "\f8e8"; }

.fa-galactic-senate:before {
  content: "\f50d"; }

.fa-ubuntu:before {
  content: "\f7df"; }

.fa-draft2digital:before {
  content: "\f396"; }

.fa-stripe:before {
  content: "\f429"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-gg:before {
  content: "\f260"; }

.fa-dhl:before {
  content: "\f790"; }

.fa-square-pinterest:before {
  content: "\f0d3"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-xing:before {
  content: "\f168"; }

.fa-blackberry:before {
  content: "\f37b"; }

.fa-creative-commons-pd:before {
  content: "\f4ec"; }

.fa-playstation:before {
  content: "\f3df"; }

.fa-quinscape:before {
  content: "\f459"; }

.fa-less:before {
  content: "\f41d"; }

.fa-blogger-b:before {
  content: "\f37d"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-typo3:before {
  content: "\f42b"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-dailymotion:before {
  content: "\e052"; }

.fa-affiliatetheme:before {
  content: "\f36b"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-bootstrap:before {
  content: "\f836"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-nfc-symbol:before {
  content: "\e531"; }

.fa-ethereum:before {
  content: "\f42e"; }

.fa-speaker-deck:before {
  content: "\f83c"; }

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"; }

.fa-patreon:before {
  content: "\f3d9"; }

.fa-avianex:before {
  content: "\f374"; }

.fa-ello:before {
  content: "\f5f1"; }

.fa-gofore:before {
  content: "\f3a7"; }

.fa-bimobject:before {
  content: "\f378"; }

.fa-facebook-f:before {
  content: "\f39e"; }

.fa-square-google-plus:before {
  content: "\f0d4"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-mandalorian:before {
  content: "\f50f"; }

.fa-first-order-alt:before {
  content: "\f50a"; }

.fa-osi:before {
  content: "\f41a"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-d-and-d-beyond:before {
  content: "\f6ca"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-fulcrum:before {
  content: "\f50b"; }

.fa-cloudscale:before {
  content: "\f383"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-mizuni:before {
  content: "\f3cc"; }

.fa-schlix:before {
  content: "\f3ea"; }

.fa-square-xing:before {
  content: "\f169"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-cloudversify:before {
  content: "\f385"; }

.fa-usps:before {
  content: "\f7e1"; }

.fa-megaport:before {
  content: "\f5a3"; }

.fa-magento:before {
  content: "\f3c4"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-fly:before {
  content: "\f417"; }

.fa-aviato:before {
  content: "\f421"; }

.fa-itunes:before {
  content: "\f3b4"; }

.fa-cuttlefish:before {
  content: "\f38c"; }

.fa-blogger:before {
  content: "\f37c"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-viber:before {
  content: "\f409"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-symfony:before {
  content: "\f83d"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-facebook-messenger:before {
  content: "\f39f"; }

.fa-audible:before {
  content: "\f373"; }

.fa-think-peaks:before {
  content: "\f731"; }

.fa-bilibili:before {
  content: "\e3d9"; }

.fa-erlang:before {
  content: "\f39d"; }

.fa-cotton-bureau:before {
  content: "\f89e"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-42-group:before {
  content: "\e080"; }

.fa-innosoft:before {
  content: "\e080"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-elementor:before {
  content: "\f430"; }

.fa-square-pied-piper:before {
  content: "\e01e"; }

.fa-pied-piper-square:before {
  content: "\e01e"; }

.fa-creative-commons-nd:before {
  content: "\f4eb"; }

.fa-palfed:before {
  content: "\f3d8"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-xbox:before {
  content: "\f412"; }

.fa-searchengin:before {
  content: "\f3eb"; }

.fa-tiktok:before {
  content: "\e07b"; }

.fa-square-facebook:before {
  content: "\f082"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-linkedin:before {
  content: "\f08c"; }

.fa-hubspot:before {
  content: "\f3b2"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-mixer:before {
  content: "\e056"; }

.fa-square-lastfm:before {
  content: "\f203"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-vimeo:before {
  content: "\f40a"; }

.fa-mendeley:before {
  content: "\f7b3"; }

.fa-uniregistry:before {
  content: "\f404"; }

.fa-figma:before {
  content: "\f799"; }

.fa-creative-commons-remix:before {
  content: "\f4ee"; }

.fa-cc-amazon-pay:before {
  content: "\f42d"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-cmplid:before {
  content: "\e360"; }

.fa-facebook:before {
  content: "\f09a"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-jedi-order:before {
  content: "\f50e"; }

.fa-uikit:before {
  content: "\f403"; }

.fa-fort-awesome-alt:before {
  content: "\f3a3"; }

.fa-phabricator:before {
  content: "\f3db"; }

.fa-ussunnah:before {
  content: "\f407"; }

.fa-earlybirds:before {
  content: "\f39a"; }

.fa-trade-federation:before {
  content: "\f513"; }

.fa-autoprefixer:before {
  content: "\f41c"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-google-play:before {
  content: "\f3ab"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-line:before {
  content: "\f3c0"; }

.fa-google-drive:before {
  content: "\f3aa"; }

.fa-servicestack:before {
  content: "\f3ec"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-deezer:before {
  content: "\e077"; }

.fa-raspberry-pi:before {
  content: "\f7bb"; }

.fa-jira:before {
  content: "\f7b1"; }

.fa-docker:before {
  content: "\f395"; }

.fa-screenpal:before {
  content: "\e570"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-gitter:before {
  content: "\f426"; }

.fa-d-and-d:before {
  content: "\f38d"; }

.fa-microblog:before {
  content: "\e01a"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-pied-piper-hat:before {
  content: "\f4e5"; }

.fa-kickstarter-k:before {
  content: "\f3bc"; }

.fa-yandex:before {
  content: "\f413"; }

.fa-readme:before {
  content: "\f4d5"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-sass:before {
  content: "\f41e"; }

.fa-wirsindhandwerk:before {
  content: "\e2d0"; }

.fa-wsh:before {
  content: "\e2d0"; }

.fa-buromobelexperte:before {
  content: "\f37f"; }

.fa-salesforce:before {
  content: "\f83b"; }

.fa-octopus-deploy:before {
  content: "\e082"; }

.fa-medapps:before {
  content: "\f3c6"; }

.fa-ns8:before {
  content: "\f3d5"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-apper:before {
  content: "\f371"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-waze:before {
  content: "\f83f"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ab"; }

.fa-fantasy-flight-games:before {
  content: "\f6dc"; }

.fa-rust:before {
  content: "\e07a"; }

.fa-wix:before {
  content: "\f5cf"; }

.fa-square-behance:before {
  content: "\f1b5"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-supple:before {
  content: "\f3f9"; }

.fa-rebel:before {
  content: "\f1d0"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-staylinked:before {
  content: "\f3f5"; }

.fa-kaggle:before {
  content: "\f5fa"; }

.fa-space-awesome:before {
  content: "\e5ac"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-cpanel:before {
  content: "\f388"; }

.fa-goodreads-g:before {
  content: "\f3a9"; }

.fa-square-git:before {
  content: "\f1d2"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-square-tumblr:before {
  content: "\f174"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-trello:before {
  content: "\f181"; }

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-perbyte:before {
  content: "\e083"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-weebly:before {
  content: "\f5cc"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-themeco:before {
  content: "\f5c6"; }

.fa-python:before {
  content: "\f3e2"; }

.fa-android:before {
  content: "\f17b"; }

.fa-bots:before {
  content: "\e340"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-hornbill:before {
  content: "\f592"; }

.fa-js:before {
  content: "\f3b8"; }

.fa-ideal:before {
  content: "\e013"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-dev:before {
  content: "\f6cc"; }

.fa-sketch:before {
  content: "\f7c6"; }

.fa-yandex-international:before {
  content: "\f414"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-uber:before {
  content: "\f402"; }

.fa-github:before {
  content: "\f09b"; }

.fa-php:before {
  content: "\f457"; }

.fa-alipay:before {
  content: "\f642"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-firefox-browser:before {
  content: "\e007"; }

.fa-replyd:before {
  content: "\f3e6"; }

.fa-suse:before {
  content: "\f7d6"; }

.fa-jenkins:before {
  content: "\f3b6"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-rockrms:before {
  content: "\f3e9"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-buffer:before {
  content: "\f837"; }

.fa-npm:before {
  content: "\f3d4"; }

.fa-yammer:before {
  content: "\f840"; }

.fa-btc:before {
  content: "\f15a"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-telegram-plane:before {
  content: "\f2c6"; }

.fa-old-republic:before {
  content: "\f510"; }

.fa-square-whatsapp:before {
  content: "\f40c"; }

.fa-whatsapp-square:before {
  content: "\f40c"; }

.fa-node-js:before {
  content: "\f3d3"; }

.fa-edge-legacy:before {
  content: "\e078"; }

.fa-slack:before {
  content: "\f198"; }

.fa-slack-hash:before {
  content: "\f198"; }

.fa-medrt:before {
  content: "\f3c8"; }

.fa-usb:before {
  content: "\f287"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-vaadin:before {
  content: "\f408"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-reacteurope:before {
  content: "\f75d"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-medium-m:before {
  content: "\f23a"; }

.fa-amilia:before {
  content: "\f36d"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-flipboard:before {
  content: "\f44d"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-critical-role:before {
  content: "\f6c9"; }

.fa-sitrox:before {
  content: "\e44a"; }

.fa-discourse:before {
  content: "\f393"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-mastodon:before {
  content: "\f4f6"; }

.fa-airbnb:before {
  content: "\f834"; }

.fa-wolf-pack-battalion:before {
  content: "\f514"; }

.fa-buy-n-large:before {
  content: "\f8a6"; }

.fa-gulp:before {
  content: "\f3ae"; }

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"; }

.fa-strava:before {
  content: "\f428"; }

.fa-ember:before {
  content: "\f423"; }

.fa-canadian-maple-leaf:before {
  content: "\f785"; }

.fa-teamspeak:before {
  content: "\f4f9"; }

.fa-pushed:before {
  content: "\f3e1"; }

.fa-wordpress-simple:before {
  content: "\f411"; }

.fa-nutritionix:before {
  content: "\f3d6"; }

.fa-wodu:before {
  content: "\e088"; }

.fa-google-pay:before {
  content: "\e079"; }

.fa-intercom:before {
  content: "\f7af"; }

.fa-zhihu:before {
  content: "\f63f"; }

.fa-korvue:before {
  content: "\f42f"; }

.fa-pix:before {
  content: "\e43a"; }

.fa-steam-symbol:before {
  content: "\f3f6"; }
:root, :host {
  --fa-style-family-classic: 'Font Awesome 6 Free';
  --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free'; }

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("assets/fonts/fa-regular-400.woff2") format("woff2"), url("assets/fonts/fa-regular-400.ttf") format("truetype"); }

.far,
.fa-regular {
  font-weight: 400; }
:root, :host {
  --fa-style-family-classic: 'Font Awesome 6 Free';
  --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free'; }

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("assets/fonts/fa-solid-900.woff2") format("woff2"), url("assets/fonts/fa-solid-900.ttf") format("truetype"); }

.fas,
.fa-solid {
  font-weight: 900; }
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-display: block;
  font-weight: 400;
  src: url("assets/fonts/fa-brands-400.woff2") format("woff2"), url("assets/fonts/fa-brands-400.ttf") format("truetype"); }

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-display: block;
  font-weight: 900;
  src: url("assets/fonts/fa-solid-900.woff2") format("woff2"), url("assets/fonts/fa-solid-900.ttf") format("truetype"); }

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-display: block;
  font-weight: 400;
  src: url("assets/fonts/fa-regular-400.woff2") format("woff2"), url("assets/fonts/fa-regular-400.ttf") format("truetype"); }
@font-face {
  font-family: 'FontAwesome';
  font-display: block;
  src: url("assets/fonts/fa-solid-900.woff2") format("woff2"), url("assets/fonts/fa-solid-900.ttf") format("truetype"); }

@font-face {
  font-family: 'FontAwesome';
  font-display: block;
  src: url("assets/fonts/fa-brands-400.woff2") format("woff2"), url("assets/fonts/fa-brands-400.ttf") format("truetype"); }

@font-face {
  font-family: 'FontAwesome';
  font-display: block;
  src: url("assets/fonts/fa-regular-400.woff2") format("woff2"), url("assets/fonts/fa-regular-400.ttf") format("truetype");
  unicode-range: U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC; }

@font-face {
  font-family: 'FontAwesome';
  font-display: block;
  src: url("assets/webfonts/fa-v4compatibility.woff2") format("woff2"), url("assets/webfonts/fa-v4compatibility.ttf") format("truetype");
  unicode-range: U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F27A; }



@keyframes rotateme {
    
     0% {
        transform: rotate(0deg);
        opacity: 1;
      }

    50% {
        transform: rotate(180deg);
      }
    100% {
        transform: rotate(360deg);
        opacity: 1;
      }
}

.about-one_experiance-two .icon:after,
.about-one_experiance:before{
    animation-name: rotateme; 
    animation-duration: 15s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  
  -webkit-animation-name: rotateme; 
    -webkit-animation-duration: 15s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
  
  -moz-animation-name: rotateme; 
    -moz-animation-duration: 15s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
  
  -ms-animation-name: rotateme; 
    -ms-animation-duration: 15s; 
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
  
  -o-animation-name: rotateme; 
    -o-animation-duration: 15s; 
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}



@keyframes rotateme2 {
    
     0% {
        transform: rotate(0deg);
        opacity: 1;
      }

    50% {
        transform: rotate(-180deg);
      }
    100% {
        transform: rotate(-360deg);
        opacity: 1;
      }
}

/* Bob Up Down*/
@-webkit-keyframes float_up_down {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }

  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes float_up_down {
  0% {
    transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }

  50% {
    transform: translateY(30px);
    transform: translateY(30px);
    opacity: 1;
  }

  100% {
    transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

.about-one_icon{
    animation-name: float_up_down; 
    animation-duration: 5s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    
    -webkit-animation-name: float_up_down; 
    -webkit-animation-duration: 5s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    
    -moz-animation-name: float_up_down; 
    -moz-animation-duration: 5s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    
    -ms-animation-name: float_up_down; 
    -ms-animation-duration: 5s; 
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    
    -o-animation-name: float_left_right; 
    -o-animation-duration: 5s; 
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

/* Bob */
@-webkit-keyframes float_left_right {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 1;
  }

  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0.40;
  }

  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 1;
  }
}

@keyframes float_left_right {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 1;
  }

  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0.40;
  }

  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 1;
  }
}

@-webkit-keyframes float_left_right_two {
  0% {
    -webkit-transform: translateX(-30px);
    opacity: 1;
  }

  50% {
    -webkit-transform: translateX(0px);
    opacity: 0.80;
  }

  100% {
    -webkit-transform: translateX(-30px);
    opacity: 1;
  }
}

@keyframes float_left_right_two {
  0% {
    transform: translateX(-30px);
    opacity: 1;
  }

  50% {
    transform: translateX(0px);
    opacity: 0.80;
  }

  100% {
    transform: translateX(-30px);
    opacity: 1;
  }
}


@-webkit-keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}


@-webkit-keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-5px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}



@-webkit-keyframes border-transform {
  0%, to {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
  }
  @keyframes border-transform {
  0%, to {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: 'Quicksand', sans-serif;  }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

/*!
*    ______ _       _   _
*    |  ____| |     | | (_)
*    | |__  | | __ _| |_ _  ___ ___  _ __
*    |  __| | |/ _` | __| |/ __/ _ \| '_ \
*    | |    | | (_| | |_| | (_| (_) | | | |
*    |_|    |_|\__,_|\__|_|\___\___/|_| |_|
*
*         https://www.flaticon.com
*/

@font-face {
    font-family: "flaticon_lamusiqueauxenfants-icons";
    src: url("assets/fonts/flaticon_lamusiqueauxenfants-icons.woff2?") format("woff2"),
url("assets/fonts/flaticon_lamusiqueauxenfants-icons.woff?") format("woff"),
url("assets/fonts/flaticon_lamusiqueauxenfants-icons.eot?#iefix") format("embedded-opentype"),
url("assets/fonts/flaticon_lamusiqueauxenfants-icons.ttf?") format("truetype"),
url("assets/fonts/flaticon_lamusiqueauxenfants-icons.svg?#flaticon_lamusiqueauxenfants-icons") format("svg")
}

i[class^="flaticon-"]:before, i[class*=" flaticon-"]:before {
    font-family: flaticon_lamusiqueauxenfants-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.flaticon-up-right-arrow:before {
    content: "\f101";
}
.flaticon-send:before {
    content: "\f102";
}
.flaticon-search-interface-symbol:before {
    content: "\f103";
}
.flaticon-user:before {
    content: "\f104";
}
.flaticon-globe:before {
    content: "\f105";
}
.flaticon-star:before {
    content: "\f106";
}
.flaticon-star-1:before {
    content: "\f107";
}
.flaticon-read:before {
    content: "\f108";
}
.flaticon-padlock:before {
    content: "\f109";
}
.flaticon-check-mark:before {
    content: "\f10a";
}
.flaticon-phone-call:before {
    content: "\f10b";
}
.flaticon-call:before {
    content: "\f10c";
}
.flaticon-smartphone:before {
    content: "\f10d";
}
.flaticon-phone:before {
    content: "\f10e";
}
.flaticon-telephone:before {
    content: "\f10f";
}
.flaticon-plus:before {
    content: "\f110";
}
.flaticon-minus:before {
    content: "\f111";
}
.flaticon-maps-and-flags:before {
    content: "\f112";
}
.flaticon-envelope:before {
    content: "\f113";
}
.flaticon-email:before {
    content: "\f114";
}
.flaticon-shopping-cart:before {
    content: "\f115";
}
.flaticon-shopping-cart-1:before {
    content: "\f116";
}
.flaticon-shopping-bag:before {
    content: "\f117";
}
.flaticon-facebook-app-symbol:before {
    content: "\f118";
}
.flaticon-twitter:before {
    content: "\f119";
}
.flaticon-linkedin:before {
    content: "\f11a";
}
.flaticon-pinterest:before {
    content: "\f11b";
}
.flaticon-dribbble-logo:before {
    content: "\f11c";
}
.flaticon-behance:before {
    content: "\f11d";
}
.flaticon-whatsapp:before {
    content: "\f11e";
}
.flaticon-tik-tok:before {
    content: "\f11f";
}
.flaticon-snapchat:before {
    content: "\f120";
}
.flaticon-next:before {
    content: "\f122";
}
.flaticon-next-1:before {
    content: "\f123";
}
.flaticon-back:before {
    content: "\f124";
}
.flaticon-left-arrow:before {
    content: "\f125";
}
.flaticon-share:before {
    content: "\f126";
}
.flaticon-share-1:before {
    content: "\f127";
}
.flaticon-menu:before {
    content: "\f128";
}
.flaticon-dots-menu:before {
    content: "\f129";
}
.flaticon-visualization:before {
    content: "\f12a";
}
.flaticon-close:before {
    content: "\f12b";
}
.flaticon-down-arrow:before {
    content: "\f12c";
}
.flaticon-arrow-up:before {
    content: "\f12d";
}
.flaticon-up-arrow:before {
    content: "\f12e";
}
.flaticon-up-arrows:before {
    content: "\f12f";
}
.flaticon-up-arrow-1:before {
    content: "\f130";
}
.flaticon-right:before {
    content: "\f131";
}
.flaticon-left:before {
    content: "\f132";
}
.flaticon-left-quote:before {
    content: "\f133";
}
.flaticon-right-quote:before {
    content: "\f134";
}
.flaticon-play:before {
    content: "\f135";
}
.flaticon-play-button:before {
    content: "\f136";
}
.flaticon-play-1:before {
    content: "\f137";
}
.flaticon-iphone:before {
    content: "\f138";
}
.flaticon-email-1:before {
    content: "\f139";
}
.flaticon-comment:before {
    content: "\f13a";
}
.flaticon-close-1:before {
    content: "\f13b";
}
.flaticon-home:before {
    content: "\f13c";
}
.flaticon-document:before {
    content: "\f13d";
}
.flaticon-save-money:before {
    content: "\f13e";
}
.flaticon-windows:before {
    content: "\f13f";
}
.flaticon-apple-logo:before {
    content: "\f140";
}
.flaticon-user-1:before {
    content: "\f141";
}
.flaticon-mail:before {
    content: "\f142";
}
.flaticon-arrow:before {
    content: "\f143";
}
.flaticon-right-1:before {
    content: "\f144";
}
.flaticon-arrow-1:before {
    content: "\f145";
}
.flaticon-arrow-2:before {
    content: "\f146";
}
.flaticon-arrow-3:before {
    content: "\f147";
}
.flaticon-share-2:before {
    content: "\f148";
}
.flaticon-checked:before {
    content: "\f149";
}
.flaticon-play-2:before {
    content: "\f14a";
}
.flaticon-check-mark-1:before {
    content: "\f14b";
}
.flaticon-calendar:before {
    content: "\f14c";
}
.flaticon-tag:before {
    content: "\f14d";
}
.flaticon-label:before {
    content: "\f14e";
}
.flaticon-targeting:before {
    content: "\f14f";
}
.flaticon-personal:before {
    content: "\f150";
}
.flaticon-main-menu:before {
    content: "\f151";
}
.flaticon-programmer:before {
    content: "\f152";
}
.flaticon-leader:before {
    content: "\f153";
}
.flaticon-network:before {
    content: "\f154";
}
.flaticon-happiness:before {
    content: "\f155";
}
.flaticon-volume:before {
    content: "\f156";
}
.flaticon-trophy:before {
    content: "\f157";
}
.flaticon-mountain:before {
    content: "\f158";
}
.flaticon-smile:before {
    content: "\f159";
}
.flaticon-arroba:before {
    content: "\f15a";
}
.flaticon-instagram:before {
    content: "\f15b";
}
.flaticon-calendar-1:before {
    content: "\f15c";
}
.flaticon-paper-plane:before {
    content: "\f15d";
}
.flaticon-like:before {
    content: "\f15e";
}
.flaticon-team:before {
    content: "\f15f";
}
.flaticon-clock:before {
    content: "\f160";
}
.flaticon-calendar-2:before {
    content: "\f161";
}
.flaticon-pin:before {
    content: "\f162";
}


/* lamusiqueauxenfants Business HTML-5 Template */

/*** 

====================================================================
  Attachment Css Files
====================================================================

***/


/*** 

====================================================================
  Main Slider
====================================================================

***/

.slider-one{
  position:relative;
  background-color:#1e272e;
}

.slider-one_down{
  position:absolute;
  left:45px;
  bottom:150px;
}

.slider-one-arrow{
  position: absolute;
  left: 30px;
  top: 50%;
  right:30px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.slider-one:hover .slider-one-arrow{
  opacity: 1;
}

.slider-one .main-slider-prev{
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  font-weight:600;
  font-size: 12px;
  cursor: pointer;
  line-height: 45px;
  text-align: center;
  border-radius:50px;
  display: inline-block;
  color: var(--main-color);
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  font-family: "flaticon_lamusiqueauxenfants-icons";
  border:2px solid rgba(var(--main-color-rgb), 0.20);
}

.slider-one .main-slider-prev:hover{
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.slider-one .main-slider-next:hover{
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.slider-one .main-slider-next::after,
.slider-one .main-slider-prev::after{
  display: none;
}

.slider-one .main-slider-next{
  position: absolute;
  right:0px;
  z-index: 1;
  width: 48px;
  height: 48px;
  font-size: 12px;
  cursor: pointer;
  line-height: 45px;
  text-align: center;
  font-weight:600;
  display: inline-block;
  color: var(--main-color);
  border-radius:50px;
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  font-family: "flaticon_lamusiqueauxenfants-icons";
  border:2px solid rgba(var(--main-color-rgb), 0.20);
}


.slider-one .swiper-slide{
  position:relative;
  overflow:hidden;
  padding:125px 0px 180px;
}

.slider-one_icon-one{
  position: absolute;
  left: 60%;
  bottom:15%;
  z-index: 1;
  width: 49px;
  height: 47px;
}

.slider-one_icon-two{
  position: absolute;
  left: 24%;
  top:7%;
  z-index: 1;
  width: 57px;
  height: 51px;
}

.slider-one_icon-three{
  position: absolute;
  right: 0%;
  top:20%;
  z-index: 1;
  width: 92px;
  height: 65px;
}

.slider-one_color-one{
  position: absolute;
  left: -60px;
  top: -50px;
  z-index: 1;
  width: 248px;
  height:248px;
  opacity: 0.08;
  border-radius:50%;
  background-color: var(--color-three);
}

.slider-one_color-two{
  position: absolute;
  right: 150px;
  bottom: 100px;
  z-index: 1;
  width: 248px;
  height:248px;
  opacity: 0.08;
  border-radius:50%;
  background-color: var(--color-three);
  font-size: 250px;
}

.slider-one_color-three{
  position: absolute;
  left: 25%;
  bottom: 10%;
  z-index: 1;
  width: 24px;
  height:24px;
  opacity: 0.08;
  border-radius:50%;
  background-color: var(--color-three);
}

.slider-one_color-four{
  position: absolute;
  left: 42%;
  top: 26%;
  z-index: 1;
  width: 31px;
  height:31px;
  opacity: 0.08;
  border-radius:50%;
  background-color: var(--color-three);
}

.slider-one_shadow{
  position:absolute;
  left:-40px;
  top:0px;
  right:0px;
  bottom:0px;
  background-size:cover;
  background-repeat:no-repeat;
}

.slider-one_content{
  position:relative;
  z-index: 2;
}

.slider-one_content-inner{
  position:relative;
  padding-top: 140px;
}

.slider-one_title{
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--main-color);
  transition:all 900ms ease;
  -moz-transition:all 900ms ease;
  -webkit-transition:all 900ms ease;
  -ms-transition:all 900ms ease;
  -o-transition:all 900ms ease;
  text-transform:uppercase;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-one .swiper-slide-active .slider-one_title{
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-one_heading{
  margin-top: 12px;
  margin-bottom:25px;
  color: var(--white-color);
  text-transform: capitalize;

  transition:all 900ms ease;
  -moz-transition:all 900ms ease;
  -webkit-transition:all 900ms ease;
  -ms-transition:all 900ms ease;
  -o-transition:all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-one_heading span{
  color: var(--main-color);
}

.slider-one .swiper-slide-active .slider-one_heading{
  -webkit-transition-delay: 800ms;
  -moz-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  transition-delay: 800ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-one_text{
  position: relative;
  font-size: 18px;
  opacity:0.80;
  line-height: 30px;
  max-width:520px;
  margin-bottom:25px;
  color: var(--color-three);

  transition:all 900ms ease;
  -moz-transition:all 900ms ease;
  -webkit-transition:all 900ms ease;
  -ms-transition:all 900ms ease;
  -o-transition:all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-one .swiper-slide-active .slider-one_text{
  -webkit-transition-delay: 1100ms;
  -moz-transition-delay: 1100ms;
  -ms-transition-delay: 1100ms;
  -o-transition-delay: 1100ms;
  transition-delay: 1100ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-one .slider-one_button{
  position: relative;
  gap: 30px;
  display:inline-block;
  transition:all 900ms ease;
  -moz-transition:all 900ms ease;
  -webkit-transition:all 900ms ease;
  -ms-transition:all 900ms ease;
  -o-transition:all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-one .swiper-slide-active .slider-one_button{
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-one_seats{
  position:relative;
  font-size:18px;
  color:rgba(var(--color-three-rgb), 0.80);
}

.slider-one_seats span{
  position:relative;
  padding:5px 15px;
  border-radius:5px;
  margin-left:10px;
  display:inline-block;
  color:rgba(var(--main-color-rgb), 1);
  background-color:rgba(var(--main-color-rgb), 0.20);
}

.slider-one_image-column{
  position:relative;
}

.slider-one_image-outer{
  position:relative;
}

.slider-one_image{
  position: relative;
  z-index: 10;
  text-align:right;
  transition:all 900ms ease;
  -moz-transition:all 900ms ease;
  -webkit-transition:all 900ms ease;
  -ms-transition:all 900ms ease;
  -o-transition:all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-one .swiper-slide-active .slider-one_image{
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-one .slider-one_pagination{
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 100px;
  z-index: 999;
  text-align: center;
}

.slider-one .swiper-pagination-bullet{
  position: relative;
  width: 10px;
  height: 10px;
  opacity: 1;
  margin: 0px 18px;
  border-radius: 50px;
  border:2px solid transparent;
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  background-color: rgba(var(--main-color-rgb), 0.20);
}

.slider-one .swiper-pagination-bullet:hover,
.slider-one .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: rgba(var(--main-color-rgb), 1);
}

.slider-one_booking{
  position:absolute;
  left:0px;
  bottom:60px;
  width:260px;
  z-index:10;
  padding:12px 20px;
  border-radius:8px;
  background-color:var(--color-three);
}

.slider-one_booking-title{
  position:relative;
  font-size:15px;
  margin-bottom:10px;
  color:#1e272e;
}

.slider-one_booking-title i{
  position:relative;
  margin-right:5px;
  top:-2px;
}

.slider-one .time-countdown{
  position:relative;
}

.slider-one .time-countdown .counter-column{
  position:relative;
  line-height: 1em;
  font-size:12px;
  z-index: 7;
  font-weight:500;
  text-align:center;
  margin-right:12px;
  border-radius: 0px;
  display: inline-block;
  color:var(--white-color);
  text-transform:capitalize;
  color:rgba(var(--color-four-rgb), 0.80);
}

.slider-one .time-countdown .counter-column .count{
  position:relative;
  width:42px;
  height:42px;
  display:block;
  font-size:22px;
  line-height:30px;
  font-weight:800;
  border-radius:5px;
  margin-bottom:7px;
  padding:7px 0px 15px;
  color:var(--white-color);
  background-color:var(--main-color);
}

.slider-one .time-countdown .counter-column:before{
  position:absolute;
  content:':';
  right:-12px;
  top:13px;
  font-size:34px;
  color:var(--main-color);
}

.slider-one .time-countdown .counter-column:last-child::before{
  display:none;
}

.slider-one .time-countdown .counter-column:last-child{
  margin-right:0px;
}

/*** 

====================================================================
  Services One
====================================================================

***/

.services-one{
  position:relative;
  padding:50px 0px 50px;
}

.services-one .four-items_carousel-pagination{
  position: relative;
  text-align: center;
  margin-top:25px;
}

.services-one .swiper-pagination-bullet{
  position: relative;
  width: 10px;
  height: 10px;
  opacity: 1;
  margin: 0px 18px;
  border-radius: 50px;
  display:inline-block;
  border:2px solid transparent;
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  background-color: rgba(var(--main-color-rgb), 0.20);
}

.services-one .swiper-pagination-bullet:hover,
.services-one .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: rgba(var(--main-color-rgb), 1);
}

.services-one.style-two{
  padding:0px 0px;
}

.services-one.style-two .outer-container{
  position: relative;
    max-width: 1760px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 100px 0px 100px;
    background-color: var(--color-three);
}

.service-block_one.style-two .service-block_one-inner{
  padding:30px 25px;
  border:1px solid rgba(var(--main-color-rgb), 0.10);
}

.service-block_one.style-two .service-block_one-inner:hover{
  border-color:var(--main-color);
  background-color:var(--main-color);
}

.service-block_one.style-two .service-block_one-inner:hover .service-block_one-icon{
  color:var(--main-color);
  background-color:var(--white-color);
}

.service-block_one.style-two .service-block_one-inner:hover .service-block_one-title a{
  color:var(--white-color);

}

.service-block_one.style-two .service-block_one-inner:hover .service-block_one-text{
  color:var(--white-color);
}

.service-block_one{
  position:relative;
  margin-bottom:30px;
}

.service-block_one-inner{
  position:relative;
  padding:30px 30px;
  border-radius:5px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  background-color:var(--color-three);
}

.service-block_one-inner:hover{
  box-shadow: 7px 10px 15px rgba(0, 45, 69, 0.20);

}

.service-block_one-stars{
  position:absolute;
  right:10px;
  top:20px;
  width:43px;
  height:43px;
  opacity:0;
  z-index: 1;
}

.service-block_one-inner:hover .service-block_one-stars{
  opacity:1;
}

.service-block_one-icon{
  position:relative;
  width:68px;
  height:68px;
  font-size:36px;
  line-height:75px;
  text-align:center;
  border-radius:50px;
  color:var(--white-color);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  background-color:#1e272e;
}

.service-block_one-inner:hover .service-block_one-icon{

  transform:rotateY(180deg);
}

.service-block_one-title{
  position:relative;
  margin-top:24px;
  font-weight: bold;
}

.service-block_one-title a{
  position:relative;
  color:#1e272e;
}

.service-block_one-title a:hover{
  color:var(--main-color);
}

.service-block_one-text{
  position:relative;
  font-size:18px;
  line-height:25px;
  margin-top:18px;
  color:#1e272e;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  opacity: 0.80;
}

/*** 

====================================================================
  About One
====================================================================

***/

.about-one{
  position:relative;
}

.about-one_icon{
  position:absolute;
  right:15%;
  bottom:30%;
  width:53px;
  height:72px;
}

.about-one_icon-two{
  position:absolute;
  left:-6%;
  top:-2%;
  width:53px;
  height:72px;
}

.about-one .outer-container{
  position:relative;
  max-width:1760px;
  margin:0 auto;
  border-radius:24px;
  padding:65px 0px 85px;
  background-color:var(--color-three);
}

.about-one_image-column{
  position:relative;
  margin-bottom:30px;
}

.about-one_image-outer{
  position:relative;
  margin-left:30px;
}

.about-one_image{
  position:relative;
  z-index:1;
  display:inline-block;
}

.about-one_image-two{
  position:absolute;
  right:30px;
  bottom:0px;
  z-index:1;
  overflow:hidden;
  border-radius:8px;
  -webkit-animation: icon-bounce 0.8s ease-out infinite;
    animation: icon-bounce 0.8s ease-out infinite;
}

.about-one_image-three{
  position:absolute;
  left:0px;
  top:50px;
  z-index:1;
  display:inline-block;
  border-radius:8px;
  border:8px solid var(--color-five);
}

.about-one_color-one{
  position:absolute;
  left:-30px;
  top:60px;
  right:40px;
  bottom:-20px;
  z-index:-1;
  border-radius:24px;
  background-color:var(--color-six);
}

.about-one_color-two{
  position:absolute;
  left:-15px;
  top:40px;
  right:40px;
  bottom:0px;
  z-index:-1;
  border-radius:24px;
  background-color:var(--main-color);
}

.about-one_experiance{
  position:absolute;
  right:-50px;
  top:-50px;
  width:162px;
  height:163px;
  z-index:10;
}


    @media only screen and (max-width: 1300px) {
        .about-one_experiance {
            right: -10px;
        }
    }

.about-one_experiance:before{
  position:absolute;
  content:'';
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
  background:url(/wp-content/uploads/2024/12/icon-2.png) no-repeat;
}

.about-one_experiance-inner{
  position:relative;
  font-size:52px;
  font-weight:800;
  line-height:59px;
  padding-top:25px;
  padding-left:35px;
  transform:rotate(-10deg);
  color:var(--main-color);
}

.about-one_experiance-inner span{
  position:relative;
  display:block;
  font-weight:600;
  font-size:16px;
  line-height:22px;
  color:#1e272e;
}

.about-one_content-column{
  position:relative;
  margin-bottom:30px;
}

.about-one_content-outer{
  position:relative;
  margin-top:65px;
  padding-left:30px;
  padding-right:70px;
}

.about-one_content-outer .sec-title_text{
  padding-right:50px;
}

/* Style Two */

.about-one.style-two{
  padding-bottom:90px;
}

.about-one.style-two .about-one_content-outer{
  margin-top:0px;
}

.about-one.style-two .about-one_image-outer{
  padding-bottom:95px;
}

/* Style Three */

.about-one.style-three .about-one_image-outer{
  text-align:right;
  margin-left:0px;
  padding-right:30px;
}

.about-one.style-three .about-one_content-outer{
  margin-top:40px;
}

/* Style Four */

.about-one.style-four{
  padding:100px 0px 100px;
  
}

.about-one_experiance-two{
  position:absolute;
  left:40px;
  z-index:10;
  bottom:50px;
  width:345px;
  height:163px;
  text-align:left;
  border-radius:8px;
  padding:30px 30px;
  background-color:var(--main-color);
  border:8px solid var(--color-five);
}

.about-one_experiance-two-inner{
  position:relative;
  padding-left:105px;
}

.about-one_experiance-two .icon{
  position:absolute;
  left:0px;
  top:11px;
  width:81px;
  height:81px;
  text-align:center;
  font-size:40px;
  line-height:79px;
  border-radius:50px;
  display:inline-block;
  color:var(--main-color);
  background-color:var(--white-color);
  font-family: "flaticon_lamusiqueauxenfants-icons";
}

.about-one_experiance-two .icon:after{
  position:absolute;
  content:'';
  left:-6px;
  top:-6px;
  right:-6px;
  bottom:-6px;
  border-radius:150px;
  border:2px dashed var(--white-color);
}

.about-one_experiance-two .counter{
  position:relative;
  font-size:65px;
  font-weight:800;
  line-height:1em;
  margin-top:-10px;
  color:var(--white-color);
}

.about-one_experiance-two i{
  position:relative;
  font-size:18px;
  display:block;
  font-weight:600;
  margin-top:-5px;
  color:var(--white-color);
}

/* About One Video */

.about-one_video{
  position:relative;
  z-index:1;
  padding:15px 15px;
  display:inline-block;
}

.about-one_video img{
  position:relative;
  border-radius:5px;
  overflow:hidden;
}

.about-one_video:before{
  position:absolute;
  content:'';
  left:0px;
  bottom:0px;
  width:200px;
  height:207px;
  z-index:-1;
  border-radius:8px;
  background-color:var(--main-color);
}

.about-one_video:after{
  position:absolute;
  content:'';
  right:0px;
  top:0px;
  opacity:0.10;
  width:200px;
  height:207px;
  z-index:-1;
  border-radius:8px;
  background-color:var(--main-color);
}

/* Gallery Block One Play */

.about-one_play-video{
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.about-one_play-video span{
  position: relative;
  width:70px;
  height: 70px;
  z-index:10;
  font-weight:700;
  text-align: center;
  display: inline-block;
  line-height:70px;
  border-radius:50%;
  font-size:18px;
  padding-left:3px;
  color: #1e272e;
  background-color: var(--white-color);
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
  font-family: "flaticon_lamusiqueauxenfants-icons";
}

.about-one_play-video span:hover{
  color:var(--white-color);
  background-color:var(--main-color);
}

.about-one_play-video .ripple,
.about-one_play-video .ripple:before,
.about-one_play-video .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width:70px;
  height: 70px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50% 50% 50% 50%;
    -moz-border-radius: 50% 50% 50% 50%;
    -ms-border-radius: 50% 50% 50% 50%;
    -o-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.about-one_play-video .ripple:before {
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -o-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
}

.about-one_play-video .ripple:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
    content: "";
    position: absolute;
}

@-webkit-keyframes ripple {
    70% {box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);}
    100% {box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);}
}

@keyframes ripple {
    70% {box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);}
    100% {box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);}
}





.about-one_list{
  position:relative;
  margin-bottom:35px;
}



.about-one_list li{
  position:relative;
  margin-bottom:7.5px;
  font-size: 18px;
   opacity: 0.80;
  
}

.about-one_list li i{
  position:relative;
  top:3px;
  margin-right:10px;
  color:#ee2f4e;
}

.about-one_options{
  position:relative;
  display:flex;
  gap:30px;
}

/* About One Play */

.about-one_play{
  position:relative;
}

.about-one_play span{
  position: relative;
  width:56px;
  height: 56px;
  z-index:10;
  font-weight:700;
  text-align: center;
  display: inline-block;
  line-height:56px;
  border-radius:50%;
  font-size:16px;
  padding-left:5px;
  color: var(--white-color);
  background-color: #1e272e;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
  font-family: "flaticon_lamusiqueauxenfants-icons";
}

.about-one_play span:hover{
  color:var(--white-color);
  background-color:var(--main-color);
}

.about-one_play .ripple,
.about-one_play .ripple:before,
.about-one_play .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width:70px;
  height: 70px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50% 50% 50% 50%;
    -moz-border-radius: 50% 50% 50% 50%;
    -ms-border-radius: 50% 50% 50% 50%;
    -o-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(14, 171, 165, .2);
    -moz-box-shadow: 0 0 0 0 rgba(14, 171, 165, .2);
    -ms-box-shadow: 0 0 0 0 rgba(14, 171, 165, .2);
    -o-box-shadow: 0 0 0 0 rgba(14, 171, 165, .2);
    box-shadow: 0 0 0 0 rgba(14, 171, 165, .2);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.about-one_play .ripple:before {
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -o-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
}

.about-one_play .ripple:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
    content: "";
    position: absolute;
}

/*** 

====================================================================
  Program One
====================================================================

***/

.program-one{
  position:relative;
  padding:100px 0px 100px;
}

.program-one.style-two{
  padding-bottom:0px;
}

.program-one .outer-container{
  position:relative;
  max-width:1760px;
  margin:0 auto;
  border-radius:24px;
  padding:100px 0px 220px;
  background-color:var(--color-three);
}

.program-one .program-one_carousel-pagination{
  position: relative;
  text-align: center;
  margin-top:20px;
}

.program-one .swiper-pagination-bullet{
  position: relative;
  width: 10px;
  height: 10px;
  opacity: 1;
  margin: 0px 18px;
  border-radius: 50px;
  display:inline-block;
  border:2px solid transparent;
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  background-color: rgba(var(--main-color-rgb), 0.20);
}

.program-one .swiper-pagination-bullet:hover,
.program-one .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: rgba(var(--main-color-rgb), 1);
}

.program-one_icon{
  position:absolute;
  left:60%;
  top:15%;
  width:53px;
  height:49px;
}

.program-one .sec-title{
  margin-bottom:0px;
}

.program-one .swiper-container{
  position:relative;
  padding-top:90px;
  margin-top:-45px;
  z-index:10;
}

.program-one .auto-container{
  position:relative;
}

.program-one .program-one_carousel-prev{
  position: absolute;
  right: 60px;
  top: 0px;
  width: 48px;
  height: 48px;
  z-index: 9999;
  cursor: pointer;
  text-align: center;
  line-height: 46px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  color: var(--main-color);
  font-size: 18px;
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  border: 2px solid rgba(var(--main-color-rgb), 0.20);
}

.program-one .program-one_carousel-prev:hover{
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.program-one .program-one_carousel-next:hover{
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.program-one .program-one_carousel-next{
  position: absolute;
  right: 0px;
  top: 0px;
  width: 48px;
  height: 48px;
  z-index: 9999;
  cursor: pointer;
  text-align: center;
  line-height: 46px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  color: var(--main-color);
  font-size: 18px;
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  border: 2px solid rgba(var(--main-color-rgb), 0.20);
}

.program-block_one{
  position:relative;
  margin-bottom:30px;
}

.program-block_one-inner{
  position:relative;
  padding:30px 30px;
  overflow:hidden;
  border-radius:8px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  background-color:var(--white-color);
}

.program-block_one-image{
  position:relative;
  overflow:hidden;
  overflow:hidden;
  border-radius:8px;
  background-color:var(--main-color);
}

.program-block_one-image img{
  position:relative;
  width:100%;
  display:block;
  border-radius:8px;
  overflow:hidden;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.program-block_one-inner:hover .program-block_one-image img{
  opacity:0.80;
  transform:scale(1.05,1.05);
}

.program-block_one-date{
  position:absolute;
  right:8px;
  top:-28px;
  width:55px;
  height:55px;
  font-size:28px;
  font-weight:700;
  padding-top:8px;
  text-align:center;
  border-radius:50px;
  color:var(--white-color);
  background-color: var(--color-two);
}

.program-block_one-date span{
  position:relative;
  display:block;
  font-size:12px;
  font-weight:400;
  text-transform:uppercase;
}

.program-block_one-content{
  position:relative;
  padding-top:25px;
}

.program-block_one-title{
  position:relative;
  font-weight:600;
}

.program-block_one-title a{
  position:relative;
  color:#1e272e;
}

.program-block_one-title a:hover{
  color:var(--main-color);
}

.program-block_one-text{
  position:relative;
  margin-top:12px;
  font-size:18px;
  opacity:0.80;
  line-height:26px;
  margin-bottom:22px;
  color:#1e272e;
}

.program-block_one-experiance{
  position: relative;
    padding: 4px 10px;
    border-radius: 5px;
  font-size:18px;
    display: inline-block;
    color: rgba(var(--main-color-rgb), 1);
    background-color: rgba(var(--color-five-rgb), 1);
}

.program-block_one-join{
  position:relative;
  font-size:18px;
  font-weight:600;
  color:#1e272e;
}

.program-block_one-join i{
  position:relative;
  font-size:12px;
  font-weight:800;
  margin-left:2px;
}

.program-block_one-join:hover{
  color:var(--main-color);
}

.program-block_one.style-two .program-block_one-inner:before{
  position:absolute;
  content:'';
  left:0px;
  top:0px;
  right:0px;
  bottom:0%;
  background: var(--color-five);
  background: linear-gradient(to bottom, var(--color-five) 0%, rgba(var(--main-color-rgb), 0) 100%);
}

.program-block_one.style-two .program-block_one-date{
  background-color:var(--main-color);
}

/* Style Three */

.program-block_one.style-three .program-block_one-inner:before{
  position:absolute;
  content:'';
  left:0px;
  top:0px;
  right:0px;
  bottom:0%;
  background: var(--color-eight);
  background: linear-gradient(to bottom, var(--color-eight) 0%, rgba(var(--main-color-rgb), 0) 100%);
}

.program-block_one.style-three .program-block_one-date{
  background-color:var(--color-two);
}

.program-block_one.style-three .program-block_one-join{
  color:var(--color-two);
}

.program-block_one.style-three .program-block_one-experiance{
  color:var(--color-two);
  background: var(--color-eight);
}

/* Style Four */

.program-block_one.style-four .program-block_one-inner:before{
  position:absolute;
  content:'';
  left:0px;
  top:0px;
  right:0px;
  bottom:0%;
  background: var(--color-nine);
  background: linear-gradient(to bottom, var(--color-nine) 0%, rgba(var(--main-color-rgb), 0) 100%);
}

.program-block_one.style-four .program-block_one-date{
  background-color:var(--color-seven);
}

.program-block_one.style-four .program-block_one-experiance{
  color:var(--color-seven);
  background: var(--color-nine);
}

/*** 

====================================================================
  Testimonial One
====================================================================

***/

.testimonial-one{
  position:relative;
}

.testimonial-one_circle-one{
  position:absolute;
  left:2%;
  bottom:20%;
  width:88px;
  height:88px;
  opacity:0.08;
  margin:0 auto;
  border-radius:150px;
  background-color:var(--color-three);
}

.testimonial-one_circle-two{
  position:absolute;
  left:40%;
  bottom:5%;
  width:18px;
  height:18px;
  opacity:0.08;
  margin:0 auto;
  border-radius:150px;
  background-color:var(--color-three);
}

.testimonial-one_icon{
  position:absolute;
  left:0%;
  top:0%;
  width:153px;
  height:249px;
  background-repeat:no-repeat;
}

.testimonial-one_icon-two{
  position:absolute;
  right:0%;
  bottom:0%;
  width:338px;
  height:553px;
  background-repeat:no-repeat;
}

.testimonial-one .outer-container{
  position:relative;
  max-width:1760px;
  margin:0 auto;
  border-radius:24px;
  padding:85px 0px;
  background-color:#1e272e;
}

.testimonial-one .testimonial__nav{
  position: relative;
  width: 100%;
  z-index: 10;
  max-width: 480px;
  margin: 0 auto;
  margin-top: 35px;
  padding:5px 5px;
}

.testimonial-one .testimonial__nav:before{
  position: absolute;
  content:'';
  left:0px;
  top:0px;
  bottom:0px;
  width:108px;
  height:100%;
  z-index:10;
  background:url(../images/icons/pattern-1.png) repeat-y;
}

.testimonial-one .testimonial__nav:after{
  position: absolute;
  content:'';
  right:0px;
  top:0px;
  bottom:0px;
  width:108px;
  height:100%;
  z-index:10;
  background:url(../images/icons/pattern-2.png) repeat-y;
}

.testimonial-one .testimonial__nav-thumb{
  position: relative;
}

.testimonial-one .testimonial__nav-thumb img{
  position:relative;
  width: 90px;
  height: 90px;
  margin:0 auto;
  cursor: pointer;
  overflow: hidden;
  border-radius: 50px;
  transform:scale(0.85,0.85);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.testimonial-one .testimonial__nav-thumb.swiper-slide-thumb-active img{
  transform:scale(1.05,1.05);
}

.testimonial__slider-wrap{
  position:relative;
}

.testimonial-block_one{
  position:relative;
}

.testimonial-block_one-inner{
  position:relative;
  text-align:center;
}

.testimonial-block_one-quote{
  position:relative;
  line-height:1em;
  margin-bottom:25px;
}

.testimonial-block_one-text{
  position:relative;
  font-size:28px;
  opacity:0.80;
  max-width:710px;
  margin:0 auto;
  font-weight:400;
  line-height:40px;
  color:var(--color-three);
}

.testimonial__nav-arrow{
  position: absolute;
  left:100px;
  top:30%;
  right:100px;
  z-index: 10;
}

.testimonial__nav-arrow .testimonial__nav-slider-prev{
  position: relative;
  width: 48px;
    height: 48px;
    z-index: 9999;
    cursor: pointer;
    text-align: center;
    line-height: 46px;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    color: var(--main-color);
    font-size: 18px;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    border: 2px solid rgba(var(--main-color-rgb), 0.20);
}

.testimonial__nav-arrow .testimonial__nav_slider-next{
  position: absolute;
  right:0px;
  width: 48px;
    height: 48px;
    z-index: 9999;
    cursor: pointer;
    text-align: center;
    line-height: 46px;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    color: var(--main-color);
    font-size: 18px;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    border: 2px solid rgba(var(--main-color-rgb), 0.20);
}

.testimonial__nav-arrow .testimonial__nav-slider-prev:hover,
.testimonial__nav-arrow .testimonial__nav_slider-next:hover{
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.testimonial-one .testimonial__nav-thumb.swiper-slide.swiper-slide-active .thumb-content{
  opacity:1;
}

.testimonial-one .thumb-content{
  position:relative;
  text-align:center;
  width:200px;
  opacity:0;
  margin-top:15px;
  margin-left:-60px;
}

.testimonial-one .thumb-content h5{
  position:relative;
  font-weight:600;
  color:var(--white-color);
  text-transform:capitalize;
}

.testimonial-one .thumb-content .designation{
  position:relative;
  font-size:16px;
  opacity:0.80;
  margin-top:5px;
  letter-spacing:1px;
  color:var(--color-three);
}

.testimonial-one .testimonial__nav-pagination{
  position: relative;
  z-index: 999;
  margin-top:30px;
  text-align: center;
}

.testimonial-one .swiper-pagination-bullet{
  position: relative;
  width: 10px;
  height: 10px;
  opacity: 1;
  margin: 0px 5px;
  border-radius: 50px;
  border:2px solid transparent;
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  background-color: rgba(var(--main-color-rgb), 0.20);
}

.testimonial-one .swiper-pagination-bullet:hover,
.testimonial-one .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: rgba(var(--main-color-rgb), 1);
}

/*** 

====================================================================
  Choose One
====================================================================

***/

.choose-one{
  position:relative;
  padding:100px 0px 70px;
}

.choose-one_content-column{
  position:relative;
  margin-bottom:30px;
}

.choose-one_content-outer{
  position:relative;
  padding-right:50px;
}

.choose-one_title-column{
  position:relative;
  margin-bottom:30px;
}

.choose-one_title-outer{
  position:relative;
  padding-top:40px;
}



.choose-block_one{
  position:relative;
  margin-bottom:30px;
}

.choose-block_one-inner{
  position:relative;
  padding:28px 25px;
  border-radius:8px;
  overflow:hidden;
  background-color:var(--color-three);
}

.choose-block_one-inner:hover::before{
  opacity:1;
  transform:scale(1,1);
}

.choose-block_one-inner:before{
  position:absolute;
  content:'';
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
  opacity:0;
  transform:scale(1,0.2);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  background-color:var(--color-two);
}

.choose-block_one-content{
  position:relative;
  padding-left:90px;
  padding-top:10px;
}

.choose-block_one-icon{
  position:absolute;
  left:0px;
  top:0px;
  width:74px;
  height:74px;
  font-size:34px;
  border-radius:50px;
  line-height:80px;
  text-align:center;
  display:inline-block;
  color:var(--main-color);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  background-color:var(--color-three);
  box-shadow:10px 10px 15px rgba(244,131,31,0.10)
}

.choose-block_one-inner:hover .choose-block_one-icon{
  color:var(--white-color);
  background-color:var(--main-color);
}

.choose-block_one-title{
  position:relative;
  font-weight:800;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  font-family: 'Quicksand', sans-serif; 
}

.choose-block_one-inner:hover .choose-block_one-title{
  color:var(--white-color);
}

.choose-block_one-text{
  position:relative;
  margin-top:10px;
  font-size:18px;
  opacity:0.80;
  line-height:25px;
  color:#1e272e;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.choose-block_one-inner:hover .choose-block_one-text{
  color:var(--white-color);
}

/*** 

====================================================================
  Team One
====================================================================

***/

.team-one{
  position:relative;
}

.team-one .inner-container{
  position:relative;
  padding:0px 20px;
}

.team-one .swiper-container{
  padding:0px 35px;
}

.team-one .outer-container{
  position:relative;
  max-width:1760px;
  margin:0 auto;
  border-radius:24px;
  padding:100px 0px 100px;
  background-color:var(--color-three);
}

.team-block_one{
  position:relative;
  margin-bottom:30px;
}

.team-block_one-inner{
  position:relative;
  text-align:center;
}

.team-block_one-image{
  position:relative;
  margin:0 auto;
  width:326px;
  height:426px;
  overflow:hidden;
  border-radius:200px;
  border:8px solid var(--color-six);
}

.team-block_one-content{
  position:relative;
  margin-top:22px;
}

.team-block_one-heading{
  position:relative;
  font-weight:600;
}

.team-block_one-heading a{
  position:relative;
  color:#1e272e;
}

.team-block_one-heading a:hover{
  color:var(--main-color);
}

.team-block_one-designation{
  position:relative;
  font-weight:400;
  font-size:16px;
  opacity:0.80;
  margin-top:5px;
  color:#1e272e;
  text-transform:capitalize;
}

.team-block_one-overlay{
  position:absolute;
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
  display:flex;
  align-items: center;
    justify-content: center;
  
  align-items: center;
    justify-content: center;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease,-webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  
  background-color:rgba(var(--main-color-rgb), 0.80);
}

.team-block_one-inner:hover .team-block_one-overlay{
  -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

.team-block_one-socials{
  position:relative;
}

.team-block_one-socials a{
  position:relative;
  width:40px;
  height:40px;
  font-size:18px;
  margin:0px 3px;
  line-height:38px;
  border-radius:50px;
  text-align:center;
  display:inline-block;
  color:var(--white-color);
  border:1px solid var(--white-color);
}

.team-block_one-socials a:hover{
  color:#1e272e;
  border-color:var(--color-six);
  background-color:var(--color-six);
}

.team-one_arrows{
  position: absolute;
  left:0px;
  top:35%;
  right:0px;
  z-index: 10;
}

.team-one_arrows .three-items_carousel-prev{
  position: relative;
  width: 48px;
    height: 48px;
    z-index: 9999;
    cursor: pointer;
    text-align: center;
    line-height: 46px;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    color: var(--main-color);
    font-size: 18px;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    border: 2px solid rgba(var(--main-color-rgb), 0.20);
}

.team-one_arrows .three-items_carousel-next{
  position: absolute;
  right:0px;
  width: 48px;
    height: 48px;
    z-index: 9999;
    cursor: pointer;
    text-align: center;
    line-height: 46px;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    color: var(--main-color);
    font-size: 18px;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    border: 2px solid rgba(var(--main-color-rgb), 0.20);
}

.team-one_arrows .three-items_carousel-prev:hover,
.team-one_arrows .three-items_carousel-next:hover{
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

/*** 

====================================================================
  Registration One
====================================================================

***/

.registration-one{
  position:relative;
  padding:100px 0px 80px;
}

.registration-one.style-two{
  padding-top:70px;
  padding-bottom:0px;
}

.registration-one_pattern{
  position:absolute;
  left:0px;
  bottom:80px;
  right:0px;
  height:466px;
  background-position:center bottom;
  background-repeat:no-repeat;
}

.registration-one_title-column{
  position:relative;
  margin-bottom:30px;
}

.registration-one_title-outer{
  position:relative;
}

.registration-one .sec-title_text{
  max-width:500px;
  opacity: 0.80;
}

.registration-one_list{
  position:relative;
}

.registration-one_list li{
  position:relative;
  min-height:58px;
  font-size:16px;
  padding-left:75px;
  margin-bottom:30px;
  color:rgba(var(--color-four-rgb), 0.50);
}

.registration-one_list li .icon{
  position:absolute;
  left:0px;
  top:0px;
  width:58px;
  height:58px;
  font-size:24px;
  line-height:64px;
  text-align:center;
  border-radius:50px;
  color: white;
  background-color:#1e272e;
}

.registration-one_list li a{
  position:relative;
  font-weight:600;
  font-size:22px;
  margin-top:6px;
  display:inline-block;
  color:#1e272e;
}

.registration-one_list li a:hover{
  color:var(--color-two);
}

.registration-one_form-column{
  position:relative;
  margin-bottom:30px;
}

.registration-one_form-outer{
  position:relative;
  padding:38px 45px;
  border-radius:8px;
  background-color:var(--color-two);
}

.registration-one_title{
  position:relative;

  color:var(--white-color);
}

.registration-one_form-outer div.frais-link{
  margin-bottom:25px;
}

.registration-one_form-outer div.frais-link a{
  font-size: 20px;
  text-decoration: underline;
  font-weight: bold;
}

.registration-one_form-outer div.frais-link a:hover{
  color: white;
}
/*** 

====================================================================
  Default Form
====================================================================

***/

.default-form .form-group{
  position: relative;
  margin-bottom:20px;
}

.default-form .form-group label{
  position: relative;
  display:block;
  font-weight:500;
  font-size:18px;
  opacity:0.80;
  margin-bottom:10px;
  color:var(--color-three);
}

.default-form .form-group:last-child{
  margin-bottom:0px;
}

.default-form .form-group input[type="text"],
.default-form .form-group input[type="password"],
.default-form .form-group input[type="tel"],
.default-form .form-group input[type="email"],
.default-form .form-group select{
  position:relative;
  display:block;
  width:100%;
  height:60px;
  font-size:18px;
  font-weight: 400;
  line-height:28px;
  padding:10px 25px;
  border-radius:6px;
  color:rgba(var(--color-four-rgb), 0.80);
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  transition:all 300ms ease;
  background-color:var(--white-color);
  border:1px solid transparent;
}

.default-form .form-group textarea::-webkit-input-placeholder,
.default-form .form-group input::-webkit-input-placeholder{
  color:rgba(var(--color-four-rgb), 0.80);
}

.default-form .form-group input[type="text"]:focus,
.default-form .form-group input[type="password"]:focus,
.default-form .form-group input[type="tel"]:focus,
.default-form .form-group input[type="email"]:focus,
.default-form .form-group select:focus,
.default-form .form-group textarea:focus{
  border-color:var(--main-color);
}

.default-form .form-group textarea{
  position:relative;
  display:block;
  width:100%;
  height:190px;
  resize:none;
  font-size:18px;
  line-height:24px;
  font-weight: 400;
  border-radius:6px;
  padding:15px 25px 25px;
  color:rgba(var(--color-four-rgb), 0.80);
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  transition:all 300ms ease;
  background-color:var(--white-color);
}

.default-form .form-group button{
  margin-top: 15px;
}

/*** 

====================================================================
  Blog One
====================================================================

***/

.blog-one{
  position:relative;
  padding:0px 0px 70px;
}

.blog-one.style-two{
  padding-top:100px;
}

.news-block_one{
  position:relative;
  margin-bottom:30px;
}

.news-block_one-inner{
  position:relative;
  border-radius:8px;
  padding:30px 28px;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  transition:all 500ms ease;
  background-color:var(--white-color);
}

.news-block_one-inner:hover{
  box-shadow:0px 0px 25px rgba(244,131,31,0.35);
}

.news-block_one-image{
  position:relative;
  border-radius:8px;
  overflow:hidden;
  background-color:var(--main-color);
}

.news-block_one-image img{
  position:relative;
  width:100%;
  display:block;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  transition:all 500ms ease;
}

.news-block_one-inner:hover .news-block_one-image img{
  opacity:0.80;
  transform:scale(1.06,1.06) rotate(2deg);
}

.news-block_one-content{
  position:relative;
  padding-top:20px;
}

.news-block_one-meta{
  position:relative;
}

.news-block_one-meta li{
  position:relative;
  font-size:18px;
  margin-right:10px;
  padding-right:15px;
  display:inline-block;
  color:rgba(var(--color-four-rgb), 0.60);
}

.news-block_one-meta li:before{
  position:absolute;
  content:'';
  right:-1px;
  top:9px;
  width:6px;
  height:6px;
  border-radius:50px;
  background-color:var(--main-color);
}

.news-block_one-meta li:last-child{
  padding-right:0px;
  margin-right:0px;
}

.news-block_one-meta li:last-child::before{
  display:none;
}

.news-block_one-title{
  position:relative;
  font-weight:600;
  font-size:22px;
  line-height:32px;
  margin-top:10px;
}

.news-block_one-title a{
  position:relative;
  color:#1e272e;
}

.news-block_one-title a:hover{
  color:var(--main-color);
}

.news-block_one-more{
  position:relative;
  font-weight:600;
  font-size:18px;
  margin-top:18px;
  display:inline-block;
  color:var(--color-two);
}

.news-block_one-more i{
  position:relative;
  font-size:10px;
  font-weight:700;
}

.news-block_one-more:hover{
  color:var(--main-color);
}

/*** 

====================================================================
  Slider Two
====================================================================

***/

.slider-two{
  height: 600px !important;
  overflow: hidden !important;
  position: relative !important;
}

.slider-two .swiper-slide{



  height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;


}

/* Make sure the Swiper container fills the parent height */
    .slider-two .swiper-container {
        height: 100% !important;
    }


.slider-two_icon-one{
  position: absolute;
  left: 0%;
  top:18%;
  z-index: 1;
  width: 156px;
  height: 75px;
  background-repeat:no-repeat;
}

.slider-two_icon-two{
  position: absolute;
  right: -2%;
  top:32%;
  z-index: 1;
  width: 160px;
  height: 54px;
  background-repeat:no-repeat;
}

.slider-two_icon-three{
  position: absolute;
  left: 0%;
  top:12%;
  right:0%;
  z-index:1;
  height: 245px;
  background-position:center center;
  background-repeat:no-repeat;
}

.slider-two_content{
  position:relative;
  z-index: 2;
}

.slider-two_content-inner{
  position:relative;
}

.slider-two_title{
  position: relative;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  padding:5px 15px;
  border-radius:50px;
  display:inline-block;
  color: var(--white-color);
  transition:all 900ms ease;
  -moz-transition:all 900ms ease;
  -webkit-transition:all 900ms ease;
  -ms-transition:all 900ms ease;
  -o-transition:all 900ms ease;

  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-two_title i{
  position: relative;
  margin-right:3px;
  line-height:1em;
  top:1px;
}

.slider-two .swiper-slide-active .slider-two_title{
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-two_heading{
  margin-top: 12px;
  font-weight:700;
  margin-bottom:25px;
  color: var(--white-color);
  transition:all 900ms ease;
  -moz-transition:all 900ms ease;
  -webkit-transition:all 900ms ease;
  -ms-transition:all 900ms ease;
  -o-transition:all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-two_heading span{
  color: var(--main-color);
}

.slider-two .swiper-slide-active .slider-two_heading{
  -webkit-transition-delay: 800ms;
  -moz-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  transition-delay: 800ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-two_text{
  position: relative;
  font-size: 18px;
  opacity:1;
  line-height: 30px;
  max-width:500px;
  margin-bottom:25px;
  margin:0 auto;
  color: var(--white-color);

  transition:all 900ms ease;
  -moz-transition:all 900ms ease;
  -webkit-transition:all 900ms ease;
  -ms-transition:all 900ms ease;
  -o-transition:all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-two .swiper-slide-active .slider-two_text{
  -webkit-transition-delay: 1100ms;
  -moz-transition-delay: 1100ms;
  -ms-transition-delay: 1100ms;
  -o-transition-delay: 1100ms;
  transition-delay: 1100ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-two .slider-two_button{
  position: relative;
  gap: 20px;
  margin-top:35px;
  margin-bottom:70px;
  display:inline-block;
  transition:all 900ms ease;
  -moz-transition:all 900ms ease;
  -webkit-transition:all 900ms ease;
  -ms-transition:all 900ms ease;
  -o-transition:all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-two .swiper-slide-active .slider-two_button{
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-two_colors{
  position:absolute;
  left:0px;
  right:0px;
  bottom:0px;
  height:380px;
  background-position:center top;
  background-repeat:no-repeat;
}

.slider-two_image{
  position: relative;
  transition:all 900ms ease;
  -moz-transition:all 900ms ease;
  -webkit-transition:all 900ms ease;
  -ms-transition:all 900ms ease;
  -o-transition:all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-two .swiper-slide-active .slider-two_image{
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/*** 

====================================================================
  Services Two
====================================================================

***/

.services-two{
  position:relative;
  padding:100px 0px 70px;
}

.services-two .swiper-container{
  position:relative;
  padding-top: 90px;
    margin-top: -85px;
  z-index:10;
}

.services-two .program-one_carousel-pagination{
  position: relative;
  text-align: center;
  margin-top:20px;
}

.services-two .swiper-pagination-bullet{
  position: relative;
  width: 10px;
  height: 10px;
  opacity: 1;
  margin: 0px 18px;
  border-radius: 50px;
  display:inline-block;
  border:2px solid transparent;
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  background-color: rgba(var(--main-color-rgb), 0.20);
}

.services-two .swiper-pagination-bullet:hover,
.services-two .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: rgba(var(--main-color-rgb), 1);
}

.services-two .program-one_carousel-prev{
  position: absolute;
  right: 60px;
  top: 0px;
  width: 48px;
  height: 48px;
  z-index: 9999;
  cursor: pointer;
  text-align: center;
  line-height: 46px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  color: var(--main-color);
  font-size: 18px;
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  border: 2px solid rgba(var(--main-color-rgb), 0.20);
}

.services-two .program-one_carousel-prev:hover{
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.services-two .program-one_carousel-next:hover{
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.services-two .program-one_carousel-next{
  position: absolute;
  right: 0px;
  top: 0px;
  width: 48px;
  height: 48px;
  z-index: 9999;
  cursor: pointer;
  text-align: center;
  line-height: 46px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  color: var(--main-color);
  font-size: 18px;
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  border: 2px solid rgba(var(--main-color-rgb), 0.20);
}

.service-block_two{
  position:relative;
  margin-bottom:30px;
}

.service-block_two-inner{
  position:relative;
  padding:30px 30px;
  border-radius:5px;
  overflow:hidden;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  background-color:var(--color-three);
}

.service-block_two-inner:hover{
  box-shadow:7px 10px 15px rgba(244,131,31,0.20);
}

.service-block_two-inner:hover::before{
  opacity:1;
  transform:scale(1,1);
}

.service-block_two-inner:before{
  position:absolute;
  content:'';
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
  opacity:0;
  transform:scale(1,0.2);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  background-color:var(--color-two);
}

.service-block_two-stars{
  position:absolute;
  right:30px;
  top:30px;
  width:30px;
  height:44px;
  opacity:0;
}

.service-block_two-inner:hover .service-block_two-stars{
  opacity:1;
}

.service-block_two-icon{
  position:relative;
  width:80px;
  height:80px;
  font-size:40px;
  line-height:86px;
  text-align:center;
  border-radius:50px;
  color:var(--main-color);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  background-color:var(--color-five);
}

.service-block_two-inner:hover .service-block_two-icon{
  color:var(--white-color);
  background-color:var(--main-color);
  transform:rotateY(180deg);
}

.service-block_two-title{
  position:relative;
  margin-top:24px;
  font-weight:700;
}

.service-block_two-title a{
  position:relative;
  color:#1e272e;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.service-block_two-inner:hover .service-block_two-more,
.service-block_two-inner:hover .service-block_two-text,
.service-block_two-inner:hover .service-block_two-title a{
  color:var(--white-color);
}

.service-block_two-text{
  position:relative;
  font-size:18px;
  opacity:0.80;
  line-height:26px;
  margin-top:18px;
  font-weight:700;
  color:#1e272e;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.service-block_two-more{
  position:relative;
  font-size:18px;
  font-weight:700;
  line-height:24px;
  margin-top:22px;
  display:inline-block;
  color:#1e272e;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.service-block_two-more i{
  position:relative;
  font-size:10px;
  font-weight:800;
}

/*** 

====================================================================
  Program Two
====================================================================

***/

.program-two{
  position:relative;
}

.program-two-baloon{
  position:absolute;
  left:60%;
  top:3%;
  z-index:1;
  width:48px;
  height:144px;
  background-repeat:no-repeat;
}

.program-two .owl-nav{
  position:absolute;
  right:15px;
  top:90px;
}

.program-two .owl-nav .owl-prev,
.program-two .owl-nav .owl-next{
  position:relative;
    width: 48px;
    height: 48px;
    z-index: 9999;
    cursor: pointer;
  font-size: 18px;
    text-align: center;
    line-height: 46px;
    text-align: center;
  margin-left:10px;
    border-radius: 50px;
    display: inline-block;
    color: var(--main-color);
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    border: 2px solid rgba(var(--main-color-rgb), 0.20);
}

.program-two .owl-nav .owl-prev:hover,
.program-two .owl-nav .owl-next:hover{
  color:var(--white-color);
  background-color:var(--main-color);
  border-color:rgba(var(--main-color-rgb), 1);
}

.program-two .owl-dots{
  position:relative;
  margin-top:50px;
  text-align:center;
}

.program-two .owl-dots .owl-dot{
  position: relative;
    width: 10px;
    height: 10px;
    opacity: 1;
    margin: 0px 5px;
    border-radius: 50px;
  display:inline-block;
    border: 2px solid transparent;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    background-color: rgba(var(--main-color-rgb), 0.20);
}

.program-two .owl-dots .owl-dot.active,
.program-two .owl-dots .owl-dot:hover{
  background-color: rgba(var(--main-color-rgb), 1);
}

.program-two .outer-container{
  position:relative;
  max-width:1760px;
  margin:0 auto;
  overflow:hidden;
  border-radius:24px;
  padding:100px 20px 100px;
  background-color:var(--color-three);
}

.program-two .outer-container:before{
  position:absolute;
  content:'';
  left:0px;
  top:0px;
  z-index:1;
  width:30px;
  bottom:0px;
  background-color:var(--color-three);
}

.program-two .outer-container:after{
  position:absolute;
  content:'';
  right:0px;
  top:0px;
  z-index:1;
  width:30px;
  bottom:0px;
  background-color:var(--color-three);
}

.program-two .owl-carousel .owl-stage-outer{
  position:static;
  overflow: visible;
}

.program-two .owl-item.center .program-block_three-inner{
  background-color:rgba(var(--color-five-rgb), 1);
}

.program-two .owl-item.center .program-block_three-arrow{
  opacity:1;
}

.program-two .program-two_carousel{
  position:static;
}

.program-two .auto-container{
  position:relative;
}

.program-two .owl-carousel .owl-stage,
.program-two .inner-container{
  position:static;
}

/* Program Block Two */

.program-block_two{
  position:relative;
}

.program-block_two-inner{
  position:relative;
  padding:28px 30px;
  border-radius:8px;
  display:inline-block;
  border:1px solid rgba(var(--color-five-rgb), 1);
}

.program-block_two-number{
  position:relative;
  padding:4px 10px;
  border-radius:5px;
  color:var(--color-two);
  display:inline-block;
  background-color:rgba(var(--color-two-rgb), 0.10);
}

.program-block_two-title{
  position:relative;
  font-weight:700;
  margin-top:20px;
  font-size:22px;
}

.program-block_two-title a{
  position:relative;
  color:#1e272e;
}

.program-block_two-title a:hover{
  color:var(--color-two);
}

.program-block_two-text{
  position:relative;
  margin-top:15px;
  font-weight:700;
  font-size:18px;
  line-height:24px;
  opacity:0.80;
  max-width:242px;
  color:#1e272e;
}

.program-block_two-old{
  position:relative;
  padding:4px 10px;
  border-radius:5px;
  margin-top:20px;
  font-weight:700;
  display:inline-block;
  color:var(--main-color);
  background-color:rgba(var(--main-color-rgb), 0.07);
}

/* Program Block Three */

.program-block_three{
  position:relative;
}

.program-block_three-inner{
  position:relative;
  padding:28px 30px;
  border-radius:8px;
  display:inline-block;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  transition:all 500ms ease;
  background-color:rgba(var(--color-five-rgb), 0.20);
}

.program-block_three-inner:hover{
  background-color:rgba(var(--color-five-rgb), 1);
}

.program-block_three-number{
  position:relative;
  padding:4px 10px;
  border-radius:5px;
  color:var(--color-two);
  display:inline-block;
  background-color:rgba(var(--color-two-rgb), 0.10);
}

.program-block_three-title{
  position:relative;
  font-weight:700;
  margin-top:20px;
  font-size:22px;
}

.program-block_three-title a{
  position:relative;
  color:#1e272e;
}

.program-block_three-title a:hover{
  color:var(--color-two);
}

.program-block_three-text{
  position:relative;
  margin-top:15px;
  font-weight:700;
  font-size:18px;
  line-height:24px;
  opacity:0.80;
  max-width:270px;
  color:#1e272e;
}

.program-block_three-old{
  position:relative;
  padding:4px 10px;
  border-radius:5px;
  margin-top:20px;
  font-weight:700;
  display:inline-block;
  color:var(--main-color);
  background-color:rgba(var(--main-color-rgb), 0.07);
}

.program-block_three-image{
  position:relative;
  margin-top:25px;
  overflow:hidden;
  border-radius:8px;
}

.program-block_three-arrow{
  position:absolute;
  left:50%;
  top:50%;
  opacity:0;
  width:70px;
  height:70px;
  font-size:24px;
  line-height:74px;
  text-align:center;
  border-radius:150px;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  transition:all 500ms ease;
  color:var(--white-color);
  background-color:var(--color-two);
  transform:translateX(-50%) translateY(-50%);
}

.program-block_three-inner:hover .program-block_three-arrow{
  opacity:1;
}

.program-block_three-arrow:hover{
  color:var(--white-color);
  background-color:var(--main-color);
}

/*** 

====================================================================
  Price One
====================================================================

***/

.price-one{
  position:relative;
  padding:100px 0px 100px;
}

.price-one .pricing-tabs .price-block_one{
  transform:rotateY(90deg);
}

.price-one .pricing-tabs .tabs-content .tab.active-tab .price-block_one{
  transform:rotateY(0deg);
}

.pricing-tabs{
  position:relative;
  z-index:2;
}

.pricing-tabs .tabs-content .tab{
  position:relative;
  display:none;
}

.pricing-tabs .tabs-content .tab.active-tab{
  display:block;  
}

.pricing-tabs .buttons-outer{
  position:relative;
  text-align:center;
  margin-bottom:40px;
}

.pricing-tabs .tab-buttons{
  position:relative;
  overflow:hidden;
  padding:6px 6px;
  background:none;
  text-align:center;
  border-radius:50px;
  display:inline-block;
  border:1px solid rgba(var(--color-two-rgb), 0.10);
}

.pricing-tabs .tab-buttons .tab-btn{
  position:relative;
  font-size:18px;
  font-weight:700;
  float:left;
  cursor:pointer;
  padding:13px 30px;
  border-radius:50px;
  color:var(--color-two);
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  transition:all 300ms ease;
}

.pricing-tabs .tab-buttons .tab-btn:hover,
.pricing-tabs .tab-buttons .tab-btn.active-btn{
  color:var(--white-color);
  background-color: var(--color-two);
}

.price-block_one{
  position:relative;
  margin-bottom:30px;
  transition:all 900ms ease;
  -moz-transition:all 900ms ease;
  -webkit-transition:all 900ms ease;
  -ms-transition:all 900ms ease;
  -o-transition:all 900ms ease;
}

.price-block_one-inner{
  position:relative;
  padding:38px 30px;
  border-radius:8px;
  background-color: var(--color-three);
}

.price-block_one-icon{
  position:absolute;
  right:30px;
  top:30px;
  width:28px;
  height:38px;
  background-repeat:no-repeat;
}

/* Style Two */

.price-block_one.style-two .price-block_one-inner{
  background-color: rgba(var(--main-color-rgb), 0.08);
}

.price-block_one.style-two .price-one_button{
  color:var(--white-color);
  border-color:var(--main-color);
  background-color:var(--main-color);
}

/* Style Three */

.price-block_one.style-three .price-block_one-inner{
  background-color: rgba(var(--color-two-rgb), 0.08);
}

.price-block_one.style-three .price-one_button{
  color:var(--color-two);
  border:1px solid rgba(var(--color-two-rgb), 0.10);
}

/* Style Four */

.price-block_one.style-four .price-block_one-inner{
  background-color: rgba(var(--color-three-rgb), 0.15);
}

.price-block_one.style-four .price-block_one-title{
  opacity:0.80;
  color:var(--color-three);
}

.price-block_one.style-four .price-block_one-price{
  color:var(--color-three);
}

.price-block_one.style-four .price-block_one-button{
  margin-top:40px;
}

.price-block_one.style-four .price-block_one-button .price-one_button{
  border-radius:50px;
  color:var(--color-three);
  border-color: rgba(var(--color-three-rgb), 0.20);
}

.price-block_one.style-four .price-block_one-list{
  padding-top:0px;
  border:none;
  margin-top:40px;
}

.price-block_one.style-four .price-block_one-list li{
  color: rgba(var(--color-three-rgb), 0.80);
}

.price-block_one-title{
  position:relative;
  font-weight:700;
  font-size:24px;
  color: #1e272e;
  font-family: 'Quicksand', sans-serif;;
}

.price-block_one-price{
  position:relative;
  font-weight:700;
  font-size:64px;
  line-height:1em;
  margin-top:25px;
  color: #1e272e;
  font-family: 'Quicksand', sans-serif; 
}

.price-block_one-price sub{
  position:relative;
  top:0px;
  font-size:24px;
  line-height:1em;
  font-family: 'Quicksand', sans-serif;;
}

.price-block_one-price sup{
  position:relative;
  font-size:24px;
  line-height:1em;
  top:0px;
  font-family: 'Quicksand', sans-serif;;
}

.price-block_one-list{
  position:relative;
  margin-top:35px;
  padding-top:35px;
  border-top:1px solid rgba(var(--color-four-rgb), 0.10);
}

.price-block_one-list li{
  position:relative;
  font-size:18px;
  display:flex;
  gap:10px;
  font-weight:700;
  margin-bottom:18px;
  color:rgba(var(--color-four-rgb), 0.80);
}

.price-block_one-list li i{
  position:relative;
  width:20px;
  height:20px;
  font-size:10px;
  line-height:23px;
  border-radius:50px;
  text-align:center;
  display:inline-block;
  color:var(--white-color);
  background-color:var(--color-two);
}

.price-block_one-list li.cancel i{
  background-color:#FF5427;
  font-size:7px;
}

.price-block_one-list li:last-child{
  margin-bottom:0px;
}

.price-block_one-button{
  position:relative;
  margin-top:50px;
  display:block;
}

.price-block_one-button .price-one_button{
  position:relative;
  display:block;
  font-size:18px;
  font-weight:700;
  padding:16px 15px;
  border-radius:8px;
  text-align:center;
  color:#1e272e;
  border:1px solid rgba(var(--color-four-rgb), 0.10);
}

.price-block_one-button .price-one_button i{
  position:relative;
  font-size:12px;
  font-weight:700;
  margin-left:5px;
}

.price-block_one-button .price-one_button:hover{
  color:var(--white-color);
  border-color:rgba(var(--color-four-rgb), 1);
  background-color:rgba(var(--color-four-rgb), 1);
}

.price-block_one.style-two .price-block_one-button .price-one_button:hover{
  color:var(--white-color);
  border-color:rgba(var(--main-color-rgb), 1);
  background-color:rgba(var(--main-color-rgb), 1);
}

.price-block_one.style-three .price-block_one-button .price-one_button:hover{
  color:var(--white-color);
  border-color:rgba(var(--color-two-rgb), 1);
  background-color:rgba(var(--color-two-rgb), 1);
}

/*** 

====================================================================
  Booking One
====================================================================

***/

.booking-one{
  position:relative;
}

.booking-one .inner-container{
  position:relative;
  border-radius:24px;
  padding:80px 100px 70px 80px;
  background-color:#1e272e;
  background-repeat:repeat;
}

.booking-one_pattern{
  position:absolute;
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
  background-position:left top;
  background-repeat:no-repeat;
}

.booking-one_counter-outer{
  position:relative;
  display: flex;
    justify-content: end;
}

.booking-one .counter-column{
  position:relative;
}

/* Booking One Counter */

.booking-one_counter{
  position:relative;
  width:470px;
  z-index:10;
  height:240px;
  padding:40px 35px;
  border-radius:8px;
  background-color:var(--main-color);
  box-shadow:-10px -10px 0px rgba(244,131,31,0.20);
}

.booking-one_counter:before{
  position:absolute;
  content:'';
  left:-20px;
  top:-20px;
  right:20px;
  bottom:20px;
  border-radius:8px;
  background-color:rgba(244,131,31,0.20);
}

.booking-one_counter-title{
  position:relative;
  font-size:20px;
  font-weight:700;
  margin-bottom:20px;
  color:var(--white-color);
}

.booking-one_counter-title i{
  position:relative;
  margin-right:5px;
  top:-2px;
}

.time-countdown_two{
  position:relative;
}

.time-countdown_two .counter-column{
  position:relative;
  line-height: 1em;
  font-size:18px;
  z-index: 7;
  font-weight:700;
  text-align:center;
  margin-right:25px;
  border-radius: 0px;
  display: inline-block;
  color:var(--white-color);
  text-transform:capitalize;
}

.time-countdown_two .counter-column .count{
  position:relative;
  width:78px;
  height:82px;
  display:block;
  font-size:38px;
  line-height:30px;
  font-weight:800;
  border-radius:8px;
  margin-bottom:12px;
  padding:25px 0px 15px;
  color:var(--white-color);
  border:1px solid var(--white-color);
}

.time-countdown_two .counter-column:before{
  position:absolute;
  content:':';
  right:-20px;
  top:28px;
  font-size:50px;
  color:var(--white-color);
}

.time-countdown_two .counter-column:last-child::before{
  display:none;
}

.time-countdown_two .counter-column:last-child{
  margin-right:0px;
}

/*** 

====================================================================
  Testimonial Two
====================================================================

***/

.testimonial-two{
  position:relative;
  overflow:hidden;
  padding:50px 0px 50px;
}

.testimonial-two:before{
  position:absolute;
  content:'';
  left:0px;
  top:0px;
  width:15%;
  bottom:0px;
  z-index:10;
  background: var(--color-five);
  background: linear-gradient(to right, var(--color-five) 0%, rgba(var(--main-color-rgb), 0) 100%);
}

.testimonial-two:after{
  position:absolute;
  content:'';
  right:0px;
  top:0px;
  width:15%;
  bottom:0px;
  z-index:10;
  background: var(--color-five);
  background: linear-gradient(to left, var(--color-five) 0%, rgba(var(--main-color-rgb), 0) 100%);
}

.testimonial-two .swiper-slide.swiper-slide-active .testimonial-block_two-inner{
  background-color:var(--white-color);
  border-color:rgba(237, 47, 77);
}


.testimonial-two .testimonial-two_carousel-pagination{
  position: relative;
  left: 0px;
  right: 0px;
  z-index: 999;
  margin-top:20px;
  text-align: center;
}

.testimonial-two .swiper-pagination-bullet{
  position: relative;
  width: 10px;
  height: 10px;
  opacity: 1;
  margin: 0px 18px;
  border-radius: 50px;
  display:inline-block;
  border:2px solid transparent;
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  background-color: rgba(237, 47, 77, 0.20);
}

.testimonial-two .swiper-pagination-bullet:hover,
.testimonial-two .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: rgba(237, 47, 77, 1);
}

/* Testimonial Block Two */

.testimonial-block_two{
  position:relative;
  margin-bottom:30px;
}

.testimonial-block_two-inner{
  position:relative;
  padding:40px 25px;
  border-radius:8px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  border:2px dashed rgba(var(--main-color-rgb), 0.15);
}

.testimonial-block_two-inner:hover{
  background-color:var(--white-color);
  border-color:rgba(var(--main-color-rgb), 1);
}

.testimonial-block_two-quote{
  position:relative;
  line-height:1em;
  margin-bottom:35px;
}

.testimonial-block_two-quote{
width: 20%;
}

.testimonial-block_two-text{
  position:relative;
  font-size:22px;
  font-weight:700;
  line-height:34px;
  color:rgba(var(--color-four-rgb), 0.80);
}


.testimonial-block_two-author{
  position:relative;
  padding-left:90px;
  padding-top:12px;
  font-size:18px;
  font-weight:700;
  margin-top:35px;
  min-height:75px;
  color:rgba(var(--color-four-rgb), 0.80);
}

.testimonial-block_two-author_image{
  position:absolute;
  left:0px;
  top:0px;
  width:75px;
  height:75px;
  border-radius:50px;
  display:inline-block;
  border:2px solid var(--main-color);
}

.testimonial-block_two-author strong{
  position:relative;
  font-size:20px;
  display:block;
  font-weight:700;
  margin-bottom:5px;
  color:#1e272e;
  font-family: 'Quicksand', sans-serif;;
}

/*** 

====================================================================
  Faq One
====================================================================

***/

.faq-one{
  position:relative;
  margin-top: 60px;
  margin-bottom: 60px;
}

.faq-one.style-two{
  padding:110px 0px 70px;
}

.faq-one .sec-title{
  margin-bottom:30px;
}

.faq-one .sec-title_text{
  max-width: 500px;
}

.faq-one .outer-container{
  position:relative;
  max-width:1300px;
  margin:0 auto;
  border-radius:24px;
  padding:76px 80px 76px;
  background-color:var(--color-three);
}

.faq-one .auto-container{
  position:relative;
}

.faq-one .title-column{
  position:relative;
}

.faq-one .title-column .inner-column{
  position:relative;

  padding-right:30px;
}

.faq-one_options{
  position:relative;
  gap:20px;
}

.faq-one_button{
  position:relative;
}

.faq-one_button .theme-btn{
  position:relative;
  display:inline-block;
}

.faq-one_phone{
  position:relative;
  font-size:22px;
  font-weight:700;
  color:#1e272e;
}

.faq-one_phone i{
  position:relative;
  top:4px;
  margin-right:5px;
  color:var(--main-color);
}

.faq-one_phone:hover{
  color:var(--main-color);
}

/*** 

====================================================================
  Accordion Style
====================================================================

***/

.accordion-box{
  position:relative;
  z-index:1;
}

.accordion-box .block{
  position: relative;
  margin-bottom: 20px;
  border-radius:8px;
  padding: 25px 25px 25px 30px;
  border:1px solid rgba(var(--main-color-rgb), 0.15);
}

.accordion-box .block:last-child{
  margin-bottom:0px;
}



.accordion-box .block .acc-btn{
  position:relative;
  cursor:pointer;
  font-weight:700;
  font-size:20px;
  color: #1e272e;
  transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  font-family: 'Quicksand', sans-serif;;
}

.accordion-box p{
  line-height: 28px;
  font-size:18px;
  
  margin-bottom:10px;

}

.accordion-box p:last-child{
  margin-bottom: 0px;
}

.accordion-box .block .icon-outer{
  position:absolute;
  right:0px;
  top:0px;
  font-size:18px;
  color:var(--black-color);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  font-family: 'Font Awesome 5 Pro';
}

.accordion-box .block .icon-outer .icon{
    position: relative;
    right:0px;
    display: inline-block;
  color: var(--color-fourty);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}



.accordion-box .block .acc-btn.active .icon-outer .icon{
  transform:rotate(180deg);
  color:var(--white-color);
}

.accordion-box .block .acc-content{
  position:relative;
  display:none;
}

.accordion-box .block .acc-content .content-text{
  
}

.accordion-box .block .acc-content.current{
  display:block;  
}

.accordion-box .block .content{
  position:relative;
  padding:15px 0px 0px 0px;
  border-top:1px solid rgba(var(--white-color-rgb), 0.15);
}

/*** 

====================================================================
  Blog Two
====================================================================

***/

.blog-two{
  position:relative;
  padding:100px 0px 70px;
}

/* News Block Two */

.news-block_two{
  position:relative;
  margin-bottom:30px;
}

.news-block_two-inner{
  position:relative;
  border-radius:8px;
  padding:30px 28px;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  transition:all 500ms ease;
  background-color:var(--color-three);
}

.news-block_two-image{
  position:relative;
  border-radius:8px;
  overflow:hidden;
  background-color:var(--main-color);
}

.news-block_two-image img{
  position:relative;
  width:100%;
  display:block;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  transition:all 500ms ease;
}

.news-block_two-inner:hover .news-block_two-image img{
  opacity:0.80;
  transform:scale(1.06,1.06) rotate(2deg);
}

.news-block_two-image:before{
  position:absolute;
  content:'';
  left:0px;
  top:50%;
  bottom:0px;
  right:0px;
  z-index:1;
  background: #1e272e;
  background: linear-gradient(to top, var(--color-four) 0%, rgba(var(--main-color-rgb), 0) 100%);
}

.news-block_two-content{
  position:absolute;
  left:30px;
  bottom:30px;
  right:30px;
  z-index:2;
}

.news-block_two-meta{
  position:relative;
}

.news-block_two-meta li{
  position:relative;
  font-size:18px;
  margin-right:10px;
  padding-right:15px;
  display:inline-block;
  color:rgba(var(--white-color-rgb), 1);
}

.news-block_two-meta li:before{
  position:absolute;
  content:'';
  right:-1px;
  top:9px;
  width:6px;
  height:6px;
  border-radius:50px;
  background-color:var(--main-color);
}

.news-block_two-meta li:last-child{
  padding-right:0px;
  margin-right:0px;
}

.news-block_two-meta li:last-child::before{
  display:none;
}

.news-block_two-title{
  position:relative;
  font-weight:600;
  max-width:380px;
  margin-top:10px;
}

.news-block_two-title a{
  position:relative;
  color:var(--white-color);
}

.news-block_two-title a:hover{
  color:var(--main-color);
}

.news-block_two-more{
  position:relative;
  font-weight:600;
  font-size:18px;
  margin-top:18px;
  display:inline-block;
  color:var(--color-two);
}

.news-block_two-more i{
  position:relative;
  font-size:10px;
  font-weight:700;
}

.news-block_two-more:hover{
  color:var(--main-color);
}

/* News Block Three */

.news-block_three{
  position:relative;
  margin-bottom:30px;
}

.news-block_three-inner{
  position:relative;
  border-radius:8px;
  padding:30px 28px;
  gap:20px;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  transition:all 500ms ease;
  background-color:var(--color-three);
}

.news-block_three-inner:hover{
  box-shadow:0px 0px 25px rgba(244,131,31,0.35);
}

.news-block_three-image{
  position:relative;
  border-radius:8px;
  overflow:hidden;
  width:224px;
  background-color:var(--main-color);
}

.news-block_three-image img{
  position:relative;
  width:100%;
  display:block;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  transition:all 500ms ease;
}

.news-block_three-inner:hover .news-block_three-image img{
  opacity:0.80;
  transform:scale(1.06,1.06) rotate(2deg);
}

.news-block_three-image:before{
  position:absolute;
  content:'';
  left:0px;
  top:0px;
  bottom:0px;
  right:0px;
  z-index:1;
  opacity:0;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  transition:all 500ms ease;
  background: #1e272e;
  background: linear-gradient(to top, var(--color-four) 0%, rgba(var(--main-color-rgb), 0) 100%);
}

.news-block_three-inner:hover .news-block_three-image::before{
  top:50%;
  opacity:1;
}

.news-block_three-content{
  position:relative;
  max-width:325px;
}

.news-block_three-meta{
  position:relative;
}

.news-block_three-meta li{
  position:relative;
  font-size:18px;
  margin-right:10px;
  padding-right:15px;
  display:inline-block;
  color:rgba(var(--color-four-rgb), 1);
}

.news-block_three-meta li:before{
  position:absolute;
  content:'';
  right:-1px;
  top:9px;
  width:6px;
  height:6px;
  border-radius:50px;
  background-color:var(--main-color);
}

.news-block_three-meta li:last-child{
  padding-right:0px;
  margin-right:0px;
}

.news-block_three-meta li:last-child::before{
  display:none;
}

.news-block_three-title{
  position:relative;
  font-weight:600;
  max-width:360px;
  margin-top:8px;
}

.news-block_three-title a{
  position:relative;
  color:#1e272e;
}

.news-block_three-title a:hover{
  color:var(--main-color);
}

.news-block_three-text{
  position:relative;
  font-size:18px;
  opacity:0.80;
  line-height:24px;
  margin-top:12px;
  color:#1e272e;
}

.news-block_three-more{
  position:relative;
  font-weight:600;
  font-size:18px;
  margin-top:18px;
  display:inline-block;
  color:var(--color-two);
}

.news-block_three-more i{
  position:relative;
  font-size:10px;
  font-weight:700;
}

.news-block_three-more:hover{
  color:var(--main-color);
}





.gallery-one_block{
  position: relative;
}

.gallery-one_block-inner{
  position: relative;
  border-radius:8px;
  overflow:hidden;
}

.gallery-one_block-image{
  position: relative;
}

.gallery-one_block-image img{
  position: relative;
  width: 100%;
  display: block;
}

.gallery-one_block-overlay{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--color-four-rgb), 0.50);

  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease,-webkit-transform 0.4s ease;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
}

.gallery-one_block-inner:hover .gallery-one_block-overlay{
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}

.gallery-one_block-icon{
  position: relative;
  font-size: 36px;
  color: var(--white-color);
}

.gallery-one_block-icon:hover{
  color: var(--color-three);
}

/*** 

====================================================================
  Slider Three
====================================================================

***/

.slider-three{
  position:relative;
  background-color:#1e272e;
}

.slider-three-arrow{
  position: absolute;
  left: 30px;
  top: 50%;
  right:30px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.slider-three:hover .slider-three-arrow{
  opacity: 1;
}

.slider-three .main-slider-prev{
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  font-weight:600;
  font-size: 12px;
  cursor: pointer;
  line-height: 45px;
  text-align: center;
  border-radius:50px;
  display: inline-block;
  color: var(--main-color);
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  font-family: "flaticon_lamusiqueauxenfants-icons";
  border:2px solid rgba(var(--main-color-rgb), 0.20);
}

.slider-three .main-slider-prev:hover{
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.slider-three .main-slider-next:hover{
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.slider-three .main-slider-next::after,
.slider-three .main-slider-prev::after{
  display: none;
}

.slider-three .main-slider-next{
  position: absolute;
  right:0px;
  z-index: 1;
  width: 48px;
  height: 48px;
  font-size: 12px;
  cursor: pointer;
  line-height: 45px;
  text-align: center;
  font-weight:600;
  display: inline-block;
  color: var(--main-color);
  border-radius:50px;
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  font-family: "flaticon_lamusiqueauxenfants-icons";
  border:2px solid rgba(var(--main-color-rgb), 0.20);
}

.slider-three .swiper-slide{
  position:relative;
  overflow:hidden;
  padding:0px 0px 30px;
  background-size:cover;
}

.slider-three .swiper-slide:before{
  position:absolute;
  content:'';
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
  opacity:0.83;
  background-color:#1e272e;
}

.slider-three .swiper-slide:after{
  position:absolute;
  content:'';
  left:0px;
  height:18px;
  right:0px;
  bottom:-9px;
  background:url(../images/main-slider/shape.png) repeat-x;
  animation: 50s linear 0s infinite normal none running slide;
}

@keyframes slide{
  from { background-position: 0 0; }
    to { background-position: 3000px 0; }
}

.slider-three_icon-one{
  position: absolute;
  left: -110px;
  top:12%;
  z-index: 1;
  width: 253px;
  height: 152px;
  background-repeat:no-repeat;
}

.slider-three_icon-two{
  position: absolute;
  right: 11%;
  top:45%;
  z-index: 1;
  width: 48px;
  height: 54px;
  background-repeat:no-repeat;
}

.slider-three_content{
  position:relative;
  z-index: 2;
}

.slider-three_content-inner{
  position:relative;
  padding-top: 300px;
  padding-right:100px;
}

.slider-three_heading{
  margin-top: 12px;
  margin-bottom:25px;
  color: var(--white-color);
  text-transform: capitalize;

  transition:all 900ms ease;
  -moz-transition:all 900ms ease;
  -webkit-transition:all 900ms ease;
  -ms-transition:all 900ms ease;
  -o-transition:all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-three_heading span{
  color: var(--main-color);
}

.slider-three .swiper-slide-active .slider-three_heading{
  -webkit-transition-delay: 800ms;
  -moz-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  transition-delay: 800ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-three_text{
  position: relative;
  font-size: 18px;
  opacity:0.80;
  line-height: 30px;
  max-width:520px;
  margin-bottom:25px;
  color: var(--color-three);

  transition:all 900ms ease;
  -moz-transition:all 900ms ease;
  -webkit-transition:all 900ms ease;
  -ms-transition:all 900ms ease;
  -o-transition:all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-three .swiper-slide-active .slider-three_text{
  -webkit-transition-delay: 1100ms;
  -moz-transition-delay: 1100ms;
  -ms-transition-delay: 1100ms;
  -o-transition-delay: 1100ms;
  transition-delay: 1100ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-three .slider-three_button{
  position: relative;
  gap: 22px;
  display:inline-block;
  transition:all 900ms ease;
  -moz-transition:all 900ms ease;
  -webkit-transition:all 900ms ease;
  -ms-transition:all 900ms ease;
  -o-transition:all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-three .swiper-slide-active .slider-three_button{
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-three_rating{
  position:relative;
  font-size:18px;
  font-weight:500;
  color:rgba(var(--color-three-rgb), 0.80);
}

.slider-three_rating i{
  position:relative;
  font-size:16px;
  color:#FFC727;
  margin-bottom:8px;
  display:inline-block;
}

.slider-three_image-column{
  position:relative;
}

.slider-three_image-outer{
  position:relative;
}

.slider-three_image{
  position: relative;
  z-index: 10;
  opacity:0;
  text-align:right;
  transform:translateX(200px);
  transition:all 900ms ease;
  -moz-transition:all 900ms ease;
  -webkit-transition:all 900ms ease;
  -ms-transition:all 900ms ease;
  -o-transition:all 900ms ease;
}

.slider-three_image img{
  position: relative;
  max-width:inherit;
}

.slider-three .swiper-slide-active .slider-three_image{
  opacity:1;
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
  transform:translateX(0px);
}

.slider-three .slider-one_pagination{
  position: absolute;
  left: 50%;
  right: 0px;
  bottom: 60px;
  z-index: 999;
  text-align: left;
  max-width:1300px;
  transform:translateX(-50%);
}

.slider-three .swiper-pagination-bullet{
  position: relative;
  width: 10px;
  height: 10px;
  opacity: 1;
  margin: 0px 18px;
  border-radius: 50px;
  border:2px solid transparent;
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  background-color: rgba(var(--white-color-rgb), 0.20);
}

.slider-three .swiper-pagination-bullet:hover,
.slider-three .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: rgba(var(--white-color-rgb), 1);
}

/*** 

====================================================================
  Services Three
====================================================================

***/

.services-three{
  position:relative;
  padding:100px 0px 90px;
}

.services-three .program-one_carousel-pagination{
  position: relative;
  text-align: center;
  margin-top:20px;
}

.services-three .swiper-pagination-bullet{
  position: relative;
  width: 10px;
  height: 10px;
  opacity: 1;
  margin: 0px 18px;
  border-radius: 50px;
  display:inline-block;
  border:2px solid transparent;
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  background-color: rgba(var(--main-color-rgb), 0.20);
}

.services-three .swiper-pagination-bullet:hover,
.services-three .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: rgba(var(--main-color-rgb), 1);
}

.service-block_three{
  position:relative;
  margin-bottom:30px;
}

.service-block_three-inner{
  position:relative;
  padding:30px 30px;
  border-radius:8px;
  overflow:hidden;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  background-color:var(--color-three);
  border:2px dashed transparent;
}

.service-block_three-inner:hover{
  border-color:var(--main-color);
}

.service-block_three-stars{
  position:absolute;
  right:30px;
  top:30px;
  width:30px;
  height:44px;
  opacity:0;
}

.service-block_three-inner:hover .service-block_three-stars{
  opacity:1;
}

.service-block_three-icon{
  position:relative;
  width:80px;
  height:80px;
  font-size:40px;
  line-height:86px;
  text-align:center;
  border-radius:50px;
  color:var(--white-color);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  background-color:var(--main-color);
}

.service-block_three-inner:hover .service-block_three-icon{
  color:var(--white-color);
  background-color:var(--main-color);
  transform:rotateY(180deg);
}

.service-block_three-title{
  position:relative;
  margin-top:24px;
  font-weight:700;
}

.service-block_three-title a{
  position:relative;
  color:#1e272e;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.service-block_three-title a:hover{
  color:var(--main-color);
}

.service-block_three-inner:hover .service-block_three-more,
.service-block_three-inner:hover .service-block_three-text,
.service-block_three-inner:hover .service-block_three-title a{
  
}

.service-block_three-text{
  position:relative;
  font-size:18px;
  opacity:0.80;
  line-height:26px;
  margin-top:18px;
  font-weight:700;
  color:#1e272e;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.service-block_three-more{
  position:relative;
  font-size:18px;
  font-weight:700;
  line-height:24px;
  margin-top:22px;
  display:inline-block;
  color:#1e272e;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.service-block_three-more i{
  position:relative;
  font-size:10px;
  font-weight:800;
}

.service-block_three-more:hover{
  color:var(--main-color);
}

/* Style Two */

.service-block_three.style-two .service-block_three-inner:hover{
  border-color:var(--color-two);
}

.service-block_three.style-two .service-block_three-icon{
  background-color:var(--color-two);
}

.service-block_three.style-two .service-block_three-more:hover{
  color:var(--color-two);
}

.service-block_three.style-two .service-block_three-title a:hover{
  color:var(--color-two);
}

/* Style Three */

.service-block_three.style-three .service-block_three-inner:hover{
  border-color:var(--color-seven);
}

.service-block_three.style-three .service-block_three-icon{
  background-color:var(--color-seven);
}

.service-block_three.style-three .service-block_three-more:hover{
  color:var(--color-seven);
}

.service-block_three.style-three .service-block_three-title a:hover{
  color:var(--color-seven);
}

/*** 

====================================================================
  CTA One
====================================================================

***/

.cta-one{
  position:relative;
  margin-top:-141px;
}

.cta-one .inner-container{
  position:relative;
  padding:51px 55px;
  border-radius:16px;
  background-color:var(--color-two);
}

.cta-one_title-column{
  position:relative;
}

.cta-one_title-outer{
  position:relative;
}

.cta-one_title{
  position:relative;
  color:var(--white-color);
}

.cta-one_text{
  position:relative;
  margin-top:20px;
  font-size:18px;
  line-height:26px;
  color:var(--color-three);
}

.cta-one_counter-column{
  position:relative;
}

.cta-one_counter-outer{
  position:relative;
  padding-left:60px;
  border-left:1px dashed rgba(var(--white-color-rgb), 0.40);
}

.cta-one_authors{
  position:relative;
  margin-left:30px;
}

.cta-one_authors li{
  position:relative;
  width:64px;
  height:64px;
  overflow:hidden;
  border-radius:50px;
  margin-left:-30px;
  border-radius:50px;
  display:inline-block;
  border:2px solid var(--main-color);
}

.cta-one_authors li a{
  position:absolute;
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
  display:block;
  line-height:64px;
  text-align:center;
  color:var(--white-color);
  background-color:rgba(var(--main-color-rgb), 0.60);
}

.cta-one_views{
  position:relative;
  margin-top:45px;
  font-size:18px;
  color:var(--color-three);
}

.cta-one_views strong{
  position:relative;
  display:block;
  font-weight:700;
  font-size:24px;
  margin-bottom:10px;
  color:var(--white-color);
}

.cta-one_counter{
  position:relative;
  width:260px;
  z-index:10;
  text-align: right;
  border-left:1px dashed rgba(var(--white-color-rgb), 0.40);
}

.cta-one_counter .time-countdown{
  position:relative;
}

.cta-one_counter .time-countdown .counter-column{
  position:relative;
  line-height: 1em;
  font-size:12px;
  z-index: 7;
  font-weight:500;
  text-align:center;
  margin-right:12px;
  border-radius: 0px;
  text-align: center;
  display: inline-block;
  color:var(--white-color);
  text-transform:capitalize;
  color:rgba(var(--color-three-rgb), 0.90);
}

.cta-one_counter .time-countdown .counter-column .count{
  position:relative;
  width:42px;
  height:42px;
  display:block;
  font-size:22px;
  line-height:30px;
  font-weight:800;
  border-radius:5px;
  margin-bottom:7px;
  padding:7px 0px 15px;
  color:var(--white-color);
  background-color:var(--main-color);
}

.cta-one_counter .time-countdown .counter-column:before{
  position:absolute;
  content:':';
  right:-11px;
  top:13px;
  font-size:30px;
  color:var(--white-color);
}

.cta-one_counter .time-countdown .counter-column:last-child::before{
  display:none;
}

.cta-one_counter .time-countdown .counter-column:last-child{
  margin-right:0px;
}

.cta-one_counter-button{
  position:relative;
  margin-top:40px;
}

.cta-one_counter-button .buy-btn{
  position:relative;
  padding:16px 28px;
  font-size:18px;
  font-weight:600;
  border-radius:50px;
  display:inline-block;
  color:var(--white-color);
  border:1px solid var(--white-color);
}

.cta-one_counter-button .buy-btn i{
  position:relative;
  font-size:12px;
  margin-left:5px;
}

.cta-one_counter-button .buy-btn:hover{
  color:var(--color-two);
  background-color:var(--white-color);
}

/*** 

====================================================================
  Testimonial Three
====================================================================

***/

.testimonial-three{
  position:relative;
  padding:100px 0px 100px;
}

.testimonial-three .bx-controls-direction{
  position:relative;
  display:none;
}

.testimonial-three .carousel-column{
  position:relative;
}

.testimonial-three .carousel-column .carousel-outer{
  position:relative;
  padding-right:6px;
}

/* Testimonial Block Three */

.testimonial-block_three{
  position:relative;
  margin-bottom:30px;
}

.testimonial-block_three-inner{
  position:relative;
  padding:35px 30px;
  border-radius:8px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  background-color:var(--color-three);
}

.testimonial-block_three-quote{
  position:absolute;
  right:30px;
  top:30px;
  line-height:1em;
  margin-bottom:35px;
}

.testimonial-block_three-text{
  position:relative;
  font-size:20px;
  font-weight:400;
  line-height:30px;
  margin-top:25px;
  color:rgba(var(--color-four-rgb), 1);
}

.testimonial-block_three-author{
  position:relative;
  padding-left:90px;
  padding-top:12px;
  font-size:18px;
  font-weight:400;
  min-height:75px;
  color:rgba(var(--color-four-rgb), 0.80);
}

.testimonial-block_three-author_image{
  position:absolute;
  left:0px;
  top:0px;
  width:74px;
  height:74px;
  border-radius:50px;
  display:inline-block;
  border:2px solid var(--main-color);
}

.testimonial-block_three-author strong{
  position:relative;
  font-size:20px;
  display:block;
  font-weight:600;
  margin-bottom:5px;
  color:#1e272e;
  font-family: 'Quicksand', sans-serif;;
}

.testimonial-block_three-rating{
  position:relative;
  color:#FFC727;
  margin-top:30px;
}


.testimonial-three .pagers-column{
  position:relative;
}

.testimonial-three .pagers-column .inner-column{
  position:relative;
  text-align:right;
}

.testimonial-three .pagers-column .circle-one{
  position:absolute;
  right:0px;
  top:0px;
  width:530px;
  height:530px;
  background:url(../images/background/circle.png) no-repeat;
}

.testimonial-three .pagers-column .circle-two{
  position:absolute;
  left:54%;
  top:-20px;
  width:44px;
  height:44px;
  border-radius:50px;
  border:10px solid var(--color-six);
  background-color: var(--color-five);
}

.testimonial-three .pagers-column .circle-three{
  position:absolute;
  left: 20%;
    top: 72%;
  width:44px;
  height:44px;
  border-radius:50px;
  border:10px solid var(--main-color);
  background-color: var(--color-five);
}

.testimonial-three .pagers-column .circle-four{
  position:absolute;
  right:6.2%;
  top:79%;
  width:44px;
  height:44px;
  border-radius:50px;
  border:10px solid var(--color-two);
  background-color: var(--color-five);
}

.testimonial-three .testimonial-pager_thumbs{
  position:relative;
  min-height:530px;
}

.testimonial-three .testimonial-pager_thumbs .pager-item:nth-child(1){
  position:absolute;
  left: 14%;
    top: 12%;
  width:120px;
  height:120px;
  overflow:hidden;
  border-radius:50%;
}

.testimonial-three .testimonial-pager_thumbs .pager-item:nth-child(2){
  position:absolute;
  right:0px;
  top:60px;
  width:120px;
  height:120px;
  overflow:hidden;
  border-radius:50%;
}

.testimonial-three .testimonial-pager_thumbs .pager-item:nth-child(3){
  position:absolute;
  left:35%;
  bottom:-40px;
  width:120px;
  height:120px;
  overflow:hidden;
  border-radius:50%;
}

.testimonial-three .testimonial-pager_thumbs .pager-item:nth-child(4){
  position:absolute;
  left:50%;
  top:50%;
  width:327px;
  height:330px;
  border-radius:50%;
  transform:translateX(-35%) translateY(-50%);
}

.testimonial-three .testimonial-pager_thumbs .pager-item:nth-child(4) img{
  position:relative;
  overflow:hidden;
}

.testimonial-three .testimonial-pager_thumbs .pager-item:nth-child(4)::before{
  position:absolute;
  content:'';
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
  border-radius:50%;
  box-shadow:7px 8px 0px rgba(244,131,31,1);
}

/*** 

====================================================================
  Price Two
====================================================================

***/

.price-two{
  position:relative;
}

.price-two .outer-container{
  position:relative;
  max-width:1760px;
  margin:0 auto;
  border-radius:24px;
  padding:100px 0px 210px;
  background-color:#1e272e;
}

/*** 

====================================================================
  Counter One
====================================================================

***/

.counter-one{
  position:relative;
  z-index:1;
}

.counter-one .inner-container{
  position:relative;
  overflow:hidden;
  margin-top:-137px;
  border-radius:16px;
  padding:60px 30px 30px;
  background-size:cover;
}

.counter-block_one{
  position: relative;
  z-index:1;
  margin-bottom: 30px;
}

.counter-block_one-inner{
  position: relative;
  text-align:center;
  border-right:1px dashed rgba(var(--white-color-rgb), 0.30);
}

.counter-block_one:last-child .counter-block_one-inner{
  border:none;
}

.counter-block_one-inner:hover .counter-block_one-icon{
  transform: rotateY(180deg);
}

.counter-block_one-icon{
  position: relative;
  line-height: 1em;
  font-size: 50px;
  color: var(--white-color);
  font-family: "flaticon_lamusiqueauxenfants-icons";
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}

.counter-block_one-counter{
  position: relative;
  line-height: 1em;
  font-weight: 700;
  font-size: 48px;
  margin-top:12px;
  color: var(--color-three);
}

.counter-block_one-text{
  position: relative;
  font-size: 18px;
  margin-top: 5px;
  font-weight:500;
  text-transform:capitalize;
  color: var(--color-three);
}

/*** 

====================================================================
  Team Two
====================================================================

***/

.team-two{
  position:relative;
  padding:100px 0px 70px;
}

.team-block_two{
  position:relative;
  margin-bottom:30px;
}

.team-block_two-inner{
  position:relative;
  text-align:center;
  overflow:hidden;
  border-radius:10px;
  background-color:var(--color-three);
  box-shadow:0px 0px 20px rgba(0,0,0,0.10);
}

.team-block_two-image{
  position:relative;
  overflow:hidden;
}

.team-block_two-image img{
  position:relative;
  width:100%;
  display:block;
}

.team-block_two-image:before{
  position:absolute;
  content:'';
  left:0px;
  bottom:-7px;
  right:0px;
  height:12px;
  z-index:1;
  background:url(../images/background/pattern-4.png) repeat-x;
}

.team-block_two-content{
  position:relative;
  margin-top:22px;
  padding-bottom:25px;
}

.team-block_two-heading{
  position:relative;
  font-weight:700;
  font-size:20px;
}

.team-block_two-heading a{
  position:relative;
  color:#1e272e;
}

.team-block_two-heading a:hover{
  color:var(--main-color);
}

.team-block_two-designation{
  position:relative;
  font-weight:400;
  font-size:16px;
  opacity:0.80;
  margin-top:2px;
  color:#1e272e;
  text-transform:capitalize;
}

.team-block_two-overlay{
  position:absolute;
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
  display:flex;
  align-items: end;
    justify-content: center;
  
    justify-content: center;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease,-webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
}

.team-block_two-overlay:before{
  position:absolute;
  content:'';
  left:0px;
  top:50%;
  bottom:0px;
  right:0px;
  z-index:1;
  opacity:0.50;
  background: #1e272e;
  background: linear-gradient(to top, var(--color-four) 0%, rgba(var(--main-color-rgb), 0) 100%);
}

.team-block_two-inner:hover .team-block_two-overlay{
  -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

.team-block_two-inner:hover .team-block_two-socials{
  bottom:30px;
  opacity:1;
}

.team-block_two-socials{
  position:relative;
  z-index:2;
  opacity:0;
  bottom:-80px;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}

.team-block_two-socials a{
  position:relative;
  width:40px;
  height:40px;
  font-size:18px;
  margin:0px 3px;
  line-height:38px;
  border-radius:50px;
  text-align:center;
  display:inline-block;
  color:var(--white-color);
  border:1px solid var(--white-color);
}

.team-block_two-socials a:hover{
  color:var(--white-color);
  border-color:var(--main-color);
  background-color:var(--main-color);
}

/*** 

====================================================================
  Instagram One
====================================================================

***/

.instagram-one{
  position:relative;
}

.instagram-one.style-two{
  padding-bottom:120px;
}

.appScreenshot-arrow{
  position: absolute;
  left: 10px;
  top: 40%;
  right:10px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.instagram-one .appScreenshot-slider-prev{
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  font-weight:600;
  font-size: 12px;
  cursor: pointer;
  line-height: 45px;
  text-align: center;
  border-radius:50px;
  display: inline-block;
  color: #1e272e;
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  font-family: "flaticon_lamusiqueauxenfants-icons";
  background-color: var(--white-color);
  border: 2px solid rgba(var(--white-color), 1);
}

.instagram-one .appScreenshot-slider-prev:hover{
  color: var(--white-color);
  border-color: #1e272e;
  background-color: #1e272e;
}

.instagram-one .appScreenshot-slider-next:hover{
  color: var(--white-color);
  border-color: #1e272e;
  background-color: #1e272e;
}

.instagram-one .appScreenshot-slider-next::after,
.instagram-one .appScreenshot-slider-prev::after{
  display: none;
}

.instagram-one .appScreenshot-slider-next{
  position: absolute;
  right:30px;
  z-index: 1;
  width: 48px;
  height: 48px;
  font-size: 12px;
  cursor: pointer;
  line-height: 45px;
  text-align: center;
  font-weight:600;
  display: inline-block;
  color: #1e272e;;
  border-radius:50px;
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  font-family: "flaticon_lamusiqueauxenfants-icons";
  background-color: var(--white-color);
  border: 2px solid rgba(var(--white-color), 1);
}

.instagram-one .appScreenshot-pagination{
  position: relative;
  z-index: 999;
  margin-top:45px;
  text-align: center;
}

.instagram-one .swiper-pagination-bullet{
  position: relative;
  width: 10px;
  height: 10px;
  opacity: 1;
  margin: 0px 18px;
  border-radius: 50px;
  border:2px solid transparent;
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  background-color: rgba(237, 47, 77, 0.20);
}

.instagram-one .swiper-pagination-bullet:hover,
.instagram-one .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: rgba(237, 47, 77);
}

.instagram-one .swiper-slide-shadow-left,
.instagram-one .swiper-slide-shadow-right{
  display:none;
}

.instagram-one .swiper-slide.swiper-slide-prev .image{
  position:relative;
  opacity:0.50;
  margin-top:60px;
  filter: grayscale(200%);
}

.instagram-one .swiper-slide.swiper-slide-next .image{
  position:relative;
  opacity:0.50;
  margin-top:60px;
  filter: grayscale(200%);
}

.instagram-one .swiper-slide.swiper-slide-active .image{
  width:848px;
  margin-top:0px;
  border-radius:8px;
  margin-left:-100px;
  border:7px solid var(--white-color);
}

.instagram-one .outer-container{
  position:relative;
  max-width:1760px;
  margin:0 auto;
  border-radius:24px;
  padding:20px 0px 0px;
  
}

.instagram-one .title-box{
  position:relative;
}

.instagram-one .title-box .icon{
  position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    font-size: 34px;
    line-height: 80px;
    text-align: center;
    border-radius: 50px;
    color: var(--white-color);
    background-color: var(--main-color);
}

.instagram-one .title-box h2{
  position: relative;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 40px;
    color: #1e272e;
}

.instagram-one .title-box h2 span{
  position: relative;
  color: var(--main-color);
}

.instagram-one .swiper-wrapper{
  
}

/***

====================================================================
  Page Title
====================================================================

***/

.page-title{
  position:relative;
  text-align:center;
  padding:100px 0px 200px;
  background-color:#1e272e;
}

.page-title .color-one{
  position: absolute;
  left: -5%;
  top: -10%;
  width: 248px;
  height: 248px;
  opacity:0.10;
  border-radius:250px;
  background-color:var(--white-color);
}

.page-title .color-two{
  position: absolute;
  left: 12%;
  top: 60%;
  width: 16px;
  height: 16px;
  border-radius:50px;
  color:var(--color-two);
  font-size: 18px;
  opacity: 0.80;
}

.page-title .color-three{
  position: absolute;
  left: 70%;
  top: 52%;
  width: 31px;
  height: 31px;
  border-radius:50px;
  color:var(--main-color);
  font-size: 20px;
  opacity: 0.80;
}

.page-title .color-four{
  position: absolute;
  right: -2%;
  top: 60%;
  width: 146px;
  height: 146px;
  opacity:0.10;
  border-radius:250px;
  background-color:var(--white-color);
  font-size: 150px;
}

.page-title h2{
  font-weight:600;
  color:var(--white-color);
  text-transform:capitalize;
}

.page-title .bread-crumb{
  position: relative;
  margin-top:25px;
  display: inline-block;
}

.page-title .bread-crumb li{
  position: relative;
  font-weight: 400;
  font-size: 18px;
  letter-spacing:0.4px;
  margin-right: 15px;
  padding-right: 15px;
  display:inline-block;
  color:var(--main-color);
}

.page-title .bread-crumb li:before{
  position: absolute;
  right: -6px;
  top:2px;
    content: "\f105";
  font-weight: 800;
  font-size: 16px;
  color:var(--color-three);
  font-family: 'Font Awesome 6 Free';
}

.page-title .bread-crumb li:last-child{
  padding-right: 0;
  margin-right: 0;
}

.page-title .bread-crumb li:last-child:before{
  display: none;
}


.page-title .bread-crumb li i{
  position: relative;
  top:1px;
  margin-right:3px;
  font-family: "flaticon_lamusiqueauxenfants-icons";
}

.page-title .bread-crumb li a{
  color:rgba(var(--color-three-rgb), 0.80);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease; 
}

.page-title .bread-crumb li a:hover{
  color:var(--main-color);
}

/***

====================================================================
  Value One
====================================================================

***/

.value-one{
  position:relative;
  padding:100px 0px 70px;
}

.value-one_content-column{
  position:relative;
  margin-bottom:30px;
}

.value-one_content-outer{
  position:relative;
}

.value-one_icon{
  position:absolute;
  right:1%;
  bottom:30%;
  width:53px;
  height:49px;
}

.value-block_one{
  position:relative;
  margin-bottom:20px;
}

.value-block_one-inner{
  position:relative;
  padding:25px 25px;
  max-width:500px;
  border-radius:8px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
    border: 1px solid rgba(var(--main-color-rgb), 0.10);
}

.value-block_one-inner:hover{
  border-color:var(--white-color);
  background-color:var(--white-color);
}

.value-block_one-content{
  position:relative;
  padding-left:35px;
}

.value-block_one-number{
  position:absolute;
  left:0px;
  top:5px;
  font-size:20px;
  font-weight:700;
  color:var(--main-color);
}

.value-block_one-heading{
  position:relative;
  font-weight:600;
  font-size:20px;
  color:#1e272e;
}

.value-block_one-inner p{
  position:relative;
  margin-top:5px;
  font-size:18px;
  line-height:24px;
  margin-bottom:0px;
  color:rgba(var(--color-four-rgb), 0.80);
}

.value-one_image-column{
  position:relative;
  margin-bottom:30px;
}

.value-one_image-outer{
  position:relative;
  text-align:right;
}

/*** 

====================================================================
  Program Three
====================================================================

***/

.program-three{
  position:relative;
  padding:100px 0px 70px;
}

.program-three .program-block_one-inner:hover{
  box-shadow: 0px 0px 25px rgba(244,131,31,0.35);
}

.program-three .program-block_one-join:hover{
  color:var(--color-two);
}

/*** 

====================================================================
  Program Detail
====================================================================

***/



.program-detail{
  position:relative;
  
}

.program-block_four{
  position:relative;
}

.program-block_four-inner{
  position:relative;
}

.program-block_four-image_column{
  position:relative;

}

.program-block_four-image_outer{
  position:relative;
}

.program-block_four-image{
  position:relative;
}

.program-block_four-image img{
  position:relative;
  overflow:hidden;
  border-radius:18px;
}

.program-block_four-content_column{
  position:relative;
  margin-bottom:30px;
}

.program-block_four-content-outer{
  position:relative;
  border-radius:16px;
  padding:35px 30px 30px;
  background-color:var(--color-three);
}

.program-block_four-title{
  font-size:44px;
  line-height:54px;
  font-weight:600;
  margin-bottom:20px;
  color:#1e272e;
}
.partners-block_four-title{
  font-size:34px;
  line-height:54px;
  font-weight:600;
  margin-bottom:20px;
  color:#1e272e;
}

section.partners ul.program-block_five-list i {
  color: var(--color-two)!important; background-color: unset!important;
}
section.partners{
   position: relative;
    padding: 60px 0px 50px;

}
   
.program-block_four-content-outer p{
  position:relative;
  font-size:18px;
  opacity:0.80;
  line-height:26px;
  margin-bottom:20px;
  color:#1e272e;
}

.program-detail .price-box{
  position:relative;
  padding:20px 20px;
  margin-top:25px;
  border-radius:10px;
  background-color:rgba(var(--color-two-rgb), 0.08);
}

.price-author_box{
  position:relative;
}

.price-author_box-inner{
  position:relative;
  min-height:75px;
  font-size:18px;
  padding-top:10px;
  padding-left:90px;
  color:rgba(var(--color-four-rgb), 0.80);
}

.price-author_box-image{
  position:absolute;
  left:0px;
  top:0px;
  width:75px;
  height:75px;
  overflow:hidden;
  border-radius:50px;
  display:inline-block;
  border:3px solid var(--color-two);
}

.price-author_box-inner strong{
  position:relative;
  display:block;
  font-size:22px;
  font-weight:600;
  margin-bottom:8px;
  color:#1e272e;
  font-family: 'Quicksand', sans-serif;;
}

.price-box_list{
  position:relative;
  display:flex;
  flex-wrap:inherit;
  align-items:center;
}

.price-box_list li{
  position:relative;
  font-size:18px;
  padding-left:25px;
  margin-left:20px;
  border-left:2px dashed rgba(var(--color-two-rgb), 0.20);
  color:rgba(var(--color-four-rgb), 0.80);
}

.price-box_list li strong{
  position:relative;
  display:block;
  font-weight:600;
  font-size:20px;
  margin-bottom:5px;
  color:#1e272e;
  font-family: 'Quicksand', sans-serif;;
}

/*** 

====================================================================
  Program Infos
====================================================================

***/

.program-infos{
  position:relative;
  padding:50px 0px 50px;
}

.info-block_one{
  position:relative;
  margin-bottom:30px;
}

.info-block_one-inner{
  position:relative;
  text-align:center;
  border-radius:8px;
  overflow:hidden;
  padding:26px 15px 26px;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  border:1px solid rgba(var(--main-color-rgb), 0.10);
  background-color: white;
}



.info-block_one-inner:hover{
  border-color:var(--color-three);
}

.info-block_one-inner:hover::before{
  opacity:1;
  transform:scale(1,1);
}

.info-block_one-icon{
  position:relative;
  width:68px;
  height:68px;
  margin:0 auto;
  display:block;
  font-size:34px;
  line-height:68px;
  border-radius:50px;
  color:white;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  font-family: "flaticon_lamusiqueauxenfants-icons";
  background-color:rgba(237, 47, 77);
}

.info-block_one-inner:hover .info-block_one-icon{
  color:var(--white-color);
  background-color:rgba(237, 47, 77);
}

.info-block_one-title{
  position:relative;
  font-weight:700;
  margin-top:18px;
  color:#1e272e;
}

.info-block_one-text{
  position:relative;
  margin-top:10px;
  font-size:18px;
  opacity:0.80;
  color:#1e272e;
}



.program-block_five{
  position:relative;
}

.program-block_five-inner{
  position:relative;
}

.program-block_five-image_column{
  position:relative;
  margin-bottom:30px;
}

.program-block_five-image_outer{
  position:relative;
}

.program-block_five-image{
  position:relative;
}

.program-block_five-image img{
  position:relative;
  overflow:hidden;
  border-radius:18px;
}

.program-block_five-content_column{
  position:relative;
  margin-bottom:30px;
}

.program-block_five-content-outer{
  position:relative;
  border-radius:16px;
  padding:45px 30px 30px;
  background-color:var(--color-three);
}

.program-block_five-title{
  font-size:44px;
  line-height:54px;
  font-weight:600;
  margin-bottom:25px;
  color:#1e272e;
}

.program-block_five-content-outer p{
  position:relative;
  font-size:18px;
  opacity:0.80;
  line-height:26px;
  margin-bottom:30px;
  color:#1e272e;
}

.program-block_five-list{
  position:relative;
}

.program-block_five-list li{
  position:relative;
  font-size:18px;
  
  margin-bottom:20px;
  padding-left:28px;
  color:#1e272e;
  opacity: 0.80;
}

.program-block_five-list li i{
  position:absolute;
  left:0px;
  top:0px;
  width:20px;
  height:20px;
  font-size:12px;
  border-radius:50px;
  line-height:24px;
  text-align:center;
  color:white;
  background-color: var(--color-two);
}

.program-block_five-button{
  position:relative;
  margin-top:30px;
}

/*** 

====================================================================
  Schedule One
====================================================================

***/

.schedule-one{
  position:relative;
 
}

.schedule-one_column{
  position:relative;
  margin-bottom:30px;
}

.schedule-one_column-inner{
  position:relative;
  overflow:hidden;
  border-radius:8px;
  background-color:rgba(var(--main-color-rgb), 0.10);
}

.schedule-one_title{
  position:relative;
  padding:18px 0px;
  background-color:#1e272e;
}


.schedule-one_title h4{
  position:relative;
  padding-left: 30px;
  color:var(--white-color);
}

.schedule-one_list{
  position:relative;
}

table.schedule-one_column-inner td{
  position:relative;
  padding:23px 30px;
  font-size:18px;
  color:#1e272e;
  border-bottom:1px solid rgba(var(--main-color-rgb), 0.10);
  opacity: 0.80;
}

table.schedule-one_column-inner p {
  margin-bottom: inherit!important;
}

.schedule-one_list span{
  position:absolute;
  left:50%;
  padding-left:40px;
}

.schedule-one_list li:before{
  position:absolute;
  content:'';
  left:50%;
  top:0px;
  bottom:0px;
  width:1px;
  opacity:0.10;
  border-right:1px solid rgba(var(--main-color-rgb), 1);
}

.schedule-one_list li:last-child{
  border-bottom:none;
}









.schedule-one_list li {
  display: flex;
  flex-wrap: wrap; /* Allow content to wrap */
  align-items: flex-start; /* Align items to the top for a natural flow */
  justify-content: space-between; /* Space out elements */
  padding: 23px 30px;
  font-size: 18px;
  color: #1e272e;
  border-bottom: 1px solid rgba(var(--main-color-rgb), 0.10);
  opacity: 0.80;
}

.schedule-one_list strong {
  flex-shrink: 0; /* Prevent date from shrinking */
  width: 25%; /* Ensure date has a fixed width */
  min-width: 120px; /* Ensure a minimum width for date */
}

.schedule-one_list span {
  flex-grow: 1; /* Let span take up remaining space */
  max-width: 70%; /* Prevent span from growing too large */
  margin-left: 20px; /* Add spacing */
  word-break: break-word; /* Break long words */
  overflow-wrap: break-word; /* Break long words consistently */
}

.schedule-one_list span p {
  margin: 0; /* Remove default paragraph margins */
  white-space: normal; /* Allow wrapping */
}

@media (max-width: 768px) {
  .schedule-one_list li {
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align content to the start */
  }

  .schedule-one_list strong {
    width: 100%; /* Make the date span the full width */
    margin-bottom: 10px; /* Add spacing between date and activity */
  }

  .schedule-one_list span {
    max-width: 100%; /* Allow span to occupy full width */
    margin-left: 0; /* Remove margin */
  }
}







/*** 

====================================================================
  Blog Three
====================================================================

***/

.blog-three{
  position:relative;
  padding:100px 0px 80px;
}

/*** 

====================================================================
  Styled Pagination
====================================================================

***/

.styled-pagination{
  position:relative;
  margin-top: 20px;
}

.styled-pagination li{
  position:relative;
  margin-right:5px;
  display:inline-block;
}

.styled-pagination li a{
  position:relative;
  display:inline-block;
  line-height:48px;
  height:50px;
  width:50px;
  min-width:50px;
  font-weight:600;
  text-align:center;
  font-size:18px;
  border-radius: 50px;
  color:#1e272e;
  text-transform:capitalize;
  transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  border: 1px solid rgba(var(--main-color-rgb), 0.15);
}

.styled-pagination li.prev a,
.styled-pagination li.next a{
  
}

.styled-pagination li a:hover,
.styled-pagination li a.active{
  color:var(--white-color);
  border-color:var(--main-color);
  background-color:var(--main-color);
}

/***

====================================================================
  Sidebar Page Container
====================================================================

***/

.sidebar-page-container{
  position:relative;
  padding:100px 0px 70px;
}

.sidebar-page-container .content-side,
.sidebar-page-container .sidebar-side{
  margin-bottom:30px;
}

.sidebar-page-container .sidebar-side .sidebar{
  position: relative;
  margin-left: 20px;
}

.sidebar-page-container .sidebar-inner{
  position:relative;
  padding: 30px 30px;
  border-radius:8px;
  background-color:var(--color-three);
}

/* Sidebar Widget */

.sidebar-widget{
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(var(--main-color-rgb), 0.10);
}

.sidebar-widget:last-child{
  border: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

/* Sidebar Title */

.sidebar-widget_title{
  position: relative;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1e272e;
}

/* Search Widget */

.sidebar .search-box .form-group{
  position:relative;
  margin:0px;
}

.sidebar .search-box .form-group input[type="text"],
.sidebar .search-box .form-group input[type="search"]{
  position:relative;
  line-height:28px;
  font-size:18px;
  padding:10px 50px 10px 25px;
  background:none;
  display:block;
  width:100%;
  height:56px;
  border-radius:8px;
  color:#1e272e;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  background-color: rgba(var(--main-color-rgb), 0.10);
  border: 1px solid rgba(var(--main-color-rgb), 1);
}

.sidebar .search-box .form-group input::placeholder,
.sidebar .search-box .form-group textarea::placeholder{
  color:#1e272e;
}

.sidebar .search-box .form-group button{
  position:absolute;
  right:0px;
  top:0px;
  height:56px;
  width:56px;
  display:block;
  cursor:pointer;
  line-height:56px;
  font-weight:normal;
  border-radius:8px;
  font-size:18px;
  color:#1e272e;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  background: none;
}

.sidebar .search-box .form-group button:hover{
  background-color:var(--main-color);
  color:var(--white-color);
}

/* Post Widget */

.post-widget .widget-content{
  position:relative;
}

.post-widget .post{
  position: relative;
  min-height: 90px;
  padding-top: 6px;
  padding-left: 105px;
  margin-bottom: 20px;
}

.post-widget .post:last-child{
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.post-widget .post .thumb{
  position: absolute;
  left: 0;
  top: 0;
  height: 90px;
  width: 90px;
  overflow: hidden;
}

.post-widget .post .thumb a{
  display: block;
}

.post-widget .post .thumb img{
  display: block;
  width: 100%;
  height: auto;
}

.post-widget .post h6{
  line-height:24px;
  font-weight:600;
  font-size: 17px;
}

.post-widget .post h6 a{
  color:#1e272e;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.post-widget .post h6 a:hover{
  color:var(--main-color);
}

.post-widget .post-meta{
  position:relative;
  margin-top:10px;
}

.post-widget .post-meta li{
  position:relative;
  font-size:18px;
  margin-right:10px;
  padding-right:15px;
  display:inline-block;
  color:rgba(var(--color-four-rgb), 0.60);
}

.post-widget .post-meta li:before{
  position:absolute;
  content:'';
  right:-1px;
  top:9px;
  width:6px;
  height:6px;
  border-radius:50px;
  background-color:var(--main-color);
}

.post-widget .post-meta li:last-child{
  padding-right:0px;
  margin-right:0px;
}

.post-widget .post-meta li:last-child::before{
  display:none;
}

/* Service List */

.service-list{
  position: relative;
}

.service-list li{
  position: relative;
  margin-bottom: 10px;
}

.service-list li a{
  position: relative;
  font-size: 18px;
  display: block;
  font-weight: 600;
  border-radius:8px;
  padding: 17px 22px;
  color: #1e272e;
  background-color: rgba(var(--color-two-rgb), 0.10);
}

.service-list li a span{
  position: absolute;
  right: 25px;
}

.service-list li a:hover{
  color: var(--white-color);
  background-color: var(--color-two);
}

.service-list li:last-child{
  margin-bottom: 0px;
}

/* Popular Tags */

.popular-tags a{
  position: relative;
  padding: 5px 18px;
  font-size: 18px;
  font-weight: 600;
  margin-right: 5px;
  border-radius:50px;
  margin-bottom: 10px;
  display: inline-block;
  text-transform: capitalize;
  color: rgba(var(--color-four-rgb), 0.80);
  border: 1px solid rgba(var(--color-two-rgb), 0.15);
}

.popular-tags a:hover{
  color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

/* Contact Widget */

.blog-contact-widget{
  position: relative;
  padding: 65px 15px;
  text-align: center;
  margin-top: 35px;
  border-radius:8px;
  overflow:hidden;
  background-size: cover;
}

.blog-contact-widget::before{
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0.80;
  outline-offset: -12px;
  outline: 2px dashed rgba(var(--white-color-rgb), 0.40);
  background-color: var(--color-two);
}

.blog-contact-widget .blog-contact-widget_icon{
  position: relative;
  width: 84px;
  height: 84px;
  font-size: 40px;
  display: block;
  margin: 0 auto;
  line-height: 90px;
  border-radius: 50px;
  color: var(--white-color);
  background-color: var(--main-color);
  font-family: "flaticon_lamusiqueauxenfants-icons";
}

.blog-contact-widget .title{
  position: relative;
  opacity: 0.75;
  font-size: 18px;
  margin-top: 30px;
  color: var(--white-color);
}

.blog-contact-widget_phone{
  position: relative;
  font-size: 24px;
  font-weight: 600;
  line-height: 1em;
  margin-top: 15px;
  display: inline-block;
  color: var(--white-color);
}

.blog-contact-widget_contact{
  position: relative;
  font-weight: 500;
  line-height: 1em;
  margin-top: 20px;
  font-size: 18px;
  display: inline-block;
  color: var(--white-color);
}

.blog-contact-widget_contact i{
  position: relative;
  font-size: 18px;
}

/* News Block Four */

.news-block_four{
  position:relative;
  margin-bottom:30px;
}

.news-block_four-inner{
  position:relative;
  border-radius:8px;
  padding:30px 28px;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  transition:all 500ms ease;
  background-color:var(--white-color);
}

.news-block_four-inner:hover{
  box-shadow:0px 0px 25px rgba(244,131,31,0.35);
}

.news-block_four-image{
  position:relative;
  border-radius:8px;
  overflow:hidden;
  background-color:var(--main-color);
}

.news-block_four-image img{
  position:relative;
  width:100%;
  display:block;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  transition:all 500ms ease;
}

.news-block_four-inner:hover .news-block_four-image img{
  opacity:0.80;
  transform:scale(1.06,1.06) rotate(2deg);
}

.news-block_four-content{
  position:relative;
  padding-top:20px;
}

.news-block_four-meta{
  position:relative;
}

.news-block_four-meta li{
  position:relative;
  font-size:18px;
  margin-right:10px;
  padding-right:15px;
  display:inline-block;
  color:rgba(var(--color-four-rgb), 0.60);
}

.news-block_four-meta li:before{
  position:absolute;
  content:'';
  right:-1px;
  top:9px;
  width:6px;
  height:6px;
  border-radius:50px;
  background-color:var(--main-color);
}

.news-block_four-meta li:last-child{
  padding-right:0px;
  margin-right:0px;
}

.news-block_four-meta li:last-child::before{
  display:none;
}

.news-block_four-title{
  position:relative;
  font-weight:600;
  margin-top:10px;
}

.news-block_four-title a{
  position:relative;
  color:#1e272e;
}

.news-block_four-title a:hover{
  color:var(--main-color);
}

.news-block_four-text{
  position:relative;
  font-size:18px;
  opacity:0.80;
  line-height:26px;
  margin-top:15px;
  margin-bottom:25px;
  color:#1e272e;
}

/***

====================================================================
  Sidebar Page Container
====================================================================

***/

.blog-detail{
  position: relative;
}

.blog-detail_inner{
  position: relative;
  padding:30px 30px;
  border-radius:8px;
  background-color:var(--color-three);
}

.blog-detail_image{
  position: relative;
}

.blog-detail_image img{
  position: relative;
  width: 100%;
  display: block;
}

.blog-detail_content{
  position: relative;
  padding-top: 25px;
}

.blog-detail_author-outer{
  position: relative;
  gap: 15px;
  margin-bottom: 15px;
}

.blog-detail-author{
  position: relative;
  font-size: 18px;
  min-height: 41px;
  font-weight:500;
  color: #1e272e;
}

.blog-detail-author-image{
  position: relative;
  width: 42px;
  height: 42px;
  overflow: hidden;
  margin-right: 10px;
  border-radius: 150px;
  border: 3px solid var(--white-color);
}

.blog-detail-author i{
  position: relative;
  margin-right: 7px;
  font-size: 18px;
  color:rgba(var(--color-four-rgb), 0.80);
}

.blog-detail-meta{
  position: relative;
  top: 2px;
}

.blog-detail-meta li{
  position: relative;
  margin-right: 20px;
  font-weight: 500;
  font-size: 18px;
  display: flex;
  gap: 5px;
  color: #1e272e;
}

.blog-detail-meta li .icon{
  position: relative;
  font-size: 18px;
  top: 2px;
  color: var(--main-color);
}

.blog-detail p{
  font-size: 18px;
  color: rgba(var(--color-four-rgb), 0.80);
}

.blog-detail blockquote{
  position: relative;
  padding: 30px 30px;
  font-size: 22px;
  line-height: 30px; 
  margin-top: 25px;
  border-radius:8px;
  overflow:hidden;
  margin-bottom: 30px;
  color:rgba(var(--color-four-rgb), 0.80);
  border-left: 3px solid var(--main-color);
  background-color:rgba(var(--main-color-rgb), 0.10);
}

.blog-detail blockquote i{
  position: relative;
  display: block;
  font-size: 44px;
  line-height: 1em;
  margin-bottom: 10px;
  color: var(--color-two);
}

.blog-detail blockquote span{
  position: relative;
  font-size: 18px;
  font-weight: 500;
  padding-left: 50px;
  display: inline-block;
  color:rgba(var(--color-four-rgb), 1);
  font-family: 'Quicksand', sans-serif;;
}

.blog-detail blockquote span::before{
  position: absolute;
  content: '';
  left: 0px;
  top: 15px;
  width: 40px;
  height: 1px;
  opacity: 0.40;
  background-color: var(--main-color);
}

/* Video Box */

.video-box{
  position:relative;
  overflow:hidden;
  border-radius:8px;
  margin-bottom: 25px;
}

.video-box .video-image{
  position:relative;
  margin:0px;
  background-color:var(--main-color);
}

.video-box img{
  position:relative;
  width:100%;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}

.video-box:hover .video-image img{
  transform:scale(1.05,1.05);
  filter: grayscale(100%);
}

.video-box .overlay-box{
  position:absolute;
  left:0px;
  top:0px;
  width:100%;
  height:100%;
  text-align:center;
  overflow:hidden;
  line-height: 45px;
  overflow:hidden;
  background-color: rgba(var(--color-four-rgb), 0.40);
}

.video-box .overlay-box span{
  position: absolute;
  width:66px;
  height: 66px;
  left:50%;
    top: 50%;
  z-index:10;
  font-weight:700;
  text-align: center;
  display: inline-block;
  margin-top: -30px;
  margin-left:-30px;
  line-height:66px;
  border-radius:50%;
  font-size:20px;
  color: var(--white-color);
  background-color:var(--color-two);
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
  font-family: 'Font Awesome 6 Free';
}

.video-box .overlay-box span:hover{
  color:var(--white-color);
  background-color:var(--main-color);
}

.video-box .ripple,
.video-box .ripple:before,
.video-box .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width:66px;
  height: 66px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50% 50% 50% 50%;
    -moz-border-radius: 50% 50% 50% 50%;
    -ms-border-radius: 50% 50% 50% 50%;
    -o-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.video-box .ripple:before {
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -o-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
}

.video-box .ripple:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
    content: "";
    position: absolute;
}

.blog-detail h3{
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e272e;
}

.blog-detail_list{
  position: relative;
  margin-top: 22px;
}

.blog-detail_list li{
  position: relative;
  display: flex;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: rgba(var(--color-four-rgb), 0.80);
}

.blog-detail_list li i{
  position: relative;
  width: 22px;
  height: 22px;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  color: var(--color-two);
  background-color:rgba(var(--color-two-rgb), 0.10);
}

/* Post Share Options */

.post-share-options{
  position:relative;
  margin-top:30px;
  padding-top: 25px;
  border-top: 1px solid rgba(var(--main-color-rgb), 0.15);
}

.post-share-options .post-share-inner{
  position:relative;
}

.post-share-options .post-tags{
  position:relative;
}

.post-share-options .post-tags span{
  position:relative;
  font-weight: 700;
  color: var(--main-color);
  font-size: var(--font-20);
  margin-right:var(--margin-right-10);
}

.post-share-options .post-tags a{
  position: relative;
    padding: 5px 18px;
    font-size: 18px;
    font-weight: 600;
    margin-right: 5px;
  border-radius:50px;
    margin-bottom: 10px;
  letter-spacing: 0px;
    display: inline-block;
    text-transform: capitalize;
  color: rgba(var(--color-four-rgb), 0.80);
    border: 1px solid rgba(var(--main-color-rgb), 0.15);
}

.post-share-options .post-tags a:hover{
  color:var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.post-share-options .social-links{
  position:relative;
}

.post-share-options .social-links span{
  position:relative;
  font-weight: 700;
  color: var(--main-color);
  font-size: var(--font-20);
  margin-right:var(--margin-right-10);
}

.post-share-options .social-links li{
  position:relative;
  display:inline-block;
  margin-left:var(--margin-left-5);
}

.post-share-options .social-links li a{
  position: relative;
    width: 36px;
    height: 36px;
    line-height: 34px;
    font-size: 16px;
  margin-left: 5px;
    border-radius: 50px;
    display: inline-block;
    color: #1e272e;
  font-family: 'Font Awesome 5 Brands';
    border: 1px solid rgba(var(--main-color-rgb), 0.10);
}

.post-share-options .social-links li a:hover{
  color:var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.blog-author_box{
  position: relative;
  margin-top: 30px;
  border-radius:8px;
  margin-bottom: 30px;
  padding: 30px 30px 25px;
  background-color: rgba(var(--color-two-rgb), 0.10);
}

.blog-author-box_content{
  position: relative;
  padding-left: 145px;
}

.blog-author-box_image{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 120px;
  height: 120px;
  overflow: hidden;
  display: inline-block;
  border-radius: 150px;
  border: 3px solid var(--color-two);
}

.blog-author_box h5{
  font-weight: 600;
  color: #1e272e;
}

.blog-author_box-designation{
  position: relative;
  font-size: 16px;
  margin-top: 5px;
  font-weight:500;
  color: rgba(var(--color-four-rgb), 0.50);
}

.blog-author_box-text{
  position: relative;
  font-size: 18px;
  margin-top: 10px;
  line-height: 26px;
  color: rgba(var(--color-four-rgb), 0.50);
}

.blog-author_signature{
  position: relative;
  line-height: 1em;
  margin-top: 15px;
}

/* Comment Form */

.comment-form_outer{
  position: relative;
  margin-top: 30px;
  border-radius:8px;
  padding: 35px 30px;
  border: 1px solid rgba(var(--main-color-rgb), 0.10);
}

.comment-form .group-title{
  position: relative;
  margin-bottom: 20px;
}

.comment-form_outer h3{
  font-weight: 600;
}

.comment-form_outer .form-text{
  position: relative;
  margin-top: 10px;
  font-size: 18px;
  margin-bottom: 20px;
  color: rgba(var(--color-four-rgb), 0.80);
}

/*** 

====================================================================
  Comment Form
====================================================================

***/

.comment-form .form-group{
  position: relative;
  margin-bottom:20px;
}

.comment-form .form-group:last-child{
  margin-bottom:0px;
}

.comment-form .form-group input[type="text"],
.comment-form .form-group input[type="password"],
.comment-form .form-group input[type="tel"],
.comment-form .form-group input[type="email"],
.comment-form .form-group select{
  position:relative;
  display:block;
  width:100%;
  line-height:28px;
  padding:10px 25px;
  height:60px;
  border-radius:8px;
  font-weight: 500;
  font-size:18px;
  color:var(--black-color);
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  transition:all 300ms ease;
  background:none;
  border: 1px solid rgba(var(--main-color-rgb), 0.10);
}

.comment-form .form-group textarea::-webkit-input-placeholder,
.comment-form .form-group input::-webkit-input-placeholder{
  color:#1e272e;
}

.comment-form .form-group input[type="text"]:focus,
.comment-form .form-group input[type="password"]:focus,
.comment-form .form-group input[type="tel"]:focus,
.comment-form .form-group input[type="email"]:focus,
.comment-form .form-group select:focus,
.comment-form .form-group textarea:focus{
  border-color:var(--main-color);
}

.comment-form .form-group textarea{
  position:relative;
  display:block;
  width:100%;
  line-height:24px;
  padding:15px 25px 25px;
  font-size:18px;
  color:var(--black-color);
  height:264px;
  resize:none;
  border-radius:8px;
  font-weight: 500;
  background:none;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  transition:all 300ms ease;
  border: 1px solid rgba(var(--main-color-rgb), 0.10);
}

.comment-form .form-group button{
  
}

.comment-form label{
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  color: rgba(var(--color-four-rgb), 0.50);
}

.related-posts{
  position:relative;
  padding-bottom:60px;
}

/*** 

====================================================================
  Team Three
====================================================================

***/

.team-three{
  position:relative;
  padding:100px 0px 80px;
}


.team-detail{
  position:relative;
  padding-top:110px;
}

.team-detail_box{
  position:relative;
}

.team-detail_box .image-column{
  position:relative;
  margin-bottom:30px;
}

.team-detail_box .image{
  position:relative;
  overflow:hidden;
  border-radius:16px;
}

.team-detail_box .image img{
  position:relative;
  width:100%;
  display:block;
}

.team-detail_box .content-column{
  position:relative;
  margin-bottom:30px;
}

.team-detail_box .content{
  position:relative;
  padding:40px 30px;
  overflow:hidden;
  border-radius:16px;
  background-color:var(--color-three);
}

.team-detail_box .title{
  position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--main-color);
    text-transform: uppercase;
}

.team-detail_box h2{
  position: relative;
    margin-top: 10px;
  font-size:44px;
  font-weight:700;
  line-height:54px;
    color: #1e272e;
    text-transform: capitalize;
}

.team-detail_box .text{
  position: relative;
    line-height: 27px;
    opacity: 0.80;
    font-size: 18px;
    margin-top: 15px;
    color: #1e272e;
}

.team-detail_box .list{
  position:relative;
  padding:25px 30px;
  border-radius:8px;
  margin-top:25px;
  background-color: rgba(var(--color-two-rgb), 0.10);
}

.team-detail_box .list li{
  position:relative;
  font-size:18px;
  font-weight:600;
  margin-bottom:15px;
}

.team-detail_box .list li span{
  position:absolute;
  right:0px;
  font-weight:500;
  color: rgba(var(--color-four-rgb), 0.80);
}

.team-detail_box .list li:last-child{
  margin-bottom:0px;
}

.team-detail_socials{
  position:relative;
  margin-top:30px;
  margin-left:30px;
}

.team-detail_socials span{
  position:relative;
  font-size:18px;
  margin-right:10px;
  color: rgba(var(--color-four-rgb), 0.80);
}

.team-detail_socials a{
  position: relative;
    width: 32px;
    height: 32px;
    font-size: 16px;
    margin-right: 5px;
    line-height: 30px;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    color: #1e272e;
    border: 1px solid rgba(var(--color-four-rgb), 0.20);
    font-family: 'Font Awesome 5 Brands';
}

.team-detail_socials a:hover{
  color:var(--white-color);
  border-color:var(--main-color);
  background-color:var(--main-color);
}

/* Team Detail Experiance */

.team-detail_experiance{
  position:relative;
  margin-top:70px;
  padding:65px 50px;
  border-radius:16px;
  background-color:var(--color-three);
}

/* Skills Section */

.default-skills{
  position:relative;
  margin-top: 30px;
}

.default-skill-item{
  position:relative;
  margin-bottom:25px;
}

.default-skill-item:last-child{
  margin-bottom:0px;
}

.default-skill-title{
  position:relative;
  font-weight:500;
  font-size:18px;
  margin-bottom:10px;
  color: rgba(var(--color-four-rgb), 0.80);
  text-transform:capitalize;
}

.default-skill-bar{
  position:relative;
  width:100%;
  height:10px;
  overflow:hidden;
  border-radius:50px;
  background-color:rgba(var(--main-color-rgb), 0.10);
}

.default-bar-inner{
  position:relative;
  width:100%;
  height:10px;
  overflow:hidden;
}

.default-bar{
  position:absolute;
  left:0px;
  top:0px;
  height:10px;
  width:0px;
  border-bottom:10px solid var(--main-color);
  -webkit-transition:all 2000ms ease;
  -ms-transition:all 2000ms ease;
  -o-transition:all 2000ms ease;
  -moz-transition:all 2000ms ease;
  transition:all 2000ms ease;
}

.default-count-box{
  position:absolute;
  right:0px;
  top:0px;
  font-weight:500;
  font-size:18px;
  color: rgba(var(--color-four-rgb), 0.80);
}

/*** 

====================================================================
  Team Four
====================================================================

***/

.team-four{
  position:relative;
  padding:100px 0px 80px;
}

.team-four .four-items_carousel-pagination{
  position: relative;
  text-align: center;
  margin-top:20px;
}

.team-four .swiper-pagination-bullet{
  position: relative;
  width: 10px;
  height: 10px;
  opacity: 1;
  margin: 0px 18px;
  border-radius: 50px;
  display:inline-block;
  border:2px solid transparent;
  transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  background-color: rgba(var(--main-color-rgb), 0.20);
}

.team-four .swiper-pagination-bullet:hover,
.team-four .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: rgba(var(--main-color-rgb), 1);
}

/*** 

====================================================================
  Testimonial Four
====================================================================

***/

.testimonial-four{
  position:relative;
  padding:100px 0px 70px;
}

/*** 

====================================================================
  Faq Two
====================================================================

***/

.faq-two{
  position:relative;
  padding:110px 0px 80px;
}

.faq-two .column{
  position:relative;
  margin-bottom:30px;
}

/*** 

====================================================================
  Faq Three
====================================================================

***/

.faq-three{
  position:relative;
}

.faq-three .outer-container{
  position:relative;
  max-width:1760px;
  margin:0 auto;
  border-radius:24px;
  padding:100px 0px 70px;
  background-color:var(--color-three);
}

.faq-three .row{
  margin:0px -65px;
}

.faq-three .column{
  position:relative;
  padding:0px 65px;
  margin-bottom:30px;
}

.faq-block_one{
  position:relative;
  margin-bottom:30px;
}

.faq-block_one-inner{
  position:relative;
  padding-left:50px;
  
}

.faq-block_one-number{
  position:absolute;
  left:0px;
  top:0px;
  width:32px;
  height:32px;
  font-size:18px;
  font-weight:600;
  line-height:32px;
  text-align:center;
  border-radius:50px;
  color:var(--white-color);
  background-color:var(--color-two);
}

.faq-block_one h6{
  position:relative;
  font-weight:600;
  font-size:18px;
  color:#1e272e;
}

.faq-block_one .text{
  position:relative;
  font-size:18px;
  
  margin-top:10px;
  max-width:480px;
  color:#1e272e;
}

.faq-block_one:last-child{
  margin-bottom:0px;
}

.faq-block_one:last-child .faq-block_one-inner{
  padding-bottom:0px;
  margin-bottom:0px;
  border:none;
}

/*** 

====================================================================
  Gallery One
====================================================================

***/

.gallery-one{
  position:relative;
  padding:110px 0px 100px;
}

.gallery-one .filters{
  position:relative;
  margin-bottom:40px;
  text-align:center;
}

.gallery-one .filters .filter-tabs{
  position:relative;
}

.gallery-one .filters li{
  position: relative;
  cursor: pointer;
    font-size: 18px;
    font-weight: 500;
  border-radius:50px;
  margin:0px 5px 10px;
  padding:6px 18px 6px;
    display: inline-block;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
  color: rgba(var(--color-four-rgb), 0.80);
  border:1px solid rgba(var(--main-color-rgb), 0.20);
}

.gallery-one .filters .filter.active,
.gallery-one .filters .filter:hover{
    color: var(--white-color);
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.gallery-one .gallery-one_block{
  margin-bottom:30px;
}

.gallery-one_block.mix{
  display:none;
}

/*** 

====================================================================
  Contact Info
====================================================================

***/

.contact-info{
  position: relative;
  padding: 100px 0px 70px;
}

.info-block_two{
  position: relative;
  margin-bottom: 30px;
}

.info-block_two-inner{
  position: relative;
  text-align: center;
  border-radius: 8px;
  padding: 40px 30px 40px;
  background-color: rgba(var(--main-color-rgb), 0.08);
}

.info-block_two:nth-child(2) .info-block_two-inner{
  background-color: rgba(var(--color-two-rgb), 0.08);
}

.info-block_two:nth-child(2) .info-block_two-icon{
  background-color: rgba(var(--color-two-rgb), 1);
}

.info-block_two:nth-child(3) .info-block_two-inner{
  background-color: rgba(var(--color-seven-rgb), 0.08);
}

.info-block_two:nth-child(3) .info-block_two-icon{
  background-color: rgba(var(--color-seven-rgb), 1);
}

.info-block_two-icon{
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto;
  font-size: 44px;
  line-height: 98px;
  border-radius: 50px;
  color: var(--white-color);
  background-color: rgba(var(--main-color-rgb), 1);
}

.info-block_two h4{
  position: relative;
  font-weight: 600;
  margin-top: 25px;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 15px;
  color: #1e272e;
}

.info-block_two-inner a{
  position: relative;
  font-size: 18px;
  opacity:0.80;
  margin-bottom: 5px;
  display: inline-block;
  color: #1e272e;
}

.info-block_two-inner a:hover{
  color: var(--main-color);
}

.info-block_two .text{
  position: relative;
  font-size: 18px;
  opacity:0.80;
  line-height: 28px;
  color: #1e272e;
}

/*** 

====================================================================
  Contact Form
====================================================================

***/

.contact-form-section{
  position:relative;
  padding: 60px 0px 50px;
}

.contact-form-section .form-column{
  position:relative;
  margin-bottom:30px;
}

.contact-form-section .form-column .inner-column{
  position:relative;
  padding:40px 30px;
  border-radius:8px;
  background-color:var(--color-three);
}

.contact-form-section .form-column h3{
  position:relative;
  font-weight:600;
  color:#1e272e;
}

.contact-form-section .form-column .text{
  position:relative;
  font-size:18px;
  opacity:0.80;
  margin-top:10px;
  margin-bottom:30px;
  color:#1e272e;
}

.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="password"],
.contact-form .form-group input[type="tel"],
.contact-form .form-group input[type="email"],
.contact-form .form-group select,
.contact-form .form-group textarea{
  background-color:var(--color-three);
  color:rgba(var(--color-four-rgb), 0.50);
  border:1px solid rgba(var(--main-color-rgb), 0.10);
}

.contact-form .form-group .ui-selectmenu-button.ui-button{
  background-color:var(--color-three);
  border:1px solid rgba(var(--main-color-rgb), 0.10);
}

.contact-form .form-group textarea::-webkit-input-placeholder,
.contact-form .form-group input::-webkit-input-placeholder{
  color:rgba(var(--color-four-rgb), 0.50);
}

.map-one_map{
  position:relative;
}

.map-one_map iframe{
  position:relative;
  height:500px;
  width:100%;
  border-radius:8px;
  border:2px solid var(--main-color);
}

.contact-form .form-group .ui-button .ui-icon:before{
  font-size:18px;
  color:var(--main-color);
}

.g-map-link {
  color: var(--color-two);
  text-decoration: underline;
}


/*** 

====================================================================
  Not Found
====================================================================

***/

.error-one{
  position: relative;
  padding-top: 80px;
  text-align: center;
  padding-bottom: 70px;
}

.error-one h1{
  line-height:1em;
  font-size:300px;
  font-weight:700;
  color: var(--color-two);
  font-family: "Lato", sans-serif;
  text-shadow: 4px 4px 0px rgba(var(--color-two-rgb), 1);
}

.error-one .sub-title{
  position:relative;
  font-weight:600;
  font-size:16px;
  letter-spacing:2px;
  color:var(--main-color);
  text-transform:uppercase;
}

.error-one h2{
  margin-top:15px;
  color: #1e272e;
}

.error-one h2 span{
  color: var(--main-color);
}

.error-one .text{
  margin-top:20px;
  color:#1e272e;
}

.error-one .button-box{
  margin-top:30px;
}

.error-one .button-box .theme-btn{
  
}

/*** 

====================================================================
  Register One
====================================================================

***/

.register-one{
  position: relative;
  padding: 100px 0px 100px;
}

.register-one .inner-container{
  position: relative;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  padding: 40px 45px;
  background-color: var(--color-three);
}

.register-one h3{
  font-weight: 600;
  color: #1e272e;
}

.register-one .text{
  font-size: 18px;
  margin-top: 8px;
  margin-bottom: 25px;
  color:rgba(var(--color-four-rgb), 0.50);
}

/*** 

====================================================================
  Register Form
====================================================================

***/

.register-form .form-group{
  position: relative;
  margin-bottom:20px;
}

.register-form .form-group:last-child{
  margin-bottom:0px;
}

.register-form .form-group input[type="text"],
.register-form .form-group input[type="password"],
.register-form .form-group input[type="tel"],
.register-form .form-group input[type="email"],
.register-form .form-group select{
  position:relative;
  display:block;
  width:100%;
  line-height:28px;
  padding:10px 25px;
  height:60px;
  border-radius:8px;
  font-weight: 400;
  font-size:15px;
  color:#1e272e;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  transition:all 300ms ease;
  background-color:var(--color-three);
  border: 1px solid rgba(var(--main-color-rgb), 0.15);
}

.register-form .form-group textarea::-webkit-input-placeholder,
.register-form .form-group input::-webkit-input-placeholder{
  color:var(--black-color);
}

.register-form .form-group input[type="text"]:focus,
.register-form .form-group input[type="password"]:focus,
.register-form .form-group input[type="tel"]:focus,
.register-form .form-group input[type="email"]:focus,
.register-form .form-group select:focus,
.register-form .form-group textarea:focus{
  border-color:var(--main-color);
}

.register-form .form-group textarea{
  position:relative;
  display:block;
  width:100%;
  line-height:24px;
  padding:15px 25px 25px;
  font-size:15px;
  color:#1e272e;
  height:190px;
  resize:none;
  border-radius:8px;
  font-weight: 400;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  transition:all 300ms ease;
  background-color:var(--color-three);
  border: 1px solid rgba(var(--main-color-rgb), 0.15);
}

.register-form .form-group button{
  margin-top: 10px;
  border-radius:10px;
}

.register-form label{
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  color:rgba(var(--color-four-rgb), 0.50);
}

/* CheckBox */

.register-form .check-box{
  position:relative;
}

.register-form .check-box label{
  color:#2b2b2b;
}

.register-form .check-box label{
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
  margin-bottom: 0;
  font-weight: 400;
  font-size:15px;
  line-height: 22px;
  padding: 4px 10px 0px;
  padding-left: 30px;
  color:rgba(var(--color-four-rgb), 0.80);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.register-form .check-box input[type="checkbox"]:checked + label{
  border-color: var(--main-color);
}

.register-form .check-box label {
    padding-left: 30px;
    padding-top: 1px;
    cursor: pointer;
}

.register-form .check-box label:before{
  position: absolute;
  left: 0;
  top: 2px;
  height:20px;
  width: 20px;
  background: var(--main-color);
  content: "";
  border-radius: 50px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.register-form .check-box label:after {
  position: absolute;
  left: 0px;
  top: 0;
  height: 15px;
  line-height: 15px;
  max-width: 0;
  font-size: 16px;
  color: #ffffff;
  font-weight: 800;
  overflow: hidden;
  background: transparent;
  text-align: center;
  font-family: 'FontAwesome';
  -webkit-transition: max-width 500ms ease;
  -moz-transition: max-width 500ms ease;
  -ms-transition: max-width 500ms ease;
  -o-transition: max-width 500ms ease;
  transition: max-width 500ms ease;
}

.register-form .check-box input[type="checkbox"] {
  display: none;
}

.register-form .check-box input[type="checkbox"]:checked + label:before{
  background: var(--color-two) url(../images/icons/check-1.png) center center no-repeat;
}

.register-form .check-box input[type="checkbox"]:checked + label:after {
  max-width: 20px;
  opacity: 1; 
}

.register-form .forgot-psw{
  position: relative;
  color: var(--main-color);
  text-decoration: underline;
}

.register-form .creat-account{
  position: relative;
  font-size: 15px;
  color: rgba(var(--color-four-rgb), 0.80);
}

.register-form .creat-account a{
  position: relative;
  color: var(--main-color);
  text-decoration:underline;
}

.register-form .submit-btn{
  width: 100%;
  text-align: center;
}

.register-form .submit-btn .btn-wrap{
  width: 100%;
  text-align: center;
}

.register-form .submit-btn .btn-wrap .text-two{
  width: 100%;
  text-align: center;
}

.register-form .submit-btn:hover{
  
}

.register-form .form-group .icon{
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  font-size: 18px;
  color: var(--main-color);
}

div.af-submit button.acf-button {
    position: relative;
    font-weight: 600;
    font-size: 18px;
    overflow: hidden;
    text-align: center;
    border-radius: 50px;
    padding: 17px 32px;
    display: inline-block;
    color: var(--white-color);
    background-color: var(--color-two);
    font-family: 'Quicksand', sans-serif;
}


form.af-form input, form.af-form textarea{
    position: relative;
    line-height: 1.7em;
    padding: 16px 8px!important;
    color: #1e272e;
    font-size: 18px!important;
    opacity: 0.80;
}


form.af-form label{
    position: relative;
    line-height: 1.7em;
    padding-top: 25px !important;
    color: #1e272e;
    font-size: 18px!important;
    opacity: 0.80;
}

form.af-form .af-field{
  border: none!important;
  padding: inherit!important;
}

/*! #######################################################################

  MeanMenu 2.0.7
  --------

  To be used with jquery.meanmenu.js by Chris Wharton (http://www.meanthemes.com/plugins/meanmenu/)

####################################################################### */a.meanmenu-reveal{display:none}.mean-container .mean-bar{float:left;width:100%;position:relative;background:#0c1923;padding:4px 0;min-height:42px;z-index:999999}.mean-container a.meanmenu-reveal{width:22px;height:22px;padding:13px 13px 11px;position:absolute;top:0;right:0;cursor:pointer;color:#fff;text-decoration:none;font-size:18px;text-indent:-9999em;line-height:22px;font-size:1px;display:block;font-family: 'Quicksand', sans-serif; font-weight:700}.mean-container a.meanmenu-reveal span{display:block;background:#fff;height:3px;margin-top:3px}.mean-container .mean-nav{float:left;width:100%;background:#0c1923;margin-top:44px}.mean-container .mean-nav ul{padding:0;margin:0;width:100%;list-style-type:none}.mean-container .mean-nav ul li{position:relative;float:left;width:100%}.mean-container .mean-nav ul li a{display:block;float:left;width:90%;padding:1em 5%;margin:0;text-align:left;color:#fff;border-top:1px solid #383838;border-top:1px solid rgba(255,255,255,.5);text-decoration:none;text-transform:uppercase}.mean-container .mean-nav ul li li a{width:80%;padding:1em 10%;border-top:1px solid #f1f1f1;border-top:1px solid rgba(255,255,255,.25);opacity:.75;filter:alpha(opacity=75);text-shadow:none!important;visibility:visible}.mean-container .mean-nav ul li.mean-last a{border-bottom:0;margin-bottom:0}.mean-container .mean-nav ul li li li a{width:70%;padding:1em 15%}.mean-container .mean-nav ul li li li li a{width:60%;padding:1em 20%}.mean-container .mean-nav ul li li li li li a{width:50%;padding:1em 25%}.mean-container .mean-nav ul li a:hover{background:#252525;background:rgba(255,255,255,.1)}.mean-container .mean-nav ul li a.mean-expand{margin-top:1px;width:26px;height:32px;padding:12px!important;text-align:center;position:absolute;right:0;top:0;z-index:2;font-weight:700;background:rgba(255,255,255,.1);border:0!important;border-left:1px solid rgba(255,255,255,.4)!important;border-bottom:1px solid rgba(255,255,255,.2)!important}.mean-container .mean-nav ul li a.mean-expand:hover{background:rgba(0,0,0,.9)}.mean-container .mean-push{float:left;width:100%;padding:0;margin:0;clear:both}.mean-nav .wrapper{width:100%;padding:0;margin:0}.mean-container .mean-bar,.mean-container .mean-bar *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.mean-remove{display:none!important}
/* lamusiqueauxenfants Business HTML-5 Template */

@media only screen and (max-width: 1300px){

  .main-header .main-menu .navigation > li > a{
    font-size: 18px;
  }

  .main-header .main-menu .navigation > li{
    margin-right: 20px;
  }

  .about-one.style-three .about-one_content-outer{
    margin-top:0px;
  }
  
  .slider-three .slider-one_pagination{
    margin-left:15px;
  }
  
  .about-one_content-outer{
    padding:0px 0px;
  }
  
  .sidebar-page-container .sidebar-side .sidebar{
    margin-left:0px;
  }
  
}

@media only screen and (max-width: 1240px){
  
  .about-one_content-outer{
    padding:0px;
    margin:0px;
  }
  
  .team-one .swiper-container{
    padding:0px 0px;
  }
  
  .registration-one .sec-title_text{
    max-width:100%;
  }
  
  .faq-one .outer-container{
    padding-left:0px;
    padding-right:0px;
  }

  .faq-one .sec-title_text{
    max-width:100%;
  }

}

@media only screen and (max-width: 1140px){
  
  .main-header .main-menu .navigation > li{
    margin-right: 15px;
  }

  .main-header .header-lower{
    border-radius: 0px;
  }

  .main-header .header-lower .outer-box {
    margin-top: 0px;
  }

  .main-header .header-lower .logo-box{
    margin-right:20px;
  }
  
  h1 {
    line-height: 72px;
    font-size: 60px;
  }
  
  .about-one_image-outer{
    margin-left:0px;
  }
  
  .booking-one .inner-container{
    padding-left:30px;
    padding-right:30px;
  }
  
  .testimonial-three .testimonial-pager_thumbs .pager-item:nth-child(1){
    left:0%;
  }
  
  .cta-one .inner-container{
    padding:45px 30px;
  }
  
  .testimonial-three .testimonial-pager_thumbs .pager-item:nth-child(4){
    left:40%;
  }
  
  .instagram-one .swiper-slide.swiper-slide-active .image{
    width:auto;
    margin-left:0px;
  }
  
  .instagram-one .swiper-slide.swiper-slide-prev .image,
  .instagram-one .swiper-slide.swiper-slide-next .image{
    margin-top:0px;
  }
  
}

@media only screen and (min-width: 768px){
  
  
  
}
  
@media only screen and (max-width: 1023px){

  .navbar-header{display: none;}
  
  .main-header .main-box .logo-box {
    position:relative;
    left:0px;
    top:0px;
    right:0px;
    bottom:0px;
    margin:0px;
    text-align:left;
  }
  
  .main-header{
    position:relative;

  }
  
  .main-header .mobile-nav-toggler{
    display:block;
    margin-left: 10px;
  }
  
  .main-header .sticky-header .mobile-nav-toggler{
    display:block;
  }
  
  .main-header .nav-outer,
  .main-header .sticky-header .main-menu{
    display:none;
  }
  
  .main-header #navbarSupportedContent{
    display:block;
  }
  
  .main-header .mCSB_inside >

  .main-header .outer-box{
    margin-left: 0px;
  }

  .main-header .main-menu{
    display: none;
  }

}

@media only screen and (max-width: 991px){

  .header-phone_box{
    display:block;
  }
  

  
  .main-header.fixed-header .header-lower .logo-box .logo{
    padding:20px 0px;
  }
  
  
  .about-one_content-column{
    order:1;
  }
  
  
  .about-one_image-column{
    order:2;
  }
  
  .about-one .outer-container{
    border-radius:0px;
    padding-top:90px;
  }
  
  .main-footer .widgets-section .big-column:first-child .footer_column:nth-child(2) .links-widget,
  .footer-style_two .widgets-section .big-column:first-child .footer_column:nth-child(2) .links-widget{
    padding-left:0px;
  }
  
  .footer-bottom .copyright{
    text-align:center;
  }
  
  .footer-bottom .designs_by{
    margin-top:10px;
    text-align:center;
  }



  .main-header.header-style-two .header-lower:after{
display: none;
}
  
  .main-header.header-style-two{
    min-height:88px;
    background-color: var(--white-color);

  }
  
  .booking-one .title-column{
    text-align:center;
  }
  
  .booking-one .inner-container{
    padding:90px 30px 90px;
  }
  
  .faq-one .title-column{
    margin-bottom:35px;
  }
  
  .header-style-three .header-lower .inner-container{
    padding-right:0px;
  }
  
  .page-title{
    padding:120px 0px 210px;
  }
  
  .team-detail_box .content-column{
    order:1;
  }
  
  .program-block_four-content-column{
    order:1;
    margin-bottom:30px;
  }
  
  .program-block_four-image_column{
    order:2;
  }
  
  .program-block_five-content-column{
    margin-bottom:30px;
  }
  
}

@media only screen and (max-width: 820px){

  .testimonial-one_icon,
  .testimonial-one_icon-two{
    display:none;
  }
  
  .team-one .inner-container{
    padding:0px 0px;
  }
  
  .about-one_content-outer .sec-title_text{
    padding-right:0px;
  }
  
  .program-block_five-image img,
  .program-block_four-image img{
    width:100%;
    display:block;
  }
  
}

@media only screen and (max-width: 767px){
  
  .main-header .header-upper .logo-outer {
    position:relative;
    width:100%;
  }

    .main-header.header-style-two{

    padding-top: 7.5px;
  }

  .main-header .sticky-header .outer-box{
    display:block;
    right: 0px;
    left: auto;
    top:0px;
  }

  .main-header .main-menu{
    width:100%;
    display:none;
  }
  
  .header-phone_box,
  .slider-two_colors,
  .main-header .main-menu .navbar-collapse > .navigation li.dropdown:after,
  .main-header .main-menu .navigation > li > ul:before{
    display:none !important;  
  }
  
  .main-header .main-box .logo-box{
    float:none;
    text-align:center;
    padding-bottom:10px;
  }

  .main-header .header-lower .outer-box{
    position:relative;
    z-index:12;
    display:block;
  }
  
  .main-header .main-menu .navbar-header .navbar-toggler{
    display: inline-block;
    z-index: 12;
    width: 50px;
    height: 40px;
    float: none;
    padding: 0px;
    text-align: center;
    border-radius: 0px;
    background: none;
    border: 1px solid #ffffff;
  }
  
  .main-header .main-menu .navbar-header .navbar-toggler .icon-bar{
    position: relative;
    background: #ffffff;
    height: 2px;
    width: 26px;
    display: block;
    margin:0 auto;
    margin:5px 11px;
  }
  
  .main-header .nav-outer .mobile-nav-toggler{
    display: block;
  }
  
  .main-header #navbarSupportedContent{
    display:block;
  }
  
  .main-header .mCSB_inside >
  
  .slider-one .swiper-slide{
    padding-top: 120px;
  }
  
  h1 {
    line-height: 54px;
    font-size: 44px;
  }
  
  h2 {
    line-height: 48px;
    font-size: 36px;
  }
  
  .service-block_one-inner{
    text-align:center;
  }
  
  .header-top,
  .appScreenshot-arrow,
  .program-one .program-one_carousel-prev,
  .program-one .program-one_carousel-next{
    display:none;
  }
  
  .about-one_content-outer .sec-title_text{
    padding-right:0px;
  }
  
  .about-one.style-three .about-one_image-outer{
    padding-right:0px;
  }
  
}

@media only screen and (max-width: 599px){

  
  #d-none-mobile{
    display:none;
  }
  
  h1 {
    line-height: 48px;
    font-size: 36px;
  }
  
  h2 {
    line-height: 42px;
    font-size: 30px;
  }
  
  .time-countdown_two .counter-column{
    margin-bottom:20px;
  }
  
  .time-countdown_two .counter-column:last-child{
    margin-bottom:0px;
  }
  
  .program-two .owl-dots{
    margin-top:30px;
  }
  
  .program-two .owl-nav,
  .services-two .program-one_carousel-prev,
  .services-two .program-one_carousel-next,
  .testimonial-two::before,
  .testimonial-two::after{
    display:none;
  }
  
  .accordion-box .block .acc-btn{
    font-size:17px;
  }
  
  .accordion-box .block{
    padding:22px 22px;
  }
  
  .faq-one .title-column .inner-column{
    padding:0px;
  }
  
  .appScreenshot-arrow{
    top:36%;
  }
  
  .register-one .inner-container{
    padding:30px 25px;
  }
  
  .team-detail_box .content{
    padding:30px 25px;
  }

  .program-block_five-title,
  .program-block_four-title {
    font-size: 34px;
    line-height: 44px;
  }
  
  .schedule-one_title .column{
    width:50%;
  }
  
  .blog-detail h3{
    line-height: 36px;
    font-size: 25px;
  }
  
  .error-one h1{
    font-size:200px;
  }
  
  .map-one_map iframe{
    height:360px;
  }
  
}

@media only screen and (max-width: 479px) {
  
  .about-one.style-two .about-one_image-outer{
    padding-bottom:0px;
  }
  
  
  .about-one_image-two,
  .about-widget{
    display:none;
  }
  
  .footer-bottom .copyright,
  .about-one_list li{
    font-size:18px;

  }
  
  h2 br{
    display:none;
  }
  
  .about-one_experiance{
    right:0px;
  }
  
  h2 {
    line-height: 36px;
    font-size: 24px;
  }
  
  .registration-one_list li a{
    font-size:18px;
  }
  
  .registration-one_form-outer{
    padding:25px 25px;
  }
  
  .newsletter-box .form-group button{
    position:relative;
    right:0px;
    top:0px;
    margin-top:10px;
  }
  
  .main-header .header-lower .logo-box .logo{
    padding:20px 0px;
  }
  
  .booking-one .inner-container {
    padding: 90px 15px 90px;
  }
  
  .testimonial-block_two-text{
    font-size: 18px;
    line-height: 32px;
  }
  
  .accordion-box .block .icon-outer{
    right:-10px;
  }
  
  .testimonial-two{
    padding-bottom:80px;
  }
  
  .about-one_experiance-two .counter{
    font-size:48px;
  }
  
  .counter-one .inner-container{
    background-size: auto;
  }
  
  .header-style-three .header-lower .logo-box .logo{
    padding:15px 20px;
  }
  
  .testimonial-block_two-inner{
    padding:30px 25px;
  }
  
  .team-detail_box .list li span{
    position:relative;
  }
  
  
  
  .contact-form-section .form-column .inner-column,
  .program-block_five-content-outer,
  .program-block_four-content-outer,  
  .team-detail_box .list{
    padding:20px 20px;
  }
  
  .program-block_five-title, .program-block_four-title {
    font-size: 30px;
    line-height: 40px;
  }
  
  .schedule-one_title h4{
    padding-left:10px;
  }
  
  .schedule-one_list span{
    padding-left:20px;
  }
  
  .blog-detail h3,
  .contact-form-section .form-column h3{
    line-height: 30px;
    font-size: 20px;
  }
  
  .error-one h1{
    font-size:120px;
  }
  
  .map-one_map iframe{
    height:330px;
  }
  
  .program-two .outer-container{
    padding:80px 10px 80px;
  }
  
}



.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

.embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}
