:root {
  --theme-color: #fd5f00;
  --text-color: #666666;
  --title-color: #333333; }

html {
  scroll-behavior: smooth; }

ul, ol {
  padding: 0;
  margin: 0; }

body,
html {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; }

* {
  box-sizing: border-box; }

.wrapper-full {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

.wrapper {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 576px) {
  .wrapper {
    max-width: 540px; } }

@media (min-width: 768px) {
  .wrapper {
    max-width: 720px; } }

@media (min-width: 992px) {
  .wrapper {
    max-width: 960px; } }

@media (min-width: 1200px) {
  .wrapper {
    max-width: 1140px; } }

.clear {
  clear: both; }

.img-responsive,
img {
  max-width: 100%; }

.d-grid {
  display: grid; }

.d-flex {
  display: flex;
  display: -webkit-flex; }

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

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

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

button,
select {
  outline: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none; }

button,
.btn,
select {
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; }

a {
  text-decoration: none; }

iframe {
  border: none; }

ul {
  margin: 0;
  padding: 0; }

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0; }

.p-relative {
  position: relative; }

.p-absolute {
  position: absolute; }

.p-fixed {
  position: fixed; }

.p-sticky {
  position: -webkit-sticky;
  position: sticky; }

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc; }

.column a {
  display: block; }

.column a img {
  display: block; }

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%; }

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

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

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

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

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

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none; }

.fa-ul > li {
  position: relative; }

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center; }

.fa-li.fa-lg {
  left: -1.85714286em; }

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right {
  margin-left: .3em; }

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right; }

.pull-left {
  float: left; }

.fa.pull-left {
  margin-right: .3em; }

.fa.pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8); }

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

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

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none; }

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

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center; }

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

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

.fa-inverse {
  color: #ffffff; }

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

.fa-music:before {
  content: "\f001"; }

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

.fa-envelope-o:before {
  content: "\f003"; }

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

.fa-star:before {
  content: "\f005"; }

.fa-star-o:before {
  content: "\f006"; }

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

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

.fa-th-large:before {
  content: "\f009"; }

.fa-th:before {
  content: "\f00a"; }

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

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

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-signal:before {
  content: "\f012"; }

.fa-gear:before,
.fa-cog:before {
  content: "\f013"; }

.fa-trash-o:before {
  content: "\f014"; }

.fa-home:before {
  content: "\f015"; }

.fa-file-o:before {
  content: "\f016"; }

.fa-clock-o:before {
  content: "\f017"; }

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

.fa-download:before {
  content: "\f019"; }

.fa-arrow-circle-o-down:before {
  content: "\f01a"; }

.fa-arrow-circle-o-up:before {
  content: "\f01b"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-play-circle-o:before {
  content: "\f01d"; }

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e"; }

.fa-refresh:before {
  content: "\f021"; }

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

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

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

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

.fa-volume-off:before {
  content: "\f026"; }

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

.fa-volume-up:before {
  content: "\f028"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

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

.fa-bookmark:before {
  content: "\f02e"; }

.fa-print:before {
  content: "\f02f"; }

.fa-camera:before {
  content: "\f030"; }

.fa-font:before {
  content: "\f031"; }

.fa-bold:before {
  content: "\f032"; }

.fa-italic:before {
  content: "\f033"; }

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

.fa-text-width:before {
  content: "\f035"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-align-justify:before {
  content: "\f039"; }

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

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-video-camera:before {
  content: "\f03d"; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e"; }

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

.fa-map-marker:before {
  content: "\f041"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-tint:before {
  content: "\f043"; }

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044"; }

.fa-share-square-o:before {
  content: "\f045"; }

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

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

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

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

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

.fa-play:before {
  content: "\f04b"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-stop:before {
  content: "\f04d"; }

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

.fa-fast-forward:before {
  content: "\f050"; }

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

.fa-eject:before {
  content: "\f052"; }

.fa-chevron-left:before {
  content: "\f053"; }

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

.fa-plus-circle:before {
  content: "\f055"; }

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

.fa-times-circle:before {
  content: "\f057"; }

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

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

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

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-times-circle-o:before {
  content: "\f05c"; }

.fa-check-circle-o:before {
  content: "\f05d"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

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

.fa-arrow-down:before {
  content: "\f063"; }

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064"; }

.fa-expand:before {
  content: "\f065"; }

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

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

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

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

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

.fa-gift:before {
  content: "\f06b"; }

.fa-leaf:before {
  content: "\f06c"; }

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

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

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

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071"; }

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

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

.fa-random:before {
  content: "\f074"; }

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

.fa-magnet:before {
  content: "\f076"; }

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

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

.fa-retweet:before {
  content: "\f079"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

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

.fa-folder-open:before {
  content: "\f07c"; }

.fa-arrows-v:before {
  content: "\f07d"; }

.fa-arrows-h:before {
  content: "\f07e"; }

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-key:before {
  content: "\f084"; }

.fa-gears:before,
.fa-cogs:before {
  content: "\f085"; }

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

.fa-thumbs-o-up:before {
  content: "\f087"; }

.fa-thumbs-o-down:before {
  content: "\f088"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-heart-o:before {
  content: "\f08a"; }

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

.fa-linkedin-square:before {
  content: "\f08c"; }

.fa-thumb-tack:before {
  content: "\f08d"; }

.fa-external-link:before {
  content: "\f08e"; }

.fa-sign-in:before {
  content: "\f090"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-upload:before {
  content: "\f093"; }

.fa-lemon-o:before {
  content: "\f094"; }

.fa-phone:before {
  content: "\f095"; }

.fa-square-o:before {
  content: "\f096"; }

.fa-bookmark-o:before {
  content: "\f097"; }

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

.fa-twitter:before {
  content: "\f099"; }

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a"; }

.fa-github:before {
  content: "\f09b"; }

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

.fa-credit-card:before {
  content: "\f09d"; }

.fa-feed:before,
.fa-rss:before {
  content: "\f09e"; }

.fa-hdd-o:before {
  content: "\f0a0"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

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

.fa-certificate:before {
  content: "\f0a3"; }

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

.fa-hand-o-left:before {
  content: "\f0a5"; }

.fa-hand-o-up:before {
  content: "\f0a6"; }

.fa-hand-o-down:before {
  content: "\f0a7"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

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

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

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

.fa-wrench:before {
  content: "\f0ad"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

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

.fa-chain:before,
.fa-link:before {
  content: "\f0c1"; }

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

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

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

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7"; }

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

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

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

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

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

.fa-underline:before {
  content: "\f0cd"; }

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

.fa-magic:before {
  content: "\f0d0"; }

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

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-plus:before {
  content: "\f0d5"; }

.fa-money:before {
  content: "\f0d6"; }

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

.fa-caret-up:before {
  content: "\f0d8"; }

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

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

.fa-columns:before {
  content: "\f0db"; }

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc"; }

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

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-linkedin:before {
  content: "\f0e1"; }

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2"; }

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

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4"; }

.fa-comment-o:before {
  content: "\f0e5"; }

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

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7"; }

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

.fa-umbrella:before {
  content: "\f0e9"; }

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

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

.fa-exchange:before {
  content: "\f0ec"; }

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

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

.fa-user-md:before {
  content: "\f0f0"; }

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

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-bell-o:before {
  content: "\f0a2"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cutlery:before {
  content: "\f0f5"; }

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

.fa-building-o:before {
  content: "\f0f7"; }

.fa-hospital-o:before {
  content: "\f0f8"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

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

.fa-h-square:before {
  content: "\f0fd"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

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

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

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

.fa-desktop:before {
  content: "\f108"; }

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

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

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b"; }

.fa-circle-o:before {
  content: "\f10c"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-spinner:before {
  content: "\f110"; }

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

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

.fa-github-alt:before {
  content: "\f113"; }

.fa-folder-o:before {
  content: "\f114"; }

.fa-folder-open-o:before {
  content: "\f115"; }

.fa-smile-o:before {
  content: "\f118"; }

.fa-frown-o:before {
  content: "\f119"; }

.fa-meh-o:before {
  content: "\f11a"; }

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

.fa-keyboard-o:before {
  content: "\f11c"; }

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

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

.fa-terminal:before {
  content: "\f120"; }

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

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122"; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123"; }

.fa-location-arrow:before {
  content: "\f124"; }

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

.fa-code-fork:before {
  content: "\f126"; }

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127"; }

.fa-question:before {
  content: "\f128"; }

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

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

.fa-superscript:before {
  content: "\f12b"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

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

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

.fa-shield:before {
  content: "\f132"; }

.fa-calendar-o:before {
  content: "\f133"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

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

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

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

.fa-html5:before {
  content: "\f13b"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-anchor:before {
  content: "\f13d"; }

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

.fa-bullseye:before {
  content: "\f140"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

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

.fa-play-circle:before {
  content: "\f144"; }

.fa-ticket:before {
  content: "\f145"; }

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

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

.fa-level-up:before {
  content: "\f148"; }

.fa-level-down:before {
  content: "\f149"; }

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

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

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

.fa-share-square:before {
  content: "\f14d"; }

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

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

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151"; }

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

.fa-euro:before,
.fa-eur:before {
  content: "\f153"; }

.fa-gbp:before {
  content: "\f154"; }

.fa-dollar:before,
.fa-usd:before {
  content: "\f155"; }

.fa-rupee:before,
.fa-inr:before {
  content: "\f156"; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157"; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158"; }

.fa-won:before,
.fa-krw:before {
  content: "\f159"; }

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a"; }

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

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

.fa-sort-alpha-asc:before {
  content: "\f15d"; }

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

.fa-sort-amount-asc:before {
  content: "\f160"; }

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

.fa-sort-numeric-asc:before {
  content: "\f162"; }

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

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-youtube-square:before {
  content: "\f166"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-youtube-play:before {
  content: "\f16a"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-adn:before {
  content: "\f170"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitbucket-square:before {
  content: "\f172"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-long-arrow-down:before {
  content: "\f175"; }

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

.fa-long-arrow-left:before {
  content: "\f177"; }

.fa-long-arrow-right:before {
  content: "\f178"; }

.fa-apple:before {
  content: "\f179"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-android:before {
  content: "\f17b"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-trello:before {
  content: "\f181"; }

.fa-female:before {
  content: "\f182"; }

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

.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184"; }

.fa-sun-o:before {
  content: "\f185"; }

.fa-moon-o:before {
  content: "\f186"; }

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

.fa-bug:before {
  content: "\f188"; }

.fa-vk:before {
  content: "\f189"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-arrow-circle-o-right:before {
  content: "\f18e"; }

.fa-arrow-circle-o-left:before {
  content: "\f190"; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191"; }

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

.fa-wheelchair:before {
  content: "\f193"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195"; }

.fa-plus-square-o:before {
  content: "\f196"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-slack:before {
  content: "\f198"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c"; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-fax:before {
  content: "\f1ac"; }

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

.fa-child:before {
  content: "\f1ae"; }

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

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

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9"; }

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba"; }

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

.fa-spotify:before {
  content: "\f1bc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-file-pdf-o:before {
  content: "\f1c1"; }

.fa-file-word-o:before {
  content: "\f1c2"; }

.fa-file-excel-o:before {
  content: "\f1c3"; }

.fa-file-powerpoint-o:before {
  content: "\f1c4"; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5"; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6"; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7"; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8"; }

.fa-file-code-o:before {
  content: "\f1c9"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd"; }

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

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0"; }

.fa-ge:before,
.fa-empire:before {
  content: "\f1d1"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7"; }

.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8"; }

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9"; }

.fa-history:before {
  content: "\f1da"; }

.fa-circle-thin:before {
  content: "\f1db"; }

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

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-sliders:before {
  content: "\f1de"; }

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

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

.fa-bomb:before {
  content: "\f1e2"; }

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

.fa-tty:before {
  content: "\f1e4"; }

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

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

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-newspaper-o:before {
  content: "\f1ea"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bell-slash-o:before {
  content: "\f1f7"; }

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

.fa-copyright:before {
  content: "\f1f9"; }

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

.fa-eyedropper:before {
  content: "\f1fb"; }

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

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-area-chart:before {
  content: "\f1fe"; }

.fa-pie-chart:before {
  content: "\f200"; }

.fa-line-chart:before {
  content: "\f201"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

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

.fa-toggle-on:before {
  content: "\f205"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-bus:before {
  content: "\f207"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-cc:before {
  content: "\f20a"; }

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b"; }

.fa-meanpath:before {
  content: "\f20c"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-skyatlas:before {
  content: "\f216"; }

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

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-diamond:before {
  content: "\f219"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-user-secret:before {
  content: "\f21b"; }

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

.fa-street-view:before {
  content: "\f21d"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-venus:before {
  content: "\f221"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-intersex:before,
.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-facebook-official:before {
  content: "\f230"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-server:before {
  content: "\f233"; }

.fa-user-plus:before {
  content: "\f234"; }

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

.fa-hotel:before,
.fa-bed:before {
  content: "\f236"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-train:before {
  content: "\f238"; }

.fa-subway:before {
  content: "\f239"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240"; }

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242"; }

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-sticky-note-o:before {
  content: "\f24a"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-hourglass-o:before {
  content: "\f250"; }

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251"; }

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

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

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

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255"; }

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

.fa-hand-scissors-o:before {
  content: "\f257"; }

.fa-hand-lizard-o:before {
  content: "\f258"; }

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

.fa-hand-pointer-o:before {
  content: "\f25a"; }

.fa-hand-peace-o:before {
  content: "\f25b"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-tripadvisor:before {
  content: "\f262"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-get-pocket:before {
  content: "\f265"; }

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

.fa-safari:before {
  content: "\f267"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-tv:before,
.fa-television:before {
  content: "\f26c"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-500px:before {
  content: "\f26e"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-calendar-plus-o:before {
  content: "\f271"; }

.fa-calendar-minus-o:before {
  content: "\f272"; }

.fa-calendar-times-o:before {
  content: "\f273"; }

.fa-calendar-check-o:before {
  content: "\f274"; }

.fa-industry:before {
  content: "\f275"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-map-o:before {
  content: "\f278"; }

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

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

.fa-commenting-o:before {
  content: "\f27b"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-vimeo:before {
  content: "\f27d"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-edge:before {
  content: "\f282"; }

.fa-credit-card-alt:before {
  content: "\f283"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-modx:before {
  content: "\f285"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-usb:before {
  content: "\f287"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-pause-circle-o:before {
  content: "\f28c"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stop-circle-o:before {
  content: "\f28e"; }

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

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-percent:before {
  content: "\f295"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-envira:before {
  content: "\f299"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-wheelchair-alt:before {
  content: "\f29b"; }

.fa-question-circle-o:before {
  content: "\f29c"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-volume-control-phone:before {
  content: "\f2a0"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

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

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-snapchat:before {
  content: "\f2ab"; }

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

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3"; }

.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4"; }

.fa-handshake-o:before {
  content: "\f2b5"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-open-o:before {
  content: "\f2b7"; }

.fa-linode:before {
  content: "\f2b8"; }

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

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

.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb"; }

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-circle-o:before {
  content: "\f2be"; }

.fa-user-o:before {
  content: "\f2c0"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2"; }

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd"; }

.fa-podcast:before {
  content: "\f2ce"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3"; }

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-eercast:before {
  content: "\f2da"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-snowflake-o:before {
  content: "\f2dc"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-meetup:before {
  content: "\f2e0"; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

.w3l-top-menu-2 {
  /*-- Headers-4 block --*/
  /*-- responsive design --*/ }
  .w3l-top-menu-2 .header-main {
    padding: 30px 0; }
  .w3l-top-menu-2 .header-align {
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr; }
  .w3l-top-menu-2 .social-icons a {
    display: inline-block;
    margin-right: 15px; }
  .w3l-top-menu-2 .social-icons a span {
    font-size: 25px; }
  .w3l-top-menu-2 .social-icons a.facebook span {
    color: #3b5998; }
  .w3l-top-menu-2 .social-icons a.twitter span {
    color: #1da1f2; }
  .w3l-top-menu-2 .social-icons a.instagram span {
    color: #f56040; }
  .w3l-top-menu-2 a.brand-logo {
    color: var(--theme-color);
    font-weight: bold;
    font-size: 40px; }
  .w3l-top-menu-2 .nav-main.text-right a {
    color: #161a1e;
    font-size: 25px; }
  .w3l-top-menu-2 .nav-main.text-right a span {
    color: #161a1e;
    margin-right: 5px; }
  .w3l-top-menu-2 #logo a img {
    height: 30px; }
  @media (max-width: 736px) {
    .w3l-top-menu-2 .header-main {
      padding: 20px 0; }
    .w3l-top-menu-2 a.brand-logo {
      font-size: 35px; }
    .w3l-top-menu-2 .nav-main.text-right a {
      font-size: 20px; }
    .w3l-top-menu-2 .social-icons a span {
      font-size: 20px; } }
  @media (max-width: 440px) {
    .w3l-top-menu-2 .social-icons {
      display: none; }
    .w3l-top-menu-2 .social-icons a {
      margin-right: 5px; }
    .w3l-top-menu-2 .header-align {
      grid-template-columns: 1fr 1fr; }
    .w3l-top-menu-2 .logo {
      text-align: left; } }

/*-- /responsive design --*/
.w3l-header-4 {
  /*-- Headers-4 block --*/
  /*-- /Headers-4 block --*/
  /* navbar-start */
  /* navigation */
  /* CSS Document */
  /* Giving a background-color to the nav container. */
  /* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */
  /* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
  /* Positioning the navigation items inline */
  /* Styling the links */
  /* Background color change on Hover */
  /* Hide Dropdowns by Default
 * and giving it a position of absolute */
  /* Display Dropdowns on Hover */
  /* Fisrt Tier Dropdown */
  /* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
  /* Change ' +' in order to change the Dropdown symbol */
  /* Media Queries
--------------------------------------------- */
  /* //navigation */
  /* navbar-end */
  /*-- responsive design --*/
  /*-- /responsive design --*/ }
  .w3l-header-4 #headers4-block {
    background-color: #fff;
    z-index: 9;
    padding: 0; }
  .w3l-header-4 .header-align {
    grid-template-columns: 1fr;
    text-align: center; }
  .w3l-header-4 input#nav {
    display: none; }
  .w3l-header-4 label.nav {
    display: none; }
  .w3l-header-4 ul.nav-links li {
    display: inline-block;
    font-weight: 400; }
  .w3l-header-4 ul.nav-links li:last-child {
    margin-left: auto; }
  .w3l-header-4 ul.nav-links li a {
    font-size: 15px;
    color: #3b5266;
    text-decoration: none;
    padding: 0px 17px;
    display: block; }
  .w3l-header-4 ul.nav-links li a:hover {
    color: #000000; }
  .w3l-header-4 .toggle-2,
  .w3l-header-4 .toggle,
  .w3l-header-4 [id^=drop] {
    display: none; }
  .w3l-header-4 nav {
    margin: 0;
    padding: 0;
    background: #16191e; }
  .w3l-header-4 nav:after {
    content: "";
    display: table;
    clear: both; }
  .w3l-header-4 nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative; }
  .w3l-header-4 nav ul li {
    display: inline-block;
    margin: 0px 10px;
    position: relative; }
  .w3l-header-4 nav a {
    font-weight: bold;
    display: inline-block;
    transition: none;
    font-style: normal;
    font-size: 16px;
    line-height: 25px;
    color: rgba(255, 255, 255, 0.8);
    padding: 20px; }
  .w3l-header-4 .angle-dropdown {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.1em;
    vertical-align: .16em;
    content: "";
    border-top: 0.3em solid rgba(255, 255, 255, 0.8);
    border-right: 0.2em solid transparent;
    border-bottom: 0;
    border-left: 0.2em solid transparent; }
  .w3l-header-4 .angle-dropdown-sub {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.1em;
    vertical-align: .16em;
    content: "";
    border-top: 0.3em solid rgba(255, 255, 255, 0.8);
    border-right: 0.2em solid transparent;
    border-bottom: 0;
    border-left: 0.2em solid transparent;
    transform: rotate(-90deg); }
  .w3l-header-4 nav a:hover {
    color: white;
    transition: 0.3s ease;
    background: rgba(38, 41, 45, 0.92); }
  .w3l-header-4 nav a.active {
    color: white;
    transition: 0.3s ease;
    background: rgba(38, 41, 45, 0.92); }
  .w3l-header-4 nav ul ul {
    display: none;
    position: absolute;
    top: 65px;
    background: #161a1e;
    z-index: 999;
    box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.1);
    left: 0px;
    width: 150px; }
  .w3l-header-4 nav ul ul ul {
    display: none;
    position: absolute;
    top: 0px;
    left: 150px;
    width: 140px;
    background: #161a1f;
    z-index: 999; }
  .w3l-header-4 nav ul li:hover > ul {
    display: inherit; }
  .w3l-header-4 nav ul ul li {
    width: 100%;
    float: none;
    display: list-item;
    position: relative;
    margin: 2px 0; }
  .w3l-header-4 nav ul ul li a {
    display: block;
    padding: 5px 12px;
    text-align: left; }
  .w3l-header-4 nav ul ul li a:hover {
    background: rgba(38, 41, 45, 0.92);
    transition: 0.3s ease; }
  .w3l-header-4 nav ul ul ul li {
    position: relative;
    top: 0;
    left: 0px;
    /* has to be the same number as the "width" of "nav ul ul li" */ }
  .w3l-header-4 li > a:only-child:after {
    content: ''; }
  @media all and (max-width: 992px) {
    .w3l-header-4 {
      /* Hide the navigation menu by default */
      /* Also hide the  */
      /* Stylinf the toggle lable */
      /* Display Dropdown when clicked on Parent Lable */
      /* width */
      /* Track */
      /* Handle */
      /* Handle on hover */
      /* Change menu item's width to 100% */
      /* Hide Dropdowns by Default */
      /* Hide menus on hover */
      /* Fisrt Tier Dropdown */ }
      .w3l-header-4 nav a {
        padding: 5px 0;
        display: block; }
      .w3l-header-4 nav li {
        text-align: left; }
      .w3l-header-4 .navigation {
        float: none; }
      .w3l-header-4 .nav-mobile-block {
        display: block !important; }
      .w3l-header-4 nav a.border-left {
        border-left: none !important; }
      .w3l-header-4 .toggle + a,
      .w3l-header-4 .menu {
        display: none; }
      .w3l-header-4 .toggle {
        display: block;
        text-decoration: none;
        border: none;
        margin-bottom: 0;
        cursor: pointer;
        color: #fff;
        text-align: left;
        padding-left: 15px; }
      .w3l-header-4 .nav-height {
        line-height: 45px;
        height: 45px;
        padding-left: 15px; }
      .w3l-header-4 span.fa.fa-caret-down {
        float: right;
        background: rgba(38, 41, 45, 0.92);
        display: inline-block;
        line-height: 45px;
        padding: 0 15px; }
      .w3l-header-4 .menu .toggle {
        float: none;
        margin: auto;
        padding: 5px 0;
        font-weight: normal;
        font-size: 15px;
        background: transparent;
        color: #111; }
      .w3l-header-4 .toggle:hover {
        opacity: .8;
        transition: 0.5s all;
        -webkit-transition: 0.5s all;
        -moz-transition: 0.5s all;
        -o-transition: 0.5s all;
        -ms-transition: 0.5s all; }
      .w3l-header-4 [id^=drop]:checked + ul {
        display: block;
        padding: 10px 15px;
        background: rgba(38, 41, 45, 0.92);
        width: 100%;
        box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.1);
        overflow-y: scroll;
        max-height: 400px; }
      .w3l-header-4 nav ul ul::-webkit-scrollbar, .w3l-header-4 ul.menu::-webkit-scrollbar {
        width: 3px; }
      .w3l-header-4 nav ul ul::-webkit-scrollbar-track, .w3l-header-4 ul.menu::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px #ffffff;
        border-radius: 5px; }
      .w3l-header-4 nav ul ul::-webkit-scrollbar-thumb, .w3l-header-4 ul.menu::-webkit-scrollbar-thumb {
        background: var(--theme-color); }
      .w3l-header-4 nav ul {
        float: right; }
      .w3l-header-4 nav {
        margin: 0 0 0 0px;
        order: 3; }
      .w3l-header-4 nav ul li {
        display: block;
        width: 100%;
        margin: 0; }
      .w3l-header-4 nav a:hover,
      .w3l-header-4 nav ul ul ul a {
        background-color: transparent; }
      .w3l-header-4 nav ul ul {
        float: none;
        position: static;
        color: #ffffff;
        /* has to be the same number as the "line-height" of "nav a" */ }
      .w3l-header-4 nav ul ul li:hover > ul,
      .w3l-header-4 nav ul li:hover > ul {
        display: none; }
      .w3l-header-4 nav ul ul li {
        display: block;
        width: 100%;
        padding: 0; }
      .w3l-header-4 nav ul ul ul li {
        position: static;
        /* has to be the same number as the "width" of "nav ul ul li" */ }
      .w3l-header-4 .navigation nav a {
        margin: 8px 0; }
      .w3l-header-4 label.toggle.toogle-2,
      .w3l-header-4 label.toggle.toogle-3,
      .w3l-header-4 label.toggle.toogle-4,
      .w3l-header-4 label.toggle.toogle-5,
      .w3l-header-4 label.toggle.toogle-6,
      .w3l-header-4 label.toggle.toogle-7,
      .w3l-header-4 label.toggle.toogle-8 {
        display: inline-block;
        transition: none;
        font-style: normal;
        line-height: 25px;
        color: rgba(255, 255, 255, 0.8);
        font-weight: bold;
        font-size: 16px; }
      .w3l-header-4 nav ul ul {
        border-left: 2px solid var(--theme-color);
        border-top: none; }
      .w3l-header-4 nav ul ul ul {
        border-left: 2px solid var(--theme-color);
        border-top: none;
        position: static; }
      .w3l-header-4 nav ul ul li a {
        padding: 5px 0px; }
      .w3l-header-4 .angle-dropdown-sub {
        transform: rotate(0deg); } }
  @media (max-width: 800px) {
    .w3l-header-4 .logo,
    .w3l-header-4 .button {
      z-index: 9; } }
  @media (max-width: 440px) {
    .w3l-header-4 [id^=drop]:checked + ul {
      max-height: 300px; } }

.w3l-hero-header-1 {
  /* banner style */
  /*-- //banner style --*/
  /*-- Headers-4 block --*/
  /*-- /Headers-4 block --*/
  /*-- responsive design --*/
  /*-- /responsive design --*/ }
  .w3l-hero-header-1 .banner_w3lspvt {
    position: relative;
    z-index: 1;
    background: #f6f6f6; }
  .w3l-hero-header-1 .banner-top {
    background: url("../images/slide-3.jpg") no-repeat center;
    background-size: cover; }
  .w3l-hero-header-1 .banner-top1 {
    background: url("../images/slide-1.jpg") no-repeat center;
    background-size: cover; }
  .w3l-hero-header-1 .banner-top2 {
    background: url("../images/slide-2.jpg") no-repeat center;
    background-size: cover; }
  .w3l-hero-header-1 .banner-top3 {
    background: url("../images/slide-4.jpg") no-repeat center;
    background-size: cover; }
  .w3l-hero-header-1 .overlay {
    background: rgba(0, 0, 0, 0.45);
    min-height: inherit; }
  .w3l-hero-header-1 .top-gap {
    padding-top: 10em; }
  .w3l-hero-header-1 .banner-right {
    margin-top: 1em; }
  .w3l-hero-header-1 .banner-cloumn-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    margin-top: 40px; }
  .w3l-hero-header-1 .banner_section h3 {
    color: #ffffff;
    font-weight: normal;
    font-size: 60px;
    line-height: 65px; }
  .w3l-hero-header-1 p.tagline {
    display: inline-block;
    text-transform: capitalize;
    font-size: 17px;
    line-height: 25px;
    color: #fff; }
  .w3l-hero-header-1 .banner-right p {
    font-size: 25px;
    line-height: 35px;
    color: #ffffff; }
  .w3l-hero-header-1 .banner_section h3 span.clr {
    display: inline-block;
    color: #da9d40; }
  .w3l-hero-header-1 .banner_section i {
    vertical-align: middle; }
  .w3l-hero-header-1 .banner-top,
  .w3l-hero-header-1 .banner-top1,
  .w3l-hero-header-1 .banner-top2,
  .w3l-hero-header-1 .banner-top3 {
    min-height: 600px; }
  .w3l-hero-header-1 a.actionbg {
    background: var(--theme-color);
    color: #ffffff;
    font-size: 17px;
    line-height: 25px;
    text-transform: capitalize;
    display: inline-block;
    margin-top: 35px;
    padding: 12px 25px; }
  .w3l-hero-header-1 .header-align {
    align-items: center;
    justify-content: space-between; }
  .w3l-hero-header-1 a.brand-logo {
    color: var(--theme-color);
    font-weight: 600;
    font-size: 30px;
    text-decoration: none; }
  .w3l-hero-header-1 input#nav {
    display: none; }
  .w3l-hero-header-1 label.nav {
    display: none; }
  .w3l-hero-header-1 .button {
    margin-left: auto; }
  .w3l-hero-header-1 .header-main {
    padding: 20px 0; }
  .w3l-hero-header-1 ul.hny-nav-links li {
    display: inline-block;
    font-weight: 400; }
  .w3l-hero-header-1 ul.hny-nav-links li a {
    font-size: 16px;
    color: var(--text-color);
    text-decoration: none;
    padding: 0px 15px;
    display: block; }
  .w3l-hero-header-1 ul.hny-nav-links li a:hover {
    opacity: 0.85; }
  @media (max-width: 1080px) {
    .w3l-hero-header-1 .banner_section h3 {
      font-size: 60px;
      line-height: 65px; } }
  @media (max-width: 1024px) {
    .w3l-hero-header-1 .top-gap {
      padding-top: 8em; }
    .w3l-hero-header-1 .banner-cloumn-grid-2 {
      margin-top: 30px; } }
  @media (max-width: 800px) {
    .w3l-hero-header-1 .banner-cloumn-grid-2 {
      margin-top: 20px;
      grid-template-columns: 1fr;
      grid-gap: 10px; }
    .w3l-hero-header-1 .banner-right p {
      margin-bottom: 30px;
      font-size: 26px;
      line-height: 35px; }
    .w3l-hero-header-1 .nav-main {
      margin-left: auto;
      margin-right: 60px; }
    .w3l-hero-header-1 .logo, .w3l-hero-header-1 .button {
      z-index: 9; }
    .w3l-hero-header-1 .header-main label {
      width: 40px;
      position: absolute;
      top: 20px;
      right: 40px;
      cursor: pointer;
      z-index: 99;
      height: 40px; }
    .w3l-hero-header-1 .header-main label.nav {
      display: block; }
    .w3l-hero-header-1 .header-main label:before {
      content: '';
      background: #304659;
      width: 32px;
      height: 3px;
      position: absolute;
      top: 0px;
      left: 0px;
      border-radius: 0px;
      transition: all 0.5s; }
    .w3l-hero-header-1 .header-main label:after {
      content: '';
      background: #304659;
      width: 32px;
      height: 3px;
      position: absolute;
      top: 22px;
      left: 0px;
      border-radius: 0px;
      transition: all 0.2s; }
    .w3l-hero-header-1 input#nav {
      display: block; }
    .w3l-hero-header-1 input {
      height: 0px;
      opacity: 1;
      display: block;
      transition: opacity 0.2s; }
    .w3l-hero-header-1 ul.hny-nav-links li {
      display: block; }
    .w3l-hero-header-1 input:before {
      content: '';
      background: #304659;
      width: 32px;
      height: 3px;
      position: absolute;
      top: 31px;
      right: 48px;
      border-radius: 0px;
      z-index: 50; }
    .w3l-hero-header-1 input:checked {
      opacity: 0; }
    .w3l-hero-header-1 input:checked ~ label:before {
      top: 8px;
      -webkit-animation: linetop 0.2s linear 0.2s;
              animation: linetop 0.2s linear 0.2s;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards; }
    .w3l-hero-header-1 input:checked ~ label:after {
      top: 8px;
      -webkit-animation: linebottom 0.2s linear 0.2s;
              animation: linebottom 0.2s linear 0.2s;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards; }
    .w3l-hero-header-1 nav {
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 0%;
      color: #fff;
      overflow-y: auto;
      overflow-x: hidden;
      transition: all 0.2s;
      z-index: 1; }
    .w3l-hero-header-1 input:checked ~ nav {
      height: auto; }
    .w3l-hero-header-1 nav > ul {
      margin-top: 4rem;
      transform: translate(0%, 0%);
      transition: 0.2s;
      transition-delay: 0.2s;
      background: #253340;
      padding: 1.5em 0; }
    .w3l-hero-header-1 input:checked ~ nav > ul {
      opacity: 1; }
    .w3l-hero-header-1 nav > ul > li {
      padding: 15px 0;
      padding-left: 0px;
      cursor: pointer;
      transition: all 0.2s; }
    .w3l-hero-header-1 nav > ul > li:hover {
      background: #0f202f;
      color: #fff; }
    .w3l-hero-header-1 ul.hny-nav-links li a {
      color: #fff; }
    .w3l-hero-header-1 ul.hny-nav-links li a:hover {
      opacity: 0.7;
      color: #fff; }
    @-webkit-keyframes linetop {
      0% {
        transform: rotate(0deg); }
      100% {
        transform: rotate(45deg); } }
    @keyframes linetop {
      0% {
        transform: rotate(0deg); }
      100% {
        transform: rotate(45deg); } }
    @-webkit-keyframes linebottom {
      0% {
        transform: rotate(0deg); }
      100% {
        transform: rotate(-45deg); } }
    @keyframes linebottom {
      0% {
        transform: rotate(0deg); }
      100% {
        transform: rotate(-45deg); } }
    .w3l-hero-header-1 nav > ul > li {
      padding: 8px 0; }
    .w3l-hero-header-1 .header-main {
      padding: 10px 0; }
    .w3l-hero-header-1 .banner_section h3 {
      font-size: 58px;
      line-height: 55px; }
    .w3l-hero-header-1 .section-bg-image p {
      padding: 60px 50px 70px; }
    .w3l-hero-header-1 .top-gap {
      padding-top: 6em; } }
  @media (max-width: 640px) {
    .w3l-hero-header-1 .banner_section h3 {
      font-size: 50px;
      line-height: 55px; }
    .w3l-hero-header-1 .csslider > .arrows {
      top: 90%; } }
  @media (max-width: 480px) {
    .w3l-hero-header-1 .header-main label {
      right: 30px; }
    .w3l-hero-header-1 input:before {
      right: 38px; }
    .w3l-hero-header-1 .banner-right p {
      margin-bottom: 24px;
      font-size: 20px;
      line-height: 28px; }
    .w3l-hero-header-1 .top-gap {
      padding-top: 3em; }
    .w3l-hero-header-1 .banner_section h3 {
      font-size: 40px;
      line-height: 43px; }
    .w3l-hero-header-1 .banner-top, .w3l-hero-header-1 .banner-top1, .w3l-hero-header-1 .banner-top2, .w3l-hero-header-1 .banner-top3 {
      min-height: 450px; } }
  @media (max-width: 440px) {
    .w3l-hero-header-1 .header-main label {
      right: 26px; }
    .w3l-hero-header-1 .header-main label:before {
      width: 28px; }
    .w3l-hero-header-1 .header-main label:after {
      width: 28px; }
    .w3l-hero-header-1 input:before {
      width: 28px; }
    .w3l-hero-header-1 nav > ul {
      margin-top: 3.5rem; }
    .w3l-hero-header-1 .section-bg-image p {
      padding: 30px 30px 40px;
      font-size: 24px;
      line-height: 35px; } }
  @media (max-width: 415px) {
    .w3l-hero-header-1 .nav-main {
      margin-left: auto;
      margin-right: 55px; }
    .w3l-hero-header-1 a.brand-logo {
      font-size: 26px; }
    .w3l-hero-header-1 .header-main label {
      right: 16px; }
    .w3l-hero-header-1 input:before {
      right: 28px; }
    .w3l-hero-header-1 .header-main label:after {
      top: 21px; }
    .w3l-hero-header-1 .header-main label:before {
      top: 3px; }
    .w3l-hero-header-1 input:before {
      top: 28px; }
    .w3l-hero-header-1 .header-main label {
      top: 16px; }
    .w3l-hero-header-1 .nav-main {
      margin-left: auto;
      margin-right: 45px; }
    .w3l-hero-header-1 .banner-cloumn-grid-2 {
      margin-top: 10px; }
    .w3l-hero-header-1 input:checked ~ label:before {
      top: 10px; }
    .w3l-hero-header-1 input:checked ~ label:after {
      top: 10px; } }

/*--/content with photo5--*/
.w3l-content-photo-5 {
  /*-- responsive design --*/
  /*-- //responsive design --*/ }
  .w3l-content-photo-5 .content {
    padding: 4.5rem 0; }
  .w3l-content-photo-5 .d-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-gap: 30px; }
  .w3l-content-photo-5 .content-left {
    align-self: center; }
  .w3l-content-photo-5 .content-left h3 {
    font-size: 45px;
    line-height: 50px;
    color: var(--title-color); }
  .w3l-content-photo-5 .content-left p {
    margin-top: 15px;
    color: var(--text-color);
    font-size: 15.5px;
    line-height: 25px; }
  .w3l-content-photo-5 .content-left a {
    background: var(--theme-color);
    color: #ffffff;
    font-size: 17px;
    line-height: 25px;
    text-transform: capitalize;
    display: inline-block;
    margin-top: 35px;
    padding: 12px 25px; }
  @media (max-width: 1280px) {
    .w3l-content-photo-5 .d-grid {
      grid-column-gap: 40px; } }
  @media (max-width: 800px) {
    .w3l-content-photo-5 .d-grid {
      grid-template-columns: 1fr;
      grid-row-gap: 3.5rem; } }
  @media (max-width: 480px) {
    .w3l-content-photo-5 .content-left {
      order: 2; }
    .w3l-content-photo-5 .content-photo {
      order: 1; }
    .w3l-content-photo-5 .content {
      padding: 3em 0; }
    .w3l-content-photo-5 .d-grid {
      grid-template-columns: 1fr;
      grid-row-gap: 2.5rem; }
    .w3l-content-photo-5 .content-left h3 {
      font-size: 48px;
      line-height: 55px; } }
  @media (max-width: 414px) {
    .w3l-content-photo-5 .content-left h3 {
      font-size: 44px;
      line-height: 53px; } }
  @media (max-width: 384px) {
    .w3l-content-photo-5 .content-left h3 {
      font-size: 41px;
      line-height: 52px; } }
  @media (max-width: 375px) {
    .w3l-content-photo-5 .content-left h3 {
      font-size: 39px;
      line-height: 50px; } }
  @media (max-width: 350px) {
    .w3l-content-photo-5 .content-left h3 {
      font-size: 39px; } }

/*--//content with photo5--*/
.w3l-hero-header-1 {
  /*#region MODULES */
  /* arrows left and right */
  /* .w3l-hero-header-1-csslider>.arrows label:before { */
  /* content: ''; */
  /* position: absolute; */
  /* top: -100%; */
  /* left: -100%; */
  /* height: 300%; */
  /* width: 300%; */
  /* } */ }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider {
    position: relative; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input {
    display: none; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(4):checked ~ ul li:first-of-type {
    margin-left: -300%; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(3):checked ~ ul li:first-of-type {
    margin-left: -200%; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(2):checked ~ ul li:first-of-type {
    margin-left: -100%; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(1):checked ~ ul li:first-of-type {
    margin-left: 0%; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > ul {
    position: relative;
    font-size: 0;
    line-height: 0;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > ul > li {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    overflow: visible;
    font-size: 15px;
    font-size: initial;
    line-height: normal;
    transition: all 0.5s cubic-bezier(0.4, 1.3, 0.65, 1);
    vertical-align: top;
    box-sizing: border-box;
    white-space: normal; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > ul > li::after {
    background: #000;
    position: absolute;
    width: 100%;
    height: 100%; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > .navigation {
    position: absolute;
    bottom: 9%;
    left: 50%;
    z-index: 10;
    margin-bottom: -10px;
    font-size: 0;
    line-height: 0;
    text-align: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > .navigation > div {
    margin-left: -100%; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > .navigation label {
    position: relative;
    display: inline-block;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 5px;
    background: #fff;
    width: 11px;
    height: 11px;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > .navigation label:hover:after {
    opacity: 1; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > .navigation label:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -11px;
    margin-top: -11px;
    background: #FF5722;
    border-radius: 50%;
    border: 3px solid #fff;
    opacity: 0;
    width: 13px;
    height: 13px;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider.inside .navigation {
    bottom: 10px;
    margin-bottom: 10px; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider.inside .navigation label {
    border: 1px solid #7e7e7e; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(1):checked ~ .navigation label:nth-of-type(1):after,
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(2):checked ~ .navigation label:nth-of-type(2):after,
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(3):checked ~ .navigation label:nth-of-type(3):after {
    opacity: 1; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider.infinity > input:first-of-type:checked ~ .arrows label.goto-last,
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(0),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(1),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(3):checked ~ .arrows > label:nth-of-type(2) {
    display: block;
    left: 0;
    right: auto;
    transform: rotate(45deg); }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider.infinity > input:last-of-type:checked ~ .arrows label.goto-first,
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(2),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(3) {
    display: block;
    right: 0;
    left: auto;
    transform: rotate(225deg); }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > .arrows {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider.inside .navigation {
    bottom: 10px;
    margin-bottom: 10px; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider.inside .navigation label {
    border: 1px solid #7e7e7e; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(1):checked ~ .navigation label:nth-of-type(1):after,
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(2):checked ~ .navigation label:nth-of-type(2):after,
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(3):checked ~ .navigation label:nth-of-type(3):after,
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(4):checked ~ .navigation label:nth-of-type(4):after,
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(5):checked ~ .navigation label:nth-of-type(5):after,
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(6):checked ~ .navigation label:nth-of-type(6):after,
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(7):checked ~ .navigation label:nth-of-type(7):after,
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(8):checked ~ .navigation label:nth-of-type(8):after,
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(9):checked ~ .navigation label:nth-of-type(9):after,
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(10):checked ~ .navigation label:nth-of-type(10):after,
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(11):checked ~ .navigation label:nth-of-type(11):after {
    opacity: 1; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > .arrows {
    position: absolute;
    top: 85%;
    width: 100%;
    height: 26px;
    z-index: 1;
    box-sizing: content-box; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > .arrows label {
    display: none;
    position: absolute;
    top: -50%;
    padding: 9px;
    box-shadow: inset 2px -2px 0 1px #ffffff;
    cursor: pointer;
    transition: box-shadow 0.15s, margin 0.15s; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > .arrows label:hover {
    box-shadow: inset 2px -2px 0 0px #333;
    margin: 0 0px; }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider.infinity > input:first-of-type:checked ~ .arrows label.goto-last,
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(0),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(1),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(3):checked ~ .arrows > label:nth-of-type(2),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(4):checked ~ .arrows > label:nth-of-type(3),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(5):checked ~ .arrows > label:nth-of-type(4),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(6):checked ~ .arrows > label:nth-of-type(5),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(7):checked ~ .arrows > label:nth-of-type(6),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(8):checked ~ .arrows > label:nth-of-type(7),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(9):checked ~ .arrows > label:nth-of-type(8),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(10):checked ~ .arrows > label:nth-of-type(9),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(11):checked ~ .arrows > label:nth-of-type(10) {
    display: block;
    right: 20%;
    left: auto;
    top: -50%;
    transform: rotate(45deg); }
  .w3l-hero-header-1 .w3l-hero-header-1-csslider.infinity > input:last-of-type:checked ~ .arrows label.goto-first,
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(2),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(3),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(3):checked ~ .arrows > label:nth-of-type(4),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(4):checked ~ .arrows > label:nth-of-type(5),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(5):checked ~ .arrows > label:nth-of-type(6),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(6):checked ~ .arrows > label:nth-of-type(7),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(7):checked ~ .arrows > label:nth-of-type(8),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(8):checked ~ .arrows > label:nth-of-type(9),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(9):checked ~ .arrows > label:nth-of-type(10),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(10):checked ~ .arrows > label:nth-of-type(11),
  .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(11):checked ~ .arrows > label:nth-of-type(12) {
    display: block;
    right: 18%;
    left: auto;
    transform: rotate(225deg); }
  .w3l-hero-header-1 #slider1 {
    width: 100%; }
  @media screen and (max-width: 320px) {
    .w3l-hero-header-1 .w3l-hero-header-1-csslider > .navigation label {
      border: 2px solid #fff; } }
  @media screen and (max-width: 640px) {
    .w3l-hero-header-1 .w3l-hero-header-1-csslider.infinity > input:last-of-type:checked ~ .arrows label.goto-first, .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(2), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(3), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(3):checked ~ .arrows > label:nth-of-type(4), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(4):checked ~ .arrows > label:nth-of-type(5), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(5):checked ~ .arrows > label:nth-of-type(6), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(6):checked ~ .arrows > label:nth-of-type(7), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(7):checked ~ .arrows > label:nth-of-type(8), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(8):checked ~ .arrows > label:nth-of-type(9), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(9):checked ~ .arrows > label:nth-of-type(10), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(10):checked ~ .arrows > label:nth-of-type(11), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(11):checked ~ .arrows > label:nth-of-type(12) {
      right: 15%; } }
  @media screen and (max-width: 568px) {
    .w3l-hero-header-1 .w3l-hero-header-1-csslider.infinity > input:last-of-type:checked ~ .arrows label.goto-first, .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(2), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(3), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(3):checked ~ .arrows > label:nth-of-type(4), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(4):checked ~ .arrows > label:nth-of-type(5), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(5):checked ~ .arrows > label:nth-of-type(6), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(6):checked ~ .arrows > label:nth-of-type(7), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(7):checked ~ .arrows > label:nth-of-type(8), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(8):checked ~ .arrows > label:nth-of-type(9), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(9):checked ~ .arrows > label:nth-of-type(10), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(10):checked ~ .arrows > label:nth-of-type(11), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(11):checked ~ .arrows > label:nth-of-type(12) {
      right: 12%; } }
  @media screen and (max-width: 320px) {
    .w3l-hero-header-1 .w3l-hero-header-1-csslider.infinity > input:last-of-type:checked ~ .arrows label.goto-first, .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(2), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(3), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(3):checked ~ .arrows > label:nth-of-type(4), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(4):checked ~ .arrows > label:nth-of-type(5), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(5):checked ~ .arrows > label:nth-of-type(6), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(6):checked ~ .arrows > label:nth-of-type(7), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(7):checked ~ .arrows > label:nth-of-type(8), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(8):checked ~ .arrows > label:nth-of-type(9), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(9):checked ~ .arrows > label:nth-of-type(10), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(10):checked ~ .arrows > label:nth-of-type(11), .w3l-hero-header-1 .w3l-hero-header-1-csslider > input:nth-of-type(11):checked ~ .arrows > label:nth-of-type(12) {
      right: 10%; } }

.w3l-feature-8 {
  /*--responsive--*/
  /*--//responsive--*/ }
  .w3l-feature-8 .features-main {
    padding: 4.5rem 0;
    background: #f7f7f7; }
  .w3l-feature-8 .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px; }
  .w3l-feature-8 .feature-body {
    display: grid;
    grid-gap: 30px; }
  .w3l-feature-8 .feature-images {
    display: block;
    margin-bottom: 15px;
    width: 100px;
    height: 100px;
    line-height: 105px;
    border-radius: 90px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07); }
  .w3l-feature-8 .feature-images span {
    color: var(--theme-color);
    display: block;
    font-size: 35px;
    line-height: 105px; }
  .w3l-feature-8 h3.feature-titel {
    font-size: 25px;
    line-height: 25px;
    font-weight: normal;
    color: #333; }
  .w3l-feature-8 p.feature-text {
    margin-top: 15px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 25px; }
  .w3l-feature-8 h3.feature-titel:hover {
    color: var(--theme-color); }
  .w3l-feature-8 a.feature-link {
    display: inline-block;
    font-size: 17px;
    line-height: 25px;
    margin-top: 20px;
    color: var(--theme-color);
    font-weight: 400; }
  .w3l-feature-8 a.feature-link span.arrow {
    transition: 0.3s ease; }
  .w3l-feature-8 a.feature-link:hover span.arrow {
    padding-left: 3px;
    transition: 0.3s ease-out; }
  @media (max-width: 1280px) {
    .w3l-feature-8 .feature-info {
      padding: 0 10px; }
    .w3l-feature-8 .features {
      grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
      grid-gap: 20px;
      grid-row-gap: 60px; }
    .w3l-feature-8 p.feature-text {
      font-size: 16px; } }
  @media (max-width: 1024px) {
    .w3l-feature-8 .feature-info {
      padding: 0 0px; } }
  @media (max-width: 767px) {
    .w3l-feature-8 p.feature-text {
      font-size: 15px;
      margin-top: 10px; }
    .w3l-feature-8 img.feature-image {
      width: 75%; }
    .w3l-feature-8 a.feature-link {
      margin: 10px 0; } }
  @media (max-width: 736px) {
    .w3l-feature-8 .features-main {
      padding: 3.5rem 0px; }
    .w3l-feature-8 .features {
      grid-row-gap: 30px; } }
  @media (max-width: 568px) {
    .w3l-feature-8 .features {
      grid-template-columns: repeat(auto-fill, minmax(267px, 1fr)); }
    .w3l-feature-8 .feature-images {
      margin-bottom: 5px; } }
  @media (max-width: 500px) {
    .w3l-feature-8 .features-main {
      padding: 2.5rem 0px; }
    .w3l-feature-8 .feature-images {
      margin-bottom: 0px; } }

.w3l-form-12 .w3l-form-12-content {
  background: url("../images/register-bg.jpg") no-repeat 0px 0px;
  background-size: cover;
  padding: 4.5rem 0px;
  background-attachment: fixed; }

.w3l-form-12 .grid {
  display: grid; }

.w3l-form-12 .grid-column-2 {
  grid-template-columns: 0.75fr 1fr;
  grid-column-gap: 30px; }

.w3l-form-12 .tagline {
  color: var(--theme-color);
  text-transform: uppercase;
  line-height: 20px;
  font-size: 13px; }

.w3l-form-12 .column1 {
  align-self: center;
  background: rgba(255, 255, 255, 0.97);
  padding: 3rem; }

.w3l-form-12 .form-para {
  margin: 10px 0;
  color: var(--title-color);
  line-height: 35px;
  font-size: 26px;
  font-weight: normal;
  font-style: normal; }

.w3l-form-12 .form-input {
  margin-top: 15px;
  width: 100%;
  height: 45px;
  background: #fff;
  color: #000000;
  border: 1px solid #eee;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 45px;
  padding-left: 15px;
  padding-right: 15px; }

.w3l-form-12 .form-input:focus {
  border: 1px solid var(--theme-color);
  outline: none; }

.w3l-form-12 button.btn {
  background: var(--title-color);
  color: #ffffff;
  font-size: 16px;
  text-transform: capitalize;
  margin-top: 30px;
  padding: 15px 25px;
  border: none;
  display: block;
  width: 100%; }

.w3l-form-12 button.btn:hover {
  background: var(--theme-color);
  transition: 0.3s ease-in; }

@media (max-width: 1080px) {
  .w3l-form-12 .column1 {
    align-self: center;
    background: rgba(255, 255, 255, 0.97);
    padding: 2rem; } }

@media (max-width: 768px) {
  .w3l-form-12 .grid-column-2 {
    grid-template-columns: 1fr; }
  .w3l-form-12 .w3l-form-12 {
    padding: 30px 0px; } }

.w3l-services-1 {
  /*-- responsive design --*/
  /*-- //responsive design --*/ }
  .w3l-services-1 .services1-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px; }
  .w3l-services-1 .services1 {
    padding: 4.5rem 0; }
  .w3l-services-1 .services-title {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px; }
  .w3l-services-1 .services-title h3 {
    font-size: 45px;
    line-height: 50px;
    color: var(--title-color); }
  .w3l-services-1 .services-title p {
    color: var(--text-color);
    font-size: 17px;
    line-height: 25px;
    margin-top: 20px; }
  .w3l-services-1 .service-info {
    padding: 30px 20px;
    border: 1px solid rgba(130, 152, 171, 0.35);
    border-width: 0px 1px 1px;
    box-sizing: border-box; }
  .w3l-services-1 .column a {
    display: block; }
  .w3l-services-1 .column a img {
    display: block; }
  .w3l-services-1 .service-info h4 {
    font-size: 20px;
    line-height: 25px;
    color: var(--title-color); }
  .w3l-services-1 .column a:hover h4.course {
    color: var(--theme-color);
    transition: 0.3s ease; }
  .w3l-services-1 .service-info p {
    font-size: 15px;
    line-height: 20px;
    color: #3b5266;
    margin-top: 10px; }
  .w3l-services-1 a.feature-link {
    display: inline-block;
    font-size: 17px;
    line-height: 25px;
    margin-top: 20px;
    color: var(--theme-color);
    font-weight: 400; }
  .w3l-services-1 a.feature-link span.arrow {
    transition: 0.3s ease; }
  .w3l-services-1 a.feature-link:hover span.arrow {
    padding-left: 3px;
    transition: 0.3s ease-out; }
  @media (max-width: 800px) {
    .w3l-services-1 .services1-content {
      grid-template-columns: 1fr 1fr;
      grid-row-gap: 30px; }
    .w3l-services-1 .services-title h3 {
      font-size: 40px;
      line-height: 45px; } }
  @media (max-width: 600px) {
    .w3l-services-1 .services-title h3 {
      font-size: 35px;
      line-height: 40px; } }
  @media (max-width: 480px) {
    .w3l-services-1 .services1-content {
      grid-template-columns: 1fr; }
    .w3l-services-1 .services-title {
      margin: 0 auto 30px; } }
  @media (max-width: 415px) {
    .w3l-services-1 .service-info p {
      margin-top: 10px; }
    .w3l-services-1 .services1 {
      padding: 35px 0 45px; } }
  @media (max-width: 384px) {
    .w3l-services-1 .service-info h3 {
      font-size: 27px;
      line-height: 28px;
      margin-top: 25px; }
    .w3l-services-1 .service-info p, .w3l-services-1 .services-title p {
      font-size: 16px; } }

.w3l-customer-3 {
  /*--responsive--*/
  /*--//responsive--*/ }
  .w3l-customer-3 .customers3 {
    padding: 4.5rem 0;
    background: #eee;
    background: url(../images/clients-bg.jpg) no-repeat 0px 0px;
    background-size: cover;
    background-attachment: fixed; }
  .w3l-customer-3 .bottom-customers {
    max-width: 1200px;
    margin: 50px auto 0px;
    text-align: center;
    border-top: 1px solid #8298AB;
    box-sizing: border-box; }
  .w3l-customer-3 h3.title-main {
    margin-bottom: 35px;
    text-align: center;
    font-size: 45px;
    line-height: 50px;
    color: #fff; }
  .w3l-customer-3 .w3ls_banner_txt {
    max-width: 750px;
    margin: 0px auto; }
  .w3l-customer-3 p.customers-para {
    font-size: 25px;
    line-height: 35px;
    padding: 40px;
    position: relative;
    text-align: center;
    background-color: #fff;
    border: 2px solid var(--theme-color);
    border-radius: 10px; }
  .w3l-customer-3 .tabs-grided-three {
    max-width: 1140px;
    margin: 0px auto; }
  .w3l-customer-3 .customer-details {
    display: grid;
    grid-template-columns: 1fr 6fr;
    grid-gap: 20px;
    cursor: pointer; }
  .w3l-customer-3 .customer-img {
    width: 50px;
    height: 50px; }
  .w3l-customer-3 .customer-img img {
    border-radius: 50%; }
  .w3l-customer-3 .customer-personal h6 {
    font-size: 20px;
    line-height: 25px;
    text-align: left;
    padding-bottom: 5px;
    color: #000; }
  .w3l-customer-3 .customer-personal p {
    font-size: 15px;
    margin-top: 10px;
    color: var(--text-color);
    text-align: left; }
  @media (max-width: 1080px) {
    .w3l-customer-3 p.customers-para {
      font-size: 23px; }
    .w3l-customer-3 .customers3 {
      padding: 60px 0px 70px; }
    .w3l-customer-3 h3.title-main {
      font-size: 42px;
      padding-bottom: 33px; } }
  @media (max-width: 1024px) {
    .w3l-customer-3 .customer-personal h6 {
      font-size: 18px; } }
  @media (max-width: 800px) {
    .w3l-customer-3 .customers3 {
      padding: 50px 0px 60px; }
    .w3l-customer-3 p.customers-para {
      font-size: 22px; } }
  @media (max-width: 768px) {
    .w3l-customer-3 .customer-details {
      grid-template-columns: 1fr;
      grid-gap: 10px; }
    .w3l-customer-3 .customer-personal p {
      margin-top: 3px;
      text-align: center; }
    .w3l-customer-3 .customer-personal h6 {
      text-align: center; }
    .w3l-customer-3 .customer-img {
      margin: auto; } }
  @media (max-width: 736px) {
    .w3l-customer-3 h3.title-main {
      font-size: 40px;
      padding-bottom: 27px; } }
  @media (max-width: 640px) {
    .w3l-customer-3 .customers3 {
      padding: 40px 0px 50px; } }
  @media (max-width: 480px) {
    .w3l-customer-3 h3.title-main {
      font-size: 38px;
      padding-bottom: 25px; }
    .w3l-customer-3 p.customers-para {
      font-size: 18px;
      line-height: 28px;
      padding: 20px; } }
  @media (max-width: 440px) {
    .w3l-customer-3 h3.title-main {
      font-size: 34px;
      padding-bottom: 20px; }
    .w3l-customer-3 .customer-personal p {
      line-height: 20px; } }

.w3l-customer-3 {
  /* 
    .customers-3-csslider > .navigation > div {
        margin-left: -100%;
    }
    */
  /*#region MODULES */
  /* arrows left and right */
  /*--responsive--*/
  /*--//responsive--*/ }
  .w3l-customer-3 .customers-3-csslider {
    position: relative; }
  .w3l-customer-3 .customers-3-csslider > input {
    display: none; }
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(4):checked ~ ul li:first-of-type {
    margin-left: -300%; }
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(3):checked ~ ul li:first-of-type {
    margin-left: -200%; }
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(2):checked ~ ul li:first-of-type {
    margin-left: -100%; }
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(1):checked ~ ul li:first-of-type {
    margin-left: 0%; }
  .w3l-customer-3 .customers-3-csslider > ul {
    /*   position: relative; */
    font-size: 0;
    line-height: 0;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    margin-bottom: 45px;
    /* display: inline-block; */ }
  .w3l-customer-3 .customers-3-csslider > ul > li {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    overflow: visible;
    font-size: 15px;
    font-size: initial;
    line-height: normal;
    transition: all 0.5s cubic-bezier(0.4, 1.3, 0.65, 1);
    vertical-align: top;
    box-sizing: border-box;
    white-space: normal; }
  .w3l-customer-3 .customers-3-csslider > .navigation {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    z-index: 10;
    font-size: 0;
    line-height: 0;
    text-align: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-top: 1px solid #333333;
    background: #fff;
    /*     position: absolute;
        bottom:-7%;
        left: 0%; */ }
  .w3l-customer-3 .customers-3-csslider > .navigation label {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 25px;
    /* height: 11px; */
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all; }
  .w3l-customer-3 .customers-3-csslider > .navigation label:hover:after {
    opacity: 1; }
  .w3l-customer-3 .customers-3-csslider > .navigation label:after {
    content: '';
    position: absolute;
    left: 0%;
    top: 0px;
    /* margin-left: -6px; */
    /* margin-top: -6px; */
    opacity: 0;
    width: 100%;
    /* height: 13px; */
    border-top: 4px var(--theme-color) solid;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    height: 100%;
    opacity: 0.4; }
  .w3l-customer-3 .customers-3-csslider.inside .navigation {
    bottom: 10px;
    margin-bottom: 10px; }
  .w3l-customer-3 .customers-3-csslider.inside .navigation label {
    border: 1px solid #7e7e7e; }
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(1):checked ~ .navigation label:nth-of-type(1):after,
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(2):checked ~ .navigation label:nth-of-type(2):after,
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(3):checked ~ .navigation label:nth-of-type(3):after {
    opacity: 1; }
  .w3l-customer-3 .customers-3-csslider.infinity > input:first-of-type:checked ~ .arrows label.goto-last,
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(0),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(1),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(3):checked ~ .arrows > label:nth-of-type(2) {
    display: block;
    left: 0;
    right: auto;
    transform: rotate(45deg); }
  .w3l-customer-3 .customers-3-csslider.infinity > input:last-of-type:checked ~ .arrows label.goto-first,
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(2),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(3) {
    display: block;
    right: 0;
    left: auto;
    transform: rotate(225deg); }
  .w3l-customer-3 .customers-3-csslider > .arrows {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .w3l-customer-3 .customers-3-csslider.inside .navigation {
    bottom: 10px;
    margin-bottom: 10px; }
  .w3l-customer-3 .customers-3-csslider.inside .navigation label {
    border: 1px solid #7e7e7e; }
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(1):checked ~ .navigation label:nth-of-type(1):after,
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(2):checked ~ .navigation label:nth-of-type(2):after,
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(3):checked ~ .navigation label:nth-of-type(3):after,
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(4):checked ~ .navigation label:nth-of-type(4):after,
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(5):checked ~ .navigation label:nth-of-type(5):after,
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(6):checked ~ .navigation label:nth-of-type(6):after,
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(7):checked ~ .navigation label:nth-of-type(7):after,
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(8):checked ~ .navigation label:nth-of-type(8):after,
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(9):checked ~ .navigation label:nth-of-type(9):after,
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(10):checked ~ .navigation label:nth-of-type(10):after,
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(11):checked ~ .navigation label:nth-of-type(11):after {
    opacity: 1; }
  .w3l-customer-3 .customers-3-csslider > .arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 26px;
    z-index: 1;
    box-sizing: content-box; }
  .w3l-customer-3 .customers-3-csslider > .arrows label {
    display: none;
    position: absolute;
    top: -50%;
    padding: 9px;
    box-shadow: inset 2px -2px 0 1px #fff;
    cursor: pointer;
    transition: box-shadow 0.15s, margin 0.15s; }
  .w3l-customer-3 .customers-3-csslider > .arrows label:hover {
    box-shadow: inset 5px -2px 0 9px #fff;
    margin: 0 0px; }
  .w3l-customer-3 .customers-3-csslider > .arrows label:before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    height: 300%;
    width: 300%; }
  .w3l-customer-3 .customers-3-csslider.infinity > input:first-of-type:checked ~ .arrows label.goto-last,
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(0),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(1),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(3):checked ~ .arrows > label:nth-of-type(2),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(4):checked ~ .arrows > label:nth-of-type(3),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(5):checked ~ .arrows > label:nth-of-type(4),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(6):checked ~ .arrows > label:nth-of-type(5),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(7):checked ~ .arrows > label:nth-of-type(6),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(8):checked ~ .arrows > label:nth-of-type(7),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(9):checked ~ .arrows > label:nth-of-type(8),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(10):checked ~ .arrows > label:nth-of-type(9),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(11):checked ~ .arrows > label:nth-of-type(10) {
    display: block;
    left: 5%;
    right: auto;
    transform: rotate(45deg); }
  .w3l-customer-3 .customers-3-csslider.infinity > input:last-of-type:checked ~ .arrows label.goto-first,
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(2),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(3),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(3):checked ~ .arrows > label:nth-of-type(4),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(4):checked ~ .arrows > label:nth-of-type(5),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(5):checked ~ .arrows > label:nth-of-type(6),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(6):checked ~ .arrows > label:nth-of-type(7),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(7):checked ~ .arrows > label:nth-of-type(8),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(8):checked ~ .arrows > label:nth-of-type(9),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(9):checked ~ .arrows > label:nth-of-type(10),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(10):checked ~ .arrows > label:nth-of-type(11),
  .w3l-customer-3 .customers-3-csslider > input:nth-of-type(11):checked ~ .arrows > label:nth-of-type(12) {
    display: block;
    right: 5%;
    left: auto;
    transform: rotate(225deg); }
  .w3l-customer-3 #slider2 {
    width: 100%; }
  @media (max-width: 1080px) {
    .w3l-customer-3 .customers-3-csslider > .navigation {
      grid-gap: 12px; } }
  @media (max-width: 992px) {
    .w3l-customer-3 .customers-3-csslider > ul {
      margin-bottom: 25px; } }
  @media (max-width: 800px) {
    .w3l-customer-3 .customers-3-csslider > .navigation label {
      border-top: 1px solid #8298AB; }
    .w3l-customer-3 .customers-3-csslider > .navigation {
      border-top: none; } }
  @media (max-width: 768px) {
    .w3l-customer-3 .customers-3-csslider > .navigation label {
      padding: 15px; } }
  @media screen and (max-width: 568px) {
    .w3l-customer-3 .customers-3-csslider.infinity > input:last-of-type:checked ~ .arrows label.goto-first,
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(2),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(3),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(3):checked ~ .arrows > label:nth-of-type(4),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(4):checked ~ .arrows > label:nth-of-type(5),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(5):checked ~ .arrows > label:nth-of-type(6),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(6):checked ~ .arrows > label:nth-of-type(7),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(7):checked ~ .arrows > label:nth-of-type(8),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(8):checked ~ .arrows > label:nth-of-type(9),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(9):checked ~ .arrows > label:nth-of-type(10),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(10):checked ~ .arrows > label:nth-of-type(11),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(11):checked ~ .arrows > label:nth-of-type(12) {
      right: 6%; }
    .w3l-customer-3 .customers-3-csslider > .arrows label {
      padding: 7px; } }
  @media screen and (max-width: 480px) {
    .w3l-customer-3 .customers-3-csslider.infinity > input:last-of-type:checked ~ .arrows label.goto-first,
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(2),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(3),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(3):checked ~ .arrows > label:nth-of-type(4),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(4):checked ~ .arrows > label:nth-of-type(5),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(5):checked ~ .arrows > label:nth-of-type(6),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(6):checked ~ .arrows > label:nth-of-type(7),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(7):checked ~ .arrows > label:nth-of-type(8),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(8):checked ~ .arrows > label:nth-of-type(9),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(9):checked ~ .arrows > label:nth-of-type(10),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(10):checked ~ .arrows > label:nth-of-type(11),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(11):checked ~ .arrows > label:nth-of-type(12) {
      right: 7%; }
    .w3l-customer-3 .customers-3-csslider > .arrows label {
      padding: 6px; }
    .w3l-customer-3 .customers-3-csslider > .navigation label {
      padding: 15px; }
    .w3l-customer-3 .customers-3-csslider > .navigation label {
      padding: 15px 5px; } }
  @media screen and (max-width: 414px) {
    .w3l-customer-3 .customers-3-csslider.infinity > input:last-of-type:checked ~ .arrows label.goto-first,
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(2),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(3),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(3):checked ~ .arrows > label:nth-of-type(4),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(4):checked ~ .arrows > label:nth-of-type(5),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(5):checked ~ .arrows > label:nth-of-type(6),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(6):checked ~ .arrows > label:nth-of-type(7),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(7):checked ~ .arrows > label:nth-of-type(8),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(8):checked ~ .arrows > label:nth-of-type(9),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(9):checked ~ .arrows > label:nth-of-type(10),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(10):checked ~ .arrows > label:nth-of-type(11),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(11):checked ~ .arrows > label:nth-of-type(12) {
      right: 8%;
      top: -15%; } }
  @media screen and (max-width: 375px) {
    .w3l-customer-3 .customers-3-csslider.infinity > input:last-of-type:checked ~ .arrows label.goto-first,
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(2),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(3),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(3):checked ~ .arrows > label:nth-of-type(4),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(4):checked ~ .arrows > label:nth-of-type(5),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(5):checked ~ .arrows > label:nth-of-type(6),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(6):checked ~ .arrows > label:nth-of-type(7),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(7):checked ~ .arrows > label:nth-of-type(8),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(8):checked ~ .arrows > label:nth-of-type(9),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(9):checked ~ .arrows > label:nth-of-type(10),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(10):checked ~ .arrows > label:nth-of-type(11),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(11):checked ~ .arrows > label:nth-of-type(12) {
      right: 9%; } }
  @media screen and (max-width: 320px) {
    .w3l-customer-3 .customers-3-csslider.infinity > input:last-of-type:checked ~ .arrows label.goto-first,
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(1):checked ~ .arrows > label:nth-of-type(2),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(2):checked ~ .arrows > label:nth-of-type(3),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(3):checked ~ .arrows > label:nth-of-type(4),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(4):checked ~ .arrows > label:nth-of-type(5),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(5):checked ~ .arrows > label:nth-of-type(6),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(6):checked ~ .arrows > label:nth-of-type(7),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(7):checked ~ .arrows > label:nth-of-type(8),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(8):checked ~ .arrows > label:nth-of-type(9),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(9):checked ~ .arrows > label:nth-of-type(10),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(10):checked ~ .arrows > label:nth-of-type(11),
    .w3l-customer-3 .customers-3-csslider > input:nth-of-type(11):checked ~ .arrows > label:nth-of-type(12) {
      right: 10%; }
    .w3l-customer-3 .customers-3-csslider > .navigation label {
      border: 2px solid #fff; } }

/*-- grids block 5 --*/
.w3l-new-block-6 {
  /*--/*-- responsive design --*/
  /*-- grids block 5 --*/ }
  .w3l-new-block-6 #grids5-block {
    padding: 4.5rem 0; }
  .w3l-new-block-6 .admin-list {
    padding: 0 0 16px;
    margin: 0 0 20px;
    list-style: none;
    overflow: hidden;
    border-bottom: 1px solid #ececec; }
  .w3l-new-block-6 .admin-list li {
    display: inline-block;
    margin: 0 20px 0 0;
    list-style-type: none; }
  .w3l-new-block-6 .admin-list li a {
    display: block;
    font-size: 12px;
    color: #777;
    text-transform: capitalize; }
  .w3l-new-block-6 .admin-list li a span {
    color: var(--theme-color);
    font-size: 16px;
    margin: 0 6px 0 0; }
  .w3l-new-block-6 .w3l-new-block-6-title {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px; }
  .w3l-new-block-6 .w3l-new-block-6-title h3 {
    font-size: 45px;
    line-height: 50px;
    color: var(--title-color); }
  .w3l-new-block-6 .w3l-new-block-6-title p {
    color: var(--text-color);
    font-size: 17px;
    line-height: 25px;
    margin-top: 20px; }
  .w3l-new-block-6 .d-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 20px; }
  .w3l-new-block-6 .grids5-info h4 a {
    font-size: 22px;
    color: var(--title-color);
    margin: 18px 0 8px 0;
    display: block; }
  .w3l-new-block-6 .grids5-info h5 a:hover {
    color: #000000; }
  .w3l-new-block-6 .grids5-info p {
    font-style: normal;
    font-weight: normal;
    color: var(--text-color);
    font-size: 15px;
    line-height: 25px; }
  .w3l-new-block-6 .grids5-info img {
    width: 100%; }
  .w3l-new-block-6 .grids5-info h4 a:hover {
    color: var(--theme-color);
    transition: 0.3s ease; }
  @media all and (max-width: 800px) {
    .w3l-new-block-6 .d-grid {
      grid-template-columns: 1fr 1fr;
      grid-row-gap: 30px; }
    .w3l-new-block-6 .w3l-new-block-6-title h3 {
      font-size: 40px;
      line-height: 45px; } }
  @media all and (max-width: 568px) {
    .w3l-new-block-6 .d-grid {
      grid-template-columns: 1fr; }
    .w3l-new-block-6 .d-grid {
      grid-row-gap: 45px; }
    .w3l-new-block-6 .grids5-info h4 a {
      margin-top: 13px; }
    .w3l-new-block-6 .grids5-info p {
      margin-top: 12px; } }
  @media all and (max-width: 414px) {
    .w3l-new-block-6 .grids5-info h4 a {
      font-size: 23px; }
    .w3l-new-block-6 .w3l-new-block-6-title h3 {
      font-size: 35px;
      line-height: 40px; } }
  @media all and (max-width: 384px) {
    .w3l-new-block-6 .grids5-info h4 a {
      font-size: 22px; } }

/*--//*-- responsive design --*/
.w3l-form-3 {
  /*-- //Reset-Code --*/
  /*--responsive--*/
  /*--//responsive--*/ }
  .w3l-form-3 .form-main {
    padding: 4.5rem 0px 0 0;
    background: #161a1e; }
  .w3l-form-3 .middle-section {
    display: grid;
    grid-template-columns: .8fr 1.1fr 1fr;
    padding-top: 30px;
    align-items: center;
    padding-bottom: 30px;
    padding: 40px;
    background: rgba(38, 41, 45, 0.92);
    grid-gap: 30px; }
  .w3l-form-3 .text-grid h2 {
    font-size: 25px;
    line-height: 30px;
    color: #fff; }
  .w3l-form-3 .text-grid p {
    padding-top: 10px;
    color: #b9b9b9;
    font-size: 17px;
    line-height: 25px; }
  .w3l-form-3 .form-text input {
    width: 100%;
    font-size: 15px;
    border-radius: 0px;
    background: #fff;
    color: #000;
    padding: 12px;
    border: 1px solid #fff; }
  .w3l-form-3 .form-text input:focus {
    border: 1px solid var(--theme-color);
    outline: none; }
  .w3l-form-3 button.submit-butn {
    cursor: pointer;
    outline: none;
    border-radius: 0px;
    padding: 12px 30px;
    margin-top: 10px;
    border: 1px solid var(--theme-color);
    color: #ffffff;
    font-size: 16px;
    text-transform: capitalize;
    display: block;
    width: 100%;
    border: none;
    background: var(--theme-color); }
  .w3l-form-3 button.submit-butn:hover {
    transition: 0.3s ease;
    background: var(--theme-color); }
  .w3l-form-3 ::-webkit-input-placeholder {
    /* Edge */
    color: #8298AB; }
  .w3l-form-3 :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #8298AB; }
  .w3l-form-3 ::-moz-placeholder {
    color: #8298AB; }
  .w3l-form-3 ::-ms-input-placeholder {
    color: #8298AB; }
  .w3l-form-3 ::placeholder {
    color: #8298AB; }
  @media (max-width: 1080px) {
    .w3l-form-3 .middle-section {
      padding: 30px; } }
  @media (max-width: 900px) {
    .w3l-form-3 .middle-section.grid-column {
      grid-template-columns: 1fr; } }
  @media (max-width: 667px) {
    .w3l-form-3 .form-main {
      padding: 40px 0px; }
    .w3l-form-3 .middle-section {
      padding: 20px; } }
  @media (max-width: 480px) {
    .w3l-form-3 .middle-section {
      padding: 15px; } }

.w3l-footers-14 {
  /*-- footers14 --*/ }
  .w3l-footers-14 #footers14-block {
    padding: 0 0 3rem;
    background-color: #16191e; }
  .w3l-footers-14 .d-flex {
    display: flex; }
  .w3l-footers-14 .footers14-top {
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    align-items: center; }
  .w3l-footers-14 ul.footer14-nav {
    margin-top: 3rem; }
  .w3l-footers-14 ul.footer14-nav li {
    list-style-type: none;
    display: inline-block;
    margin: 10px 40px 10px 0px; }
  .w3l-footers-14 ul.footer14-nav li:last-child {
    margin-right: 0px; }
  .w3l-footers-14 ul.footer14-nav li a {
    font-size: 16px;
    line-height: 25px;
    color: #999; }
  .w3l-footers-14 ul.footer14-nav li a:hover {
    opacity: 0.8; }
  .w3l-footers-14 .footer14-app {
    font-size: 17px;
    color: #999;
    align-items: center;
    margin-top: 3rem; }
  .w3l-footers-14 .footer14-app span {
    margin-right: 10px; }
  .w3l-footers-14 .footer14-app a span {
    margin: 0 10px;
    color: #ffffff;
    font-size: 20px;
    transition: 0.3s ease; }
  .w3l-footers-14 .footer14-app a:hover span {
    color: var(--theme-color); }
  .w3l-footers-14 .footers14-bottom {
    margin-top: 35px;
    border-top: 1px solid rgba(130, 152, 171, 0.35);
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center; }
  .w3l-footers-14 .language-select,
  .w3l-footers-14 .copyright {
    margin-top: 35px; }
  .w3l-footers-14 .copyright p {
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
    color: #999; }
  .w3l-footers-14 .copyright a {
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
    color: #fff; }
  .w3l-footers-14 .copyright a:hover {
    text-decoration: underline; }
  .w3l-footers-14 .language-select select {
    font-style: normal;
    font-weight: normal;
    line-height: 20px;
    position: relative;
    background: #fff;
    outline: none;
    width: 100%;
    font-size: 15px;
    color: #304659;
    height: 45px;
    text-align: left;
    -webkit-appearance: none;
    cursor: pointer;
    display: grid;
    grid-template-columns: .1fr 1fr;
    align-items: center;
    padding-left: 15px;
    padding-right: 35px;
    border: none;
    border-radius: 3px; }
  .w3l-footers-14 .language-select {
    margin-top: 35px;
    position: relative; }
  .w3l-footers-14 span.fa.fa-language {
    position: absolute;
    color: var(--theme-color);
    font-size: 16px;
    z-index: 9;
    right: 15px;
    top: 13px; }
  .w3l-footers-14 .language-select select:focus {
    outline: none; }
  .w3l-footers-14 #movetop {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 99;
    font-size: 25px;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    width: 35px;
    height: 35px;
    background: #333;
    padding: 0;
    line-height: 35px;
    border-radius: 4px;
    transition: 0.5s ease-out; }
  .w3l-footers-14 #movetop:hover {
    background: var(--theme-color);
    transform: translate3d(0, -5px, 0);
    -webkit-transform: translate3d(0, -5px, 0);
    transition: 0.5s ease-out; }
  @media all and (max-width: 736px) {
    .w3l-footers-14 .copyright {
      order: 2; } }
  @media all and (max-width: 667px) {
    .w3l-footers-14 ul.footer14-nav li {
      margin: 10px 20px 10px 0px; } }
  @media all and (max-width: 440px) {
    .w3l-footers-14 ul.footer14-nav,
    .w3l-footers-14 .footer14-app {
      margin-top: 2rem; }
    .w3l-footers-14 .language-select,
    .w3l-footers-14 .copyright {
      margin-top: 30px; } }

.w3l-title-1 {
  /*-- responsive design --*/
  /*-- //responsive design --*/ }
  .w3l-title-1 .title1 {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 30px 0;
    text-align: center; }
  .w3l-title-1 .title1 h2 {
    font-size: 30px;
    color: #16191e; }
  @media (max-width: 736px) {
    .w3l-title-1 .title1 {
      padding: 20px 0; } }
  @media (max-width: 480px) {
    .w3l-title-1 .title1 {
      padding: 15px 0; } }

.w3l-specifications-9 {
  /* flex properties */
  /* //flex properties */
  /* //Reset Code */
  /* specifications */
  /* //specifications */
  /* responsive */
  /* //responsive */ }
  .w3l-specifications-9 .d-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
  .w3l-specifications-9 .justify-content-between {
    justify-content: space-between; }
  .w3l-specifications-9 .align-items-center {
    align-items: center; }
  .w3l-specifications-9 .main-w3 {
    background: url(../images/stats-bg.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed; }
  .w3l-specifications-9 .overlay {
    padding: 4.5rem 0;
    background: rgba(0, 0, 0, 0.65);
    min-height: inherit; }
  .w3l-specifications-9 h3.title-spe {
    color: #ffffff;
    font-size: 35px;
    margin: 15px 0;
    display: inline-block; }
  .w3l-specifications-9 .grids-speci p {
    font-size: 15px;
    color: #f7f7f7; }
  .w3l-specifications-9 .stats-icon {
    display: block;
    margin-bottom: 15px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 90px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    background: #fff;
    margin: auto; }
  .w3l-specifications-9 .grids-speci span {
    color: var(--theme-color);
    display: block;
    font-size: 30px;
    line-height: 90px; }
  @media (max-width: 736px) {
    .w3l-specifications-9 .grids-speci {
      flex: 0 0 50%;
      max-width: 50%;
      margin-top: 4rem; }
    .w3l-specifications-9 .grids-speci:nth-child(1), .w3l-specifications-9 .grids-speci:nth-child(2) {
      margin-top: 0; } }
  @media (max-width: 384px) {
    .w3l-specifications-9 .grids-speci {
      padding: .5em; }
    .w3l-specifications-9 .grids-speci {
      flex: 0 0 100%;
      max-width: 100%;
      margin-top: 3rem; }
    .w3l-specifications-9 .grids-speci:nth-child(2) {
      margin-top: 3rem; } }
  @media (max-width: 375px) {
    .w3l-specifications-9 .main-cont-wthree-fea {
      display: block; }
    .w3l-specifications-9 .grids-speci.midd-eff-spe {
      border-top: 1px solid rgba(130, 152, 171, 0.22);
      border-bottom: 1px solid rgba(130, 152, 171, 0.22);
      border-left: none;
      border-right: none;
      margin: 1em auto;
      padding: 1em 0; }
    .w3l-specifications-9 .grids-speci {
      width: 200px;
      margin: 0 auto; } }

.w3l-content-with-photo-11 {
  /*-- responsive design --*/
  /*-- //responsive design --*/ }
  .w3l-content-with-photo-11 .wrapper-left {
    max-width: 87.5%;
    margin-left: auto; }
  .w3l-content-with-photo-11 .contentwithphoto-11-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 70px; }
  .w3l-content-with-photo-11 .contentwithphoto-text h3 {
    margin-bottom: 60px;
    max-width: 600px;
    font-size: 45px;
    line-height: 50px;
    color: var(--theme-color); }
  .w3l-content-with-photo-11 .contentwithphoto-img img {
    width: 100%;
    display: block; }
  .w3l-content-with-photo-11 .contentwithphoto-text-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px 40px; }
  .w3l-content-with-photo-11 .contentwithphoto-text-info h4 a {
    margin-bottom: 10px;
    display: inline-block;
    font-size: 25px;
    line-height: 25px;
    font-weight: normal;
    color: #333; }
  .w3l-content-with-photo-11 .contentwithphoto-text-info h4 a:hover {
    color: var(--theme-color); }
  .w3l-content-with-photo-11 .contentwithphoto-text-info p {
    max-width: 260px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 25px; }
  .w3l-content-with-photo-11 .contentwithphoto-text {
    align-self: center; }
  @media (max-width: 1280px) {
    .w3l-content-with-photo-11 .wrapper-left {
      max-width: 90.5%; } }
  @media (max-width: 1080px) {
    .w3l-content-with-photo-11 .wrapper-left {
      max-width: 92.5%; }
    .w3l-content-with-photo-11 .contentwithphoto-text h3 {
      font-size: 29px;
      line-height: 35px;
      margin-bottom: 40px; }
    .w3l-content-with-photo-11 .contentwithphoto-11-content {
      grid-column-gap: 40px; } }
  @media (max-width: 900px) {
    .w3l-content-with-photo-11 .wrapper-left {
      max-width: 90%; }
    .w3l-content-with-photo-11 .contentwithphoto-11-content {
      grid-template-columns: 1fr;
      grid-row-gap: 50px; }
    .w3l-content-with-photo-11 .contentwithphoto-text {
      padding-right: 10%;
      padding-top: 3.5rem; } }
  @media (max-width: 480px) {
    .w3l-content-with-photo-11 .wrapper-left {
      max-width: 94%; }
    .w3l-content-with-photo-11 .contentwithphoto-text {
      padding-right: 6%; }
    .w3l-content-with-photo-11 .contentwithphoto-11 {
      padding: 40px 0px; }
    .w3l-content-with-photo-11 .contentwithphoto-text-info {
      grid-gap: 30px 10px; }
    .w3l-content-with-photo-11 .wrapper-left {
      max-width: 100%; }
    .w3l-content-with-photo-11 .contentwithphoto-text {
      padding-right: 6%;
      padding-left: 6%; }
    .w3l-content-with-photo-11 .contentwithphoto-text {
      order: 2; }
    .w3l-content-with-photo-11 .contentwithphoto-img {
      order: 1; } }
  @media (max-width: 415px) {
    .w3l-content-with-photo-11 .contentwithphoto-text-info {
      grid-template-columns: 1fr;
      grid-gap: 20px 0px; }
    .w3l-content-with-photo-11 .contentwithphoto-text-info p {
      max-width: 360px; }
    .w3l-content-with-photo-11 .contentwithphoto-11 {
      padding: 40px 0px; }
    .w3l-content-with-photo-11 .contentwithphoto-11-content {
      grid-row-gap: 30px; } }
  @media (max-width: 384px) {
    .w3l-content-with-photo-11 .contentwithphoto-text h3 {
      font-size: 25px;
      line-height: 30px;
      margin-bottom: 30px; }
    .w3l-content-with-photo-11 .contentwithphoto-text-info {
      grid-gap: 25px 0px; }
    .w3l-content-with-photo-11 .contentwithphoto-11-content {
      grid-row-gap: 20px; } }

.w3l-feature-with-photo-1 {
  /*-- responsive design --*/
  /*-- //responsive design --*/ }
  .w3l-feature-with-photo-1 .feature-with-photo {
    padding: 4.5rem 0;
    text-align: center; }
  .w3l-feature-with-photo-1 .feature-with-photo-content img {
    width: 100%; }
  .w3l-feature-with-photo-1 .feature-with-photo h3 {
    font-size: 45px;
    line-height: 50px;
    color: var(--title-color); }
  .w3l-feature-with-photo-1 .feature-with-photo p {
    font-size: 17px;
    line-height: 25px;
    color: #3b5266;
    max-width: 556px;
    margin: 20px auto 40px; }
  .w3l-feature-with-photo-1 .feature-with-photo h4 a {
    color: var(--title-color);
    font-size: 20px;
    line-height: 25px; }
  .w3l-feature-with-photo-1 .icon span {
    font-size: 40px;
    color: var(--theme-color); }
  .w3l-feature-with-photo-1 .feature-with-photo h4 a:hover {
    color: var(--theme-color); }
  .w3l-feature-with-photo-1 .feature-with-photo .grid p {
    margin: 0;
    margin-top: 5px; }
  .w3l-feature-with-photo-1 .grid {
    text-align: left;
    grid-template-columns: auto 1fr;
    display: grid;
    grid-gap: 20px; }
  .w3l-feature-with-photo-1 .three-grids {
    margin-top: 42px; }
  .w3l-feature-with-photo-1 .d-grid {
    display: grid; }
  .w3l-feature-with-photo-1 .grid-columns-3 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 50px; }
  @media (max-width: 1280px) {
    .w3l-feature-with-photo-1 .grid-columns-3 {
      grid-column-gap: 30px; } }
  @media (max-width: 1080px) {
    .w3l-feature-with-photo-1 .grid-columns-3 {
      grid-column-gap: 15px; }
    .w3l-feature-with-photo-1 .grid {
      grid-gap: 15px; } }
  @media (max-width: 992px) {
    .w3l-feature-with-photo-1 .feature-with-photo h3 {
      font-size: 40px;
      line-height: 40px; } }
  @media (max-width: 800px) {
    .w3l-feature-with-photo-1 .grid-columns-3 {
      grid-template-columns: 1fr; }
    .w3l-feature-with-photo-1 .grid-columns-3 {
      grid-column-gap: 20px;
      grid-row-gap: 20px; }
    .w3l-feature-with-photo-1 .grid {
      grid-template-columns: 50px 1fr; }
    .w3l-feature-with-photo-1 .icon {
      text-align: center; } }
  @media (max-width: 768px) {
    .w3l-feature-with-photo-1 .feature-with-photo h3 {
      font-size: 34px;
      line-height: 35px; } }
  @media (max-width: 668px) {
    .w3l-feature-with-photo-1 .feature-with-photo h3 {
      font-size: 32px; }
    .w3l-feature-with-photo-1 .feature-with-photo .grid p {
      max-width: 100%; } }
  @media (max-width: 568px) {
    .w3l-feature-with-photo-1 .feature-with-photo h3 {
      font-size: 30px;
      line-height: 35px; }
    .w3l-feature-with-photo-1 .grid-columns-3 {
      grid-row-gap: 20px;
      grid-column-gap: 15px; } }
  @media (max-width: 480px) {
    .w3l-feature-with-photo-1 .feature-with-photo h3 {
      font-size: 28px; }
    .w3l-feature-with-photo-1 .feature-with-photo {
      padding: 40px 0; } }
  @media (max-width: 415px) {
    .w3l-feature-with-photo-1 .grid-columns-3 {
      grid-template-columns: 1fr; } }
  @media (max-width: 384px) {
    .w3l-feature-with-photo-1 .feature-with-photo p {
      font-size: 16px;
      margin: 10px auto 30px; }
    .w3l-feature-with-photo-1 .icon {
      width: 35px; }
    .w3l-feature-with-photo-1 .feature-with-photo .grid p {
      line-height: 23px; }
    .w3l-feature-with-photo-1 .feature-with-photo h4 {
      font-size: 18px; }
    .w3l-feature-with-photo-1 .feature-with-photo {
      padding: 50px 0 50px; }
    .w3l-feature-with-photo-1 .three-grids {
      margin-top: 30px; } }

.w3l-features-12 .feature-heading {
  color: var(--title-color);
  line-height: 30px;
  font-size: 25px;
  margin-bottom: 15px; }

.w3l-features-12 .feature-heading:hover {
  color: var(--theme-color);
  transition: 0.3s ease; }

.w3l-features-12 .feature-para {
  color: #3B5266;
  line-height: 25px;
  font-size: 17px;
  font-weight: normal;
  font-style: normal;
  margin-top: 10px; }

.w3l-features-12 .feature12 {
  padding: 4.5rem 0;
  display: grid;
  text-align: left;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  text-align: center; }

.w3l-features-12 .service-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 90px;
  text-align: center;
  box-shadow: 0 0px 50px rgba(0, 0, 0, 0.04);
  margin: auto;
  margin-bottom: 30px; }

.w3l-features-12 .service-icon span {
  color: var(--theme-color);
  display: block;
  font-size: 55px;
  line-height: 100px; }

.w3l-features-12 .column {
  padding: 60px;
  border: 1px solid #eee;
  background: #fffdfc; }

.w3l-features-12 .text-center {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 70px; }

@media screen and (max-width: 992px) {
  .w3l-features-12 .column {
    padding: 30px; } }

@media screen and (max-width: 768px) {
  .w3l-features-12 .feature12 {
    grid-template-columns: 1fr 1fr; } }

@media screen and (max-width: 736px) {
  .w3l-features-12 .feature12 {
    grid-template-columns: 1fr; }
  .w3l-features-12 .feature12 {
    padding: 3.5rem 0; } }

@media screen and (max-width: 684px) {
  .w3l-features-12 .feature12 {
    grid-template-columns: 1fr; } }

@media screen and (max-width: 500px) {
  .w3l-features-12 .feature12 {
    padding: 2.5rem 0; } }

/* /features-with-17*/
.w3l-features-with-photo-17 {
  /*--/responsive-code--*/ }
  .w3l-features-with-photo-17 .features-with-17_sur h6 {
    font-size: 20px;
    line-height: 25px;
    color: #fff;
    margin-top: 20px; }
  .w3l-features-with-photo-17 .features-with-17-left1 span {
    font-size: 28px;
    color: #fff; }
  .w3l-features-with-photo-17 .features-with-17_sur h6 a {
    color: #fff;
    text-decoration: none; }
  .w3l-features-with-photo-17 .features-with-17_sur h6 a:hover {
    opacity: 0.8; }
  .w3l-features-with-photo-17 .features-with-17_sur {
    background: #161a1e;
    padding: 4.5rem 0; }
  .w3l-features-with-photo-17 .features-with-17_sur p {
    color: #d0d0d0;
    margin-top: 10px;
    font-size: 15px;
    line-height: 25px; }
  .w3l-features-with-photo-17 .features-with-17-top_sur {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px; }
  .w3l-features-with-photo-17 .features-with-17-right_sur {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px; }
  @media (max-width: 992px) {
    .w3l-features-with-photo-17 .features-with-17-top_sur {
      display: grid;
      grid-template-columns: 1fr; }
    .w3l-features-with-photo-17 .features-with-17-left_sur {
      margin-bottom: 2em; }
    .w3l-features-with-photo-17 .features-with-17-right-tp_sur {
      display: grid;
      grid-template-columns: auto 1fr; }
    .w3l-features-with-photo-17 .features-with-17-left1 {
      margin-right: 20px; }
    .w3l-features-with-photo-17 .features-with-17_sur h6 {
      margin-top: 0px; } }
  @media (max-width: 900px) {
    .w3l-features-with-photo-17 .features-with-17_sur {
      padding: 50px 0; } }
  @media (max-width: 480px) {
    .w3l-features-with-photo-17 .features-with-17_sur h2 {
      font-size: 48px;
      line-height: 53px; }
    .w3l-features-with-photo-17 .features-with-17-right_sur {
      grid-template-columns: 1fr; }
    .w3l-features-with-photo-17 .features-with-17-left_sur {
      margin-bottom: 2em; } }
  @media (max-width: 440px) {
    .w3l-features-with-photo-17 .features-with-17_sur h2 {
      font-size: 40px;
      line-height: 46px; } }
  @media (max-width: 415px) {
    .w3l-features-with-photo-17 .features-with-17_sur {
      padding: 30px 0; } }
  @media (max-width: 320px) {
    .w3l-features-with-photo-17 .features-with-17_sur h2 {
      font-size: 32px;
      line-height: 38px; }
    .w3l-features-with-photo-17 .features-with-17_sur h5 {
      font-size: 23px;
      line-height: 28px; } }

/*--//responsive-code--*/
/* //features-with-17*/
/*-- grids block 5 --*/
.w3l-grids-block-5 {
  /*--/*-- responsive design --*/
  /*-- grids block 5 --*/ }
  .w3l-grids-block-5 #grids5-block {
    padding: 4.5rem 0; }
  .w3l-grids-block-5 .d-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 30px; }
  .w3l-grids-block-5 .grids5-info h4 a {
    font-size: 25px;
    line-height: 30px;
    color: var(--title-color);
    margin-top: 20px;
    display: block; }
  .w3l-grids-block-5 .grids5-info p {
    font-style: normal;
    font-weight: normal;
    color: var(--text-color);
    margin-top: 10px;
    font-size: 16px;
    line-height: 25px; }
  .w3l-grids-block-5 .grids5-info h5 {
    font-style: normal;
    font-weight: normal;
    font-size: 17px;
    line-height: 25px;
    color: var(--theme-color);
    margin-top: 10px; }
  .w3l-grids-block-5 .grids5-info img {
    width: 100%; }
  .w3l-grids-block-5 .grids5-info a, .w3l-grids-block-5 .grids5-info a img {
    display: block; }
  .w3l-grids-block-5 .grids5-info h4 a:hover {
    color: #000;
    transition: 0.3s ease; }
  @media all and (max-width: 800px) {
    .w3l-grids-block-5 .d-grid {
      grid-template-columns: 1fr 1fr;
      grid-row-gap: 30px; } }
  @media all and (max-width: 568px) {
    .w3l-grids-block-5 .d-grid {
      grid-template-columns: 1fr; }
    .w3l-grids-block-5 .d-grid {
      grid-row-gap: 45px; }
    .w3l-grids-block-5 .grids5-info h4 a {
      margin-top: 13px; }
    .w3l-grids-block-5 .grids5-info p {
      margin-top: 12px; } }
  @media all and (max-width: 414px) {
    .w3l-grids-block-5 .grids5-info h4 a {
      font-size: 23px; } }
  @media all and (max-width: 384px) {
    .w3l-grids-block-5 .grids5-info h4 a {
      font-size: 22px; } }

/*--//*-- responsive design --*/
.w3l-teams-32-main {
  /* //Reset Code */
  /* teams 32 */
  /* //teams 32 */
  /* responsive */
  /* //responsive */ }
  .w3l-teams-32-main .grid-col-2 {
    grid-template-columns: 1fr 1fr; }
  .w3l-teams-32-main .grid-col-3 {
    grid-template-columns: 1fr 1fr 1fr; }
  .w3l-teams-32-main .grid-col-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr; }
  .w3l-teams-32-main .align-items-center {
    align-items: center; }
  .w3l-teams-32-main .align-center {
    text-align: center; }
  .w3l-teams-32-main p.text-tag {
    color: #8328AB;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px; }
  .w3l-teams-32-main p.sub-paragraph {
    font-weight: normal;
    margin-top: 10px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 22px; }
  .w3l-teams-32-main .teams-32 {
    padding: 4.5rem 0; }
  .w3l-teams-32-main h6 a.title-team-32 {
    color: var(--title-color);
    font-size: 20px;
    line-height: 25px; }
  .w3l-teams-32-main h6 a.title-team-32:hover {
    color: var(--theme-color); }
  .w3l-teams-32-main p.sm-text-32 {
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
    color: #8c8c8c;
    margin-top: 5px; }
  .w3l-teams-32-main .midd-para-team {
    margin: 10px 0 20px; }
  .w3l-teams-32-main .column-19 a, .w3l-teams-32-main .column-19 a img {
    display: block;
    width: 100%; }
  .w3l-teams-32-main .column-19 a img:hover {
    -webkit-filter: grayscale(70%);
    filter: grayscale(70%);
    transition: 0.3s ease; }
  .w3l-teams-32-main .buttons-teams a span {
    font-size: 22px; }
  .w3l-teams-32-main .buttons-teams a.facebook span {
    color: #3b5998; }
  .w3l-teams-32-main .buttons-teams a.twitter span {
    color: #1da1f2; }
  .w3l-teams-32-main .buttons-teams a.insta span {
    color: #f56040; }
  .w3l-teams-32-main .right-team-9 {
    margin-top: 10px; }
  .w3l-teams-32-main .buttons-teams a:nth-child(2) {
    margin-left: 12px; }
  .w3l-teams-32-main .buttons-teams a:nth-child(3) {
    margin-left: 12px; }
  .w3l-teams-32-main .main-contteam-32 {
    grid-gap: 40px; }
  @media (max-width: 1024px) {
    .w3l-teams-32-main .main-contteam-32 {
      grid-gap: 30px; } }
  @media (max-width: 991px) {
    .w3l-teams-32-main p.sub-paragraph.midd-para-team {
      font-size: 16px; } }
  @media (max-width: 900px) {
    .w3l-teams-32-main .main-contteam-32 {
      grid-gap: 40px;
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) {
    .w3l-teams-32-main .main-contteam-32 {
      grid-gap: 30px; }
    .w3l-teams-32-main .teams-32 {
      padding: 40px 0; } }
  @media (max-width: 440px) {
    .w3l-teams-32-main .main-contteam-32 {
      grid-template-columns: 1fr; } }

/*team-15 */
.w3l-teams-15 .grid {
  display: grid; }

.w3l-teams-15 .grid-column-2 {
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 127px; }

.w3l-teams-15 span.list {
  width: 200px;
  display: inline-block;
  color: #3B5266;
  line-height: 25px;
  font-size: 17px;
  font-weight: normal;
  font-style: normal; }

.w3l-teams-15 .team-head {
  color: var(--title-color);
  line-height: 50px;
  font-size: 45px;
  margin-bottom: 5px; }

.w3l-teams-15 .text {
  color: var(--theme-color);
  font-size: 18px;
  line-height: 25px;
  font-weight: normal;
  font-style: normal;
  margin-right: auto;
  max-width: 580px;
  margin-bottom: 20px; }

.w3l-teams-15 .buttons-teams {
  margin: 20px 0 40px 0; }

.w3l-teams-15 .buttons-teams a span {
  font-size: 22px;
  margin-right: 10px;
  display: inline-block; }

.w3l-teams-15 .buttons-teams a.facebook span {
  color: #3b5998; }

.w3l-teams-15 .buttons-teams a.twitter span {
  color: #1da1f2; }

.w3l-teams-15 .buttons-teams a.insta span {
  color: #f56040; }

.w3l-teams-15 .team-para {
  margin-bottom: 25px;
  color: var(--text-color);
  line-height: 25px;
  font-size: 17px;
  font-weight: 600; }

.w3l-teams-15 .team-para a {
  color: var(--text-color); }

.w3l-teams-15 .team-para a:hover {
  color: var(--theme-color);
  text-decoration: underline;
  transition: 0.3s ease; }

.w3l-teams-15 .teams15 {
  padding: 4.5rem 0; }

@media (max-width: 1280px) {
  .w3l-teams-15 .teams15 {
    padding: 2em 0; } }

@media (max-width: 1200px) {
  .w3l-teams-15 .grid-column-2 {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px; } }

@media (max-width: 992px) {
  .w3l-teams-15 .grid-column-2 {
    grid-template-columns: 1fr 0.5fr;
    grid-row-gap: 40px; }
  .w3l-teams-15 .team-head {
    line-height: 40px;
    font-size: 35px; }
  .w3l-teams-15 .team-para {
    margin-bottom: 15px; } }

@media (max-width: 768px) {
  .w3l-teams-15 .grid-column-2 {
    grid-template-columns: 1fr; } }

@media (max-width: 484px) {
  .w3l-teams-15 span.list {
    width: 112px;
    font-size: 14px; } }

@media (max-width: 568px) {
  .w3l-teams-15 .text {
    margin-bottom: 40px; }
  .w3l-teams-15 .grid-column-2 {
    grid-template-columns: 1fr;
    grid-row-gap: 30px; }
  .w3l-teams-15 .text {
    margin-bottom: 30px; } }

@media (max-width: 414px) {
  .w3l-teams-15 .team-head {
    line-height: 48px;
    font-size: 42px;
    margin-bottom: 20px; }
  .w3l-teams-15 .grid-column-2 {
    grid-template-columns: 1fr;
    grid-row-gap: 20px; }
  .w3l-teams-15 .text {
    margin-bottom: 40px; }
  .w3l-teams-15 .text {
    line-height: 33px;
    font-size: 21px; } }

@media (max-width: 384px) {
  .w3l-teams-15 .text {
    margin-bottom: 30px; } }

@media (max-width: 375px) {
  .w3l-teams-15 .team-head {
    font-size: 35px;
    margin-bottom: 10px;
    margin-right: auto;
    width: 215px;
    line-height: 40px; }
  .w3l-teams-15 .text {
    font-size: 22px;
    margin-bottom: 20px; }
  .w3l-teams-15 .grid-column-2 {
    grid-row-gap: 20px; } }

/*team-15 */
.w3l-contacts-12 .section-top-bottom-gap {
  padding: 2.5rem 0 4.5rem 0; }

.w3l-contacts-12 .main-images a {
  display: inline-block; }

.w3l-contacts-12 .contacts12-main {
  margin: auto;
  max-width: 700px; }

.w3l-contacts-12 .contact-para {
  margin: auto;
  font-weight: normal;
  font-style: normal;
  color: var(--text-color);
  font-size: 16px;
  line-height: 25px; }

.w3l-contacts-12 .contact-input {
  margin-bottom: 10px;
  margin-top: 5px;
  outline: none;
  width: 100%;
  height: 45px;
  background: #fff;
  color: #000000;
  border: 1px solid #a5a5a5;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 45px;
  padding-left: 15px;
  padding-right: 15px; }

.w3l-contacts-12 .contact-input:focus, .w3l-contacts-12 .contact-textarea:focus {
  outline: none;
  border: 1px solid var(--theme-color); }

.w3l-contacts-12 .main-input {
  margin-top: 25px; }

.w3l-contacts-12 .contact-textarea {
  margin-bottom: 10px;
  margin-top: 5px;
  outline: none;
  width: 100%;
  height: 145px;
  background: #fff;
  color: #000000;
  border: 1px solid #a5a5a5;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 45px;
  padding-left: 15px;
  padding-right: 15px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; }

.w3l-contacts-12 form.contact-form {
  max-width: 700px;
  margin: auto; }

.w3l-contacts-12 button.btn {
  background: var(--title-color);
  color: #ffffff;
  font-size: 16px;
  text-transform: capitalize;
  margin-top: 10px;
  padding: 15px 25px;
  border: none;
  display: block;
  width: 100%;
  transition: 0.3s ease-in; }

.w3l-contacts-12 button.btn:hover {
  background: var(--theme-color);
  transition: 0.3s ease-in; }

.w3l-contacts-12 .line {
  box-sizing: border-box;
  border: 0.5px solid var(--text-color);
  opacity: 0.35;
  margin: 3rem 0; }

.w3l-contacts-12 .contact {
  text-align: center; }

.w3l-contacts-12 .contact-mail {
  color: var(--title-color);
  line-height: 25px;
  font-size: 17px;
  font-weight: normal;
  font-style: normal;
  margin-top: 59px; }

.w3l-contacts-12 .contact-phone {
  margin-top: 10px;
  color: var(--title-color);
  line-height: 25px;
  font-size: 17px;
  font-weight: normal;
  font-style: normal; }

.w3l-contacts-12 .contact-para2 {
  margin-top: 20px;
  color: var(--title-color);
  line-height: 25px;
  font-size: 17px;
  font-weight: normal;
  font-style: normal; }

.w3l-contacts-12 .contact-para3 {
  color: var(--title-color);
  line-height: 25px;
  font-size: 17px;
  font-weight: normal;
  font-style: normal; }

.w3l-contacts-12 .main-images {
  margin-top: 50px; }

.w3l-contacts-12 .img-contact {
  margin-right: 25px; }

.w3l-contacts-12 span.contact-icon {
  margin-right: 10px;
  font-size: 20px;
  color: var(--theme-color); }

.w3l-contacts-12 .main-images a span {
  font-size: 28px;
  margin: 0 10px;
  color: var(--theme-color); }

.w3l-contacts-12 .main-images a.facebook span {
  color: #3b5998; }

.w3l-contacts-12 .main-images a.twitter span {
  color: #1da1f2; }

.w3l-contacts-12 .main-images a.google span {
  color: #dd4b39; }

.w3l-contacts-12 iframe {
  width: 100%;
  height: 350px;
  margin-top: 4rem; }

@media screen and (max-width: 768px) {
  .w3l-contacts-12 .contact-input {
    margin-right: 0px;
    margin-bottom: 30px; }
  .w3l-contacts-12 iframe {
    height: 300px;
    margin-top: 3rem; } }

@media screen and (max-width: 480px) {
  .w3l-contacts-12 iframe {
    height: 250px;
    margin-top: 2rem; } }

.w3l-text-22 {
  /* //Reset Code */
  /*--text--*/
  /*-- //text --*/
  /*--responsive--*/
  /*--//responsive--*/ }
  .w3l-text-22 .text {
    padding: 4.5rem 0 3rem 0; }
  .w3l-text-22 .text-txt {
    max-width: 700px;
    margin: 0 auto; }
  .w3l-text-22 .text-txt h3 {
    margin-bottom: 20px;
    font-size: 45px;
    color: var(--title-color); }
  .w3l-text-22 .text-txt p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 25px; }
  .w3l-text-22 .two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    margin-top: 50px; }
  .w3l-text-22 .right-column p:nth-child(even) {
    margin: 20px 0; }
  @media (max-width: 1080px) {
    .w3l-text-22 .text {
      padding: 40px 0px; }
    .w3l-text-22 .two-columns {
      grid-gap: 20px;
      margin-top: 40px; }
    .w3l-text-22 .text-txt h3 {
      font-size: 35px; } }
  @media (max-width: 640px) {
    .w3l-text-22 .two-columns {
      grid-template-columns: 1fr; } }
  @media (max-width: 600px) {
    .w3l-text-22 .text-txt h3 {
      font-size: 24px;
      margin-bottom: 15px; }
    .w3l-text-22 .two-columns {
      margin-top: 30px; } }

.w3l-text-24 {
  /*-- text24-block --*/ }
  .w3l-text-24 #text24-block {
    padding: 0 0 4.5rem 0; }
  .w3l-text-24 .d-grid {
    display: grid; }
  .w3l-text-24 .text24-max-align {
    max-width: 700px;
    margin: 0 auto; }
  .w3l-text-24 h5.text24-heading {
    font-size: 30px;
    line-height: 35px;
    color: var(--title-color);
    margin-bottom: 20px; }
  .w3l-text-24 .text24-max-align p {
    margin-bottom: 20px;
    max-width: 580px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 25px; }
  .w3l-text-24 .text24-list li {
    font-size: 17px;
    line-height: 25px;
    color: var(--title-color);
    list-style-position: inside;
    margin: 7px 0; }
  .w3l-text-24 .text24-list {
    margin-top: 20px; }
  @media all and (max-width: 667px) {
    .w3l-text-24 .text24-left p {
      font-size: 17px;
      line-height: 25px;
      color: #3B5266;
      width: 82%; } }
  @media all and (max-width: 640px) {
    .w3l-text-24 .text24-left p {
      font-size: 17px;
      line-height: 25px;
      color: #3B5266;
      width: 100%; } }
  @media all and (max-width: 480px) {
    .w3l-text-24 #text24-block {
      padding: 3rem 0; } }
  @media all and (max-width: 384px) {
    .w3l-text-24 h5.text24-heading {
      margin-bottom: 15px; } }

.w3l-gallery-25-top {
  /*-- responsive design --*/
  /*-- //responsive design --*/ }
  .w3l-gallery-25-top .grid-columns {
    grid-template-columns: 1fr 1fr;
    display: grid;
    align-items: center;
    border: 2px solid #eaf0f5; }
  .w3l-gallery-25-top .gallery-25 {
    padding: 4.5rem 0; }
  .w3l-gallery-25-top .box13 h3 a {
    font-size: 35px;
    color: var(--title-color);
    margin: 0 0 15px 0;
    display: block; }
  .w3l-gallery-25-top .box13 a {
    display: block; }
  .w3l-gallery-25-top .box13 h3 a:hover {
    color: var(--theme-color);
    transition: 0.3s ease; }
  .w3l-gallery-25-top .admin-list {
    padding: 0 0 16px;
    margin: 0 0 20px;
    list-style: none;
    overflow: hidden;
    border-bottom: 1px solid #ececec; }
  .w3l-gallery-25-top .admin-list li {
    display: inline-block;
    margin: 0 20px 0 0;
    list-style-type: none; }
  .w3l-gallery-25-top .admin-list li a {
    display: block;
    font-size: 12px;
    color: #777;
    text-transform: capitalize; }
  .w3l-gallery-25-top .admin-list li a span {
    color: var(--theme-color);
    font-size: 14px;
    margin: 0 6px 0 0; }
  .w3l-gallery-25-top .box13 p {
    margin: 18px 0 8px 0;
    display: block;
    font-style: normal;
    font-weight: normal;
    color: var(--text-color);
    font-size: 16px;
    line-height: 25px; }
  .w3l-gallery-25-top .side-img {
    width: 100%;
    display: block; }
  .w3l-gallery-25-top iframe.w3-blog-video {
    width: 100%;
    height: 350px; }
  .w3l-gallery-25-top .column.two {
    padding: 0 2rem; }
  .w3l-gallery-25-top .button a {
    color: var(--title-color);
    font-weight: bold;
    font-size: 16px;
    text-transform: capitalize;
    display: inline-block;
    margin-top: 35px;
    text-decoration: underline;
    transition: 0.3s ease; }
  .w3l-gallery-25-top .button a:hover {
    color: var(--theme-color);
    transition: 0.3s ease; }
  @media (max-width: 1024px) {
    .w3l-gallery-25-top .button a {
      margin-top: 15px;}
    .w3l-gallery-25-top .column.two {
      /* padding: 0 3em; */
     }
    .w3l-gallery-25-top .box13 h3 a {
      font-size: 23px; } }
  @media (max-width: 992px) {
    .w3l-gallery-25-top .order-1 {
      order: 1;    }
      .w3l-gallery-25-top .order-2 {
        order: 2;    }
    .w3l-gallery-25-top .column.two {
      padding: 2em; }
    .w3l-gallery-25-top .grid-columns {
      grid-template-columns: 1fr;     
      margin-bottom: 20px;} }
  @media (max-width: 900px) {
    .w3l-gallery-25-top .box13 p {
      margin: 10px 0 20px 0; } }
  @media (max-width: 801px) {
    .w3l-gallery-25-top .column.two {
      padding: 3em 3em; } }
  @media (max-width: 600px) {
    .w3l-gallery-25-top .box13 h3 a {
      font-size: 22px; } }
  @media (max-width: 440px) {
    .w3l-gallery-25-top .column.two {
      padding: 2em 2em; } }
  @media (max-width: 420px) {
    .w3l-gallery-25-top .gallery-25 {
      padding: 40px 0; }
    .w3l-gallery-25-top .column.two {
      padding: 1.5em 1.5em; }
    .w3l-gallery-25-top .admin-list li {
      margin: 0 10px 0 0; } }

/*-- grids block 5 --*/
.w3l-new-block-7 {
  /*--/*-- responsive design --*/
  /*-- grids block 5 --*/ }
  .w3l-new-block-7 #grids5-block {
    padding: 0.5rem 0; }
  .w3l-new-block-7 .admin-list {
    padding: 0 0 16px;
    margin: 0 0 20px;
    list-style: none;
    overflow: hidden;
    border-bottom: 1px solid #ececec; }
  .w3l-new-block-7 .admin-list li {
    display: inline-block;
    margin: 0 20px 0 0;
    list-style-type: none; }
  .w3l-new-block-7 .admin-list li a {
    display: block;
    font-size: 12px;
    color: #777;
    text-transform: capitalize; }
  .w3l-new-block-7 .admin-list li a span {
    color: var(--theme-color);
    font-size: 16px;
    margin: 0 6px 0 0; }
  .w3l-new-block-7 .d-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px; }
  .w3l-new-block-7 .grids5-info h4 a {
    font-size: 22px;
    color: var(--title-color);
    margin: 18px 0 8px 0;
    display: block; }
  .w3l-new-block-7 .grids5-info h5 a:hover {
    color: #000000; }
  .w3l-new-block-7 .grids5-info p {
    font-style: normal;
    font-weight: normal;
    color: var(--text-color);
    font-size: 15px;
    line-height: 25px; }
  .w3l-new-block-7 .grids5-info img {
    width: 100%; }
  .w3l-new-block-7 .grids5-info h4 a:hover {
    color: var(--theme-color);
    transition: 0.3s ease; }
  .w3l-new-block-7 .pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    margin: 3rem 0 4.5rem 0;
    justify-content: center; }
  .w3l-new-block-7 .page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: var(--theme-color);
    border-color: var(--theme-color); }
  .w3l-new-block-7 .page-link {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-left: -1px;
    color: var(--text-color);
    background-color: #fff;
    border: 1px solid #EAEDF2; }
  .w3l-new-block-7 .button a {
    color: var(--title-color);
    font-weight: bold;
    font-size: 16px;
    text-transform: capitalize;
    display: inline-block;
    margin-top: 25px;
    text-decoration: underline;
    transition: 0.3s ease; }
  .w3l-new-block-7 .button a:hover {
    color: var(--theme-color);
    transition: 0.3s ease; }
  @media all and (max-width: 800px) {
    .w3l-new-block-7 .d-grid {
      grid-template-columns: 1fr 1fr;
      grid-row-gap: 30px; } }
  @media all and (max-width: 568px) {
    .w3l-new-block-7 .d-grid {
      grid-template-columns: 1fr; }
    .w3l-new-block-7 .d-grid {
      grid-row-gap: 45px; }
    .w3l-new-block-7 .grids5-info h4 a {
      margin-top: 13px; }
    .w3l-new-block-7 .grids5-info p {
      margin-top: 12px; } }
  @media all and (max-width: 414px) {
    .w3l-new-block-7 .grids5-info h4 a {
      font-size: 23px; } }
  @media all and (max-width: 384px) {
    .w3l-new-block-7 .grids5-info h4 a {
      font-size: 22px; } }

/*--//*-- responsive design --*/
.w3l-text-8 {
  /*---resposive----*/ }
  .w3l-text-8 p {
    margin: 0;
    padding: 0;
    font-size: 17px;
    line-height: 25px;
    font-style: normal;
    font-weight: normal;
    color: var(--text-color); }
  .w3l-text-8 .d-grid-1 {
    display: grid;
    grid-template-columns: 100%; }
  .w3l-text-8 .text {
    max-width: 700px;
    margin: 0 auto; }
  .w3l-text-8 .text-bg-image {
    background-image: url("../images/blog-single.jpg");
    background-position: center;
    background-size: cover;
    min-height: 450px; }
  .w3l-text-8 h6.text-logo {
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--theme-color);
    margin-top: 20px; }
  .w3l-text-8 h3.text-title {
    font-size: 45px;
    line-height: 50px;
    color: var(--title-color);
    margin: 15px 0; }
  .w3l-text-8 .admin-list li {
    display: inline-block;
    margin: 0 20px 0 0;
    list-style-type: none; }
  .w3l-text-8 .admin-list li a {
    display: block;
    font-size: 12px;
    color: #777;
    text-transform: capitalize; }
  .w3l-text-8 .admin-list li a span {
    color: var(--theme-color);
    font-size: 14px;
    margin: 0 6px 0 0; }
  .w3l-text-8 .admin-list {
    padding: 0 0 16px;
    margin: 0 0 20px;
    list-style: none;
    overflow: hidden;
    border-bottom: 1px solid #ececec; }
  .w3l-text-8 .d-grid-2 {
    display: grid;
    grid-template-columns: 100%; }
  .w3l-text-8 p.text2-text {
    max-width: 700px;
    margin: 0 auto;
    padding-top: 10px;
    color: var(--text-color); }
  .w3l-text-8 p.text2-text2 {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
    color: var(--text-color); }
  @media (max-width: 1024px) {
    .w3l-text-8 h3.text-title {
      font-size: 40px; } }
  @media (max-width: 900px) {
    .w3l-text-8 h3.text-title {
      font-size: 35px; } }
  @media (max-width: 767px) {
    .w3l-text-8 h3.text-title {
      font-size: 30px;
      line-height: 40px; }
    .w3l-text-8 p {
      font-size: 16px; }
    .w3l-text-8 .text-content-text {
      min-height: 360px; } }
  @media (max-width: 568px) {
    .w3l-text-8 h3.text-title {
      font-size: 25px;
      line-height: 36px; }
    .w3l-text-8 p {
      font-size: 15px; } }
  @media (max-width: 480px) {
    .w3l-text-8 .text-content-text {
      min-height: 390px; }
    .w3l-text-8 .text-bg-image {
      min-height: 323px; } }
  @media (max-width: 414px) {
    .w3l-text-8 .text-content-text {
      min-height: 430px; }
    .w3l-text-8 .text-bg-image {
      min-height: 414px; } }
  @media (max-width: 375px) {
    .w3l-text-8 .text-content-text {
      min-height: 500px; } }

.w3l-text-9 {
  /* //Reset Code */
  /* text */
  /* right side content */
  /* //right side content */
  /* //text */
  /* responsive */
  /* //responsive */ }
  .w3l-text-9 .d-grid {
    display: grid; }
  .w3l-text-9 .grid-col-2 {
    grid-template-columns: 1fr 1fr; }
  .w3l-text-9 .grid-col-3 {
    grid-template-columns: 1fr 1fr 1fr; }
  .w3l-text-9 .grid-col-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr; }
  .w3l-text-9 a.action {
    border: none;
    color: #304659;
    font-size: 17px;
    line-height: 25px;
    font-weight: 600;
    display: inline-block; }
  .w3l-text-9 a.action img {
    margin-left: 4px; }
  .w3l-text-9 .align-center {
    text-align: center; }
  .w3l-text-9 .d-grid.grid-text-9 {
    max-width: 700px;
    margin: 0 auto; }
  .w3l-text-9 .text-element-9 {
    padding: 40px 0 50px; }
  .w3l-text-9 h4.text-head-text-9 a {
    font-size: 35px;
    line-height: 40px;
    color: var(--title-color);
    margin: 25px 0;
    display: inline-block; }
  .w3l-text-9 h5.sub-head-text-9 {
    font-weight: normal;
    font-size: 25px;
    line-height: 35px;
    color: var(--text-color);
    margin-bottom: 40px; }
  .w3l-text-9 p.sub-para {
    color: var(--text-color);
    font-size: 17px;
    line-height: 25px;
    font-weight: normal;
    margin-top: 20px; }
  @media (max-width: 1080px) {
    .w3l-text-9 h4.text-head-text-9 a {
      font-size: 42px;
      line-height: 46px; }
    .w3l-text-9 h5.sub-head-text-9 {
      font-size: 23px; } }
  @media (max-width: 991px) {
    .w3l-text-9 h4.text-head-text-9 a {
      font-size: 40px; } }
  @media (max-width: 900px) {
    .w3l-text-9 h5.sub-head-text-9 {
      font-size: 21px; } }
  @media (max-width: 768px) {
    .w3l-text-9 h4.text-head-text-9 a {
      font-size: 32px;
      line-height: 35px;
      margin: 20px 0 30px; }
    .w3l-text-9 h5.sub-head-text-9 {
      font-size: 19px;
      line-height: 28px; }
    .w3l-text-9 p.sub-para {
      margin-top: 15px; } }
  @media (max-width: 600px) {
    .w3l-text-9 h4.text-head-text-9 a {
      margin: 10px 0 20px; }
    .w3l-text-9 p.sub-para {
      font-size: 16px; }
    .w3l-text-9 h5.sub-head-text-9 {
      font-size: 18px;
      margin-bottom: 30px; }
    .w3l-text-9 hr {
      display: none; } }
  @media (max-width: 568px) {
    .w3l-text-9 span.sub-inner-text-9 {
      font-size: 14px; } }
  @media (max-width: 480px) {
    .w3l-text-9 .text-element-9 {
      padding: 30px 0 40px; } }

.w3l-text-30 {
  /* /text-styles-31*/
  /*--/responsive-code--*/
  /*--//responsive-code--*/
  /* //text-styles-31*/ }
  .w3l-text-30 .text-styles-top-30 {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 0; }
  .w3l-text-30 .text-styles-30_sur h3 {
    font-size: 35px;
    color: var(--title-color);
    margin-bottom: 10px; }
  .w3l-text-30 .text-styles-30_sur h5 {
    font-size: 20px;
    line-height: 25px;
    color: var(--title-color); }
  .w3l-text-30 section.text-styles-30_sur {
    background: #F5F9FC;
    padding: 80px 0; }
  .w3l-text-30 .text-styles-30_sur p {
    font-size: 15.5px;
    line-height: 22px;
    color: var(--text-color);
    margin: 10px 0;
    font-weight: 400; }
  .w3l-text-30 .text-styles-30_sur span {
    font-size: 15px;
    line-height: 20px;
    color: #ababab;
    margin-top: 5px;
    display: inline-block; }
  .w3l-text-30 a.reply {
    color: var(--theme-color);
    font-size: 13px; }
  .w3l-text-30 a.reply:hover {
    text-decoration: underline; }
  .w3l-text-30 .text-styles-31-top_sur {
    display: grid;
    grid-template-columns: 0.1fr 1fr;
    grid-gap: 20px;
    padding-top: 1.5em;
    margin-top: 1.5em; }
  .w3l-text-30 .text-styles-31-right_sur {
    border-bottom: 1px solid rgba(130, 152, 171, 0.350588);
    padding-bottom: 15px; }
  .w3l-text-30 .text-styles-31-left_sur img {
    border-radius: 50%; }
  @media (max-width: 900px) {
    .w3l-text-30 section.text-styles-30_sur {
      padding: 50px 0; }
    .w3l-text-30 .text-styles-30_sur h5 {
      font-size: 20px;
      line-height: 25px; }
    .w3l-text-30 .text-styles-30_sur h3 {
      font-size: 36px;
      line-height: 41px; } }
  @media (max-width: 768px) {
    .w3l-text-30 .text-styles-30_sur h3 {
      font-size: 30px;
      line-height: 35px; } }
  @media (max-width: 667px) {
    .w3l-text-30 section.text-styles-30_sur {
      padding: 50px 30px; } }
  @media (max-width: 480px) {
    .w3l-text-30 .text-styles-31-top_sur {
      grid-gap: 20px; } }
  @media (max-width: 440px) {
    .w3l-text-30 .text-styles-30_sur h3 {
      font-size: 32px;
      line-height: 37px; } }
  @media (max-width: 415px) {
    .w3l-text-30 section.text-styles-30_sur {
      padding: 30px 0; }
    .w3l-text-30 .text-styles-31-top_sur {
      grid-template-columns: 1fr; } }
  @media (max-width: 320px) {
    .w3l-text-30 .text-styles-30_sur h3 {
      font-size: 28px;
      line-height: 33px; } }

/* /text-styles-33*/
.w3l-text-styles-33 {
  /*--/responsive-code--*/
  /*--//responsive-code--*/ }
  .w3l-text-styles-33 .text-styles-top-33 {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 30px;
    border-left: 2px solid #eee; }
  .w3l-text-styles-33 .w3l-text-styles-33_sur p {
    font-size: 22px;
    line-height: 33px;
    color: var(--theme-color); }
  .w3l-text-styles-33 .w3l-text-styles-33_sur {
    padding: 30px 0 20px 0; }

/* //text-styles-33*/
.w3l-grid-8 {
  /*--resposive--*/ }
  .w3l-grid-8 .grid-main {
    padding: 50px 0; }
  .w3l-grid-8 .d-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px; }
  .w3l-grid-8 .horizontal-align {
    max-width: 700px;
    margin: 0 auto; }
  .w3l-grid-8 img.card-img-top {
    width: 100%; }
  .w3l-grid-8 h4.card-title {
    font-size: 18px;
    color: var(--title-color);
    display: inline-block; }
  .w3l-grid-8 p.image-caption {
    font-size: 15px;
    line-height: 20px;
    color: var(--theme-color);
    display: inline;
    padding-right: 5px;
    font-weight: 500; }
  .w3l-grid-8 p.card-text {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-color);
    margin-top: 10px; }
  .w3l-grid-8 .card-grid {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 10px;
    padding: 10px 0 0 0; }
  .w3l-grid-8 .card-grid-column2 {
    text-align: right; }
  .w3l-grid-8 h3.grids-title {
    font-size: 30px;
    color: var(--title-color);
    margin-bottom: 10px; }
  .w3l-grid-8 h4.card-title:hover {
    color: #000; }
  @media (max-width: 1024px) {
    .w3l-grid-8 .grid-main {
      padding: 30px 0; }
    .w3l-grid-8 h3.grids-title {
      margin-bottom: 20px; }
    .w3l-grid-8 .card-grid {
      padding: 10px 0; } }
  @media (max-width: 900px) {
    .w3l-grid-8 h3.grids-title {
      font-size: 30px; }
    .w3l-grid-8 p.image-caption {
      margin-top: 12px; }
    .w3l-grid-8 .card-grid {
      display: grid;
      grid-auto-flow: row;
      grid-gap: 10px; }
    .w3l-grid-8 .card-grid-column2 {
      text-align: left; } }
  @media (max-width: 768px) {
    .w3l-grid-8 p.image-caption {
      font-size: 14px; }
    .w3l-grid-8 h3.grids-title {
      margin-bottom: 10px; }
    .w3l-grid-8 .d-grid {
      grid-gap: 30px; }
    .w3l-grid-8 .grid-main {
      padding: 14.5px 0; }
    .w3l-grid-8 p.card-text {
      margin-top: 5px; }
    .w3l-grid-8 .card-grid {
      grid-gap: 2px; } }
  @media (max-width: 600px) {
    .w3l-grid-8 .d-grid {
      grid-gap: 20px; }
    .w3l-grid-8 img.card-img-top {
      margin-top: 0; } }
  @media (max-width: 414px) {
    .w3l-grid-8 h3.grids-title {
      font-size: 25px; } }
  @media (max-width: 375px) {
    .w3l-grid-8 h3.grids-title {
      font-size: 22px; } }

.w3l-forms-29 {
  /* //Reset Code */
  /* form 29 */
  /* //form 29 */
  /* responsive */
  /* //responsive */ }
  .w3l-forms-29 .grid-col-2 {
    grid-template-columns: 1fr 1fr; }
  .w3l-forms-29 .grid-col-3 {
    grid-template-columns: 1fr 1fr 1fr; }
  .w3l-forms-29 .grid-col-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr; }
  .w3l-forms-29 .align-items-center {
    align-items: center; }
  .w3l-forms-29 a.action img {
    margin-left: 4px; }
  .w3l-forms-29 .actionbg {
    background: var(--title-color);
    color: #ffffff;
    font-size: 16px;
    text-transform: capitalize;
    margin-top: 10px;
    padding: 15px 25px;
    border: none;
    display: block;
    width: 100%;
    transition: 0.3s ease-in; }
  .w3l-forms-29 .actionbg:hover {
    background: var(--theme-color);
    transition: 0.3s ease-in; }
  .w3l-forms-29 p.text-tag {
    color: #8298AB;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px; }
  .w3l-forms-29 .form-29 {
    padding: 1rem 0 4.5rem; }
  .w3l-forms-29 .content-29-form {
    max-width: 700px;
    margin: 0 auto; }
  .w3l-forms-29 h3.title-cont-foem29 {
    font-size: 45px;
    line-height: 50px;
    color: var(--title-color);
    margin-bottom: 20px; }
  .w3l-forms-29 form.w3l-forms-29-form input, .w3l-forms-29 form.w3l-forms-29-form textarea {
    margin-bottom: 10px;
    margin-top: 5px;
    outline: none;
    width: 100%;
    height: 45px;
    background: #fff;
    color: #000000;
    border: 1px solid #eee;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 45px;
    padding-left: 15px;
    padding-right: 15px; }
  .w3l-forms-29 form.w3l-forms-29-form input:focus, .w3l-forms-29 form.w3l-forms-29-form textarea:focus {
    outline: none;
    border: 1px solid var(--theme-color); }
  .w3l-forms-29 form.w3l-forms-29-form textarea {
    height: 150px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; }
  .w3l-forms-29 button.actionbg {
    width: 100%;
    margin-top: 20px; }
  .w3l-forms-29 form.w3l-forms-29-form {
    margin: 40px auto 0;
    max-width: 700px; }
  @media (max-width: 991px) {
    .w3l-forms-29 h3.title-cont-foem29 {
      font-size: 40px;
      line-height: 45px; } }
  @media (max-width: 480px) {
    .w3l-forms-29 h3.title-cont-foem29 {
      font-size: 35px;
      line-height: 40px; }
    .w3l-forms-29 .form-29 {
      padding: 40px 0 50px; } }

.w3l-portfolios-1 {
  /*-- responsive design --*/
  /*-- //responsive design --*/ }
  .w3l-portfolios-1 .portfolio1 {
    padding: 4.5rem 0; }
  .w3l-portfolios-1 .portfolio1-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px; }
  .w3l-portfolios-1 .portfolio1-content1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 18px; }
  .w3l-portfolios-1 .column1 img {
    width: 100%; }
  .w3l-portfolios-1 #portfolio {
    position: relative; }
  .w3l-portfolios-1 .pop-overlay {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
    overflow-y: scroll;
    max-height: 100vh;
    height: 100vh; }
  .w3l-portfolios-1 .pop-overlay::-webkit-scrollbar {
    width: 4px; }
  .w3l-portfolios-1 .pop-overlay::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #ffffff;
    border-radius: 5px; }
  .w3l-portfolios-1 .pop-overlay::-webkit-scrollbar-thumb {
    background: rgba(82, 82, 82, 0.4); }
  .w3l-portfolios-1 .align-popup-content {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px; }
  .w3l-portfolios-1 .pop-overlay:target {
    visibility: visible;
    opacity: 1; }
  .w3l-portfolios-1 .popup {
    background: #fff;
    border-radius: 3px;
    max-width: 850px;
    position: relative;
    margin: 2rem auto;
    padding: 2rem 1rem 1.5rem; }
  .w3l-portfolios-1 .popup h4 {
    font-size: 25px;
    line-height: 32px;
    color: #051B35;
    margin-bottom: 15px; }
  .w3l-portfolios-1 .popup p {
    font-style: normal;
    font-weight: normal;
    font-size: 17px;
    line-height: 25px;
    color: #34334e;
    margin-bottom: 25px; }
  .w3l-portfolios-1 a.action {
    font-size: 16px;
    text-align: center;
    color: #F5F9FC;
    background: var(--theme-color);
    width: 120px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    transition: 0.5s ease-out; }
  .w3l-portfolios-1 .popup .close {
    position: absolute;
    top: 5px;
    right: 15px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    opacity: 0.6; }
  .w3l-portfolios-1 .popup .close:hover {
    opacity: 1; }
  .w3l-portfolios-1 .column1 a img:hover,
  .w3l-portfolios-1 .column3 a img:hover {
    -webkit-filter: grayscale(70%);
    filter: grayscale(70%);
    transition: 0.3s ease; }
  @media (max-width: 800px) {
    .w3l-portfolios-1 .portfolio1-content {
      grid-template-columns: 1fr;
      grid-gap: 10px; }
    .w3l-portfolios-1 .portfolio1-content1 {
      grid-column-gap: 15px;
      grid-row-gap: 10px; } }
  @media (max-width: 736px) {
    .w3l-portfolios-1 .portfolio1 {
      padding: 3.5rem 0; } }
  @media (max-width: 500px) {
		.w3l-portfolios-1 .align-popup-content {
			grid-template-columns: 1fr;	}
    .w3l-portfolios-1 .portfolio1 {
      padding: 2.5rem 0; } }

.w3l-timeline-block {
  /* ================ The Timeline ================ */
  /* ================ Timeline Media Queries ================ */ }
  .w3l-timeline-block .timeline {
    position: relative;
    width: 660px;
    margin: 0 auto;
    padding: 4.5rem 0;
    list-style-type: none; }
  .w3l-timeline-block .timeline:before {
    position: absolute;
    left: 50%;
    top: 0;
    content: ' ';
    display: block;
    width: 6px;
    height: 100%;
    margin-left: -3px;
    background: #f8f8f8;
    z-index: 5; }
  .w3l-timeline-block .timeline li {
    padding: 1em 0; }
  .w3l-timeline-block .timeline li:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden; }
  .w3l-timeline-block .direction-l {
    position: relative;
    width: 300px;
    float: left;
    text-align: right; }
  .w3l-timeline-block .direction-r {
    position: relative;
    width: 300px;
    float: right; }
  .w3l-timeline-block .flag-wrapper {
    position: relative;
    display: inline-block;
    text-align: center; }
  .w3l-timeline-block .flag {
    position: relative;
    display: inline;
    background: #161a1e;
    padding: 6px 10px;
    border-radius: 5px;
    font-weight: bold;
    text-align: left;
    font-size: 20px;
    color: #fff; }
  .w3l-timeline-block .direction-l .flag {
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15); }
  .w3l-timeline-block .direction-r .flag {
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15); }
  .w3l-timeline-block .direction-l .flag:before,
  .w3l-timeline-block .direction-r .flag:before {
    position: absolute;
    top: 50%;
    right: -40px;
    content: ' ';
    display: block;
    width: 12px;
    height: 12px;
    margin-top: -10px;
    background: #fff;
    border-radius: 10px;
    border: 4px solid var(--theme-color);
    z-index: 10; }
  .w3l-timeline-block .direction-r .flag:before {
    left: -40px; }
  .w3l-timeline-block .direction-l .flag:after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    height: 0;
    width: 0;
    margin-top: -8px;
    border: solid transparent;
    border-left-color: #161a1f;
    border-width: 8px;
    pointer-events: none; }
  .w3l-timeline-block .direction-r .flag:after {
    content: "";
    position: absolute;
    right: 100%;
    top: 50%;
    height: 0;
    width: 0;
    margin-top: -8px;
    border: solid transparent;
    border-right-color: #161a1f;
    border-width: 8px;
    pointer-events: none; }
  .w3l-timeline-block .time-wrapper {
    display: inline;
    line-height: 1em;
    font-size: 0.66666em;
    color: var(--theme-color);
    vertical-align: middle; }
  .w3l-timeline-block .direction-l .time-wrapper {
    float: left; }
  .w3l-timeline-block .direction-r .time-wrapper {
    float: right; }
  .w3l-timeline-block .time {
    display: inline-block;
    padding: 8px 6px;
    background: #f8f8f8; }
  .w3l-timeline-block .desc {
    margin: 1em 0.75em 0 0;
    color: var(--title-color);
    font-size: 15px;
    line-height: 25px; }
  .w3l-timeline-block .direction-r .desc {
    margin: 1em 0 0 0.75em; }
  @media screen and (max-width: 660px) {
    .w3l-timeline-block .timeline {
      width: 100%;
      padding: 4em 0 1em 0; }
    .w3l-timeline-block .timeline li {
      padding: 2em 0; }
    .w3l-timeline-block .direction-l,
    .w3l-timeline-block .direction-r {
      float: none;
      width: 100%;
      text-align: center; }
    .w3l-timeline-block .flag-wrapper {
      text-align: center; }
    .w3l-timeline-block .flag {
      z-index: 15; }
    .w3l-timeline-block .direction-l .flag:before,
    .w3l-timeline-block .direction-r .flag:before {
      position: absolute;
      top: -30px;
      left: 50%;
      content: ' ';
      display: block;
      width: 12px;
      height: 12px;
      margin-left: -9px;
      background: #fff;
      border-radius: 10px;
      border: 4px solid #ff5050;
      z-index: 10; }
    .w3l-timeline-block .direction-l .flag:after,
    .w3l-timeline-block .direction-r .flag:after {
      content: "";
      position: absolute;
      left: 50%;
      top: -8px;
      height: 0;
      width: 0;
      margin-left: -8px;
      border: solid transparent;
      border-bottom-color: #161a1f;
      border-width: 8px;
      pointer-events: none; }
    .w3l-timeline-block .time-wrapper {
      display: block;
      position: relative;
      margin: 4px 0 0 0;
      z-index: 14; }
    .w3l-timeline-block .direction-l .time-wrapper {
      float: none; }
    .w3l-timeline-block .direction-r .time-wrapper {
      float: none; }
    .w3l-timeline-block .desc {
      position: relative;
      margin: 1em 0 0 0;
      padding: 1em;
      background: whitesmoke;
      box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
      z-index: 15; }
    .w3l-timeline-block .direction-l .desc,
    .w3l-timeline-block .direction-r .desc {
      position: relative;
      margin: 1em 1em 0 1em;
      padding: 1em;
      z-index: 15; } }

.w3l-faq .qaa {
  padding: 3rem 0; }

.w3l-faq .accordion__single__hidden {
  display: none; }
  .w3l-faq .accordion__single__hidden:checked ~ .accordion__single__answer {
    max-height: 400px;
    opacity: 1;
    transform: translate(0, 0);
    margin-top: 14px;
    color: var(--title-color);
    font-size: 16px;
    line-height: 25px;
    border-left: 2px solid #eaeaea;
    padding-left: 1rem; }
  .w3l-faq .accordion__single__hidden:checked ~ .accordion__single__question:after {
    content: '-'; }

.w3l-faq .accordion__single__answer {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
  transition: all .4s ease;
  position: relative; }

.w3l-faq html, .w3l-faq body {
  height: 100%; }

.w3l-faq .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%; }

.w3l-faq .accordion {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  max-width: 900px; }
  .w3l-faq .accordion__single {
    padding: 15px;
    background: #fbfbfb;
    margin: 5px 0; }
    .w3l-faq .accordion__single__question {
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      position: relative; }
      .w3l-faq .accordion__single__question:hover, .w3l-faq .accordion__single__question:focus {
        text-decoration: underline; }
      .w3l-faq .accordion__single__question:after {
        display: inline-block;
        margin-left: 10px;
        color: red;
        content: '+'; }

@media (max-width: 500px) {
  .w3l-faq .qaa {
    padding: 2.5rem 0; } }

.w3l-form34 a.brand-logo {
  color: var(--theme-color);
  font-weight: bold;
  font-size: 40px; }

.w3l-form34 .top-bottom-gap {
  padding: 2rem 0; }

.w3l-form34 .w3l-form34 {
  margin: auto;
  max-width: 420px;
  margin-bottom: 80px;
  border: 1px solid #eee;
  padding: 2rem; }

.w3l-form34 .signin {
  box-sizing: border-box;
  padding: 10px;
  margin-bottom: 27px;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 3px; }

.w3l-form34 .facebook {
  background: #3a5898;
  margin-right: 5px; }

.w3l-form34 .google-plus {
  background: #dd4b39;
  margin-left: 5px; }

.w3l-form34 .signin span {
  font-size: 22px;
  margin-right: 10px; }

.w3l-form34 .main-div {
  display: grid;
  grid-template-columns: 1fr 1fr; }

.w3l-form34 .form-head {
  font-size: 35px;
  color: var(--title-color);
  line-height: 40px; }

.w3l-form34 .form-para {
  font-style: normal;
  font-weight: normal;
  margin-bottom: 20px;
  margin-top: 10px;
  color: var(--text-color);
  font-size: 15px;
  line-height: 24px; }

.w3l-form34 .checkbox {
  width: 16px;
  height: 16px;
  color: #F5F9FC;
  background: #304659;
  float: left; }

.w3l-form34 .input {
  margin-bottom: 10px;
  margin-top: 5px;
  outline: none;
  width: 100%;
  height: 45px;
  background: #fff;
  color: #000000;
  border: 1px solid #eee;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 45px;
  padding-left: 15px;
  padding-right: 15px; }

.w3l-form34 .input:focus {
  outline: none;
  border: 1px solid var(--theme-color); }

.w3l-form34 .text-head {
  margin-top: 15px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: var(--title-color); }

.w3l-form34 .signinbutton {
  background: var(--title-color);
  color: #ffffff;
  font-size: 16px;
  text-transform: capitalize;
  margin-top: 30px;
  padding: 15px 25px;
  border: none;
  display: block;
  width: 100%;
  transition: 0.3s ease-in; }

.w3l-form34 .signinbutton:hover {
  background: var(--theme-color);
  transition: 0.3s ease-in; }

.w3l-form34 .signup {
  margin-top: 33px;
  color: var(--text-color);
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 25px; }

.w3l-form34 .signuplink {
  color: var(--theme-color);
  margin-left: 5px;
  font-size: 17px;
  line-height: 25px;
  font-weight: 600;
  display: inline-block; }

.w3l-form34 .signuplink:hover {
  text-decoration: underline; }

.w3l-form34 .form-34or span.pros {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 20px;
  color: #8298AB; }

.w3l-form34 .form-34or span.pros:after {
  content: " ";
  background: #d6d6d6;
  width: 165px;
  height: 2px;
  position: absolute;
  top: 12px;
  right: -170px; }

.w3l-form34 .form-34or span.pros:before {
  content: " ";
  background: #d6d6d6;
  width: 165px;
  height: 2px;
  position: absolute;
  top: 12px;
  left: -170px; }

.w3l-form34 .form-34or span.pros {
  position: relative;
  top: 68%;
  left: 174px; }

.w3l-form34 .form-34or {
  top: 35%;
  margin-bottom: 27px; }

.w3l-form34 .remember {
  display: block;
  position: relative;
  padding-left: 25px;
  margin: 16px 0;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: var(--text-color); }

.w3l-form34 .remember input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0; }

.w3l-form34 .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee; }

.w3l-form34 .remember:hover input ~ .checkmark {
  background-color: #ccc; }

.w3l-form34 .remember input:checked ~ .checkmark {
  background: var(--theme-color); }

.w3l-form34 .checkmark:after {
  content: "";
  position: absolute;
  display: none; }

.w3l-form34 .remember input:checked ~ .checkmark:after {
  display: block; }

.w3l-form34 .remember .checkmark:after {
  left: 8px;
  top: 3px;
  width: 3px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg); }

@media (max-width: 992px) {
  .w3l-form34 .grid-column-2 {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 40px; }
  .w3l-form34 .input,
  .w3l-form34 .signinbutton {
    width: 100%; } }

@media (max-width: 736px) {
  .w3l-form34 a.brand-logo {
    font-size: 35px; } }

@media (max-width: 576px) {
  .w3l-form34 .grid-column-2 {
    grid-template-columns: 1fr;
    grid-row-gap: 30px; }
  .w3l-form34 .column1 {
    align-self: center;
    order: 2; }
  .w3l-form34 .column2 {
    order: 1; }
  .w3l-form34 .w3l-form34 {
    padding: 1rem; } }

@media (max-width: 375px) {
  .w3l-form34 .form-34or span.pros {
    left: 160px; }
  .w3l-form34 .form-34or span.pros:before {
    width: 150px;
    top: 12px;
    left: -155px; }
  .w3l-form34 .form-34or span.pros:after {
    width: 150px;
    top: 12px;
    right: -155px; } }

.w3l-new-block-4 .error {
  padding: 8.5rem 0;
  height: 100vh; }

.w3l-new-block-4 h1 {
  margin: 0;
  font-size: 10rem;
  font-weight: bold;
  color: var(--text-color); }

.w3l-new-block-4 h5 {
  font-size: 25px;
  color: var(--title-color);
  margin: 1rem 0; }

.w3l-new-block-4 p {
  max-width: 900px;
  font-size: 20px;
  line-height: 28px;
  text-transform: lowercase;
  color: #333;
  margin-bottom: 2rem; }

.w3l-new-block-4 .button {
  white-space: nowrap;
  display: inline-block; }

.w3l-new-block-4 a {
  display: inline-block;
  padding: .8em 1em;
  margin-right: 1em;
  margin-bottom: 1em;
  border: 3px solid #f7f7f7;
  color: var(--theme-color);
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: .2em;
  position: relative;
  overflow: hidden;
  transition: .3s; }
  .w3l-new-block-4 a:hover {
    color: #fff; }
    .w3l-new-block-4 a:hover:before {
      top: 0; }
  .w3l-new-block-4 a:before {
    content: '';
    background: var(--theme-color);
    height: 100%;
    width: 100%;
    position: absolute;
    top: -100%;
    left: 0;
    transition: .3s;
    z-index: -1; }

@media (max-width: 736px) {
  .w3l-new-block-4 .error {
    padding: 0.5rem 0; }
  .w3l-new-block-4 h1 {
    font-size: 7rem; }
  .w3l-new-block-4 p {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 1.5rem; }
  .w3l-new-block-4 h5 {
    font-size: 22px;
    margin: 0.8rem 0; } }

@media (max-width: 667px) {
  .w3l-new-block-4 .error {
    padding: 4.5rem 0; } }

@media (max-width: 500px) {
  .w3l-new-block-4 .error {
    padding: 5.5rem 0; }
  .w3l-new-block-4 h1 {
    font-size: 6rem; }
  .w3l-new-block-4 p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 1rem; } }

.w3l-galleries-27 .gallery-main {
  padding: 4.5rem 0; }

.w3l-galleries-27 p {
  color: #3B5266;
  font-size: 15px;
  line-height: 20px;
  font-style: normal;
  font-weight: normal; }

.w3l-galleries-27 section.gallery-main {
  background-color: #F5F9FC;
  padding: 40px 0; }

.w3l-galleries-27 .galler-body {
  display: grid; }

.w3l-galleries-27 .d-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  margin-top: 50px; }

.w3l-galleries-27 img.gallery-image {
  width: 100%; }

.w3l-galleries-27 h1.gallery-title {
  font-size: 45px;
  line-height: 50px;
  color: var(--title-color);
  font-weight: 500; }

.w3l-galleries-27 p.gallery-text {
  width: 50%;
  margin-top: 20px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 25px; }

.w3l-galleries-27 .column {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07); }

.w3l-galleries-27 .column a img:hover {
  -webkit-filter: grayscale(70%);
  filter: grayscale(70%);
  transition: 0.3s ease; }

.w3l-galleries-27 a.image-link {
  margin-top: 10px;
  display: inline-block;
  color: var(--theme-color);
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  padding: 0 0 12px 12px; }

@media (max-width: 1440px) {
  .w3l-galleries-27 p.gallery-text {
    width: 70%; } }

@media (max-width: 1280px) {
  .w3l-galleries-27 p.gallery-text {
    width: 80%; } }

@media (max-width: 1024px) {
  .w3l-galleries-27 p.gallery-text {
    width: 91%; }
  .w3l-galleries-27 h1.gallery-title {
    font-size: 40px;
    line-height: 45px; }
  .w3l-galleries-27 p.gallery-text {
    font-size: 22px;
    line-height: 30px; }
  .w3l-galleries-27 .d-grid {
    grid-column-gap: 30px; }
  .w3l-galleries-27 a.image-link {
    margin-top: 15px; } }

@media (max-width: 767px) {
  .w3l-galleries-27 p.gallery-text {
    width: 100%; }
  .w3l-galleries-27 a.image-link {
    font-size: 15px;
    margin-top: 15px; }
  .w3l-galleries-27 p.gallery-text {
    font-size: 20px;
    line-height: 25px; }
  .w3l-galleries-27 h1.gallery-title {
    font-size: 35px;
    line-height: 40px; }
  .w3l-galleries-27 .d-grid {
    grid-column-gap: 20px;
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 736px) {
  .w3l-galleries-27 .gallery-main {
    padding: 2.5rem 0; } }

@media (max-width: 500px) {
  .w3l-galleries-27 .gallery-main {
    padding: 2.5rem 0; } }

@media (max-width: 568px) {
  .w3l-galleries-27 .d-grid {
    display: grid;
    grid-template-columns: 1fr; }
  .w3l-galleries-27 section.gallery-main {
    background-color: #F5F9FC;
    padding: 25px 0; }
  .w3l-galleries-27 a.image-link {
    margin-top: 10px; }
  .w3l-galleries-27 h1.gallery-title {
    font-size: 30px;
    line-height: 35px; } }

.w3l-products-4 {
  /*-- Products4-block --*/ }
  .w3l-products-4 #products4-block {
    padding: 3rem 0 4.5rem; }
  .w3l-products-4 h3.heading-title {
    font-size: 40px;
    line-height: 45px;
    text-align: center;
    color: var(--title-color);
    margin-bottom: 30px;
    font-weight: normal; }
  .w3l-products-4 .d-grid {
    display: grid; }
  .w3l-products-4 .grid-col-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 30px; }
  .w3l-products-4 .product a {
    display: block; }
  .w3l-products-4 .product {
    position: relative;
    border: 1px solid #eee; }
  .w3l-products-4 .product-details {
    width: 100%; }
  .w3l-products-4 a.p-name {
    font-size: 17px;
    line-height: 25px;
    color: var(--theme-color);
    margin: 10px 0; }
  .w3l-products-4 a.p-name:hover {
    opacity: 0.9; }
  .w3l-products-4 a.cart {
    background: var(--title-color);
    color: #ffffff;
    font-size: 14px;
    padding: 12px 0px;
    border: none;
    width: 140px;
    margin: 11px auto !important;
    display: block; }
  .w3l-products-4 a.cart:hover {
    background: var(--theme-color);
    transition: 0.3s ease-in; }
  .w3l-products-4 span.price {
    font-style: normal;
    font-size: 17px;
    line-height: 25px;
    color: #000;
    font-weight: bold;
    margin-right: 10px; }
  .w3l-products-4 .product-details del {
    color: var(--text-color); }
  .w3l-products-4 section.tab-content {
    display: none;
    padding: 38px 0 0; }
  .w3l-products-4 input {
    display: none; }
  .w3l-products-4 label.tabtle {
    display: inline-block;
    padding: 7px 20px;
    border: none;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    color: var(--title-color);
    margin: 0 5px;
    font-weight: normal;
    border: 1px solid #eee; }
  .w3l-products-4 label.tabtle:before {
    font-family: fontawesome;
    font-weight: normal;
    margin-right: 10px; }
  .w3l-products-4 label.tabtle:hover {
    color: #304659;
    cursor: pointer; }
  .w3l-products-4 input:checked + label.tabtle {
    line-height: 25px;
    text-align: center;
    color: #fff;
    background: var(--theme-color);
    border: 1px solid var(--theme-color); }
  .w3l-products-4 #tab1:checked ~ #content1,
  .w3l-products-4 #tab2:checked ~ #content2,
  .w3l-products-4 #tab3:checked ~ #content3,
  .w3l-products-4 #tab4:checked ~ #content4 {
    display: block; }
  @media all and (max-width: 1024px) {
    .w3l-products-4 .grid-col-4 {
      grid-gap: 20px; }
    .w3l-products-4 h3.heading-title {
      font-size: 42px;
      line-height: 48px;
      margin-bottom: 46px; }
    .w3l-products-4 label.tabtle {
      font-size: 19px; } }
  @media screen and (max-width: 800px) {
    .w3l-products-4 label.tabtle:before {
      margin: 0;
      font-size: 18px; }
    .w3l-products-4 .grid-col-4 {
      grid-template-columns: 1fr 1fr;
      grid-gap: 30px; }
    .w3l-products-4 h3.heading-title {
      font-size: 40px;
      line-height: 45px;
      margin-bottom: 40px; }
    .w3l-products-4 label.tabtle {
      font-size: 18px; } }
  @media screen and (max-width: 600px) {
    .w3l-products-4 .grid-col-4 {
      grid-gap: 20px; }
    .w3l-products-4 h3.heading-title {
      font-size: 38px;
      line-height: 42px;
      margin-bottom: 30px; }
    .w3l-products-4 #products4-block {
      padding: 3rem 0; }
    .w3l-products-4 label.tabtle {
      font-size: 17px;
      margin: 0 5px;
      padding: 5px 5px; } }
  @media screen and (max-width: 440px) {
    .w3l-products-4 .grid-col-4 {
      grid-gap: 10px; }
    .w3l-products-4 h3.heading-title {
      font-size: 35px;
      line-height: 40px;
      margin-bottom: 25px; }
    .w3l-products-4 label.tabtle {
      font-size: 16px;
      margin: 0 3px;
      padding: 5px 3px; }
    .w3l-products-4 section.tab-content {
      padding: 28px 0 0; } }
  @media screen and (max-width: 414px) {
    .w3l-products-4 label.tabtle {
      font-size: 15px;
      margin: 0 0px;
      padding: 4px 3px; } }

/* //Reset Code */
/* products-7 */
.w3l-products-7 {
  /* responsive code */ }
  .w3l-products-7 .products_sur {
    padding: 4.5rem 0 10px 0; }
  .w3l-products-7 .products_sur h4 {
    font-size: 30px;
    line-height: 40px;
    color: #fff;
    text-transform: uppercase;
    font-weight: normal; }
  .w3l-products-7 .products_sur h4 a {
    color: #fff; }
  .w3l-products-7 .products_sur h4 a:hover {
    color: var(--theme-color); }
  .w3l-products-7 span.shop {
    color: var(--theme-color);
    font-size: 16px;
    background: #fff;
    padding: 10px 16px;
    margin-top: 15px;
    display: inline-block; }
  .w3l-products-7 .products-top_sur {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    grid-gap: 30px; }
  .w3l-products-7 .products-right-top1 {
    background: url(../images/shoes.jpg) center no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    text-align: center;
    min-height: 630px; }
  .w3l-products-7 .products-left-top1 {
    margin-bottom: 2em; }
  .w3l-products-7 .products-left-top1 {
    background: url(../images/watch.jpg) center no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 300px; }
  .w3l-products-7 .products-left-top2 {
    background: url(../images/fashion.jpg) center no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 300px; }
  .w3l-products-7 .overlay {
    background: rgba(0, 0, 0, 0.5);
    min-height: inherit;
    padding: 2rem; }
  .w3l-products-7 .products_sur p {
    font-size: 15px;
    line-height: 25px;
    color: #e8e8e8;
    margin: 20px 0;
    font-weight: normal; }
  .w3l-products-7 .products-top-left_sur p {
    width: 50%; }
  .w3l-products-7 .products_sur a {
    color: #304659;
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
    text-decoration: none; }
  .w3l-products-7 .products_sur a:hover {
    color: #000; }
  @media screen and (max-width: 1280px) {
    .w3l-products-7 .products-top-left_sur p {
      width: 64%; } }
  @media screen and (max-width: 1080px) {
    .w3l-products-7 .products-top-left_sur p {
      width: 81%; } }
  @media screen and (max-width: 900px) {
    .w3l-products-7 .products_sur {
      padding: 3.5rem 0 10px 0; }
    .w3l-products-7 .products-top-left_sur p {
      width: 100%; }
    .w3l-products-7 .products-top_sur {
      grid-gap: 15px; } }
  @media screen and (max-width: 640px) {
    .w3l-products-7 .products-top_sur {
      grid-template-columns: 1fr;
      grid-gap: 15px; }
    .w3l-products-7 .products-left-top1, .w3l-products-7 .products-left-top2 {
      text-align: center; } }
  @media screen and (max-width: 440px) {
    .w3l-products-7 .products_sur p {
      margin: 16px 0; } }

/* //products-7 */
.w3l-products-8 {
  /*--resposive--*/ }
  .w3l-products-8 .products-main {
    padding: 20px 0 50px 0; }
  .w3l-products-8 .d-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    justify-content: center;
    align-items: center; }
  .w3l-products-8 .prod-column1 {
    display: grid;
    background-image: url(../images/ecommerce-phones.jpg);
    background-position: center;
    background-size: cover;
    min-height: 550px;
    text-align: center;
    align-items: end; }
  .w3l-products-8 .prod-column2 {
    display: grid;
    background-image: url(../images/accessories.jpg);
    background-position: center;
    background-size: cover;
    min-height: 550px;
    text-align: center;
    align-items: end; }
  .w3l-products-8 .overlay {
    background: rgba(0, 0, 0, 0.5);
    min-height: inherit;
    padding: 2rem;
    width: 100%; }
  .w3l-products-8 h1.prod-title {
    font-size: 30px;
    line-height: 40px;
    color: #fff;
    text-transform: uppercase;
    font-weight: normal; }
  .w3l-products-8 p.prod-text {
    font-size: 16px;
    line-height: 25px;
    color: #e8e8e8;
    margin: 20px auto;
    font-weight: normal;
    max-width: 300px; }
  .w3l-products-8 a.prod-link {
    color: var(--theme-color);
    font-size: 16px;
    background: #fff;
    padding: 10px 16px;
    margin-top: 15px;
    display: inline-block;
    font-weight: bold; }
  .w3l-products-8 img.arrow {
    margin-left: 15px; }
  @media (max-width: 1024px) {
    .w3l-products-8 .prod-column1,
    .w3l-products-8 .prod-column2 {
      min-height: 420px; }
    .w3l-products-8 .products-main {
      padding: 20px 0 30px 0; } }
  @media (max-width: 900px) {
    .w3l-products-8 p.prod-text {
      width: 85%; }
    .w3l-products-8 .prod-column1,
    .w3l-products-8 .prod-column2 {
      min-height: 380px; }
    .w3l-products-8 .d-grid {
      grid-gap: 15px; } }
  @media (max-width: 800px) {
    .w3l-products-8 .prod-column1,
    .w3l-products-8 .prod-column2 {
      min-height: 350px; } }
  @media (max-width: 767px) {
    .w3l-products-8 .d-grid {
      display: grid;
      grid-template-columns: 1fr; } }
  @media (max-width: 568px) {
    .w3l-products-8 h1.prod-title {
      font-size: 31px; }
    .w3l-products-8 p.prod-text {
      font-size: 18px; } }

.w3l-new-block-8 {
  /*-- single-page --*/ }
  .w3l-new-block-8 .ecommerce-single-section {
    padding: 4.5rem 0; }
  .w3l-new-block-8 .align-items {
    grid-template-columns: 0.7fr 1fr;
    grid-gap: 40px; }
  .w3l-new-block-8 .galleryContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
    position: relative; }
  .w3l-new-block-8 .gallery {
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center; }
  .w3l-new-block-8 .gallery input {
    display: none; }
  .w3l-new-block-8 .galleryImage {
    transition: opacity 0.25s ease-out;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain; }
  .w3l-new-block-8 .gallery > img:first-of-type {
    position: relative !important;
    display: flex !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 10; }
  .w3l-new-block-8 .arrowsContainer {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 100%;
    display: none;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    z-index: 20;
    overflow: hidden; }
  .w3l-new-block-8 .arrowsContainer img {
    width: 100px;
    background: white;
    opacity: 0.4;
    padding-bottom: 20px;
    transition: 0.1s ease; }
  .w3l-new-block-8 .leftArrow {
    border-top-right-radius: 10px;
    position: absolute;
    bottom: -20px;
    left: -30px;
    padding-left: 40px;
    padding-right: 15px; }
  .w3l-new-block-8 .rightArrow {
    border-top-left-radius: 10px;
    position: absolute;
    bottom: -20px;
    right: -30px;
    padding-right: 40px;
    padding-left: 15px; }
  .w3l-new-block-8 .leftArrow:active,
  .w3l-new-block-8 .rightArrow:active {
    transform: scale(0.95, 0.95); }
  .w3l-new-block-8 .thumbnails {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    height: 5%;
    z-index: 30;
    margin-top: 10px;
    /*border-left: 6px solid black;*/
    scroll-snap-type: mandatory;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; }
  .w3l-new-block-8 .thumbnailImage img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; }
  .w3l-new-block-8 .thumbnailImage {
    margin: 0 5px;
    -moz-scroll-snap-align: start;
    -ms-scroll-snap-align: start;
    scroll-snap-align: start; }
  .w3l-new-block-8 .thumbnailImage:first-child {
    margin-left: 0px; }
  .w3l-new-block-8 .thumbnailImage:last-child {
    margin-right: 0px; }
  .w3l-new-block-8 #c1:checked + #i1 {
    opacity: 1; }
  .w3l-new-block-8 #c2:checked + #i2 {
    opacity: 1; }
  .w3l-new-block-8 #c3:checked + #i3 {
    opacity: 1; }
  .w3l-new-block-8 #c4:checked + #i4 {
    opacity: 1; }
  .w3l-new-block-8 #c5:checked + #i5 {
    opacity: 1; }
  .w3l-new-block-8 #c6:checked + #i6 {
    opacity: 1; }
  .w3l-new-block-8 #c7:checked + #i7 {
    opacity: 1; }
  .w3l-new-block-8 #c8:checked + #i8 {
    opacity: 1; }
  .w3l-new-block-8 #c9:checked + #i9 {
    opacity: 1; }
  .w3l-new-block-8 #c10:checked + #i10 {
    opacity: 1; }
  .w3l-new-block-8 #c11:checked + #i11 {
    opacity: 1; }
  .w3l-new-block-8 #c12:checked + #i12 {
    opacity: 1; }
  .w3l-new-block-8 #c13:checked + #i13 {
    opacity: 1; }
  .w3l-new-block-8 #c1:checked + #i1 + #arrows1 {
    display: flex; }
  .w3l-new-block-8 #c2:checked + #i2 + #arrows2 {
    display: flex; }
  .w3l-new-block-8 #c3:checked + #i3 + #arrows3 {
    display: flex; }
  .w3l-new-block-8 #c4:checked + #i4 + #arrows4 {
    display: flex; }
  .w3l-new-block-8 #c5:checked + #i5 + #arrows5 {
    display: flex; }
  .w3l-new-block-8 #c6:checked + #i6 + #arrows6 {
    display: flex; }
  .w3l-new-block-8 .thumbnails label,
  .w3l-new-block-8 .arrowsContainer label {
    cursor: pointer;
    overflow: hidden; }
  .w3l-new-block-8 .thumbnails label img {
    transition: 0.3s ease; }
  .w3l-new-block-8 .thumbnails label img:hover {
    transform: scale(1.2, 1.2); }
  .w3l-new-block-8 label:focus {
    box-shadow: 0px 0px 7px 1px white; }
  .w3l-new-block-8 .single-right-left h3 {
    text-transform: capitalize;
    font-size: 19px;
    color: #000;
    margin: 0;
    font-weight: 600; }
  .w3l-new-block-8 .rating-single {
    float: left;
    margin: 10px 0; }
  .w3l-new-block-8 ul.rating-single li {
    display: inline-block; }
  .w3l-new-block-8 span.fa.fa-star.yellow-star {
    color: #34c663; }
  .w3l-new-block-8 .simpleCart_shelfItem .caption h6 {
    color: #000;
    font-size: 1.8em; }
  .w3l-new-block-8 .desc_single {
    margin: 2em 0; }
  .w3l-new-block-8 .desc_single h5 {
    color: #000;
    font-size: 1.2em; }
  .w3l-new-block-8 .single-right-left p {
    text-transform: capitalize;
    margin: .5em 0 0;
    color: #777;
    font-size: 1em;
    line-height: 1.6; }
  .w3l-new-block-8 .justify-content-between {
    justify-content: space-between !important; }
  .w3l-new-block-8 .sp_title {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 1rem; }
  .w3l-new-block-8 ul {
    list-style-type: none; }
  .w3l-new-block-8 ul.single_specific li {
    color: #000;
    font-size: 1em;
    text-transform: capitalize;
    word-spacing: 4px;
    letter-spacing: 0.2px;
    line-height: 1.8; }
  .w3l-new-block-8 ul.single_specific li span {
    color: #777;
    padding-left: 2px; }
  .w3l-new-block-8 ul.single_serv a {
    color: #000; }
  .w3l-new-block-8 li.gap {
    margin-top: 1em; }
  .w3l-new-block-8 .description {
    margin: 1.5em 0; }
  .w3l-new-block-8 .description h5 {
    color: #545454;
    font-size: 0.9em;
    margin-bottom: 12px;
    letter-spacing: 1px; }
  .w3l-new-block-8 .description input[type="text"] {
    padding: 8px 8px;
    color: #000;
    font-size: 13px;
    width: 45%;
    outline: none;
    letter-spacing: 1px; }
  .w3l-new-block-8 .description input[type="submit"] {
    color: #fff;
    font-size: 15px;
    background: var(--theme-color);
    border: none;
    outline: none;
    text-transform: capitalize;
    transition: .5s all;
    padding: 0 20px;
    cursor: pointer; }
  .w3l-new-block-8 .description input[type="submit"]:hover {
    background: var(--title-color); }
  .w3l-new-block-8 a.action {
    font-size: 16px;
    text-align: center;
    color: #F5F9FC;
    background: var(--theme-color);
    width: 120px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    transition: 0.5s ease-out; }
  @media (max-width: 736px) {
    .w3l-new-block-8 .align-items {
      grid-template-columns: 1fr;
      grid-gap: 35px; }
    .w3l-new-block-8 .ecommerce-single-section {
      padding: 3.5rem 0; } }
  @media (max-width: 500px) {
    .w3l-new-block-8 .ecommerce-single-section {
      padding: 2.5rem 0; } }

.w3l-new-block-9 {
  /*-- checkout --*/
  /*-- quantity-starts --*/
  /*-- quantity-end --*/
  /*-- checkbox --*/
  /*-- //checkout --*/
  /*-- // --*/
  /*--/payment--*/
  /*-- Pay-page --*/
  /*-- //Pay-page --*/ }
  .w3l-new-block-9 .checkout_wthree {
    padding: 4.5rem 0; }
  .w3l-new-block-9 .check-lay h4 {
    font-size: 1.2em;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 1rem; }
  .w3l-new-block-9 .checkout h2 {
    font-size: 1em;
    color: #212121;
    text-transform: uppercase;
    margin: 0 0 3em; }
  .w3l-new-block-9 .checkout h2 span {
    color: #3399cc; }
  .w3l-new-block-9 table.timetable_sub {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse; }
  .w3l-new-block-9 .timetable_sub thead {
    background: #004284; }
  .w3l-new-block-9 .timetable_sub th {
    background: #212121;
    color: #fff !important;
    text-transform: capitalize;
    font-size: 13px;
    border-right: 1px solid #ded2d2; }
  .w3l-new-block-9 .timetable_sub th,
  .w3l-new-block-9 .timetable_sub td {
    text-align: center;
    padding: 7px;
    font-size: 14px;
    color: #212121; }
  .w3l-new-block-9 .timetable_sub td {
    border: 1px solid #CDCDCD; }
  .w3l-new-block-9 td.invert-image a img {
    width: 30%;
    margin: 0 auto; }
  .w3l-new-block-9 .rem {
    position: relative; }
  .w3l-new-block-9 .close1, .w3l-new-block-9 .close2, .w3l-new-block-9 .close3 {
    background: url(../images/close_1.jpg) no-repeat 0px 0px;
    cursor: pointer;
    width: 41px;
    height: 38px;
    position: absolute;
    right: 12px;
    top: -19px;
    transition: color 0.2s ease-in-out; }
  .w3l-new-block-9 .value-minus,
  .w3l-new-block-9 .value-plus {
    height: 40px;
    line-height: 24px;
    width: 40px;
    margin-right: 3px;
    display: inline-block;
    cursor: pointer;
    position: relative;
    font-size: 18px;
    color: #fff;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    border: 1px solid #b2b2b2;
    vertical-align: bottom; }
  .w3l-new-block-9 .quantity-select .entry.value-minus:before,
  .w3l-new-block-9 .quantity-select .entry.value-plus:before {
    content: "";
    width: 13px;
    height: 2px;
    background: #000;
    left: 50%;
    margin-left: -7px;
    top: 50%;
    margin-top: -0.5px;
    position: absolute; }
  .w3l-new-block-9 .quantity-select .entry.value-plus:after {
    content: "";
    height: 13px;
    width: 2px;
    background: #000;
    left: 50%;
    margin-left: -1.4px;
    top: 50%;
    margin-top: -6.2px;
    position: absolute; }
  .w3l-new-block-9 .value {
    cursor: default;
    width: 40px;
    height: 40px;
    padding: 8px 0px;
    color: #A9A9A9;
    line-height: 24px;
    border: 1px solid #E5E5E5;
    background-color: #E5E5E5;
    text-align: center;
    display: inline-block;
    margin-right: 3px; }
  .w3l-new-block-9 .quantity-select .entry.value-minus:hover,
  .w3l-new-block-9 .quantity-select .entry.value-plus:hover {
    background: #E5E5E5; }
  .w3l-new-block-9 .quantity-select .entry.value-minus {
    margin-left: 0; }
  .w3l-new-block-9 .checkout-left {
    padding: 4.5rem 0 0 0; }
  .w3l-new-block-9 .ailgn-checkout-form {
    grid-template-columns: 0.5fr 1fr;
    grid-gap: 40px; }
  .w3l-new-block-9 .checkout-right h4,
  .w3l-new-block-9 .address_form h4 {
    font-size: 1.5em;
    margin: 0 0 1em 0;
    color: var(--theme-color); }
  .w3l-new-block-9 .checkout-left-basket h4 {
    padding: 1em;
    background: #eee;
    font-size: 1em;
    color: #000;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 2em; }
  .w3l-new-block-9 .checkout-left-basket ul li {
    list-style-type: none;
    margin-bottom: 1em;
    font-size: 14px;
    color: #999; }
  .w3l-new-block-9 .checkout-left-basket ul li.total-price {
    color: var(--title-color);
    font-size: 24px;
    border-top: 1px solid #eee;
    margin: 20px 0;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    font-weight: bold; }
  .w3l-new-block-9 .checkout-right-basket {
    float: left;
    margin: 3em 0em 0em; }
  .w3l-new-block-9 .checkout-left-basket ul li span {
    float: right; }
  .w3l-new-block-9 .checkout-left-basket ul li:nth-child(5) {
    font-size: 1em;
    color: #212121;
    font-weight: 600;
    padding: 1em 0;
    border-top: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
    margin: 2em 0 0; }
  .w3l-new-block-9 .checkout-right-basket a {
    padding: 10px 20px;
    color: #fff;
    font-size: 1em;
    background: #212121;
    text-decoration: none;
    letter-spacing: 2px; }
  .w3l-new-block-9 .checkout-right-basket a:hover {
    background: #fb383b; }
  .w3l-new-block-9 .checkout-right-basket a span {
    left: -.5em;
    top: 0.1em; }
  .w3l-new-block-9 .checkout {
    padding: 5em 0; }
  .w3l-new-block-9 .information-wrapper input {
    width: 100% !important; }
  .w3l-new-block-9 .check_box_one.cashon_delivery {
    float: left;
    width: 100%;
    margin-bottom: 10px; }
  .w3l-new-block-9 .fcheck-login label {
    font-size: 1em;
    color: #000;
    letter-spacing: 0.5px;
    font-weight: 400;
    cursor: pointer;
    position: relative; }
  .w3l-new-block-9 input.checkbox {
    background: #212121;
    cursor: pointer;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
    margin: 0 5px 0 0;
    vertical-align: text-bottom; }
  .w3l-new-block-9 input.checkbox:before {
    content: "";
    position: absolute;
    width: 1.2em;
    height: 1.2em;
    background: inherit;
    cursor: pointer; }
  .w3l-new-block-9 input.checkbox:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    z-index: 1;
    width: 1.2em;
    height: 1.2em;
    border: 1px solid #fff;
    transition: .4s ease-in-out;
    -webkit-transition: .4s ease-in-out;
    -moz-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    -ms-transition: .4s ease-in-out; }
  .w3l-new-block-9 input.checkbox:checked:after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    height: 1.2em;
    border-color: #fff;
    border-top-color: transparent;
    border-right-color: transparent; }
  .w3l-new-block-9 .anim input.checkbox:checked:after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    height: .6em;
    border-color: transparent;
    border-right-color: transparent;
    -webkit-animation: .4s rippling .4s ease;
            animation: .4s rippling .4s ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }

@-webkit-keyframes rippling {
  50% {
    border-left-color: #fff; }
  100% {
    border-bottom-color: #fff;
    border-left-color: #fff; } }

@keyframes rippling {
  50% {
    border-left-color: #fff; }
  100% {
    border-bottom-color: #fff;
    border-left-color: #fff; } }
  .w3l-new-block-9 .vertical_post.check_box_fpay {
    padding-bottom: 1em; }
  .w3l-new-block-9 .checkbox input[type="checkbox"],
  .w3l-new-block-9 .checkbox-inline input[type="checkbox"] {
    margin-left: -29px; }
  .w3l-new-block-9 .check_tab2 input[type="email"],
  .w3l-new-block-9 .check_tab2 input[type="password"],
  .w3l-new-block-9 .creditly-wrapper .form-control {
    margin-bottom: 10px;
    margin-top: 5px;
    outline: none;
    width: 100%;
    background: #fff;
    color: #000000;
    border: 1px solid #a5a5a5;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    padding: 15px 15px;
    margin-bottom: 25px; }
  .w3l-new-block-9 .pay_info {
    padding: 3em 2em; }
  .w3l-new-block-9 .pay_info input[type="email"],
  .w3l-new-block-9 .pay_info input[type="password"],
  .w3l-new-block-9 .creditly-wrapper .form-control {
    margin-bottom: 10px;
    margin-top: 5px;
    outline: none;
    width: 100%;
    background: #fff;
    color: #000000;
    border: 1px solid #a5a5a5;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    padding: 15px 15px;
    margin-bottom: 25px; }
  .w3l-new-block-9 .pay_info input[type="email"]:focus,
  .w3l-new-block-9 .pay_info input[type="password"]:focus,
  .w3l-new-block-9 .creditly-wrapper .form-control:focus {
    border-color: var(--theme-color);
    outline: 0; }
  .w3l-new-block-9 .pay_info input[type="submit"] {
    background: var(--title-color);
    color: #ffffff;
    font-size: 16px;
    text-transform: capitalize;
    margin-top: 10px;
    padding: 15px 25px;
    border: none;
    display: block;
    width: 100%;
    transition: 0.3s ease-in; }
  .w3l-new-block-9 .checkf_main_grid_left_grid h3 {
    font-size: 1.3em;
    color: #fff; }
  .w3l-new-block-9 .checkf_main_grid_left_grid ul {
    margin-top: 1.5em; }
  .w3l-new-block-9 .checkf_main_grid_left_grid ul li {
    display: inline-block;
    color: #fff;
    font-weight: bold;
    font-size: 2em;
    vertical-align: top; }
  .w3l-new-block-9 .checkf_main_grid_left_grid ul li span {
    display: block;
    font-size: .5em;
    color: #999; }
  .w3l-new-block-9 .checkf_main_grid_left_grid ul li:first-child {
    width: 70%;
    border-right: 1px solid #999; }
  .w3l-new-block-9 .checkf_main_grid_left_grid ul li:last-child {
    padding-left: 1em;
    text-align: right; }
  .w3l-new-block-9 .check_f_amount {
    padding: 1em 2em;
    background: #f71926; }
  .w3l-new-block-9 .check_f_amount h3 {
    font-size: 1.3em;
    color: #fff; }
  .w3l-new-block-9 .check_f_amount h4 {
    font-size: 2em;
    color: #fff;
    font-weight: bold; }
  .w3l-new-block-9 .check_f_amount p {
    font-size: 1em;
    color: #1adeed;
    line-height: 1.8em; }
  .w3l-new-block-9 img.pp-img {
    width: 65%; }
  .w3l-new-block-9 .tab-grid p {
    color: #8B8B8B;
    font-size: 0.95em;
    line-height: 1.8em;
    font-weight: 400;
    margin: 10px 0; }
  .w3l-new-block-9 a.btn.btn-primary {
    background-color: #3a5795;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    border: none; }
  .w3l-new-block-9 .vertical_post h5 {
    color: #000;
    font-size: 17px;
    margin: 0 0 18px 0;
    background: #eee;
    width: 30%;
    padding: 10px 10px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    display: inline-block; }
  .w3l-new-block-9 .swit-radio label {
    font-size: 16px;
    color: #696969;
    font-weight: 400;
    cursor: pointer; }
  .w3l-new-block-9 .radio_one:first-child {
    margin-left: 0;
    margin: 0; }
  .w3l-new-block-9 .radio_one {
    padding-left: 0;
    line-height: 28px;
    color: #404040;
    cursor: pointer; }
  .w3l-new-block-9 .radio_one {
    position: relative;
    display: inline-block;
    margin-left: 15px; }
  .w3l-new-block-9 .section_room_pay select {
    padding: 6px 10px;
    width: 33%;
    border: none;
    background: none;
    border: 1px solid #E6E4E4;
    color: #777;
    outline: none;
    font-size: 16px;
    margin-bottom: 0;
    background: #fff;
    background-size: 4% !important;
    -webkit-appearance: none; }
  .w3l-new-block-9 select.form-control.option-fieldf {
    width: 100%;
    padding: 8px 10px;
    font-size: 0.8em;
    margin: 0.5em 0;
    outline: none;
    color: #212121;
    border: none;
    border: 1px solid #ccc;
    letter-spacing: 1px;
    text-align: left; }
  .w3l-new-block-9 .checkout-right-basket span {
    margin-left: 1em; }
  .w3l-new-block-9 .check_box_one {
    float: left;
    width: 22%;
    margin-bottom: 10px; }
  .w3l-new-block-9 .form-control {
    border-radius: 0; }
  .w3l-new-block-9 .btn-primary {
    color: #fff;
    background-color: #84c639;
    border-color: #84c639;
    border-radius: 0; }
  .w3l-new-block-9 button.submit.check_out {
    background: var(--title-color);
    color: #ffffff;
    font-size: 16px;
    text-transform: capitalize;
    margin-top: 10px;
    padding: 15px 25px;
    border: none;
    display: block;
    width: 100%;
    transition: 0.3s ease-in; }
  .w3l-new-block-9 button.submit.check_out:hover {
    background: var(--theme-color);
    transition: 0.3s ease-in; }
  .w3l-new-block-9 .section_room_pay {
    margin-bottom: 2em; }
  @media (max-width: 991px) {
    .w3l-new-block-9 .close1,
    .w3l-new-block-9 .close2,
    .w3l-new-block-9 .close3 {
      right: 8px; }
    .w3l-new-block-9 .tab-grid {
      margin-bottom: 2em; }
    .w3l-new-block-9 .check_box_one {
      float: none;
      width: auto;
      margin-bottom: 12px; }
    .w3l-new-block-9 .value-minus,
    .w3l-new-block-9 .value-plus {
      height: 38px;
      width: 35px; }
    .w3l-new-block-9 .vertical_post h5 {
      width: 40%; }
    .w3l-new-block-9 .value-minus, .w3l-new-block-9 .value-plus {
      display: block; }
    .w3l-new-block-9 .value-minus, .w3l-new-block-9 .value-plus {
      height: 38px;
      width: 50px;
      margin: 5px 0; } }
  @media (max-width: 900px) {
    .w3l-new-block-9 .ailgn-checkout-form {
      grid-template-columns: 1fr;
      grid-gap: 35px; } }
  @media (max-width: 800px) {
    .w3l-new-block-9 .checkout-right-basket {
      margin: 2em 0em 0; } }
  @media (max-width: 768px) {
    .w3l-new-block-9 .pay_info input[type="submit"] {
      padding: 9.5px 20px;
      letter-spacing: 2px; }
    .w3l-new-block-9 .pay_info input[type="submit"] {
      font-size: 1em; }
    .w3l-new-block-9 .vertical_post h5 {
      width: 54%; } }
  @media (max-width: 736px) {
    .w3l-new-block-9 td.invert-image {
      width: 32%; }
    .w3l-new-block-9 .vertical_post h5 {
      font-size: 16px; }
    .w3l-new-block-9 .checkout_wthree {
      padding: 3.5rem 0; } }
  @media (max-width: 667px) {
    .w3l-new-block-9 td.invert-image {
      width: 27%; }
    .w3l-new-block-9 .value {
      width: 35px; } }
  @media (max-width: 640px) {
    .w3l-new-block-9 td.invert-image a img {
      width: 50%; }
    .w3l-new-block-9 td.invert-image {
      width: 25%; } }
  @media (max-width: 600px) {
    .w3l-new-block-9 .checkout-right h4, .w3l-new-block-9 .address_form h4 {
      font-size: 1.4em; }
    .w3l-new-block-9 td.invert-image {
      width: 36%; } }
  @media (max-width: 568px) {
    .w3l-new-block-9 td.invert-image a img {
      width: 60%; } }
  @media (max-width: 480px) {
    .w3l-new-block-9 .vertical_post h5 {
      width: 80%; }
    .w3l-new-block-9 .checkout_wthree {
      padding: 2.5rem 0; } }
  @media (max-width: 414px) {
    .w3l-new-block-9 td.invert-image a img {
      width: 100%; }
    .w3l-new-block-9 .checkout-right {
      overflow-x: scroll; }
    .w3l-new-block-9 .checkout-right h4, .w3l-new-block-9 .address_form h4 {
      font-size: 1.3em;
      letter-spacing: 0; } }
  @media (max-width: 384px) {
    .w3l-new-block-9 .check_box_one.cashon_delivery {
      float: none;
      width: 100%;
      margin-bottom: 10px; }
    .w3l-new-block-9 .checkout-right h4, .w3l-new-block-9 .address_form h4 {
      font-size: 1.2em; } }
  @media (max-width: 375px) {
    .w3l-new-block-9 .check-lay h4 {
      font-size: 1em; } }
  @media (max-width: 320px) {
    .w3l-new-block-9 .checkout-right h4, .w3l-new-block-9 .address_form h4 {
      font-size: 1em; }
    .w3l-new-block-9 .vertical_post h5 {
      width: 98%; } }

.w3l-form-37 {
  /*--responsive--*/
  /*--//responsive--*/ }
  .w3l-form-37 .form-22-mian {
    padding: 4.5rem 0 20px 0px; }
  .w3l-form-37 .form-inner-cont {
    max-width: 700px;
    margin: 0px auto 3rem; }
  .w3l-form-37 .form-inner-cont h3 {
    font-size: 35px;
    line-height: 40px;
    color: var(--title-color); }
  .w3l-form-37 .form-inner-cont p {
    font-size: 17px;
    line-height: 25px;
    color: var(--text-color);
    margin: 10px 0px 25px 0px; }
  .w3l-form-37 .form-input input[type="search"] {
    margin-bottom: 10px;
    margin-top: 5px;
    outline: none;
    width: 100%;
    height: 45px;
    background: #fff;
    color: #000000;
    border: 1px solid var(--title-color);
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 45px;
    padding-left: 15px;
    padding-right: 15px; }
  .w3l-form-37 .form-input input[type="search"]:focus {
    border: 1px solid var(--theme-color); }
  .w3l-form-37 button.btn {
    background: var(--theme-color);
    color: #ffffff;
    font-size: 16px;
    text-transform: capitalize;
    padding: 15px 25px;
    border: none;
    display: block;
    width: 100%;
    transition: 0.3s ease-in; }
  @media (max-width: 1080px) {
    .w3l-form-37 .form-22-mian {
      padding: 40px 0px; }
    .w3l-form-37 .form-inner-cont h3 {
      font-size: 32px; } }

.w3l-text-23 {
  /*-- Text23-block --*/ }
  .w3l-text-23 #text23-block {
    padding: 20px 0 4.5rem 0; }
    .w3l-text-23 a.searched {
      display: block;  } 
  .w3l-text-23 .align-text23-cols {
    grid-template-columns: 4fr 1fr;
    grid-gap: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    padding: 1rem;
    margin: 2rem 0;
    background: #fff; }
  .w3l-text-23 .text23-max-align {
    max-width: 700px;
    margin: 0 auto; }
  .w3l-text-23 .text23-left h5 {
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 30px;
    color: var(--title-color); }
  .w3l-text-23 a.searched:hover div.text23-left h5 {
    color: var(--theme-color); }
  .w3l-text-23 h3.found {
    font-size: 25px;
    color: var(--title-color);
    text-transform: uppercase; }
  .w3l-text-23 .text23-left p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: var(--text-color); }
  @media all and (max-width: 667px) {
    .w3l-text-23 .align-text23-cols {
      grid-template-columns: 1fr;
      grid-gap: 20px; }
    .w3l-text-23 .gap-left {
      margin-left: 0px; } }
  @media all and (max-width: 440px) {
    .w3l-text-23 #text23-block {
      padding: 0 0 2.5rem 0; } }

.w3l-new-block-5 a.brand-logo {
  color: var(--theme-color);
  font-weight: bold;
  font-size: 40px; }

.w3l-new-block-5 .top-bottom-gap {
  padding: 2rem 0; }

.w3l-new-block-5 .bgimg {
  background-image: url("../images/slide-4.jpg");
  height: 100%;
  background-position: center;
  background-size: cover;
  color: white;
  font-size: 25px;
  height: 100vh; }

.w3l-new-block-5 .middle h1 {
  opacity: 0.1;
  font-size: 5rem; }

.w3l-new-block-5 p#demo {
  font-size: 4rem;
  margin: 3rem 0 0 0;
  word-spacing: 20px; }

.w3l-new-block-5 small {
  font-size: 40%;
  display: inline-block;
  font-style: italic; }

.w3l-new-block-5 .overlay {
  background: rgba(0, 0, 0, 0.75);
  min-height: inherit; }

.w3l-new-block-5 .topleft {
  position: absolute;
  top: 0;
  left: 16px; }

.w3l-new-block-5 .bottomleft {
  position: absolute;
  bottom: 0;
  left: 16px; }

.w3l-new-block-5 .middle {
  text-align: center;
  min-height: 100vh;
  padding-top: 8rem; }

@media (max-width: 736px) {
  .w3l-new-block-5 .top-bottom-gap {
    padding: 1.5rem 0; }
  .w3l-new-block-5 .middle {
    padding-top: 4rem; }
  .w3l-new-block-5 .bgimg {
    font-size: 22px; }
  .w3l-new-block-5 .middle h1 {
    opacity: 0.1;
    font-size: 3rem; }
  .w3l-new-block-5 p#demo {
    font-size: 2.5rem;
    margin: 2rem 0 0 0;
    word-spacing: 15px; }
  .w3l-new-block-5 a.brand-logo {
    font-size: 35px; } }

@media (max-width: 500px) {
  .w3l-new-block-5 .middle {
    padding-top: 3.5rem; }
  .w3l-new-block-5 .bgimg {
    font-size: 20px; }
  .w3l-new-block-5 .middle h1 {
    opacity: 0.1;
    font-size: 2.5rem; }
  .w3l-new-block-5 p#demo {
    font-size: 2.2rem;
    margin: 2rem 0 0 0;
    word-spacing: 10px; } }

body,
html {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; }

/* Responsive */
@media only screen and (max-width: 640px) {
  /* Tables
    parameters: width, alignment, padding */
  table[class=w3l-scale] {
    width: 100% !important; }
  table[class=w3l-scale-300] {
    width: 100% !important;
    height: 300px !important; }
  table[class=w3l-scale-90] {
    width: 90% !important; }
  /* Td */
  td[class=w3l-scale-left] {
    width: 100% !important;
    text-align: left !important; }
  td[class=w3l-scale-smaller] {
    height: 200px !important; }
  td[class=w3l-scale-height] {
    height: 70px !important; }
  td[class=w3l-scale-left-bottom] {
    width: 100% !important;
    text-align: left !important;
    padding-bottom: 24px !important; }
  td[class=w3l-scale-left-top] {
    width: 100% !important;
    text-align: left !important;
    padding-top: 24px !important; }
  td[class=w3l-scale-left-all] {
    width: 100% !important;
    text-align: left !important;
    padding-top: 24px !important;
    padding-bottom: 24px !important; }
  td[class=w3l-scale-center] {
    width: 100% !important;
    text-align: center !important; }
  td[class=w3l-scale-center-both] {
    width: 100% !important;
    text-align: center !important;
    padding-left: 20px !important;
    padding-right: 20px !important; }
  td[class=w3l-scale-center-bottom] {
    width: 100% !important;
    text-align: center !important;
    padding-bottom: 24px !important; }
  td[class=w3l-scale-center-top] {
    width: 100% !important;
    text-align: center !important;
    padding-top: 24px !important; }
  td[class=w3l-scale-center-all] {
    width: 100% !important;
    text-align: center !important;
    padding-top: 24px !important;
    padding-bottom: 24px !important;
    padding-left: 20px !important;
    padding-right: 20px !important; }
  td[class=w3l-scale-right] {
    width: 100% !important;
    text-align: right !important; }
  td[class=w3l-scale-right-bottom] {
    width: 100% !important;
    text-align: right !important;
    padding-bottom: 24px !important; }
  td[class=w3l-scale-right-top] {
    width: 100% !important;
    text-align: right !important;
    padding-top: 24px !important; }
  td[class=w3l-scale-right-all] {
    width: 100% !important;
    text-align: right !important;
    padding-top: 24px !important;
    padding-bottom: 24px !important; }
  td[class=w3l-scale-center-bottom-both] {
    width: 100% !important;
    text-align: center !important;
    padding-bottom: 24px !important;
    padding-left: 20px !important;
    padding-right: 20px !important; }
  td[class=w3l-scale-center-top-both] {
    width: 100% !important;
    text-align: center !important;
    padding-top: 24px !important;
    padding-left: 20px !important;
    padding-right: 20px !important; }
  td[class=reset] {
    height: 0px !important; }
  td[class=w3l-scale-center-topextra] {
    width: 100% !important;
    text-align: center !important;
    padding-top: 50px !important; }
  img[class="reset"] {
    display: inline !important; }
  img[class="w3l-scale"] {
    width: 100% !important; } }

/*# sourceMappingURL=style-freedom.css.map */
