/*
Theme Name: 	FLEEEX
Description: 	Responsive WordPress Theme.
Version:     	1.0
Author:     	Giuseppe Colonna
Author URI:   http://www.giuseppe-colonna.com
Site:         http://www.giuseppe-colonna.com
Text Domain: 	fleeex
Domain Path: 	/languages
Tags:        	grid-layout, blog, video-background, featured-images, 
License:    	GNU General Public License v3.0
License URI:	http://www.gnu.org/licenses/gpl-3.0.html

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/* ------------------------------------------------------------------------- *
/* ! Base */
/* ------------------------------------------------------------------------- */

/* Typography */



@font-face {
  font-family: 'Cirka';
  src: url('css/fonts/Cirka-Light.woff2') format('woff2'),
       url('css/fonts/Cirka-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Cirka';
  src: url('css/fonts/Cirka-Regular.woff2') format('woff2'),
       url('css/fonts/Cirka-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Cirka';
  src: url('css/fonts/Cirka-Bold.woff2') format('woff2'),
       url('css/fonts/Cirka-Bold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'CharlevoixPro-Regular';
  src: url('css/fonts/CharlevoixPro-Regular.woff2') format('woff2'),
       url('css/fonts/CharlevoixPro-Regular.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}



@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital@1&display=swap');

.menu-item-description {
  display: block;
  font-size: 1rem;
}

body {
  background-color: var(--bg-color);
}

body, p {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-family: 'CharlevoixPro-Regular';
}

h1, .h1, 
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
.unbutton,
.serif-font {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-family: 'Cirka' !important;
  font-weight: 300;
}

body, p {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: .012rem;
}

.index_small,
.index_small p,
small.small {font-size:0.87rem}




h1 b, h1 strong,
h2 b, h2 strong,
h3 b, h3 strong,
h4 b, h4 strong,
h5 b, h5 strong,
h6 b, h6 strong {
  font-weight: 600;
}

h2, .h2 {
  font-size: 2.8rem;
}

.display-hero {
  font-size: calc(30px + 7vw);
  margin: 0;
  /* text-transform: uppercase; */
}
.desc-hero {
  font-size: calc(8px + .5vw);
  letter-spacing: calc(1px + .3vw);
  display: block;
  text-align: center;
}

a {
  color: black;
}


@media (max-width: 767px) {
  body, p {font-size: .9rem;}
  h2 {font-size: 1.7rem;}
}


.line-height-1 {
  line-height: 1;
}




/* --------------------------------------------------------------------------------------------------------------------------- */
/* ! Header */
/* --------------------------------------------------------------------------------------------------------------------------- */

/* NAVBAR */

.flx-brand-logo a {
  font-size: 12px;
  letter-spacing: 2px;
  color: black;
  text-transform: uppercase;
}

header .flx-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flx-menu {display: flex;align-items: center;}
.flx-menu-ul {display: flex;margin-bottom:0}
.flx-menu-ul .flx-menu-li {display:flex;margin-bottom: 0;}
.flx-menu-ul .flx-menu-li a {padding: 15px 20px;}
.menu-item-has-children.flx-menu-li {position: relative;}
.menu-item-has-children.flx-menu-li:hover ul.sub-menu {display: block;}
.menu-item-has-children.flx-menu-li > ul.sub-menu {
    display: none;
    position: absolute;
    top: 52px;
    left: -3px;
    margin: 0;
    z-index: 99999;
    min-width: 220px;
    background: #fff;
    box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  }
.menu-item-has-children.flx-menu-li:hover ul.sub-menu {display: block;}
.dropdown-menu {margin:0;}


/* MOBILE NAVBAR ANIMATION */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.header-row {
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    text-decoration: none;
}

.hamburger path {
    fill: #fff;
    stroke: #fff;
}

.hamburger {width: 50px; height: 50px;position: relative;padding:0}
.hamburger .bar-1, .hamburger .bar-3 {
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background-color: black;
  top: 20px;
}

.body-dark .hamburger .bar-1, .body-dark .hamburger .bar-3 {
  background-color: white;
}

.body-dark .flx-brand-logo a {
  color: white;
}

.hamburger .bar-3 {
  top: 30px;
  width: 25px;
}

.fullpage-menu {
    position: fixed;
    left: 0; top: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    display: none;
}

.fullpage-menu-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 100px 60px;
}

.fullpage-menu-inner li {
    overflow: hidden;
    line-height: 1;
    text-align: center;
    position: relative;
  }

  .fullpage-menu-inner li + li {
    margin-top: 30px;
  }

  .fullpage-menu-inner nav li a {
    font-family: 'Cirka';
    font-size: 4.5rem;
    color: transparent;
    display: inline-block;
    color: black;
    padding: 20px 0;
    width: 100%;
  }

  @media (max-width: 767px) {
    .fullpage-menu-inner nav li a {font-size: 3rem;}
  }

  .fullpage-menu-inner nav li a span {
    font-family: 'CharlevoixPro-Regular';
    font-size: .8rem;
    font-size: .78rem;
    margin: 10px 0;
  }

 

.menu-bg {
    height: 0;
    width: 100%;
    position: absolute;
    left: 0; top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    /* opacity: 0; */
}


/* ------------------------------------------------------------------------- *
/* ! Modules */
/* ------------------------------------------------------------------------- */

.sticky-top-header-fixed {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  z-index: 1020;
}

.easein {
  height: 100%;
  overflow: hidden;
}


/* ------------------------------------------------------------------------- *
/* ! Text Split */
/* ------------------------------------------------------------------------- */

[text-split] {opacity: 0;}
html.w-editor [text-split] {opacity: 1;}

.word {
	overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
  transform-origin: bottom;
}

/* ------------------------------------------------------------------------- *
/* ! Marquee */
/* ------------------------------------------------------------------------- */

.ClientsCarouselBlock .swiper-slide {
  width: 180px;
  height: 180px;
}

.ClientsCarouselBlock .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



/* ------------------------------------------------------------------------- *
/* ! Index */
/* ------------------------------------------------------------------------- */

.slider-nav-dot {
  width: 4rem;
  height: 4rem;
  border: 1px solid white;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ------------------------------------------------------------------------- *
/* ! Sidebar */
/* ------------------------------------------------------------------------- */

.widget_search {
  margin-bottom: 50px;
}

/* ------------------------------------------------------------------------- *
/* ! Footer */
/* ------------------------------------------------------------------------- */

a.social-icons {
  width: 62px;
  height: 62px;
  border: 1px solid grey;
  border-radius: 50%;
  text-align: center;
  font-size: 25px;
  line-height: 57px;
  margin-right: 5px;
  display: inline-block;
}

a.social-icons:hover {
  border: 1px solid #000;
  background-color: #000;
}

/* ------------------------------------------------------------------------- *
/* ! MOUSE CURSOR */
/* ------------------------------------------------------------------------- */

/* * {
  cursor: none;
}

.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--bs-secondary);
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999999;
}

.cursor__follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 70px;
  height:70px;
  border-radius: 50%;
  border: 2px solid var(--bs-secondary);
  z-index: 9999999;
  pointer-events: none;
} */




/* ------------------------------------------------------------------------- *
/* ! GSAP */
/* ------------------------------------------------------------------------- */
/* .split-parent {
  overflow: hidden;
}
.split-child {
  display: inline-block;
} */

/* --------------------------------------------------------------------------------------------------------------------------- */
/* ! Responsive */
/* --------------------------------------------------------------------------------------------------------------------------- */

/* ----------------------------- */
/* ! -- Desktop */
/* ----------------------------- */
@media (min-width: 1023px) {
}

/* ----------------------------- */
/* ! -- Tablet */
/* ----------------------------- */

@media (max-width: 998px) {
}

/* ----------------------------- */
/* ! -- Smarthphone */
/* ----------------------------- */

@media (max-width: 767px) {
  body.admin-bar .navbar-fixed-top {
    top: 42px;
  }
}

/* --------------------------------------------------------------------------------------------------------------------------- */
/* WordPress Default Styles */
/* --------------------------------------------------------------------------------------------------------------------------- */

/* Pagination */
.pagination {
  margin: 40px 0 40px 0;
  padding: 0;
  width: 100%;
}
.pagination span,
.pagination a {
  float: left;
  margin: 0 10px 10px 0;
  padding: 14px 19px;
  border: 1px solid #ddd;
}

/* Gallery */
.gallery {
  float: left;
  margin: 20px 0 20px 0;
  width: 103.55%;
}
.gallery-item {
  float: left;
  width: 33.333333%;
  text-align: center;
}
.gallery img {
  margin: 0 10% 0 0;
  width: 90%;
  height: auto;
  border: none !important;
}
.gallery-caption {
  width: 90%;
  margin: 10px 0 0 0;
}

/* Image */
.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
  max-width: 97%;
  height: auto;
}
.alignright {
  float: right;
  margin-bottom: 10px;
  margin-left: 20px;
  max-width: 97%;
  height: auto;
}
.aligncenter {
  display: block;
  margin: 0 auto;
  max-width: 97%;
  height: auto;
}
.alignnone {
  max-width: 97%;
  height: auto;
}

/* img responsive */
.img-res {
  width: 100%;
  height: auto;
}

/* video responsive */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Table */
table {
  border-collapse: collapse;
  margin: 40px 0;
  width: 100%;
}
table,
th,
td {
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 18px;
  text-transform: capitalize;
}
table tr:first-child td {
  font-weight: 900;
  text-transform: uppercase;
  background: #eee;
  padding: 12px 8px;
}

/* Image Caption */
.wp-caption {
  margin-top: 1.5rem;
  margin-bottom: 0px;
  padding: 10px;
  max-width: 97%;
  border: 1px solid #ddd;
  text-align: center;
}
.wp-caption img {
  margin: 0;
  padding: 0;
  width: 100% !important;
  height: auto;
  border: 0 none;
}
.wp-caption p.wp-caption-text {
  margin: 0;
  padding: 8px;
  font-size: 1em;
  line-height: 17px;
}

/* Stiky */
.sticky {
  border-right: 3px solid #eee;
  border-bottom: 3px solid #ddd;
}

/* Search */
.search-form {
  background: #eee;
}
.search-form input[type="text"] {
  width: 80%;
  color: #333;
}
.search-form button {
  float: right;
  padding: 10px 15px 0 0;
  border: none;
  background: none;
  padding: 11px;
}

/* Contact Form 7 */
.wpcf7 label {
  width: 100%;
}

/* Comments */
.comment-form-author,
.comment-form-email,
.comment-form-url {
  float: left;
  margin-top: 20px;
  margin-right: 3%;
  width: 30.3333333%;
}
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
  width: 100%;
}

ol.commentlist {
  margin: 0 0 1em;
  padding: 0;
  list-style: none;
  text-indent: 0;
}
ol.commentlist li.comment {
  padding: 1em;
  border-top: 1px solid #eee;
}
ol.commentlist li.comment div.vcard cite.fn {
  text-transform: uppercase;
  font-size: 14px;
}
ol.commentlist li.comment div.vcard img.avatar {
  float: left;
  margin: 6px 1em 1em 0;
  border-radius: 50px;
}
ol.commentlist li.comment div.comment-meta {
  font-size: 12px;
}
ol.commentlist li.comment ul {
  margin: 0 0 1em 2em;
}
ol.commentlist li.comment div.reply {
  margin-left: 80px;
  font-size: 11px;
}
ol.commentlist li.comment div.reply a {
  font-weight: bold;
}
ol.commentlist li.comment ul.children {
  margin: 1em 0 0;
  list-style: none;
  text-indent: 0;
}
ol.commentlist li.comment ul.children li.depth-2 {
  margin: 0 0 0.25em 0.25em;
  border-left: 1px solid #eee;
}
ol.commentlist li.comment ul.children li.depth-3 {
  margin: 0 0 0.25em 0.25em;
  border-left: 1px solid #eee;
}
ol.commentlist li.comment ul.children li.depth-4 {
  margin: 0 0 0.25em 0.25em;
  border-left: 1px solid #eee;
}
ol.commentlist li.even {
  background: #fff;
}
ol.commentlist li.odd {
  /* background: #f9f9f9; */
}
ol.commentlist li.parent {
  border-left: 1px solid #eee;
}
ol.commentlist li.bypostauthor .fn {
  font-weight: bold;
}
ol.commentlist li img {
  max-width: 97%;
}

input[type="text"],
input[type="email"] {
  width: 98%;
  margin-right: 10px;
  padding: 10px;
  border: none;
  background: #eee;
  -webkit-appearance: none;
  border-radius: 0;
  font-size: 14px;
}
textarea {
  padding: 10px;
  width: 98%;
  border: none;
  background: #eee;
  -webkit-appearance: none;
  border-radius: 0;
  font-size: 14px;
}
input[type="submit"] {
  margin-top: 10px;
  padding: 15px 20px;
  color: #fff;
  text-transform: uppercase;
  background: #333;
  border: none;
  font-size: 14px;
}
#comments {
  width: 100%;
}

/* Calendar Widget */
#wp-calendar {
  width: 100%;
}
#wp-calendar a {
  padding: 0;
  border: none;
}
#wp-calendar caption,
.screen-reader-text {
  padding-bottom: 10px;
  color: #000;
  text-align: left;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
}
#wp-calendar thead {
  font-size: 10px;
}
#wp-calendar thead th {
  padding-bottom: 10px;
}
#wp-calendar tbody {
  color: #aaa;
}
#wp-calendar tbody td {
  padding: 8px;
  border: 1px solid #fff;
  background: #f5f5f5;
  text-align: center;
}
#wp-calendar tbody td:hover {
  background: #fff;
}
#wp-calendar tbody .pad {
  background: none;
}
#wp-calendar tfoot #next {
  text-align: right;
  text-transform: uppercase;
  font-size: 10px;
}
#wp-calendar tfoot #prev {
  padding-top: 10px;
  text-transform: uppercase;
  font-size: 10px;
}




