/*
Theme Name: Flock Imprim
Description: Un Child Theme pour le site Flock Imprim.
Version: 1.0
Author: Kevin de Sousa
Author URI: http://www.ikeviin.com
Template: enfold
*/

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

@font-face {
  font-family: 'fid';
  src: url('/wp-content/themes/flockimprim/fonts/fid.eot');
  src: url('/wp-content/themes/flockimprim/fonts/fid.eot#iefix') format('embedded-opentype'),
       url('/wp-content/themes/flockimprim/fonts/fid.woff2') format('woff2'),
       url('/wp-content/themes/flockimprim/fonts/fid.woff') format('woff'),
       url('/wp-content/themes/flockimprim/fonts/fid.ttf') format('truetype'),
       url('/wp-content/themes/flockimprim/fonts/fid.svg#fid') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fid';
    src: url('/wp-content/themes/flockimprim/fonts/fid.svg#fid') format('svg');
  }
}
*/
[class^="fid-"]:before, [class*=" fid-"]:before {
  font-family: "fid";
  font-style: normal;
  font-weight: normal;
  speak: never;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.fid-arrow_down:before { content: '\e800'; } /* '' */
.fid-credit-card:before { content: '\e801'; } /* '' */
.fid-cube:before { content: '\e802'; } /* '' */
.fid-marker:before { content: '\e803'; } /* '' */
.fid-rocket:before { content: '\e804'; } /* '' */
.fid-search:before { content: '\e805'; } /* '' */
.fid-trophy:before { content: '\e806'; } /* '' */
.fid-ok:before { content: '\e807'; } /* '' */
.fid-globe:before { content: '\e808'; } /* '' */
.fid-facebook:before { content: '\f052'; } /* '' */
.fid-youtube:before { content: '\f167'; } /* '' */
.fid-youtube-play:before { content: '\f16a'; } /* '' */
.fid-instagram:before { content: '\f16d'; } /* '' */


:root {
    --bg-white: #FFF;
    --bg-black: #000;
    --bg-primary: #1b9dd9;
    --bg-primary-bis: #D6FFF6;
    --bg-secondary: #231651;
    --bg-secondary-bis: #FF8484;
    --bg-thirdy: #C9E6F3;
    --title: "Lexend", sans-serif;
    --text: "Lexend", sans-serif;
}

.main_color a, .main_color .widget_first, .main_color strong, .main_color b, .main_color b a, .main_color strong a, .main_color #js_sort_items a:hover, .main_color #js_sort_items a.active_sort, .main_color .av-sort-by-term a.active_sort, .main_color .special_amp, .main_color .taglist a.activeFilter, .main_color #commentform .required, #top .main_color .av-no-color.av-icon-style-border a.av-icon-char, .html_elegant-blog #top .main_color .blog-categories a, .html_elegant-blog #top .main_color .blog-categories a:hover {
  color: #000;
}

body * {
  font-family: var(--text) !important;
}

h1, h2, h3 {
  font-family: var(--title) !important;
  text-transform: inherit !important;
}

h1 {
  font-size: 50px;
  /*width: 0;*/
}

@keyframes horizontal {
  from { width: 0; }
  to { width: 50%; }
}

h1 {
  /*animation: horizontal 0.8s ease-out forwards;
  animation-delay: 0; /* commence après la gauche */*/
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

p, li, label {
    font-size: 17px !important;
    line-height: 30px;
}

.container {
  padding: 0;
}

.bg-primary {
  background: var(--bg-primary);
}

.phone_mobile {
  display: none;
}

.left-border {
  position: fixed;
  width: 4px;
  background: var(--bg-primary);
  top: 0;
  left: 0;
  height: 0;
  z-index: 100;
}

.right-border {
  position: fixed;
  width: 4px;
  background: var(--bg-primary);
  top: 0;
  right: 0;
  height: 0;
  z-index: 100;
}

.top-border {
  position: fixed;
  width: 0;
  background: var(--bg-primary);
  top: 0;
  left: 0;
  height: 4px;
  z-index: 100;
}

.bottom-border {
  position: fixed;
  width: 0;
  background: var(--bg-primary);
  bottom: 0;
  left: 0;
  height: 4px;
  z-index: 100;
}

/* ANIMATIONS */
@keyframes grow-vertical {
  from { height: 0; }
  to { height: 100vh; }
}

@keyframes grow-horizontal {
  from { width: 0; }
  to { width: 100vw; }
}

/* Application des animations avec décalages */
.left-border {
  animation: grow-vertical 0.8s ease-out forwards;
}

.top-border {
  animation: grow-horizontal 0.8s ease-out forwards;
  animation-delay: 0; /* commence après la gauche */
}

.right-border {
  animation: grow-vertical 0.8s ease-out forwards;
  animation-delay: 0.8s; /* commence après top */
}

.bottom-border {
  animation: grow-horizontal 0.8s ease-out forwards;
  animation-delay: 0.8s; /* commence après right */
}

.block-right {
  background: #FFF;
  padding: 30px;
  /*position: absolute;*/
  top: -30px;
  left: -30px;
}

.image-overlay.overlay-type-extern {
    display: none !important;
}

header {
  top: 20px;
}

header a {
  color: #FFF !important;
  font-family: var(--title) !important;
  font-size: 16px !important;
}

header .menu-item-top-level.current_page_item a {
  position: relative;
}

header .menu-item-top-level.current_page_item a:after {
  content: '-';
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  color: #FFF;
  top: 50px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  text-shadow: -16px 0 #FFF, -8px 0 #FFF, 8px 0px #FFF, 16px 0 #FFF;
}

.header-scrolled {
    top: 0;
    padding: 10px 0;
}

.header-scrolled .header_bg {
    background: #FFF;
}

.header-scrolled a .avia-menu-text {
  color: #000;
}

.header-scrolled .menu-item-top-level.current_page_item a:after {
  color: #000;
  top: 30px;
  text-shadow: -16px 0 #000, -8px 0 #000, 8px 0px #000, 16px 0 #000;
}

.header-scrolled .sub-menu {
  background: #FFF !important;
}

.content, .sidebar {
  padding: 0;
}

.stretch_full {
  position: relative;
}

.stretch_full::after {
  content: '';
  background: rgba(0,0,0,.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

#full_slider_1 {
  margin-top: -78px;
}

#full_slider_1 a, .avia-button, .btn-primary, input[type=submit] {
  position: relative !important;
  background-color: var(--bg-primary) !important;
  border: 0 !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  font-size: 17px !important;
  line-height: 30px !important;
  color: #FFF !important;
  padding: 10px 30px !important;
  display: inline-block;
  transition: all .2s ease-in !important;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 30px;
}

#full_slider_1 a::before, .avia-button::before, .btn-primary::before, input[type=submit]:before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 80px solid var(--bg-primary-bis);
  transform: translateX(-100%);
  transition: 0.5s ease-in-out;
  z-index: -1;
}

#full_slider_1 a:hover::before, .avia-button:hover::before, .btn-primary:hover::before, input[type=submit]:hover:before {
  transform: translateX(0);
  transition: 0.5s ease-in-out;
}

#full_slider_1 a:hover, .avia-button:hover, .btn-primary:hover {
  color: #000 !important;
}

input[type=submit]:hover {
  color: #000 !important;
  background: var(--bg-primary-bis) !important;
}

input[type=text], input[type=tel], input[type=email], textarea {
  color: #000 !important;
}

.home .mejs-controls {
  display: none !important;
}

.home #after_full_slider_1 {
  display: none;
}

#top .av-video-slide .caption_fullwidth {
  bottom: 0;
}

.av-slideshow-caption {
  content: '';
  background: rgba(0,0,0,.7);
}

.page-parent .container {
  max-width: 100% !important;
}

.page-parent.page-id-32 .container,
.page-parent.page-id-34 .container {
  max-width: 90% !important;
}

.entry-content-wrapper {
  padding: 50px 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.wrapper .child-row {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.wrapper .child-row.inverse {
    flex-direction: row-reverse;
}

.wrapper .child-row:last-child{
  margin-bottom: 50px;
}

.wrapper .child-col {
    flex: 1;
}
.wrapper .image-col {
    flex: 1 1 33%;
}
.wrapper .text-col {
    flex: 1 1 66%;
    padding: 60px 50px;
}
.wrapper .inverse {
  background: var(--bg-thirdy);
}
.wrapper img.child-thumb {
    max-width: 100%;
    border-radius: 8px;
    display: block;
}
.wrapper .child-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1rem;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}
.wrapper .child-button:hover {
    background: #666;
}

.page-children-cta_container {
  margin-top: -110px;
  margin-bottom: 60px;
}

.page-children-cta li {
  display: inline-block;
  margin: 0 10px;
}

.page-children-cta li a {
  position: relative;
  background-color: transparent;
  border: 1px solid #FFF;
  border-radius: 30px;
  font-weight: 600;
  font-size: 13px;
  line-height: 30px;
  color: #FFF;
  padding: 5px 15px;
  display: inline-block;
  transition: all .2s ease-in;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.page-children-cta li a:before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 80px solid var(--bg-primary-bis);
  transform: translateX(-100%);
  transition: 0.5s ease-in-out;
  z-index: -1;
}

.page-children-cta li a:hover::before {
  transform: translateX(0);
  transition: 0.5s ease-in-out;
}

.page-children-cta li a:hover {
  color: #000 !important;
}

.page-id-32 h2.av-special-heading-tag, 
.page-id-34 h2.av-special-heading-tag {
  background: #000;
  color: #FFF !important;
  padding: 10px 20px !important;
  font-size: 20px;
  font-weight: 400 !important;
  text-align: center;
}

.page-id-32 #creation-de-logo h2, 
.page-id-34 #flocage h2 { 
  background: #004f6f;
}
.page-id-32 #charte-graphique h2,
.page-id-34 #broderie h2 {
  background: #FFF;
  box-shadow: 0 0 10px rgba(0,0,0,.1);
  color: #000 !important;
}
.page-id-32 #evolution-graphique-et-retouche h2,
.page-id-34 #sublimation h2 {
  background: #c30735;
}

#top .avia-slideshow-arrows a {
  background: #000;
  border-radius: 50px;
}

#top .av-control-minimal .avia-slideshow-arrows a:before {
  border-color: #000;
  border-radius: 50px;
}

/* Responsive : mobile = image au dessus du texte */
@media (max-width: 768px) {
    .wrapper .child-row,
    .wrapper .child-row.inverse {
        flex-direction: column;
    }
}

.with_pattern {
  position: relative;
  overflow: hidden;
}

.with_pattern:after {
  content: '';
  background: url('/wp-content/themes/flockimprim/images/pattern-fid.png');
  display: block;
  position: absolute;
  width: 100%;
  height: 120%;
  z-index: 0;
  top: -40px;
  left: 0;
  transform: rotate(-3deg);
  background-size: 260px !important;
}

#avantages, #inconvenients {
  background-color: #fff;
  border-radius: 5px;
  border: none;
  padding: 70px 20px 20px 80px;
  -webkit-box-shadow: 16px 16px 32px rgb(7 7 35 / 15%);
  box-shadow: 16px 16px 32px rgb(7 7 35 / 15%);
  margin: 0 0 50px;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  position: relative;
  overflow: hidden;
  position: relative;
}

#avantages {
  border-bottom: 6px solid #d6fff6 !important;
}

#inconvenients {
  border-bottom: 6px solid var(--bg-secondary-bis) !important;
}

#avantages:before, #inconvenients:before {
  position: absolute;
  color: rgba(0,0,0,.2);
  display: block;
  height: 30px;
  left: 20px;
  top: 20px;
  overflow: visible;
  visibility: visible;
  font-size: 50px;
  opacity: .3;
  text-transform: uppercase;
}

#avantages:before {
  content: "avantages";
}

#inconvenients:before {
  content: "inconvénients";
}

#photos {
  transition: top 0.2s ease, bottom 0.2s ease;
}

input[type=text],
input[type=tel],
input[type=email],
select,
textarea {
  color: #000 !important;
  font-size: 15px !important;
}

legend.gfield_label {
  font-weight: bold !important;
}

/* Conteneur principal */
.gfield.checkbox-style_name ul.gfield_checkbox,
.gfield.checkbox-style_lastname ul.gfield_checkbox,
.gfield.checkbox-style_number ul.gfield_checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Cache la checkbox native */
.gfield.checkbox-style_name input[type="checkbox"],
.gfield.checkbox-style_lastname input[type="checkbox"],
.gfield.checkbox-style_number input[type="checkbox"] {
  display: none;
}

/* Style du label (cliquable) */
.gfield.checkbox-style_name label,
.gfield.checkbox-style_lastname label,
.gfield.checkbox-style_number label {
  cursor: pointer;
  display: block;
  border: 2px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 150px;
  text-align: center;
  font-size: 14px;
}

/* Image à l’intérieur du label */
.gfield.checkbox-style_name label img,
.gfield.checkbox-style_lastname label img,
.gfield.checkbox-style_number label img {
  width: 100%;
  height: auto;
  display: block;
}

/* État sélectionné */
.gfield.checkbox-style_name input[type="checkbox"]:checked + label,
.gfield.checkbox-style_lastname input[type="checkbox"]:checked + label,
.gfield.checkbox-style_number input[type="checkbox"]:checked + label {
  border-color: #0073aa !important;
  box-shadow: 0 0 0 3px rgba(0,115,170,0.3) !important;
}

.gfield.checkbox-style_name .gchoice {
  float: left;
}

.reassurance {
  text-align: center;
}

.reassurance svg {
  width: 80px;
  text-align: center;
  display: block;
  margin: 0 auto;
  height: auto;
}

.reassurance h3 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.reassurance ul {
  padding: 0;
  margin: 0 !important;
}

.reassurance ul li {
  list-style: none;
  margin: 0;
}

.reassurance ul li:before {
  content: '\e807';
  font-family: 'fid';
  margin-right: 10px;
}

#scroll-top-link {
  bottom: 90px;
}

.footer-bar {
  position:fixed;
  bottom:0;
  width:100%;
  height:70px;
  background:#FFF;
  z-index:9;
  transform:translateY(100%);
  box-shadow: 0 0 20px rgba(0,0,0,.1);
}
.footer-bar div {
  display:inline-block
}
.footer-bar .title {
  font-size: 21px;
  padding: 20px;
  width: 55%;
  font-weight: bold;
  color: #000;
}
.footer-bar .price-wrapper {
  width:44%;
  text-align:right
}
.footer-bar .price_service {
  font-size:23px;
  padding:20px;
  color:#000;
  font-family:var(--font-sans)
}
.footer-bar .booking {
  margin-left:40px
}
.footer-bar .booking a {
  margin-top: 0;
}

#footer {
  text-align: center;
}

#footer img {
  width: 180px;
}

#socket {
  text-align: center;
  font-size: 15px;
  padding-bottom: 40px;
}

#socket .copyright {
  float: none;
}

a.author {
    background: url(/wp-content/themes/flockimprim/images/logo-kevin-de-sousa-ikeviin.svg) no-repeat;
    position: absolute;
    width: 53px;
    height: 24px;
    text-indent: -9999px;
    margin-left: 4px;
    background-size: 100%;
    margin-top: 0px;
}

/* Colonnes Bootstrap */
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}

@media screen and (max-width: 1150px){
  .responsive #top .av-main-nav .menu-item {
        display: none;
    }

    .responsive #top .av-main-nav .menu-item-avia-special {
        display: block;
    }
}

@media screen and (max-width: 767px){
    .phone_mobile {
      display: block;
      position: absolute;
      top: 50%;
      left: 0;
    }

    .phone_mobile i {
      font-size: 37px;
      position: relative;
      top: 7px;
    }

    .main_menu li .avia-menu-text::before {
      display: none;
    }

    .responsive #top .logo {
      position: absolute;
      top: 0;
      width: 100px;
    }

    .responsive #top #main {
      margin-top: 80px;
    }

    #top #header.av_minimal_header .main_menu ul:first-child > li > ul, #top #header.av_minimal_header .main_menu .avia_mega_div > .sub-menu {
      box-shadow: none;
    }

    .html_av-overlay-side-classic #top #wrap_all .av-burger-overlay #av-burger-menu-ul li a {
      border: 0;
    }

    #top #av-burger-menu-ul {
      position: relative;
    }

    .html_av-overlay-side .av-burger-overlay-bg {
        opacity: 1;
        background: #000 url('/wp-content/uploads/fid-10.png');
        background-repeat: no-repeat;
        background-position: 100px center;
    }

    .avia-slideshow-inner {
      height: 560px !important;
    }

    #full_slider_1 {
        height: 560px;
    }

    .home #after_full_slider_1 {
      display: block;
      margin-bottom: 20px;
    }

    .home #after_full_slider_1 .container {
      max-width: 100% !important;
      width: 100% !important;
    }

    h1 {
      font-size: 29px;
    }

    h2 {
      font-size: 25px;
    }

    h3 {
      font-size: 21px;
    }

    .btn-list {
      text-align: center;
      padding: 0;
    }

    .btn-list li {
      margin: 0;
      padding: 0;
    }

    .list_2_col li {
      width: 100%;
    }

    #footer .widget {
      margin: 0;
    }
}
