/*
Theme Name: AITheme
Author: OnMeService
Author URI: https://www.onmeservice.it/
Description: Descrizione da inserire successivamente.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready
Version: 1.0
Requires at least: 5.0
Tested up to: 5.9
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aitheme
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.
*/
/** TABLE OF CONTENTS
1.0 WordPress Core
2.0 CSS Starter
3.0 Grid System
4.0 Button
5.0 Typography
6.0 Global Style
	6.1 Homepage
	6.2 Footer
	6.3 Grid
	6.4 Page
7.0 Jetpack
8.0 Breadcrumbs
9.0 Blog
	9.1 Pagination
	9.2 Single
	9.3 Comments
10.0 Sidebar
11.0 Form
12.0 Responsive Embed
13.0 Breakpoints
**/

/** 1.0 WordPress Core **/
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.wp-block-button.aligncenter {
  display: inline-block;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.wp-block-columns {
  margin-bottom: 0;
}

.wp-block-columns h3{
  font-size: 1.17rem;
  margin-bottom: 15px;
}


/** 2.0 CSS Starter **/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.clearer {
  clear: both;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
}

*:focus {
  outline: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 9999px white;
}

input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 50px white inset;
}

body,
input,
textarea,
select,
button {
  font-family: 'Poppins', sans-serif;
}

header,
nav,
article,
aside,
section,
footer,
main,
figure,
figcaption {
  display: block;
}

figure{
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
  transition: 0.3s;
}

.content {
  width: 1170px;
  margin: 0 auto;
}

.fluid {
  width: 100%;
  margin: 0;
}

.row {
  margin: 0;
}

.spacer {
  padding: 70px 0;
}

.responsive,
.responsive img {
  width: 100%;
  height: auto;
}

.center {
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.hidden {
  opacity: 0;
}

.visible {
  opacity: 1;
}

.grey {
  background: #efefef;
}

.small-divider {
  padding: 5px;
}

/*Button*/
.button, .submit, .wpcf7-submit, .wp-block-button{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  padding:15px 25px;
  margin-top:10px;
  }

.button:hover, .submit:hover, .wpcf7-submit:hover, .wp-block-button:hover {
  background-color: #01cdfe;
  box-shadow: 0px 15px 20px rgba(1, 205, 254, 0.4);
  color: #fff;
  text-decoration: none;
}

.wp-block-button{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  border-radius: 45px;
  transition: all 0.3s ease 0s;
  padding:15px 25px;
  margin-top:10px;
}

.wp-block-button a{
  border: none;
  padding: 0;
  background-color: initial;
}

.is-style-outline{
  background-color: initial;
  color: #fff;
  border: 2px solid #fff;
}

.is-style-outline:hover{
  border: 2px solid #01cdfe;
}

.b-dark{
  color: #fff;
  background-color: #333;
}

/** 5.0 Typography **/
h1,
h2,
h3,
h4,
h5,
h6,
label {
  color: #222;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* h2::before,
.comments-area h3::before,
.comment-form h3::before {
  background: #45de27;
  background: -moz-linear-gradient(45deg, #45de27 0%, #01cdfe 100%);
  background: -webkit-linear-gradient(45deg, #45de27 0%, #01cdfe 100%);
  background: linear-gradient(45deg, #45de27 0%, #01cdfe 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45de27', endColorstr='#01cdfe',GradientType=1 );
  content: "\020";
  display: block;
  height: 2px;
  margin: 0 0 1rem;
  width: 1em;
} */
p {
  color: #222;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 30px;
}

figcaption {
  color: #222;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 24px;
  font-style: italic;
}

.has-large-font-size {
  line-height: 32px;
}

blockquote {
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 300;
  color: #222;
  border-left: 5px solid #efefef;
  padding-left: 30px;
  line-height: 24px;
  margin-bottom: 30px;
}

.wp-block-pullquote blockquote {
  border-left: none;
  border-top: 5px solid #efefef;
  border-bottom: 5px solid #efefef;
  padding: 30px;
}

ul,
ol {
  color: #222;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 24px;
  padding-bottom: 30px;
}

.page-item ul,
.page-item ol {
  padding-left: 1rem;
}

.page-item h3 {
	font-size: 1.17rem !important;
	margin-bottom:15px
}

.page-item a {
	text-decoration: none;
}

.wp-block-latest-posts.wp-block-latest-posts__list,
.page-item .wp-block-social-links {
  padding-left: 0;
}

.wp-block-latest-posts li {
  margin-bottom: 60px;
}

.widget .wp-block-latest-posts li {
  margin-bottom: 0;
}

.wp-block-latest-posts li > a {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none!important;
}

.widget .wp-block-latest-posts li > a {
  font-size: 0.875rem;
  font-weight: 300;
}

label {
  display: inline-block;
  font-size: 1rem;
  margin-bottom: 5px;
}

hr, .wp-block-separator{
  max-width:50px;
	border-color:#01cdfe;
	border-width:3px;
  margin: 0px 0 30px 0;
  opacity: 1;
}

hr.center{
  margin: 0px auto 30px auto;
}

hr.right{
  margin: 0px 0 30px auto;
}

fieldset {
  border: 1px solid #01cdfe;
  padding: 15px;
}

legend {
  color: #222;
}

.main h2,
.main h3,
.main h4,
.main h5,
.main h6 {
  color: #fff;
}

.main h2::before {
  background: transparent !important;
}

table {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid #bbb;
  padding: 0.625rem;
}

td {
  font-weight: 300;
  font-size: 0.875rem;
}

tbody th {
  font-weight: 300;
  text-align: left;
}

.odd {
  background: #efefef;
}

dl {
  margin-bottom: 30px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 24px;
  color: #222;
}

dt {
  font-size: 1rem;
  font-weight: 500;
}

dd {
  padding-left: 1rem;
}

address,
kbd {
  font-size: 0.875rem;
  font-weight: 300;
  color: #222;
}

address {
  margin-bottom: 30px;
}

h2.no-match-title {
  font-size: 1.25rem !important;
  display: inline-block !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.wp-block-cover__inner-container p {
  line-height: 32px !important;
}

.wp-block-group.has-background {
  padding: 30px;
}

.wp-block-cover {
  height: auto;
}

.wp-block-post-title {
  font-size: 1.15rem;
  font-weight: 500;
}

.page-item .wp-block-post-title a,
.page-item .wp-block-site-title a {
  color: #222;
}

.page-item .wp-block-post-title a:hover,
.page-item .wp-block-site-title a:hover {
  color: #01cdfe;
}

.wp-block-post-date {
  font-size: 0.75rem;
  margin-bottom: 30px;
}

.wp-block-loginout,
.wp-block-post-terms {
  font-size: 0.875rem;
  font-weight: 300;
}

.wp-block-post-terms {
  margin-bottom: 30px;
}

/** 6.0 Global Style **/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99998;
  padding: 20px 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background: transparent;
}

.sticky-menu {
  background: rgba(0, 0, 0, 0.8);
  padding: 5px 0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: row;
}

.brand img {
  width: 140px;
  max-width: 100%;
  height: 100%;
}

.navbar {
  cursor: pointer;
  margin-right: 10px;
  padding-top: 5px;
  display: none;
}

.icon-bar {
  display: block;
  width: 22px;
  height: 1px;
  margin: 0 5px 5px;
  background: #fff;
}

.menu {
  display: flex;
  flex-direction: row-reverse;
}

.menu ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  padding-bottom: 0;
}

.menu li {
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.menu .menu-item-has-children > a::after {
  content: ' \f0d7';
  font-family: FontAwesome;
}

.menu .sub-menu .menu-item-has-children > a::after {
  content: '' !important;
}

.menu a {
  display: inline-block;
  padding: 18px;
  text-decoration: none;
  color: #fff;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.menu a:hover,
.current-menu-item > a {
  color: #01cdfe;
}

.menu .menu-item-has-children .sub-menu {
  flex-direction: column !important;
  position: absolute;
  top: 60px;
  left: 0;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.menu .menu-item-has-children:hover .sub-menu {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  visibility: visible;
  opacity: 1;
  top: 50px;
}

.sub-menu li {
  width: 200px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sub-menu li:last-child {
  border-bottom: none;
}

.sub-menu a {
  padding: 14px 18px;
  color: #222;
  width: 100%;
}

.sub-menu a:hover {
  color: #222;
  background: #efefef;
}

.sub-menu .current-menu-item > a {
  color: #01cdfe;
}

/** 6.1 Homepage **/
.main {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  display: flex;
  align-items: center;
  color: #fff;
}

.main-content {
  padding: 30px 2%;
}

.main-content h1 {
  color: #fff;
  font-size: 2.825rem;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.main-content p {
  color: #efefef;
  font-size: 1.25rem;
  text-transform: capitalize;
  margin-bottom: 60px;
}

/** 6.2 Footer **/
.footer {
  position: relative;
  background: #222;
  color: #fff;
}

.footer p,
.textwidget.custom-html-widget {
  color: #fff;
  margin-bottom: 25px;
}

.footer a {
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.footer a:hover {
  color: #01cdfe;
}

.footer ul{
  margin: 0;
  padding-bottom: 0px;
}

.social,
.footer li {
  list-style: none;
}

.social li {
  display: inline-block;
  margin-right: 30px;
}

.footer-social-icons {
    width: 350px;
    display:block;
    margin: 0 auto;
}
.social-icon {
    color: #fff;
}
ul.social-icons {
    margin-top: 10px;
}
.social-icons li {
    vertical-align: top;
    display: inline;
    height: 100px;
}
.social-icons a {
    color: #fff;
    text-decoration: none;
}
.fa-facebook {
    padding:10px 14px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
    background-color: #322f30;
}
.fa-facebook:hover {
    background-color: #3d5b99;
}
.fa-twitter {
    padding:10px 12px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
    background-color: #322f30;
}
.fa-twitter:hover {
    background-color: #00aced;
}
.fa-rss {
    padding:10px 14px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
    background-color: #322f30;
}
.fa-rss:hover {
    background-color: #eb8231;
}
.fa-youtube {
    padding:10px 14px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
    background-color: #322f30;
}
.fa-youtube:hover {
    background-color: #e64a41;
}
.fa-linkedin {
    padding:10px 14px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
    background-color: #322f30;
}
.fa-linkedin:hover {
    background-color: #0073a4;
}
.fa-github {
    padding:10px 14px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
    background-color: #322f30;
}
.fa-github:hover {
    background-color: #5a32a3;
}

.footer .widget {
  padding: 0;
  margin-bottom: 0.75rem;
  width: 100%;
}

.footer .widget h1,
.footer .widget h2,
.footer .widget h3,
.footer .widget h4,
.footer .widget h5,
.footer .widget h6,
.footer dl.gallery-item,
.footer .widget .menu a,
.footer .widget a,
.footer dl,
.footer .widget ul,
.footer .widget ol,
.footer .widget table,
.footer address,
.footer kbd,
.footer .widget pre,
.footer .widget cite {
  color: #fff !important;
}

.footer .tagcloud {
  margin-bottom: 30px;
}

.footer .odd,
.footer .even {
  background: transparent;
}

.copyright{
  padding: 13px 0;
  background-color: #111;
}
.copyright p{
  font-size: 11px;
  color: #95979a;
  opacity: 0.9;
  margin: 0 !important;
  letter-spacing: 0.8px;
}

/* 6.3 Grid */
.grid-item {
  margin: 5px;
  margin-bottom: 30px;
}

.grid-item1 {
  background: #f6c770;
}

.grid-item2 {
  background-color: #efefef;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  height: 400px;
}

/** 6.4 Page **/
.main-page {
  height: 0;
  padding: 150px 0;
}

.main-page h1 {
  margin-bottom: 0;
}

.wp-block-audio {
  margin-bottom: 30px;
}

.wp-block-archives-dropdown {
  margin-bottom: 20px;
}

.wp-block-media-text__media img {
  margin-bottom: 0;
}

.wp-social-link a {
  transform: rotate(0);
  transition: 0.3s;
}

.wp-social-link a:hover {
  transform: rotate(360deg);
}

/** 8.0 Breadcrumbs **/
.breadcrumbs {
  background: #01cdfe;
  padding: 20px 0;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.breadcrumbs p {
  margin-bottom: 0;
  font-size: 0.75rem;
  color: #fff;
  letter-spacing: 0.063rem;
  text-transform: uppercase;
}

.breadcrumbs .fa-caret-right {
  margin: 0 15px;
}

.breadcrumbs a {
  text-decoration: none;
  color: #222;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.breadcrumbs a:hover {
  color: #fff;
}

.page-error {
  height: auto;
  min-height: 70vh;
}

.page-blog {
  height: auto;
  min-height: 100vh;
}

/** 9.0 Blog **/
.flex-column {
  display: flex;
  flex-wrap: wrap;
}

.column {
  display: flex;
  max-width: 33.33333%;
  flex: 0 0 33.33333%;
  flex-direction: column;
  transition: all 0.2s ease-in-out;
  padding: 0 1.5rem;
  margin-bottom: 30px;
}

.column img {
  display: block;
  transition: inherit;
  margin-bottom: 0 !important;
}

.wp-block-image img{
  width: 100%;
}

.column:hover img,
.column-main:hover img {
  transform: translateY(-0.25rem);
  box-shadow: 0 1rem 2rem -1rem rgba(0, 0, 0, 0.75);
}

.column .time {
  font-size: 0.75rem;
}

.card {
  padding: 1.7rem;
  flex: 1 1 auto;
  margin-bottom: 10px;
}

.card h2 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.card-img {
  box-shadow: 0 1rem 2rem -1rem rgba(0,0,0,.75);
  transition: 0.3s;
}

.card-img img{
  max-height: 680px;
}

.card-img:hover{
  transform: translateY(-.25rem);
}

.img-ani{
  transition: 0.3s;
}
.img-ani:hover, figure:hover{
  transform: translateY(-.25rem);
}

.card a {
  color: #222;
  text-decoration: none !important;
}

.card a.button{
  color: #fff;
}

.card a:hover {
  color: #fff;
}

.wrapper {
  position: relative;
}

.square-comments {
  width: 90%;
  height: 160px;
  -webkit-transform: rotate(2deg);
  -moz-transform: rotate(2deg);
  transform: rotate(2deg);
  background: #00dba8;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  top: -60px;
  left: 10%;
}

.square-error {
  top: 60px;
  background: #96d7fe;
}

.taxonomy-description {
  padding: 20px 100px;
}

.taxonomy-description p {
  margin-bottom: 5px;
  font-size: 1rem;
  font-style: italic;
}

/** 9.1 Pagination **/
.pagination {
  display: inline-block;
  padding-bottom: 70px;
}

.page-numbers {
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid #96d7fe;
  text-decoration: none !important;
  color: #222 !important;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 5px;
}

a.page-numbers:hover {
  background: #96d7fe;
  color: #fff !important;
}

.current {
  background: #96d7fe;
  color: #fff !important;
}

.dots {
  border: none;
}

.post-page-numbers {
  display: inline-block;
  padding: 2px 10px;
}

.post-page-numbers:hover {
  color: #fff !important;
  background: #96d7fe;
  text-decoration: none !important;
}

/** 9.2 Single **/
.section-post {
  padding-right: 10%;
  padding-left: 20%;
  margin-bottom: 30px;
  position: relative;
}

.section-full {
  padding-left: 40%;
}

.section-post img {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  position: relative;
}

.entry-meta a,
.taxonomy a {
  text-decoration: none !important;
}

.entry-meta .time {
  margin-right: 20px;
}

.taxonomy {
  border-top: 1px solid #efefef;
  padding: 20px 0;
  font-size: 0.875rem;
  color: #222;
  font-weight: 300;
}

.post-categories {
  list-style: none;
  display: inline-block;
  margin-left: 0;
  padding-bottom: 0;
}

/** 9.3 Comments **/
.comments-area h2,
.comments-area h3,
.comment-form h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.comments-area ol,
.comments-area ul {
  padding-left: 0;
}

.comment-form p {
  text-transform: uppercase;
}

.comment-form [type=submit],
.comment-form [type=reset],
.page-item [type=submit],
.page-item [type=reset] {
  color: #222;
}

.comment-form [type=submit]:hover,
.comment-form [type=reset]:hover,
.page-item [type=submit]:hover,
.page-item [type=reset]:hover {
  color: #fff;
}

.comments-area ol {
  list-style: none;
  margin-left: 72px;
}

.comment-meta {
  position: relative;
}

.avatar {
  position: absolute;
  top: 0;
  right: calc(100% + 1rem);
  border-radius: 100%;
  display: block;
  height: calc(3.25 * 1rem);
  width: calc(3.25 * 1rem);
}

.wp-block-latest-comments .avatar,
.wp-block-latest-comments__comment-avatar {
  top: auto;
  right: auto;
}

.comment-metadata {
  margin-bottom: 30px;
  text-transform: uppercase;
}

.comment-metadata a,
.comment-form a {
  color: #222;
  text-decoration: none !important;
}

.comment-metadata a:hover,
.comment-form a:hover {
  color: #01cdfe;
}

.edit-link {
  margin-left: 30px;
}

.edit-link a::before {
  content: '\f040  ';
  font-family: FontAwesome;
}

.fn {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.fn a {
  text-decoration: none !important;
  color: #222;
}

.fn a:hover {
  color: #01cdfe;
}

.reply {
  padding-bottom: 40px;
}

.reply a {
  text-transform: uppercase;
  text-decoration: none !important;
}

.reply a::before {
  content: '\f112  ';
  font-family: FontAwesome;
}

.comments-area small {
  font-size: 0.75rem;
  font-weight: 300;
}

.comments-area small a {
  text-decoration: none !important;
}

.right {
  margin-right: 4px;
}

.says {
  display: none;
}

.children .odd,
.comment.odd {
  background: #fff;
}

.comment-navigation {
  margin-bottom: 30px;
}

.nav-previous,
.nav-next {
  text-transform: uppercase;
  margin: 15px 5px 0;
}

.comment-body ul,
.comment-body ol {
  padding-left: 1rem;
  margin-left: 0;
}

.comment-body ol {
  list-style: decimal;
}

.pingback {
  background: transparent;
  margin-bottom: 30px;
}

.pingback .edit-link {
  display: block;
  float: none;
  margin-left: 0;
}

.pingback .edit-link a {
  color: #222;
  text-transform: uppercase;
  text-decoration: none;
}

.pingback .edit-link a:hover {
  color: #01cdfe;
}

/** 10.0 Sidebar **/
aside {
  position: relative;
}

.widget {
  padding: 0 30px 0 60px;
  margin-bottom: 30px;
}

.widget h3 {
  font-size: 1.17rem;
  margin-bottom: 15px;
}

.widget ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  font-size: 0.875rem;
  color: #222;
}

.widget li {
  line-height: 28px;
  text-transform: uppercase;
}

.widget a {
  text-decoration: none !important;
  color: #222;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.widget a:hover {
  color: #01cdfe;
}

.widget pre,
.widget cite {
  color: #222;
}

.widget table {
  color: #222;
}

.search-form {
  position: relative;
}

.search-form input {
  margin-bottom: 70px;
}

.search-form [type=submit] {
  bottom: 3px;
  padding: 0.5em 1em;
  position: absolute;
  right: 3px;
  top: 3px;
  background: #45de27;
  color: #fff;
  border: none;
  font-size: 1rem;
}

.search-form [type=submit]:hover {
  background: #222;
  color: #fff;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.wp-block-search__input {
  margin-bottom: 10px;
  max-width: none!important;
  border-color: #bbb !important;
}

.wp-block-search__button {
  margin-left: 0 !important;
  margin-bottom: 30px;
}

.widget .wp-block-search__button {
  background-color: transparent;
  border-color: #01cdfe;
}

.wp-block-file a {
  font-size: 0.875rem;
  font-weight: 300;
}

.wp-block-file .wp-block-file__button {
  background: #01cdfe;
  text-transform: uppercase;
}

.wp-block-gallery {
  padding-left: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.wp-block-gallery ul.blocks-gallery-grid {
  padding-left: 0;
}

.wp-block-gallery ul.blocks-gallery-grid img {
  margin-bottom: 0;
}

.wp-block-gallery .blocks-gallery-item figcaption {
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 100%);
  padding: 20px 10px;
}

td#prev,
td#next,
.wp-calendar-nav-prev,
.wp-calendar-nav-next {
  display: none;
}

.gallery img {
  border: none !important;
}

.widget .menu {
  display: block;
}

.widget .menu li {
  font-size: 0.875rem;
  font-weight: 300;
}

.widget .menu .menu-item-has-children > a::after {
  content: '' !important;
}

.widget .menu a {
  padding: 0;
  color: #222 !important;
}

.widget .menu .sub-menu {
  display: none !important;
}

span.wpcf7-list-item-label{
  font-size: 13px;
  font-weight: lighter;
  text-transform: capitalize;
}

/** 11.0 Form **/
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
  color: #222;
  background: #fff;
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  border: 1px solid #bbb;
  display: block;
  border-radius: 0;
  padding: 1em;
  width: 100%;
  -webkit-appearance: none;
}

textarea {
  padding-top: 0.75rem;
  padding-bottom: 07.5rem;
  height: 180px;
  resize: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: #01cdfe;
}

[type=submit],
[type=reset],
[type=button] {
  /*background: transparent;*/
  -webkit-appearance: button;
  cursor: pointer;
}

[type=file] {
  display: block;
}

.page-item p label {
  width: 100%;
  margin-bottom: 10px;
}

.wp-block-search__inside-wrapper {
  display: block !important;
}

.wpcf7-form p{
  margin-bottom:10px;
}

.card-body{
  padding: 10px;
}

/** 12.0 Responsive Embed **/
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

iframe {
  display: block;
  width: 100%;
}
.service-box {
	margin:50px auto 0;
	max-width:400px;
}
@media(min-width:992px) {
	.service-box {
		margin:20px auto 0;
	}
}
.service-box p {
	margin-bottom:0;
}
.iconbox {
	display:inline-block;
	width:80px;
	height:80px;
	color:#fff;
	border-radius:50%;
	line-height:90px;
  margin-bottom:20px;
}

/** Desktop, iPad Pro **/
@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .content {
    width: 92%;
    margin: 0 4%;
  }
}

@media only screen and (max-width: 1200px) {
  .navbar {
    display: block;
  }

  .menu .nav {
    display: block;
    position: fixed;
    left: -290px;
    width: 280px;
    height: 100%;
    top: 0;
    z-index: 99998;
    overflow-y: scroll !important;
    background: rgba(0, 0, 0, 0.95);
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    -moz-transition: -moz-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    -webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
  }

  .wide {
    -webkit-transform: translate(290px, 0);
    -moz-transform: translate(290px, 0);
    transform: translate(290px, 0);
  }

  .nav > li:first-child {
    padding-top: 40px;
  }

  .menu .menu-item-has-children .sub-menu {
    position: relative;
    display: block;
    visibility: visible !important;
    opacity: 1;
    top: 0;
    background: transparent;
    border: none;
  }

  .menu .menu-item-has-children:hover .sub-menu {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    transition-duration: 0s;
    top: 0;
  }

  .menu li,
  .menu a {
    width: 100%;
    border: none;
  }

  .sub-menu li:last-child {
    border-bottom: 1px solid #2a2f36;
  }

  .sub-menu a {
    color: #fff;
  }

  .sub-menu a:hover {
    background: transparent;
    color: #01cdfe;
  }
}

/** Display 12", iPad PRO Portrait, iPad landscape **/
@media only screen and (max-width: 1024px) {
  .content {
    width: 92%;
    margin: 0 4%;
  }

  .brand {
    margin-left: 10px;
  }

  .main {
    min-height: 30vh;
    height: auto;
    padding: 30vh 0;
  }

  .main-page {
    padding: 150px 0;
  }
}


.item blockquote {
	border-left:none;
	 margin:0;
	 font-size:24px;
	line-height:1.6;
	padding:0 0px 145px 0;
	font-weight:300;
	font-family:Georgia;
	font-style:italic;
	color:#222;
}
.item blockquote p:before {
	content:"\f10d";
	font-family:'Fontawesome';
	float:left;
	margin-right:10px;
}
.parallax-image {
	background-position:50% 0;
	background-repeat:no-repeat;
	background-attachment:fixed;
	background-size:cover;
	 position:relative;
}
.wrapsection {
	padding:0px 0;
	position:relative;
	margin:0px 0;
}
.parallax-content {
	position:relative;
	z-index:4;
	padding:80px 0;
}
.parallax .overlay {
	position:absolute;
	top:0;
	bottom:0;
	right:0;
	left:0;
	opacity:0.0;
	z-index:2;
}
.funfacts .icon {
	font-size:40px;
	display:inline-block;
	width:80px;
	height:80px;
	line-height:80px;
	text-align:center;
	border-radius:50%;
	margin-bottom:10px;
	clear:both;
	color:#fff;
	border:0;
	background:rgba(0,0,0,0.2);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
}
.funfacts .icon:hover{
  background-color: #01cdfe;
  box-shadow: 0px 15px 20px rgba(1, 205, 254, 0.4);
}

.funfacts .icon a {
	color:#fff;
}
.funfacts .counter {
	font-size:70px;
	color:#fff;
	font-weight:700;
}
.funfacts h4 {
	text-transform:uppercase;
	font-size:15px;
	margin:22px 0 0;
	position:relative;
	letter-spacing:1px;
	color: #fff;
}

/*=========================*/
/* Pricing */
/*=========================*/
.wow-pricing-table {
	list-style:none;
	margin:0;
	padding:0;
	-webkit-transition:0.3s;
	-moz-transition:0.3s;
	transition:0.3s;
}
.wow-pricing-table div {
	list-style:none;
}
.wow-pricing-table>div {
	list-style:none;
	text-shadow:none;
	margin-bottom:0px;
	border:1px solid #eee;
		margin:0px 15px;
}
.wow-pricing-table>div.featured {
		z-index:1;
}
.wow-pricing-table>div.featured {
}
.wow-pricing-table>div.featured .wow-pricing-header {
	background-color:#01cdfe;
}
.wow-pricing-table:hover {
	margin-top:-5px;
}
.wow-pricing-table .wow-pricing-header {
	text-align:center;
	padding:20px 0 10px 0;
	background-color:#333;
}
.wow-pricing-table .wow-pricing-header h5 {
	color:#fff;
	font-size:20px;
	margin:0;
	padding:0 20px 0px;
}
.wow-pricing-table .wow-pricing-cost {
	color:#fff;
	font-size:1.500em;
	line-height:1em;
	padding-top:15px;
	background:#333;
}
.wow-pricing-table .wow-pricing-per {
	font-size:0.786em;
	color:#fff;
	background-color:#333;
	padding-bottom:10px;
}
.wow-pricing-table .wow-pricing-content {
	background:#fff;
	text-align:center;
}
.wow-pricing-table .wow-pricing-content ul {
	margin:0 !important;
	list-style:none !important;
	padding-left:0;
}
.wow-pricing-table .wow-pricing-content ul li {
	margin:0 !important;
	padding:10px 20px !important;
	border-bottom:1px solid #eee;
	list-style:none !important;
	color:#555;
}
.wow-pricing-table .wow-pricing-content ul li:nth-child(2n+2) {
	background:#F9F9F9;
}
.wow-pricing-table .wow-pricing-button {
	background:#fff;
	text-align:center;
	border-top:1px solid #fff;
	padding:35px 20px 35px;
}
.wow-pricing-table .wow-pricing-button .wow-button {
	float:none;
	margin:0 auto;
	background:#333;
	color:#fff;
		border-radius:3px;
	padding:12px 22px 14px;
}
.featured .wow-pricing-per,.featured .wow-pricing-cost,.featured .wow-pricing-button .wow-button,.buttoncolor {
	background-color: #01cdfe;
}

.wpcf7-list-item{
  margin: 0;
}
