:root {

   --black: 0,0,0;
   --white: 255,255,255;
   --darkgray: 26,26,35;
   --lightgray: 129,143,155;

   --bg: var(--black);
   --text: var(--white);
   --accent: var(--darkgray);

   --main-font: DavidLibre, Georgia, serif;
   --accent-font: DavidLibre, Georgia, serif;

   --grid-size: 10px;

 }

 :root {

   /* Page Body & Loader */

   --body-bg: rgb(var(--bg));   /* required - main page background */
   --body-font: normal normal 16px/1.3 var(--main-font); /* required - main text font defined as CSS font one-liner */
   --body-text: rgb(var(--text)); /* required - main text color on the page */
   --link-hover: rgb(var(--lightgray)); /* required - link hover color for the page */
   --loader-color: var(--body-bg); /* required - loader color */
   --loader-opacity: 1; /*opacity of the loader as a whole. */
   --loader-radius: 50%; /*radius for default loader */
   --loader-scale:  1.5; /*loader scale */

   /* Logotype */
   --logo-fixed: 180px; /* required - logo image height in pixels */
   --logo-mobile: 115px; /* required - logo image height for sticky menu */
   --logo-stuck: 115px;  /* required-  logo image height for mobile menu */

   /* Menu design */
   --menu-font: normal normal 15px/1.1 var(--accent-font); /* required - main website menu font for desktop */
   --menu-text: rgb(var(--text)); /* required - menu text color */
   --menu-active: rgb(var(--white)); /* required - color of active and hover menu elements */
   --menu-bg: linear-gradient(to bottom, rgba(var(--black),1) 0%, rgba(var(--black),0.8) 50%,  transparent); /*required - background for main desktop menu block with logotype. */
   --menu-padding: 50px 5px 10px 5px; /* required - padding outside the menu. */
   --menu-inner-padding: 10px 10px; /* required - padding inside menu item. */
   --menu-case: uppercase; /* menu text-transform */
   /*--menu-item-bg: menu item background */
   /*--menu-item-radius: menu item block radius */
   /*--menu-active-bg: background color of active and hover menu elements */
   --menu-spacing: 50px; /*spacing between menu elements */
   /*--menu-slogan-font: font the the slogan element */
   /*--menu-slogan-text: color of menu slogan.*/
   /*--menu-slogan-case: menu slogan text-transform */
   /*--menu-slogan-padding: padding for slogan block in the menu */
   /*--menu-slogan-width: width of the slogan block */
   --menu-stuck-bg: linear-gradient(to bottom, rgba(var(--black),1) 20%, rgba(var(--black),0.75) 60%, rgba(var(--black),0.6) 60%, transparent);/*background for the sticky menu */
   --menu-stuck-filter: blur(0px); /*backdrop-filter behind the sticky menu */
   --menu-stuck-padding: 10px 5px 18px 5px; /*padding for the sticky menu */
   /*--menu-stuck-shadow: shadow for the sticky menu */
   /*--menu-stuck-border: bottom border for the sticky menu */

   /* Mobile menu */

   --menu-toggle: rgb(var(--text));
   /*--menu-toggle-bg: background for menu toggle element */
   /*--menu-toggle-height: menu toggle element thickness */
   --menu-mobile-text: rgb(var(--text)); /* required - mobile menu text color */
   --menu-mobile-active: rgb(var(--white)); /* required - active/hover menu item on mobile */
   --menu-mobile-padding: 120px 30px 120px 65px; /* required - padding for the whole menu on mobile */
   --menu-mobile-inner-padding: 5px 10px; /* required - padding for a menu item on mobile */
   --menu-mobile-bg: rgba(var(--bg),0.85); /* required - whole menu background on mobile */
   --menu-mobile-panel-bg: linear-gradient(to bottom, rgba(var(--black),1) 20%, rgba(var(--black),0.7) 70%, rgba(var(--black),0.6) 70%, transparent); /*top panel background on mobile */
   /*--menu-mobile-filter: backdrop-filter behind the mobile menu */

   /* Dropdown menu (Desktop) and Submenu (mobile) */
   /* --menu-dropdown-bg: rgb(var(--accent)); required - menu dropdown background */
   /*--menu-dropdown-radius: block radius for dropdown menu */
   /*--menu-dropdown-width: fixed width of the dropdown menu and arrow offset on mobile */
   /*--dropdown-toggle: dropdown toggle color */
   /*--submenu-font: font for submenu item */
   /*--submenu-text: color for submenu item */
   /* --submenu-active: rgb(var(--bg)); color for active/hover submenu item */
   /*--submenu-offset: offset for active/hover submenu item */
   /*--submenu-mobile-font: font for submenu item on mobile */
   /*--submenu-mobile-text: color for submenu item on mobile */
   /*--submenu-mobile-padding: padding for submenu item on mobile */

   /*Social Icons*/
   --menu-icon-size: 15px; /*font size for social icons on the mobile menu */
   --menu-icon-text: var(--icon-text); /*color for social icons on the mobile menu */
   --menu-icon-bg: var(--icon-bg); /*background for social icons on the mobile menu */
   /* --menu-icon-hover: ; /*hover color for social icons on the mobile menu */
   /* --menu-icon-hover-bg: ; /*hover background for social icons on the mobile menu */
   --icon-size: 30px; /* font-size for social icons elsewhere on the page */
   --icon-text: rgb(var(--text)); /*color for social icons elsewhere on the page */
   /*--icon-hover-text: hover color for social icons elsewhere on the page */
   --icon-bg: transparent; /*background for social icons elsewhere on the page */
   /* --icon-hover-bg: ; /*hover background for social icons elsewhere on the page */
    --icon-radius: 50%; /*social icons radius */
   /*--icon-hover-transform: hover transform property for social icons */
   /*--cell-icon-size: icon size when displayed in their own grid layout */

   /* Page First Blocks */
   --first-font: normal normal 40px/1 var(--accent-font); /* required - font for the main header on the home page */
   --first-text: rgb(var(--text)); /* required -color for the main header on the home page */
   --first-case: uppercase; /*text-transform property for the main header on the home page */
   --first-shadow:  0 0 15px rgba(var(--lightgray)); /*text-shadow propery for the main header on the home page */
   --first-slogan-font: normal normal 20px/1 var(--main-font); /* font property for text under the main header on the first page */
   --first-slogan-text: rgb(var(--black)); /*color for text under the main header on the first page */
   --first-slogan-shadow: var(--first-shadow); /*text-shadow property for text under the main header on the first page */
   --inside-first-font: var(--first-font); /* required - font for the main header on all the site pages */
   --inside-first-text: var(--first-text); /* required - color for the main header on all the site pages */
   /*--inside-first-shadow:  text-shadow property for the main header on all the site pages */
   --first-height: 100vh; /*first block height on the home page */
   --inside-first-height: 100vh; /*first block height on all the site pages */

   --first-plain-bg: transparent; /* background for the first block on inside pages when there is no image */

   /*Additional backgrounds for blocks*/
   /*--first-before-bg: ;/*additional background for the first block on the home page */
   /*--inside-first-before-bg: additional background for the first block on all the site pages */
   --image-before-bg: linear-gradient(to bottom, rgba(var(--black),0.5) 50%, rgba(var(--black),1)); /*additional background for when a block has background image */
   /*--primary-before-bg: additional background for `primary` style block */
   /*--accent-before-bg: additional background for `accent` style block */
   /*--invert-before-bg: additional background for `invert` style block */
   /*--invert-accent-before-bg: additional background for `invert-accent` style block */

   /* Special settings for `image-bg-left` and `image-bg-right` background styling for main blocks */
   /*--image-bg-width: width of the image on the size of the block */
   /*--image-bg-height: height of the image when it's moved to top on mobile */
   /*--header-height: header height offset to move the content either up or down from the image */

   /* Buttons default styling */
   --button-font: bold normal 16px/1.1 var(--accent-font); /* required - button font property */
   --button-text: rgb(var(--white)); /* required - button text color */
   --button-case: uppercase; /*text-transform property */
   --button-bg: rgba(var(--black),1); /* required - button background */
   /*--button-border: button border */
   --button-padding: 15px 25px 15px 25px; /*padding for buttons */
   --button-radius: 30px; /*border radius for buttons */
   /*--button-hover-text: text color when hovered */
   --button-hover-bg: rgb(var(--lightgray)); /*background when hovered */
   /*--button-hover-border: border when hovered */
   /*--button-hover-filter: filter property when hovered */
   /*--button-hover-transform: transform property when hovered */

   /* Special style for a button inside the first block on the home page */
   /*--first-button-text: font property */
   /*--first-button-text: text color */
   /*--first-button-bg: background normal state */
   /*--first-button-border: border normal state */
   /*--first-button-hover-text: text when hovered */
   /*--first-button-hover-bg: background when hovered */
   /*--first-button-hover-border: border when hovered */

   /* Form inputs, labels and messages */

   --input-text: rgb(var(--black)); /*color for form fields */
   --input-bg: rgb(var(--white)); /* background for form fields */
   --input-border: 0; /* border for form fields */
   /*--input-padding: padding for form fields */
   --input-radius: 15px; /*border radius for form fields */
   /*--input-disabled: text color for disabled dropdown elements */
   --label-text: rgb(var(--lightgray)); /*color of the field labels */
   --label-case: uppercase; /*text transform property for the field labels */
   --error-color: rgb(var(--white)); /*text color when field has an error */
   --error-bg: rgba(200,0,0,0.6); /*background color when field has an error */
   --error-label: var(--error-color);
   /*--error-outline: field outline when there's an error */
   /*--error-font: error message under field font property */
   --snackbars-font: var(--button-font); /*form message popup block font property */
   --snackbars-text: rgb(var(--black)); /*text color on form message popup block */
   --snackbars-bg: rgb(var(--lightgray));/*form message popup block background */

   /* Default Headers and Subheaders */
   --header-font: normal normal 40px/1.1 var(--accent-font); /* font for the main block header (`h2`,`.heading-2`) */
   --header-text: rgb(var(--violet)); /*text color for the main block header */
   --header-case: uppercase; /*text-transform property for the main block header */
   --subheader-font: normal normal 25px/1.1 var(--accent-font); /* font for the block subheader (`h3`,`heading-3`) */
   --subheader-case: uppercase; /*text-transform property for the block subheader.

   /*Block styles: `primary`, `accent`, `invert`, `invert-accent`*/

   --primary-bg: rgb(var(--black)); /*background for `primary` style block */
   --primary-header: rgb(var(--violet)); /*main block header color */
   --primary-subheader: rgb(var(--teal)); /*block subheader color */
   /*--primary-text: text color for the block */
   /*--primary-button-text: button text color */
   /*--primary-button-bg: button background color */
   /*--primary-button-border: button border */
   /*--primary-button-hover-text: button text when hovered */
   /*--primary-button-hover-bg: button background when hovered */
   /*--primary-input-text: form field text color */
   /*--primary-input-bg: form field backround */
   /*--primary-input-border: form field border */

   --accent-bg: rgb(var(--darkgray)); /* background for `accent` style block */
   --accent-header: rgb(var(--white)); /*main block header color */
   /*--accent-header-font: font property for main block header */
   --accent-subheader: rgb(var(--white)); /*block subheader color */
   /*--accent-subheader-font: font property for block subheader */
   /*--accent-text: text color for the block */
   /*--accent-button-text: button text color */
   /*--accent-button-bg: button background color */
   /*--accent-button-border: button border */
   /*--accent-button-hover-text: button text when hovered */
   /*--accent-button-hover-bg: button background when hovered */
   /*--accent-input-text: form field text color */
   /*--accent-input-bg: form field backround */
   /*--accent-input-border: form field border */

   --invert-bg: rgba(var(--white),0.99); /* background for `invert` style block */
   --invert-header: rgb(var(--black)); /* main block header color */
   /*--invert-header-font: font property for main block header */
   --invert-subheader: rgb(var(--black)); /* block subheader color */
   /*--invert-suheader-font: font property for block subheader */
   --invert-text: rgb(var(--black)); /* text color for the block  */
   /* --invert-button-text: button text color  */
   --invert-button-bg: var(--button-bg); /* button background color */
   /* --invert-button-border: 0; /* button border */
   /*--invert-button-hover-text: button text when hovered */
   /*--invert-button-hover-bg: button background when hovered */
   /*--invert-input-text: form field text color */
   /*--invert-input-bg: form field backround */
   /*--invert-input-border: form field border */

   /*--invert-accent-bg: rgb(var(--accent)); /* background for `invert-accent` style block  */
   /*--invert-accent-header: var(--invert-header); /* main block header color */
   /*--invert-accent-header-font: font property for main block header */
   /*--invert-accent-subheader: var(--invert-subheader); /* block subheader color */
   /*--invert-accent-subheader-font: font property for block subheader */
   /* --invert-accent-text: var(--invert-text); /* text color for the block */
   /* --invert-accent-button-text: var(--invert-button-text); /* button text color */
   /* --invert-accent-button-bg: var(--invert-button-bg); /* button background color */
   /* --invert-accent-button-border: var(--invert-button-border); /* button border */
   /*--invert-accent-button-hover-text: button text when hovered */
   /*--invert-accent-button-hover-bg: button background when hovered */
   /*--invert-accent-input-text: form field text color */
   /*--invert-accent-input-bg: form field backround */
   /*--invert-accent-input-border: form field border */

   /* General Blocks & wrappers */

   /*--block-radius: general block radius to used throughout CSS */
   /*--image-radius: radius for images in blocks */

   /* Services Block images: `.services-image` class: */
   /*--services-border: image border */
   /*--services-image: image height */
   /*--services-padding: image padding */
   /*--services-radius: image radius */

   /* Recommended wraper: `.post-boxed` class: */
   --accented-padding: 30px; /* padding for accented blocks */
   /*--accented-radius: border radius */
   --accented-bg: transparent;

   /* Another option for wrapper: `.post-info` class: */
   /*--info-font: font property */
   /*--info-bg: background */
   /*--info-padding: padding */
   /*--info-radius: border-radius */

   /*Slick Slider Image gallery*/
   --slick-height: 200px; /*image height for `slick-ribbon` class Slick Slider */
   /*--slick-spacing: distance in pixels from top and bottom edges for the block */
   /*--slick-caption: font property for the text caption on desktop (visible when hovered) */
   /*--slick-caption-case: text-transform property for caption (`uppercase`, `lowercase`, `capitalize` or `none`) */
   --slick-caption-bg: transparent; /*background for when the image is hovered */
   --slick-image-frame: 10px; /*image frame width in pixels */
   /*--slick-image-frame-color: image frame color */
   /*--slick-caption-border: decorative border on image when hovered */
   /*--slick-caption-spacing: spacing from the sides of the caption to the image */
   /*--slick-mobile-caption-bg: caption is visible on mobile on this background */
   --slick-arrow-size: 100px; /*last/next arrow size in pixels (one value) */
   --slick-arrow-border: 0; /*border for last/next arrows */
   --slick-arrow-bg: rgb(var(--bg)); /* background color (not the full backgound property) for last/next arrows */
   /*--slick-arrow-hover-bg: hover background color (not the full backgound property) for last/next arrows */
   --slick-arrow-offset: -100px; /*horizontal offset for last/next slick arrows */
   /*--slick-fadeout: image fadeout color for `slick-gallery` class Slick Slider */

   /* Isotope Layout Image Gallery */
   /*--isotope-spacing: spacing between individual images, this value is doubled */
   /*--isotope-border: border for individual images */
   /*--isotope-radius: border-radius form images */
   /*--isotope-bg: caption background when image is hovered */
   /*--isotope-title-font: font property for image title (image number and text in `defaults.json`>`image-word`) */
   /*--isotope-title-text: text color for image title */
   /*--isotope-font: font property for image caption */
   /*--isotope-text: text color for image caption */
   /*--isotope-case: text transform for image caption (`uppercase`, `lowercase`, `capitalize` or `none`) */

   /* LightGallery Popup */
   /*--lg-bg: background color for when image is opened */
   /*--lg-filter: backdrop filter for when image is opened */
   /*--lg-align: text align for caption */
   /*--lg-caption-text: text color for caption */
   /*--lg-caption-bg: background for text caption */

   /* Owl Carousel and Quote `.post-quote` class** */
   --owl-arrow-size: 100px; /*last/next arrow size in pixels (one value) */
   --owl-arrow-offset: -80px; /* horizontal offset for last/next arrows */

   /*--quote-text: text color for `.post-quote` class */
   --quote-bg: linear-gradient(to bottom, rgba(var(--beigelight),0) 30px, rgba(var(--beigelight),0.3) 70%, rgba(var(--beigelight),1) 100%); /*background for quote */
   --quote-border: 0; /*  border for quote */
   --quote-padding: 0 30px 20px 30px; /*padding for the quote block */
   --quote-radius: 30px; /*quote block radius */
   --quote-mark: bold normal 40px/0.6 var(--main-font) ;/*font-property for quote marks (`.has-quote-before` and `.has-quote-after` extra classes) */
   --quote-color: rgb(var(--orange)); /*quote marks color */
   /*--quote-scroll: thumb color for quote scroller (may appear on small sizes) */
   /*--quote-scroll-border: thumb border for quote scroller */
   /*--quote-scroll-bg: track color for quote scroller */
   /*--quote-scroll-bg-border: track border for quote scroller */

   /* Properties by layout type: pricelist */
   /*--pricelist-align: align text in the block (flex: `center`, `flex-start`,`flex-end`) */
   /*--pricelist-hover: pricelist item hover color */
   /*--pricelist-spacing: spacing between pricelist items */
   /*--pricelist-border-vertical: vertical border for price items */
   /*--pricelist-bottom-horizontal: horizontal border for price items */
   /*--pricelist-button-text: text color for pricelist hover button */
   /*--pricelist-button-case: text transform for pricelist hover button (`uppercase`, `lowercase`, `capitalize` or `none`) */
   /*--pricelist-button-bg: pricelist hover button background */
   /*--pricelist-button-border: pricelist hover button border */
   /*--pricelist-button-font: font property for pricelist hover button */
   /*--pricelist-button-padding: padding for pricelist button */
   /*--pricelist-button-radius: border radius for pricelist button */
   /*--pricelist-button-width: hover button fixed width */

   /* Properties by layout type: schedule */
   /*--schedule-header-font: font property for the days of the week */
   /*--schedule-header-case: text transform for the days of the week (`uppercase`, `lowercase`, `capitalize` or `none`) */
   /*--schedule-subheader-font: font property for the hours column */
   /*--schedule-border: border separator between week days */
   /*--schedule-item-text: text color for the scheduled item */
   /*--schedule-item-bg: background for the scheduled item */
   /*--schedule-item-border: border for the scheduled item */
   /*--schedule-item-hover-text: text color for the hovered scheduled item */
   /*--schedule-item-hover-bg: background for the hovered scheduled item */
   /*--schedule-item-hover-border: border for the hovered scheduled item */
   /*--schedule-subitem-font: font property for time and duration hover label */
   /*--schedule-subitem-text: text color the hover label */
   /*--schedule-subitem-icon-text: icon color for online label */
   /*--schedule-subitem-bg: background for the hover label */

   /*Form boxline layout*/
   /*--boxline-bg: hover background for the form in `boxline` layout (usually when the block is nested) */
   --boxline-padding: 30px 0px 30px 20px; /*padding for the form in block */

   /* Form checkout block & tickets */
   /*--payment-success-bg: payment success block background.
   /*--payment-success-border: border for the block.
   /*--payment-success-padding: padding for the block.
   /*--payment-success-radius: payment success block radius.

   /*--ticket-font: font property of found ticket name on Booking forms.
   /*--ticket-label: color for the found ticket name.
   /*--ticket-case: text transform property for the found ticket name (`uppercase`, `lowercase`, `capitalize` or `none`).
   /*--ticket-bg: found ticket block background.
   /*--ticket-border: found ticket block border.
   /*--ticket-padding: found ticket block padding.
   /*--ticket-radius: found ticket block radius.
   /*--ticket-selected: checkmark color for the selected ticket.
   /*--ticket-selected-bg: background color for the selected ticket.
   /*--ticket-selected-border: border color for the selected ticket.

   /* Page Footer */
   --footer-bg: var(--primary-bg); /*background for the page footer */
   --footer-padding: 0; /*padding for the footer block */
   --footer-text: rgba(var(--lightgray), 0.7); /*text color for the page footer */
   /*--footer-font: font property for text in the footer */
   /*--footer-hover: link hover when inside footer */

   /*--map-width: embedded Google Maps width */
   /*--map-height: embedded map height */
   /*--map-border: embedded map border */
   /*--map-outline: embedded map outline */
   /*--map-radius: embedded map block radius */
   /*--map-margin: embedded map margin (sometimes necessary to make it take up whole width) */

   /* To Top Element */
   /*--totop-size: font size for the icon */
   /*--totop-text: link to top icon color */
   --totop-bg: rgb(var(--black)); /*link to top background */
   --totop-hover: rgb(var(--darkgray)); /*color when hovered */
   /*--totop-hover-bg: background when hovered */

   /* Other elements */
   /*--mark-text: text color for `<mark>` tag */
   --mark-bg: rgba(var(--accent),0.2); /* background color for `<mark>` tag */

 }

 @media(max-width:992px) {
   :root {

   }
 }

 @media (max-width:768px) {
   :root {
    --owl-arrow-offset: -60px;
    --owl-arrow-size: 80px;
    --boxline-padding: 0;
   }
 }

 @media (max-width:496px) {
   :root {
    --slick-arrow-size: 70px;
    --slick-arrow-offset: -60px;
    --owl-arrow-offset: -40px;
    --owl-arrow-size: 60px;
   }
 }

 @media(min-width:1200px) {
  :root {
    --boxline-padding: 70px 60px 80px;
  }
 }

  @font-face {
	font-family: 'DavidLibre';
	src: url("/fonts/user/DavidLibre-Regular.ttf");
	src: url("/fonts/user/DavidLibre-Regular.ttf") format("truetype"),;
	font-weight: 600;
	font-style: normal;
}

  @font-face {
	font-family: 'DavidLibre';
	src: url("/fonts/user/DavidLibre-Bold.ttf");
	src: url("/fonts/user/DavidLibre-Bold.ttf") format("truetype"),;
	font-weight: bold;
	font-style: normal;
}

.cssloader {
  border-left: 2px solid rgba(var(--white),1);
  border-top: 1px solid rgba(var(--white),1);
  border-bottom: 1px solid rgba(var(--white),1);
  
}

.cssloader-body {
  transform: scale(var(--loader-scale,1)) rotate(-45deg) !important;
}

body {
  background-image: url(/images/head-index-photo.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


@media(min-width:922px) {
.first-block {
  margin-top: -180px;
  background-image: none !important;
}
}

.first-block .range {
  justify-content: flex-end;
  align-items: flex-end;
  height: var(--first-height);
}

.rd-navbar-nav a, label, .button, h3, .heading-3 {
  letter-spacing: 0.2em;
}

h1, h2, .heading-2 {
  letter-spacing: 0.3em;
}

@media(max-width:436px) {
  label {
  letter-spacing: 0.1em;
}

  h1, h2, h3, .heading-2, .heading-3 {
  letter-spacing: 0.2em;
}
 h1 {
  word-break: break-word;
 }

}

.rd-navbar-static .rd-navbar-main {
  justify-content: flex-start !important;
}

.rd-navbar-panel {
  flex-basis: 42%;
}


@media(min-width:992px) and (max-width:1200px) {
  .rd-navbar-static .rd-navbar-nav>li+li {
      margin-left: calc(var(--menu-spacing)/2);
  }
}

.brand__logo-large {
  padding-top: 30px;
  padding-left: 50px;
}

.rd-navbar-fixed .brand__logo-small {
  padding-top: 10px;
}

.rd-navbar--is-stuck .brand__logo-small {
  margin-top: -20px;
  padding-left: 50px;
}

.bg-image.first-block:before {
  width: 70%;
  left: 30%;
  height: 70%;
  top: 30%;
  border-radius: 100px 0 0 0;
}



#suppliers img {
  height: 70px;
  margin-bottom: 10px;
}

#suppliers a {
    display: inline-block;
    text-align: center;
    margin-bottom: 40px;
}

#suppliers a p::after {
  content: " \2192";
}


@media(max-width:768px) {
  #suppliers a {
    text-align: left;
}

}


#suppliers .cell-sm-4:last-child img {
  height: 90px;
}

@media(min-width:768px) {

  #suppliers .cell-xs-12.cell-sm-4:nth-child(3) {
  text-align: center;
}

#suppliers .cell-sm-4:last-child {
  text-align: right;
}


}

.bg-invert::before {
    z-index: -1 !important;
}

.tab-fade {
  background: linear-gradient(to right, rgba(var(--lightgray),0.7), transparent);
  border-radius: 50px 0 0 0;
  padding: 40px;
  padding-bottom: 95px;
  min-height: 400px;
}

@media(min-width:992px) and (max-width:1199px) {
  .tab-fade {
    min-height: 490px;
  }
}

@media(max-width:992px) 
{
  .infoblock-has-image-top .tab-fade {
    background: linear-gradient(to top, rgb(var(--darkgray)), transparent 70px), linear-gradient(to right, rgba(var(--lightgray),0.7), transparent 90%);
    padding-bottom: 70px;
    min-height: unset;
  }

  .first-block .tab-fade {
    border-radius: 40px 0 0 0 !important;
    background: linear-gradient(to right, rgba(var(--lightgray),0.7), transparent 100%);
  }

}

.infoblock-has-image-top {
  position: relative;
}

.infoblock-has-image-top .tab-fade {
  padding-top: 100px;
  
}

img.infoblock-image.infoblock-image-top 
{
  position: absolute;
  top: 35px;
  left: 55px;
}

.first-block .tab-fade {
  border-radius: 70px 0 0 0;
  padding: 40px;
  padding-top: 40px;
}

@media(min-width:769px) {

  .tab-fade, .first-block .tab-fade {
  padding: 50px;
  padding-right: 20px;
}

.first-block .tab-fade {
  padding: 80px;
  padding-bottom: calc(var(--first-height)/6);
  min-height: calc(var(--first-height)*0.6);
  position: relative;
  left: -40px;
}

.infoblock-has-image-top .tab-fade {
  padding-top: 100px;
  
}

img.infoblock-image.infoblock-image-top 
{
  position: absolute;
  top: 35px;
  left: 65px;
}

}

#services {
  padding-bottom: 0 !important;
}

#services .list-item.mb-1 {
  margin-bottom: 0 !important;
}

#suppliers .range {
  align-items: center;
}

#services img {
  width: 70px;
}

.image-wrapper {
  background-image: url(/images/circle.svg);
  padding: 70px 100px 70px 0px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  display: block;
  margin-top: 50px;
}

.image-wrapper img {
  border-radius: 50px;
  display: block;
}

@media(min-width:769px) {

.image-wrapper {
  padding-left: 70px;
  margin-top: 0;
}

}

@media(min-width:769px) and (max-width:992px) {
  .image-wrapper {
    padding: 70px 50px 70px 20px;
  }
}


.form-wrap+* {
  margin-top: 10px !important;
}

.form-validation {
  bottom: 0 !important;
}

.contact-links {
  margin-top: 40px;
}

@media(min-width:1200px) {
  .contact-links {
  margin-top: 80px;
}
}

.contact-links a {
  display: block;
  position: relative;
  margin-bottom: 15px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
}

@media(min-width:1200px) {
  .contact-links a {
    font: var(--subheader-font);
  }
}

.contact-links .fa::before {
  width: 60px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.contact-links a::after {
  content: "";
  width: 50px;
  height: 50px;
  background-image: url(/images/circle.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  z-index: -1;
  left: 0;
  top: 0;
  position: absolute;
}

@media(max-width:436px) or ( (min-width:769px) and (max-width:992px) ) {
  .contact-links a {
    word-break: break-all;
    white-space: wrap;
  }
}

  #contacts p, #contacts a { 
    text-shadow: 0 0 15px rgb(var(--black)), 0 0 5px rgba(var(--black),0.5);
  }

@media(min-width:1200px) {

  #contacts .form, footer p {
  padding-left: 65px;
  }

  .infoblock {
  padding-left: 50px;
}

#services .shell, #suppliers .shell {
  padding-left: 65px;
}

#suppliers .shell {
  padding-right: 65px;
}

}

@media(max-width:768px) {
  .box-line {
  margin: 0 !important;
  margin-top: 40px !important;
}

.box-line__main {
  max-width: unset;
}


}

#contacts .button {
  box-shadow: 0 0 30px rgba(0, 140, 255, 0.34);
}


.slogan {
  max-width: 400px;
}

.calltoaction .infoblock {
  max-width: 600px;
  margin-bottom: 50px;
}

#contacts .shell {
  padding-bottom: 50px;
}

.toggle-original-elements {
      display: flex;
    flex-direction: column-reverse;
    justify-content: space-around;
}

.rd-navbar-element {
  padding-left: 0 !important;
}

#services .list-item:before {
  justify-content: flex-start;
  width: 20px;
  min-width: 20px;
}

.form-check-label {
  letter-spacing: 0;
  line-height: 1.4em;
  margin-bottom: 0 !important;
  margin-top: 5px;
}

.form-check {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
}

.form-check .form-validation {
  left: 5px;
  bottom: -20px !important;
  color: rgb(200,0,0) !important;
}

.form-check-input {
  min-width: 45px;
}

.rd-navbar-element {
  display: none !important;
}