html {
  scroll-behavior: smooth;
}

:root {
  --theme-color-1: #081227;
  --theme-color-2: #EBAE0B;
  --theme-color-3: #5ec64d;
  --main-bg-color: #f8f9fa;
  --title-color: #2a2a2a;
  --sub-title-color: #484747;
  --para-color: #67696f;
}

body,
html {
  margin: 0;
  padding: 0;
  color: var(--para-color);
}

* {
  box-sizing: border-box;
  /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;*/
   font-family:"Lato","微軟正黑體","Microsoft JhengHei",Helvetica,Arial,sans-serif;
}

.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;
  }
}

.img-responsive {
  max-width: 100%;
  display: block;
}

.img-fluid {
  width: 100%;
}

.d-grid {
  display: grid;
}

.d-flex {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

button,
input,
select {
  -webkit-appearance: none;
  outline: none;
}

button,
.btn,
select {
  cursor: pointer;
}

a,
button {
  text-decoration: none;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

iframe {
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

body a:hover,
body button:hover {
  opacity: .75;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
  color: var(--title-color);
}

p {
  color: var(--para-color);
  font-weight: normal;
  font-size: 17px;
  line-height: 25px;
}

img {
  opacity: 1;
  transition: .3s ease-in-out;
}

img:hover {
  opacity: .8;
}

.button-eff {
  background: #5ec64d;
  box-shadow: 0px 4px 0px 0px #44B33D;
  padding: 10px 30px;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
}

.button-eff span {
  margin-right: 10px;
}

.button-eff-2 {
  background: var(--theme-color-2);
  box-shadow: 0px 4px 0px 0px #f53047;
}

.button-eff:hover {
  background: #44B33D;
  opacity: 1;
}

.button-eff-2:hover {
  background: #f53047;
  opacity: 1;
}

h3.title-main {
  font-size: 35px;
  line-height: 40px;
  color: var(--title-color);
  text-align: center;
  margin-bottom: 1.6em;
  font-weight: 600;
  position: relative;
}

h3.title-main:before,
h3.title-main:after {
  content: "";
  background: #333;
  width: 60px;
  height: 2px;
  position: absolute;
  right: 0;
  margin: 0 auto;
}

h3.title-main:before {
  left: -20px;
  bottom: -8px;
}

h3.title-main:after {
  left: 20px;
  bottom: -15px;
}

.sec-padding {
  padding: 80px 0;
}

@media screen and (max-width: 991px) {
  .sec-padding {
    padding: 60px 0;
  }
}

@media screen and (max-width: 800px) {
  h3.title-main {
    font-size: 32px;
    line-height: 35px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 480px) {
  .sec-padding {
    padding: 40px 0;
  }
}

@media screen and (max-width: 415px) {
  h3.title-main {
    font-size: 30px;
    line-height: 32px;
  }
}

@media screen and (max-width: 375px) {
  .brk-btn {
    font-size: 13px;
  }
}

/*!
 *  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-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;
}

.fa-lg {
  font-size: 1.33333333em;
  line-height: .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: .14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid .08em #eee;
  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;
}

.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: #fff;
}

.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;
}

@media all and (max-width: 991px) {
  .w3l-headers-9 {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10000;
  }
}

.w3l-headers-9 {
  /* //Reset Code */
  /* header */
  /* menu */
  /* CSS Document */
  /* Hide Dropdowns by Default
 * and giving it a position of absolute */
  /* Display Dropdowns on Hover */
  /* Media Queries
--------------------------------------------- */
  /* navigation */
  /* responsive for header */
  /* //responsive for header */
  /* //header */
}

.w3l-headers-9 .grid-col-2 {
  grid-template-columns: 1fr 1fr;
}

.w3l-headers-9 .grid-col-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.w3l-headers-9 .grid-col-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.w3l-headers-9 a.action {
  border: none;
  color: var(--title-color);
  font-size: 17px;
  line-height: 25px;
  font-weight: 600;
  display: inline-block;
}

.w3l-headers-9 .actionbg {
  border: none;
  font-weight: 600;
  display: inline-block;
  font-size: 17px;
  color: #F5F9FC;
  background: #000;
  text-align: center;
  padding: 8px 13px 10px;
}

.w3l-headers-9 a.action img {
  margin-left: 4px;
}

.w3l-headers-9 .align-center {
  text-align: center;
}

.w3l-headers-9 a:hover,
.w3l-headers-9 button:hover,
.w3l-headers-9 .active {
  opacity: .8;
}

.w3l-headers-9 header {
  background: #EBAE0B;
  width: 100%;
  border-bottom: 1px solid #EAEDF2;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.w3l-headers-9 .header {
  display: flex;
  align-items: center;
}

.w3l-headers-9 li.nav-right-sty {
  padding-right: 0 !important;
}

.w3l-headers-9 a.btn.button-eff.button-eff-2 {
  padding: 10px 18px;
}

.w3l-headers-9 .bottom-menu-content {
  margin-left: auto;
}

.w3l-headers-9 .logo {
  color: var(--title-color);
  font-size: 28px;
  font-weight: 600;
}

.w3l-headers-9 a.logo span {
  background: var(--theme-color-3);
  color: #fff;
  padding: 6px 12px 6px 16px;
  border-radius: 20px 0px 0px 20px;
  margin-right: 6px;
  font-size: 28px;
}

.w3l-headers-9 .toggle-2,
.w3l-headers-9 .toggle,
.w3l-headers-9 [id^=drop] {
  display: none;
}

.w3l-headers-9 #logo a img {
  height: 42px;
}

.w3l-headers-9 nav ul {
  position: relative;
}

.w3l-headers-9 nav ul li {
  display: inline-block;
  position: relative;
  padding: 0 12px;
  vertical-align: middle;
}

.w3l-headers-9 nav ul li ul li {
  display: inherit;
  padding: 0;
}

.w3l-headers-9 input#nav {
  display: none;
}

.w3l-headers-9 ul.menu a.link-nav {
  color: var(--title-color);
  font-weight: 400;
  font-size: 17px;
  line-height: 60px;
}

.w3l-headers-9 ul.menu ul:after {
  position: absolute;
  top: -9px;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 3px 0 0 0;
  transform: rotate(45deg);
  border-top: 1px solid #EAEDF2;
  border-left: 1px solid #EAEDF2;
}

.w3l-headers-9 nav ul ul {
  display: none;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #EAEDF2;
  padding: 1rem;
  min-width: 180px;
  position: absolute;
  top: 55px;
  left: 0;
  box-shadow: 0 0 1px #eee, 0 6px 18px rgba(0, 0, 0, 0.15);
  transform: translateX(-60px);
  z-index: 9;
}

.w3l-headers-9 ul.first-dropdwon {
  min-width: 530px;
  -webkit-columns: 3;
  -moz-columns: 3;
  columns: 3;
  transform: translateX(-230px);
}

.w3l-headers-9 nav ul.sec-drop {
  min-width: 380px;
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  transform: translateX(-145px);
}

.w3l-headers-9 ul.menu ul li a {
  color: var(--para-color);
  font-size: 16px;
  padding: 7px;
  display: block;
  border-radius: 3px;
}

.w3l-headers-9 ul.menu ul li a:hover {
  color: #fff;
  background: var(--theme-color-2);
  opacity: 1;
}

.w3l-headers-9 nav ul li:hover>ul {
  display: inherit;
}

.w3l-headers-9 .nav_w3ls nav ul ul li {
  width: 170px;
  float: none;
  display: block;
  position: relative;
  margin: 0;
}

.w3l-headers-9 .nav_w3ls nav ul ul li a {
  display: block;
  color: #333;
  padding: 4px 8px;
  font-size: 16px;
}

.w3l-headers-9 .nav_w3ls nav ul ul li a:hover {
  color: #000;
  background: #eee;
  opacity: 1;
}

.w3l-headers-9 nav ul ul ul li {
  position: relative;
  top: -60px;
  left: 170px;
}

.w3l-headers-9 nav .wrapper {
  padding: 0;
}

.w3l-headers-9 .header {
  position: relative;
}

@media all and (max-width: 1080px) {
  .w3l-headers-9 nav ul li {
    padding: 0 7px;
  }
}

@media all and (max-width: 991px) {
  .w3l-headers-9 {
    /* Hide the navigation menu by default */
    /* Also hide the  */
    /* Stylinf the toggle lable */
    /* Display Dropdown when clicked on Parent Lable */
    /* Hide Dropdowns by Default */
    /* Hide menus on hover */
    /* Fisrt Tier Dropdown */
    /* //navigation */
    /* responsive design for nav */
    /* //responsive design for nav */
  }

  .w3l-headers-9 header {
    padding: 10px 0;
  }

  .w3l-headers-9 .toggle+a {
    display: none;
  }

  .w3l-headers-9 .toggle {
    display: block;
    padding: 7px 12px;
    font-size: 15px;
    text-decoration: none;
    border: none;
    float: right;
    background-color: #eee;
    color: #333;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    margin-bottom: 0;
    cursor: pointer;
  }

  .w3l-headers-9 .menu .toggle {
    float: none;
    padding: 0;
    font-weight: normal;
    font-size: 17px;
    background: transparent;
    color: #fff;
  }

  .w3l-headers-9 .toggle:hover {
    opacity: .8;
  }

  .w3l-headers-9 .menu .toggle.active {
    font-weight: bold;
  }

  .w3l-headers-9 [id^=drop]:checked+ul {
    display: block;
    padding: 15px 20px;
    /* text-align: center; */
    width: 100%;
    z-index: 99;
  }

  .w3l-headers-9 nav ul li {
    display: block;
    width: 100%;
  }

  .w3l-headers-9 .nav_w3ls nav ul ul {
    float: none;
    position: static;
    color: #ffffff;
    padding: 10px !important;
  }

  .w3l-headers-9 nav ul ul li:hover>ul,
  .w3l-headers-9 nav ul li:hover>ul {
    display: none;
  }

  .w3l-headers-9 nav ul ul li {
    display: block;
    width: 100%;
    padding: 0;
  }

  .w3l-headers-9 nav ul ul ul li {
    position: static;
  }

  .w3l-headers-9 .nav_w3ls nav ul ul li {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .w3l-headers-9 ul.menu a.link-nav {
    line-height: 20px;
    display: block;
  }

  .w3l-headers-9 a.link-nav.dropdown-toggle {
    display: none !important;
  }

  .w3l-headers-9 .bottom-menu-content label.menu-bar {
    width: 40px;
    position: absolute;
    top: 10px;
    right: 0;
    cursor: pointer;
    z-index: 99;
    height: 40px;
  }

  .w3l-headers-9 .bottom-menu-content label.menu-bar:before {
    content: '';
    background: var(--title-color);
    width: 40px;
    height: 4px;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 10px;
    transition: all 0.5s;
  }

  .w3l-headers-9 .bottom-menu-content label.menu-bar:after {
    content: '';
    background: var(--title-color);
    width: 40px;
    height: 4px;
    position: absolute;
    top: 23px;
    left: 0px;
    border-radius: 10px;
    transition: all 0.5s;
  }

  .w3l-headers-9 .bottom-menu-content input#nav {
    display: block;
  }

  .w3l-headers-9 .bottom-menu-content input#nav {
    height: 0px;
    opacity: 1;
    display: block;
  }

  .w3l-headers-9 .bottom-menu-content input#nav:before {
    content: '';
    background: var(--title-color);
    width: 40px;
    height: 4px;
    position: absolute;
    top: 21px;
    right: 0;
    border-radius: 10px;
    z-index: 50;
  }

  .w3l-headers-9 .bottom-menu-content input#nav:checked {
    opacity: 0;
  }

  .w3l-headers-9 .bottom-menu-content input#nav:checked~label.menu-bar:before {
    top: 15px;
    -webkit-animation: linetop 0.5s linear 0.3s;
    animation: linetop 0.5s linear 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }

  .w3l-headers-9 .bottom-menu-content input#nav:checked~label.menu-bar:after {
    top: 15px;
    -webkit-animation: linebottom 0.5s linear 0.3s;
    animation: linebottom 0.5s linear 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }

  .w3l-headers-9 .bottom-menu-content nav {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 0%;
    color: #fff;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    z-index: -1;
    border-bottom: 1px solid #EAEDF2;
  }

  .w3l-headers-9 .bottom-menu-content input#nav:checked~nav {
    height: auto;
    display: block;
    grid-gap: 30px;
    padding: 20px;
    position: fixed;
    top: 57px;
    left: 0;
    right: 0;
    background: rgba(35, 50, 90, 0.9);
    text-align: left;
    z-index: 99999;
    bottom: 0;
    overflow-y: scroll;
    max-width: 100%;
  }

  .w3l-headers-9 .bottom-menu-content input#nav:checked.menu-bar~nav>ul {
    opacity: 1;
  }

  @-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-headers-9 ul.first-dropdwon,
  .w3l-headers-9 nav ul ul {
    transform: translateX(0px);
    max-width: 100%;
    min-width: 100%;
  }

  .w3l-headers-9 nav ul li {
    display: block;
    width: 100%;
    margin: 20px 0;
    padding: 0;
  }

  .w3l-headers-9 nav ul ul {
    position: static;
    margin-top: 10px;
  }

  .w3l-headers-9 nav ul li ul li {
    margin: 0;
  }

  .w3l-headers-9 ul.menu ul:after {
    right: 88%;
  }

  .w3l-headers-9 a.actionbg {
    margin-top: 1em;
  }

  .w3l-headers-9 ul.menu a.link-nav {
    color: #fff;
  }

  .w3l-headers-9 li.nav-right-sty {
    margin-bottom: 0;
    margin-top: 2em;
  }

  .w3l-headers-9 nav ul.sec-drop {
    min-width: 100%;
    transform: translateX(0);
  }
}

@media (max-width: 736px) {
  .w3l-headers-9 ul.first-dropdwon {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }
}

@media (max-width: 640px) {
  .w3l-headers-9 .overlay-menuv-hugeinc nav {
    margin: 0 .5em;
  }
}

@media (max-width: 568px) {
  .w3l-headers-9 .logo {
    font-size: 26px;
  }

  .w3l-headers-9 a.logo span {
    padding: 6px 10px 6px 14px;
    margin-right: 5px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .w3l-headers-9 .overlay-menuv-hny {
    margin-top: 3px;
  }

  .w3l-headers-9 .nav-right-sty {
    grid-gap: 20px;
  }

  .w3l-headers-9 nav.menu-side-over-left {
    grid-template-columns: repeat(auto-fit, minmax(124px, 100px));
  }

  .w3l-headers-9 .bottom-menu-content label.menu-bar:before,
  .w3l-headers-9 .bottom-menu-content label.menu-bar:after,
  .w3l-headers-9 .bottom-menu-content input#nav:before {
    width: 35px;
    height: 3px;
    right: 5px;
  }

  .w3l-headers-9 header {
    padding: 8px 0;
  }
}

@media (max-width: 384px) {
  .w3l-headers-9 a.link-nav {
    font-size: 16px;
  }

  .w3l-headers-9 .nav-right-sty {
    grid-gap: 10px;
  }

  .w3l-headers-9 .overlay-menuv ul li a {
    font-size: 16px;
  }

  .w3l-headers-9 .buttonbg {
    padding: 13px 25px;
  }

  .w3l-headers-9 ul.first-dropdwon {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }

  .w3l-headers-9 nav ul.sec-drop {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }
}

@media (max-width: 320px) {
  .w3l-headers-9 nav.menu-side-over-left {
    grid-template-columns: repeat(auto-fit, minmax(100px, 100px));
  }
}

.w3l-banner-3-main {
  /* responsive */
  /* //responsive */
}

.w3l-banner-3-main .banner-3 {
  background: url(../images/36.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  position: relative;
  background-repeat: repeat-x;
  animation: slideleft 10000s infinite linear;
  -webkit-animation: slideleft 10000s infinite linear;
  z-index: 0;
}

.w3l-banner-3-main .banner-3:before {
  content: "";
  background: rgba(16, 16, 16, 0.46);
  position: absolute;
  top: 0;
  min-height: 100%;
  left: 0;
  right: 0;
  z-index: -1;
}

.w3l-banner-3-main .cover-top-center-9 {
  min-height: 36em;
  display: grid;
  align-items: center;
  min-height: 72vh;
}

.w3l-banner-3-main .w3ls_cover_txt-9 {
  max-width: 750px;
  text-align: center;
  margin: 0 auto;
}

.w3l-banner-3-main h3.title-cover-9 {
  font-size: 42px;
  line-height: 48px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.w3l-banner-3-main p.para-cover-9 {
  color: #eee;
}

@keyframes slideleft {
  from {
    background-position: 0%;
  }

  to {
    background-position: 90000%;
  }
}

@-webkit-keyframes slideleft {
  from {
    background-position: 0%;
  }

  to {
    background-position: 90000%;
  }
}

@media (max-width: 667px) {
  .w3l-banner-3-main h3.title-cover-9 {
    font-size: 40px;
    line-height: 46px;
  }
}

@media (max-width: 600px) {
  .w3l-banner-3-main h3.title-cover-9 {
    font-size: 37px;
    line-height: 44px;
  }
}

@media (max-width: 640px) {
  .w3l-banner-3-main .w3ls_cover_txt-9 {
    margin: 0 2em;
  }
}

@media (max-width: 480px) {
  .w3l-banner-3-main h3.title-cover-9 {
    font-size: 32px;
    line-height: 35px;
    margin: 0 0 15px;
  }

  .w3l-banner-3-main .w3ls_cover_txt-9 {
    margin: 0 1em;
  }

  .w3l-banner-3-main p.para-cover-9 {
    font-size: 16px;
  }

  .w3l-banner-3-main .cover-top-center-9 {
    min-height: 28em;
    min-height: 68vh;
  }
}

@media (max-width: 414px) {
  .w3l-banner-3-main p.para-cover-9 {
    font-size: 15px;
    line-height: 22px;
  }
}

@media (max-width: 320px) {
  .w3l-banner-3-main h3.title-cover-9 {
    font-size: 30px;
    line-height: 28px;
  }
}

.w3l-search-form-3-main .search-form-3 {
  background: #f8f8f8;
  padding: 30px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.22);
}

.w3l-search-form-3-main form.search-3-gd {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 10px;
}

.w3l-search-form-3-main .grids-icon {
  background: #fff;
  padding: 0px 20px;
  font-size: 16px;
  outline: none;
  width: 100%;
  border: none;
  height: 50px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  font-family: "Lato","微軟正黑體","Microsoft JhengHei",Helvetica,Arial,sans-serif;
  border: 1px solid #e8e8e8;
  align-items: center;
}

.w3l-search-form-3-main .grids-icon span {
  width: 10%;
}

.w3l-search-form-3-main .grids-icon input,
.w3l-search-form-3-main .input-group-btn select {
  border: none;
  width: 90%;
  padding-left: 10px;
  line-height: 35px;
  font-size: 16px;
  color: #777;
  background: #fff;
}

.w3l-search-form-3-main .grids-icon-2 {
  padding: 0px 20px 0 20px;
}

.w3l-search-form-3-main .input-group-btn select {
  -webkit-appearance: none;
  width: 100%;
  background: url(../images/down.png) no-repeat 100% 52%;
}

.w3l-search-form-3-main .input-group-btn {
  width: 90%;
}

.w3l-search-form-3-main .input-group-btn select option {
  padding: 10px;
  background: #f9f9f9;
}

.w3l-search-form-3-main .input-group-btn select option:hover {
  background: #333;
  color: #fff;
}

.w3l-search-form-3-main .button-eff {
  height: 46px;
}

@media (max-width: 991px) {
  .w3l-search-form-3-main form.search-3-gd {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }
}

@media (max-width: 480px) {
  .w3l-search-form-3-main form.search-3-gd {
    grid-template-columns: 1fr;
  }

  .w3l-search-form-3-main .grids-icon span {
    width: 9%;
  }
}

.w3l-category-main .categories-sec {
  padding: 80px 0;
}

.w3l-category-main .grid-sec {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
}

.w3l-category-main .card {
  background: var(--main-bg-color);
  padding: 40px;
  border: 1px solid #e6e6e6;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -o-transition: 0.3s all;
  -ms-transition: 0.3s all;
}

.w3l-category-main .card:hover {
  box-shadow: 7px 7px 10px 0 rgba(76, 110, 245, 0.1);
}

.w3l-category-main .grid-sec a:hover {
  opacity: 1;
}

.w3l-category-main .card-body span {
  font-size: 35px;
  color: var(--theme-color-2);
}

.w3l-category-main h5.card-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 12px;
}

.w3l-category-main p.para-design {
  font-size: 14px;
  margin-top: 2px;
}

.w3l-category-main .grid-sec-2 {
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  max-width: 545px;
  margin: auto;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .w3l-category-main .grid-sec {
    grid-template-columns: 1fr 1fr;
  }

  .w3l-category-main .grid-sec-2 {
    max-width: 100%;
  }

  .w3l-category-main .categories-sec {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .w3l-category-main .card {
    padding: 40px 20px;
  }

  .w3l-category-main .categories-sec {
    padding: 40px 0;
  }
}

@media (max-width: 400px) {
  .w3l-category-main .card {
    padding: 30px 10px;
  }
}

@media (max-width: 360px) {

  .w3l-category-main .grid-sec,
  .w3l-category-main .grid-sec-2 {
    grid-template-columns: 1fr;
  }
}

/*-- Products4-block --*/
.w3l-products-4 #products4-block {
  padding: 80px 0;
  background-color: var(--main-bg-color);
}

.w3l-products-4 .grid-col-3 {
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

.w3l-products-4 .product a {
  display: block;
}

.w3l-products-4 .product {
  position: relative;
}

.w3l-products-4 .product-details {
  position: absolute;
  bottom: 30px;
  width: 100%;
}

.w3l-products-4 .product-details a {
  font-size: 20px;
  line-height: 25px;
  color: #304659;
  margin-bottom: 10px;
  font-weight: bold;
}

.w3l-products-4 .product-details a:hover {
  opacity: 0.8;
}

.w3l-products-4 span.price {
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 25px;
  color: #3B5266;
}

.w3l-products-4 section.tab-content {
  display: none;
  padding: 3em 0 0;
}

.w3l-products-4 label.tabtle {
  display: inline-block;
  text-align: center;
  color: var(--title-color);
  margin: 0 10px;
  font-size: 16px;
  background: #ededed;
  padding: 10px 20px;
  font-weight: 600;
}

.w3l-products-4 label.tabtle:before {
  font-family: "Lato","微軟正黑體","Microsoft JhengHei",Helvetica,Arial,sans-serif;
  font-weight: normal;
  margin-right: 10px;
}

.w3l-products-4 label.tabtle:hover {
  color: #304659;
  cursor: pointer;
}

.w3l-products-4 input:checked+label.tabtle {
  color: #fff;
  background: var(--theme-color-2);
}

.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;
}

.w3l-products-4 .info-bg {
  background: #fff;
  padding: 25px 20px;
  box-shadow: 0 10px 30px 0 rgba(17, 17, 17, 0.09);
}

.w3l-products-4 .info-bg h5 a {
  font-size: 20px;
  line-height: 25px;
  color: var(--title-color);
  font-weight: 600;
  display: block;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.w3l-products-4 .info-bg h5 a:hover {
  color: #000000;
}

.w3l-products-4 .info-bg p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 23px;
  color: var(--para-color);
  margin-top: 10px;
  margin-bottom: 20px;
}

.w3l-products-4 .info-bg span.price {
  color: var(--theme-color-1);
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
}

.w3l-products-4 .info-bg ul li {
  display: inline-block;
  font-weight: bold;
  font-size: 17px;
  line-height: 25px;
  color: var(--theme-color-2);
}

.w3l-products-4 .info-bg li.margin-effe {
  margin-left: auto;
  margin-right: 1em;
}

.w3l-products-4 .info-bg ul li a span {
  color: var(--theme-color-1);
  font-size: 14px;
}

@media all and (max-width: 1080px) {
  .w3l-products-4 .grid-col-3 {
    grid-gap: 15px;
  }

  .w3l-products-4 .info-bg h5 a {
    font-size: 19px;
  }
}

@media all and (max-width: 1024px) {
  .w3l-products-4 h3.heading-title {
    font-size: 42px;
    line-height: 48px;
    margin-bottom: 46px;
  }
}

@media screen and (max-width: 900px) {
  .w3l-products-4 .grid-col-3 {
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
  }
}

@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-row-gap: 30px;
  }

  .w3l-products-4 h3.heading-title {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 40px;
  }

  .w3l-products-4 #products4-block {
    padding: 60px 0;
  }

  .w3l-products-4 label.tabtle {
    margin: 0 2px;
  }
}

@media screen and (max-width: 600px) {
  .w3l-products-4 h3.heading-title {
    font-size: 38px;
    line-height: 42px;
    margin-bottom: 30px;
  }

  .w3l-products-4 label.tabtle {
    margin: 0 5px;
  }

  .w3l-products-4 .grid-col-3 {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .w3l-products-4 #products4-block {
    padding: 50px 0;
  }

  .w3l-products-4 label.tabtle {
    margin: 0 0px;
  }

  .w3l-products-4 label.tabtle {
    padding: 10px 10px;
  }

  .w3l-products-4 section.tab-content {
    padding: 2em 0 0;
  }
}

@media screen and (max-width: 440px) {
  .w3l-products-4 h3.heading-title {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 25px;
  }

  .w3l-products-4 label.tabtle,
  .w3l-products-4 input:checked+label.tabtle {
    font-size: 15px;
    margin: 0 0px;
  }

  .w3l-products-4 section.tab-content {
    padding: 28px 0 0;
  }
}

@media screen and (max-width: 414px) {

  .w3l-products-4 label.tabtle,
  .w3l-products-4 input:checked+label.tabtle {
    padding: 6px 15px;
  }

  .w3l-products-4 label.tabtle,
  .w3l-products-4 input:checked+label.tabtle {
    padding: 9px 10px;
  }
}

@media screen and (max-width: 384px) {

  .w3l-products-4 label.tabtle,
  .w3l-products-4 input:checked+label.tabtle {
    padding: 6px 10px;
  }
}

@media screen and (max-width: 368px) {

  .w3l-products-4 label.tabtle,
  .w3l-products-4 input:checked+label.tabtle {
    font-size: 13px;
  }
}

.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/bg.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  background-attachment: fixed;
}

.w3l-specifications-9 .overlay {
  padding: 7rem 0;
  background: rgba(0, 0, 0, 0.65);
}

.w3l-specifications-9 h3.title-spe {
  color: #ffffff;
  font-size: 35px;
  display: inline-block;
}

.w3l-specifications-9 .grids-speci p {
  font-size: 15px;
  color: #f7f7f7;
}

.w3l-specifications-9 .stats-icon {
  display: block;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.11);
}

.w3l-specifications-9 .grids-speci span {
  color: var(--theme-color-2);
  display: block;
  font-size: 25px;
  line-height: 75px;
}

.w3l-specifications-9 .grids-speci {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 15px;
}

@media (max-width: 767px) {
  .w3l-specifications-9 .grids-speci:nth-child(3) {
    margin-top: 2em;
  }
}

@media (max-width: 736px) {

  .w3l-specifications-9 .grids-speci:nth-child(1),
  .w3l-specifications-9 .grids-speci:nth-child(2) {
    margin-top: 0;
  }

  .w3l-specifications-9 .overlay {
    padding: 5rem 0;
  }
}

@media (max-width: 480px) {
  .w3l-specifications-9 .grids-speci {
    margin-top: 4rem;
  }

  .w3l-specifications-9 .overlay {
    padding: 3rem 0;
  }

  .w3l-specifications-9 h3.title-spe {
    font-size: 32px;
  }
}

@media (max-width: 430px) {
  .w3l-specifications-9 .d-flex {
    max-width: 200px;
  }

  .w3l-specifications-9 .grids-speci:nth-child(3),
  .w3l-specifications-9 .grids-speci:nth-child(2) {
    margin-top: .5em;
  }

  .w3l-specifications-9 .grids-speci {
    padding: .5em;
  }

  .w3l-specifications-9 .grids-speci {
    flex: 0 0 100%;
    max-width: 100%;
    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-pricing-7*/
.w3l-pricing-7-main .pricing-7-sec {
  background: #fff;
  padding: 80px 0;
}

.w3l-pricing-7-main .pricing-sec-7 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 80px auto 0;
  width: 90%;
}

.w3l-pricing-7-main ul.links {
  min-height: 120px;
}

.w3l-pricing-7-main ul.links li {
  display: grid;
  grid-template-columns: 1fr 5fr;
  grid-gap: 10px;
}

.w3l-pricing-7-main .tick-mark {
  text-align: center;
}

.w3l-pricing-7-main ul.links li span {
  color: #4c4c4c;
}

.w3l-pricing-7-main h5 {
  font-size: 15px;
  line-height: 20px;
  color: var(--theme-color-1);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 46px;
}

.w3l-pricing-7-main h6 {
  font-size: 16px;
  line-height: 20px;
  color: #333;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 25px;
  padding: 12px;
  background: var(--main-bg-color);
}

.w3l-pricing-7-main h4 label {
  font-size: 25px;
  vertical-align: text-top;
}

.w3l-pricing-7-main h4 {
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 30px;
  text-align: center;
}

.w3l-pricing-7-main h4 span {
  font-size: 16px;
  line-height: 25px;
  color: #c3cac3;
  font-weight: 400;
}

.w3l-pricing-7-main p.tick-info {
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
}

.w3l-pricing-7-main p.pric-foot {
  text-align: center;
  font-size: 17px;
  line-height: 25px;
  margin-top: 40px;
}

.w3l-pricing-7-main p.pric-foot a {
  font-size: 17px;
  line-height: 25px;
  font-weight: 700;
  color: #304659;
  text-decoration: none;
}

.w3l-pricing-7-main p.pric-foot img {
  vertical-align: middle;
}

.w3l-pricing-7-main ul.links li {
  list-style: none;
  margin-bottom: 14px;
  color: #304659;
}

.w3l-pricing-7-main .pricing-gd-left {
  padding: 2em 2.5em 3em;
  border: 2px solid #e6e6e6;
}

.w3l-pricing-7-main .pric-7-1 {
  padding: 5em 2.5em;
  border: 2px solid #e6e6e6;
  border-right: 0;
}

.w3l-pricing-7-main .pric-7-2 {
  padding: 5em 2.5em;
  border: 2px solid #e6e6e6;
  border-left: 0;
}

.w3l-pricing-7-main .pricing-gd-left.active {
  border: 2px solid #e6e6e6;
  transform: scale(1.06);
  -webkit-transform: scale(1.06);
  -moz-transform: scale(1.06);
  -o-transform: scale(1.06);
  -ms-transform: scale(1.06);
  z-index: 1;
  margin: 0 8px;
  box-shadow: 0 10px 30px 0 rgba(17, 17, 17, 0.09);
}

.w3l-pricing-7-main .buy-button {
  margin-top: 3.5em;
}

.w3l-pricing-7-main .buy-button a {
  width: 100%;
}

@media (max-width: 1366px) {
  .w3l-pricing-7-main .pricing-sec-7 {
    width: 90%;
  }
}

@media (max-width: 1080px) {
  .w3l-pricing-7-main .pricing-sec-7 {
    width: 100%;
  }
}

@media (max-width: 1024px) {

  .w3l-pricing-7-main .pric-7-1,
  .w3l-pricing-7-main .pric-7-2 {
    padding: 5em 2em;
  }

  .w3l-pricing-7-main .pricing-gd-left {
    padding: 1em 2em 3em;
  }
}

@media (max-width: 900px) {
  .w3l-pricing-7-main .pricing-7-sec {
    padding: 60px 0;
  }
}

@media (max-width: 991px) {
  .w3l-pricing-7-main .pricing-sec-7 {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    margin: 50px auto 0;
  }

  .w3l-pricing-7-main .pric-7-1 {
    border: 2px solid #dcefdc;
  }

  .w3l-pricing-7-main .pric-7-2 {
    border: 2px solid #dcefdc;
  }

  .w3l-pricing-7-main .pricing-sec-7 {
    width: 70%;
  }

  .w3l-pricing-7-main .pricing-gd-left {
    padding: 2em 2em 3em;
  }

  .w3l-pricing-7-main h6 {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .w3l-pricing-7-main .pricing-sec-7 {
    width: 75%;
  }
}

@media (max-width: 600px) {
  .w3l-pricing-7-main .pricing-7-sec {
    padding: 50px 0;
  }

  .w3l-pricing-7-main p.pric-foot {
    margin-top: 25px;
  }
}

@media (max-width: 568px) {
  .w3l-pricing-7-main .pricing-7-sec h2 {
    margin-bottom: 1.3em;
  }

  .w3l-pricing-7-main .pricing-sec-7 {
    grid-gap: 30px;
    margin: 30px auto 0;
  }
}

@media (max-width: 480px) {
  .w3l-pricing-7-main .pricing-sec-7 {
    width: 80%;
  }
}

@media (max-width: 414px) {
  .w3l-pricing-7-main .pricing-sec-7 {
    width: 100%;
  }
}

/* //w3l-pricing-7*/
.w3l-content-11-main {
  /*-- responsive design --*/
}

.w3l-content-11-main .content-sec-11 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
  grid-row-gap: 35px;
}

.w3l-content-11-main .content-design-11 {
  padding: 80px 0px;
  background: var(--main-bg-color);
}

.w3l-content-11-main .content-text h4 {
  font-size: 20px;
  margin-bottom: 6px;
  font-weight: 600;
}

.w3l-content-11-main .services-title h3 {
  font-size: 45px;
  line-height: 50px;
  margin-bottom: 50px;
  text-align: center;
  text-transform: capitalize;
}

.w3l-content-11-main .content-text-left p,
.w3l-content-11-main .content-text-right p {
  font-size: 16px;
  line-height: 24px;
  color: var(--para-color);
}

.w3l-content-11-main span.number {
  width: 30px;
  height: 30px;
  line-height: 26px;
  border: 1px solid #3B5266;
  display: block;
  text-align: center;
  border-radius: 50%;
  color: #304659;
  margin-top: 5px;
}

.w3l-content-11-main .columns {
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 20px;
}

.w3l-content-11-main .columns .icon-eff {
  line-height: 60px;
  background: rgba(248, 92, 112, 0.11);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  transition: .3s ease-in;
}

.w3l-content-11-main .columns span {
  font-size: 22px;
  color: var(--theme-color-2);
  line-height: 60px;
}

.w3l-content-11-main .columns:hover .icon-eff {
  background: var(--theme-color-2);
  transition: .3s ease-in;
}

.w3l-content-11-main .columns:hover span {
  color: #fff;
  transition: .3s ease-in;
}

.w3l-content-11-main .content-text-left,
.w3l-content-11-main .content-text-right {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
}

@media (max-width: 1080px) {
  .w3l-content-11-main content-sec-11 {
    grid-column-gap: 30px;
  }
}

@media (max-width: 991px) {
  .w3l-content-11-main .content-sec-11 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 800px) {
  .w3l-content-11-main content-sec-11 {
    grid-column-gap: 20px;
  }
}

@media (max-width: 768px) {
  .w3l-content-11-main .content-sec-11 {
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
  }
}

@media (max-width: 668px) {
  .w3l-content-11-main content-sec-11 {
    grid-column-gap: 40px;
  }
}

@media (max-width: 640px) {
  .w3l-content-11-main content-sec-11 {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
  }

  .w3l-content-11-main .content-text-left,
  .w3l-content-11-main .content-text-right {
    grid-gap: 20px;
  }
}

@media (max-width: 480px) {
  .w3l-content-11-main .content-design-11 {
    padding: 40px 0px;
  }

  .w3l-content-11-main .content-text-left,
  .w3l-content-11-main .content-text-right {
    grid-gap: 20px;
  }
}

@media (max-width: 415px) {
  .w3l-content-11-main span.number {
    width: 28px;
    height: 28px;
    line-height: 24px;
  }

  .w3l-content-11-main .columns {
    grid-column-gap: 10px;
  }
}

/*-- grids block 5 --*/
.w3l-new-block-6 #grids5-block {
  padding: 80px 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-2);
  font-size: 16px;
  margin: 0 6px 0 0;
}

.w3l-new-block-6 -title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.w3l-new-block-6 -title h3 {
  font-size: 45px;
  line-height: 50px;
  color: var(--title-color);
}

.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;
  font-size: 15px;
  line-height: 23px;
}

.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: 991px) {
  .w3l-new-block-6 #grids5-block {
    padding: 60px 0;
  }
}

@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 -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: 480px) {
  .w3l-new-block-6 #grids5-block {
    padding: 40px 0;
  }
}

@media all and (max-width: 414px) {
  .w3l-new-block-6 .grids5-info h4 a {
    font-size: 23px;
  }

  .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;
  }
}

.w3l-grids-9-main .grid-col-2 {
  grid-template-columns: 1fr 1fr;
}

.w3l-grids-9-main .grid-col-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.w3l-grids-9-main .align-center {
  text-align: center;
}

.w3l-grids-9-main .grid-top-9 {
  padding: 80px 0;
}

.w3l-grids-9-main .grid-element-9 {
  grid-gap: 20px;
  align-items: center;
}

.w3l-grids-9-main h4.text-grid-9 a {
  font-size: 30px;
  line-height: 35px;
  color: #fff;
  margin-bottom: 0px;
  display: inline-block;
  font-weight: 600;
}

.w3l-grids-9-main p.sub-para {
  color: #eee;
  font-size: 16px;
  line-height: 25px;
  font-weight: normal;
}

.w3l-grids-9-main .left-grid-ele-9 {
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  padding: 40px 50px;
  min-height: 300px;
  display: grid;
  align-content: end;
  position: relative;
  z-index: 1;
}

.w3l-grids-9-main .grid-bg1 {
  background: url(../images/l3.jpg) no-repeat center;
}

.w3l-grids-9-main .grid-bg2 {
  background: url(../images/l4.jpg) no-repeat center;
}

.w3l-grids-9-main .grid-bg3 {
  background: url(../images/l1.jpg) no-repeat center;
}

.w3l-grids-9-main .grid-bg4 {
  background: url(../images/l5.jpg) no-repeat center;
}

.w3l-grids-9-main .grid-bg5 {
  background: url(../images/l2.jpg) no-repeat center;
}

.w3l-grids-9-main .margin-bottom {
  margin-bottom: 20px;
}

.w3l-grids-9-main .left-grid-ele-9:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(10, 9, 9, 0.15);
  z-index: -1;
}

.w3l-grids-9-main .sub-wid-grid-9 {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  text-align: center;
  line-height: 1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 20px 40px;
}

@media (max-width: 1080px) {
  .w3l-grids-9-main .left-grid-ele-9 {
    padding: 90px 40px 85px;
  }

  .w3l-grids-9-main h4.text-grid-9 a {
    font-size: 26px;
    line-height: 32px;
  }
}

@media (max-width: 991px) {
  .w3l-grids-9-main .left-grid-ele-9 {
    padding: 50px 6px 30px;
  }

  .w3l-grids-9-main .grid-top-9 {
    padding: 60px 0;
  }
}

@media (max-width: 900px) {
  .w3l-grids-9-main .grid-col-3 {
    grid-template-columns: 1fr;
  }

  .w3l-grids-9-main .grid-col-2 {
    grid-template-columns: 1fr;
  }

  .w3l-grids-9-main .left-grid-ele-9 {
    padding: 50px 80px 30px;
  }
}

@media (max-width: 800px) {
  .w3l-grids-9-main .left-grid-ele-9 {
    padding: 80px 40px 45px;
  }

  .w3l-grids-9-main h4.text-grid-9 a {
    font-size: 33px;
  }
}

@media (max-width: 667px) {
  .w3l-grids-9-main .left-grid-ele-9 {
    padding: 65px 20px 40px;
  }

  .w3l-grids-9-main h4.text-grid-9 a {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .w3l-grids-9-main .grid-element-9 {
    grid-template-columns: 1fr;
  }

  .w3l-grids-9-main .grid-top-9 {
    padding: 40px 0;
  }
}

.w3l-footer-22 .footer {
  padding: 80px 0;
  background: var(--theme-color-1);
}

.w3l-footer-22 .text-txt h3 {
  color: #304659;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 20px;
}

.w3l-footer-22 .sub-one-left h6,
.w3l-footer-22 .sub-two-right h6 {
  color: #eee;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(23, 54, 88, 0.4);
  padding-bottom: 10px;
}

.w3l-footer-22 .sub-two-right ul li {
  list-style: none;
}

.w3l-footer-22 .sub-two-right ul li span {
  margin-right: 10px;
  color: #fff;
}

.w3l-footer-22 .sub-one-left p,
.w3l-footer-22 .sub-two-right p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #cecece;
}

.w3l-footer-22 .sub-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  grid-gap: 50px;
  margin-top: 60px;
}

.w3l-footer-22 ul.social li,
.w3l-footer-22 ul.jst-link li {
  display: inline-block;
  margin-right: 5px;
}

.w3l-footer-22 ul.social li a {
  color: #fff;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-block;
  border-radius: 50%;
  text-align: center;
}

.w3l-footer-22 ul.social li a:hover {
  opacity: 0.8;
  transition: 0.3s ease;
}

.w3l-footer-22 ul.social li a span {
  font-size: 15px;
  line-height: 35px;
}

.w3l-footer-22 .columns-2 {
  margin-top: 1.2em;
}

.w3l-footer-22 .columns p,
.w3l-footer-22 .columns p a {
  font-size: 15px;
  line-height: 20px;
  color: #a0a0a0;
}

.w3l-footer-22 .sub-two-right ul li a {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #cecece;
  margin: 0 0 10px 0;
  display: block;
}

.w3l-footer-22 .columns p a {
  color: #fff;
}

.w3l-footer-22 .columns p a:hover {
  color: #fff;
  text-decoration: underline;
}

.w3l-footer-22 .copyright-footer ul li {
  display: inline-block;
}

.w3l-footer-22 .right-side h4 {
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 100;
}

.w3l-footer-22 .copyright-footer {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  grid-gap: 20px;
}

.w3l-footer-22 .below-section {
  background: #060e1f;
  padding: 16px 0;
  justify-content: space-between;
}

.w3l-footer-22 .column2 span {
  font-size: 18px;
  color: #fff;
  vertical-align: middle;
  margin-right: 10px;
  width: 25px;
  text-align: center;
}

.w3l-footer-22 .column2 a {
  text-decoration: none;
  color: #cecece;
  line-height: 25px;
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
}

.w3l-footer-22 p.para-sep {
  text-align: center;
  margin-top: 10px;
  color: #a0a0a0;
  font-size: 16px;
}

.w3l-footer-22 p.para-sep a {
  color: #eee;
}

.w3l-footer-22 .href2 {
  margin-top: 10px;
  padding: 10px 0;
}

.w3l-footer-22 .contact-para {
  color: #cecece;
  line-height: 25px;
  font-size: 17px;
  margin-top: 10px;
}

.w3l-footer-22 #movetop {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 99;
  font-size: 12px;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  width: 45px;
  height: 45px;
  background: var(--theme-color-2);
  padding: 0;
  line-height: 45px;
  transition: 0.5s ease-out;
  border-radius: 50%;
}

.w3l-footer-22 #movetop:hover {
  background: var(--theme-color);
  color: var(--white-color);
}

@media (max-width: 1080px) {
  .w3l-footer-22 .text-txt {
    grid-gap: 50px;
  }
}

@media (max-width: 991px) {
  .w3l-footer-22 .text-txt {
    grid-template-columns: 1fr;
  }

  .w3l-footer-22 .sub-columns {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .w3l-footer-22 .footer {
    padding: 60px 0;
  }

  .w3l-footer-22 .href2 {
    padding: 6px 0;
  }
}

@media (max-width: 800px) {
  .w3l-footer-22 .subscride-link h4 {
    margin-top: 60px;
  }

  .w3l-footer-22 .right-side h4 {
    font-size: 28px;
    line-height: 33px;
  }

  .w3l-footer-22 .sub-columns {
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  .w3l-footer-22 .below-section {
    grid-template-columns: 1fr 1fr;
  }

  .w3l-footer-22 .copyright-footer {
    grid-template-columns: 1fr;
  }

  .w3l-footer-22 .columns.text-right {
    text-align: center !important;
  }

  .w3l-footer-22 .sub-columns {
    grid-template-columns: 1fr 1fr;
  }

  .w3l-footer-22 .copyright-footer .text-left,
  .w3l-footer-22 .copyright-footer .text-right {
    text-align: center;
  }
}

@media (max-width: 736px) {

  .w3l-footer-22 .sub-one-left h6,
  .w3l-footer-22 .sub-two-right h6 {
    margin-bottom: 10px;
    padding-bottom: 7px;
  }

  .w3l-footer-22 .footer {
    padding: 40px 0;
  }
}

@media (max-width: 568px) {
  .w3l-footer-22 .subscride-link h4 {
    margin-top: 50px;
  }

  .w3l-footer-22 .text-txt {
    grid-gap: 40px;
  }

  .w3l-footer-22 .sub-columns {
    margin-top: 50px;
    grid-gap: 40px;
  }
}

@media (max-width: 520px) {
  .w3l-footer-22 .sub-columns {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .w3l-footer-22 .href2 {
    padding: 4px 0;
  }
}

@media (max-width: 440px) {
  .w3l-footer-22 .below-section {
    grid-template-columns: 1fr;
  }

  .w3l-footer-22 .right-side h4 {
    font-size: 25px;
  }
}

.w3l-inner-banner-main .about-inner {
  background: url(../images/36.jpg) no-repeat bottom;
}

.w3l-inner-banner-main .inner2 {
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  position: relative;
  z-index: 0;
}

.w3l-inner-banner-main .inner2:before {
  content: "";
  position: absolute;
  top: 0;
  min-height: 100%;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: rgba(16, 16, 16, 0.48);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.w3l-inner-banner-main h4.title {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
}

.w3l-inner-banner-main ul.breadcrumbs-custom-path li {
  display: inline-block;
}

.w3l-inner-banner-main ul.breadcrumbs-custom-path li,
.w3l-inner-banner-main ul.breadcrumbs-custom-path li a {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}

.w3l-inner-banner-main .seen-w3 {
  padding: 5em 0;
  display: grid;
  align-items: center;
  text-align: center;
}

.w3l-inner-banner-main ul.breadcrumbs-custom-path li span {
  margin: 0 10px;
}

.w3l-inner-banner-main ul.breadcrumbs-custom-path li.active {
  font-weight: 100;
}

@media (max-width: 991px) {
  .w3l-inner-banner-main .seen-w3 {
    padding: 3em 0;
  }

  .w3l-inner-banner-main h4.title {
    font-size: 35px;
  }

  .w3l-inner-banner-main ul.breadcrumbs-custom-path li,
  .w3l-inner-banner-main ul.breadcrumbs-custom-path li a {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .w3l-inner-banner-main .seen-w3 {
    padding: 2.5em 0;
  }

  .w3l-inner-banner-main h4.title {
    font-size: 30px;
  }
}

@media (max-width: 568px) {
  .w3l-inner-banner-main .seen-w3 {
    padding: 2.5em 1em;
  }

  .w3l-inner-banner-main ul.breadcrumbs-custom-path li span {
    margin: 0 6px;
  }
}

@media (max-width: 384px) {
  .w3l-inner-banner-main h4.title {
    font-size: 25px;
    line-height: 30px;
  }

  .w3l-inner-banner-main ul.breadcrumbs-custom-path li,
  .w3l-inner-banner-main ul.breadcrumbs-custom-path li a {
    font-size: 15px;
  }
}

@media (max-width: 370px) {
  .w3l-inner-banner-main .seen-w3 {
    grid-auto-flow: row;
  }

  .w3l-inner-banner-main ul.breadcrumbs-custom-path {
    margin-top: 10px;
  }
}

.w3l-contact-main {
  /* contact */
  /* contact form */
  /* //contact form */
  /* contact address */
  /* //contact address */
  /* //contact */
}

.w3l-contact-main .content-grids-cont {
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.w3l-contact-main .form-group {
  margin-bottom: 1em;
}

.w3l-contact-main .form-group .form-control {
  padding: 12px;
  color: #495057;
  border: 1px solid #d2d6da;
  border-radius: 0px;
  font-size: 16px;
  width: 100%;
}

.w3l-contact-main .contact-form label {
  color: var(--sub-title-color);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.w3l-contact-main .contact-form textarea {
  resize: none;
  min-height: 11em;
}

.w3l-contact-main button.button-eff-2 {
  margin-top: 1em;
  padding: 10px 40px;
}

.w3l-contact-main .temp-cont-grid {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1000px;
  margin: auto;
}

.w3l-contact-main .adress-info {
  grid-template-columns: 50px auto;
}

.w3l-contact-main .adress-info h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.w3l-contact-main .adress-info span {
  color: var(--title-color);
  font-size: 2em;
}

.w3l-contact-main .adress-info a,
.w3l-contact-main .adress-info p {
  color: var(--para-color);
  font-size: 15px;
  line-height: 25px;
}

.w3l-contact-main .contact-form {
  border-bottom: 1px solid #ddd;
  margin-bottom: 5em;
  padding-bottom: 6em;
}

.w3l-contact-main .adress-icon {
  padding-right: 0;
}

.w3l-contact-main .map {
  border: 7px solid var(--main-bg-color);
  margin-top: 5em;
  border-radius: 4px;
  box-shadow: 0px 6px 21px 0 rgba(17, 17, 17, 0.16);
}

.w3l-contact-main .map iframe {
  height: 400px;
}

@media (max-width: 991px) {
  .w3l-contact-main .contact-form {
    margin-bottom: 4em;
    padding-bottom: 5em;
  }
}

@media (max-width: 768px) {
  .w3l-contact-main .temp-cont-grid {
    grid-template-columns: 1fr 1fr;
  }

  .w3l-contact-main .adress-info:nth-child(3) {
    margin-top: 1em;
  }

  .w3l-contact-main .map {
    margin-top: 3em;
  }

  .w3l-contact-main .map iframe {
    height: 300px;
  }

  .w3l-contact-main .contact-form {
    margin-bottom: 3em;
    padding-bottom: 4em;
  }
}

@media (max-width: 420px) {
  .w3l-contact-main .temp-cont-grid {
    grid-template-columns: 1fr;
  }

  .w3l-contact-main .adress-info:nth-child(2) {
    margin-top: 1em;
  }
}

.w3l-covers-9-main {
  /* //covers */
  /* responsive */
  /* //responsive */
}

.w3l-covers-9-main .cover-top-center-9 {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  grid-gap: 40px;
}

.w3l-covers-9-main h6.tag-cover-9 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 100;
}

.w3l-covers-9-main h3.title-cover-9 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 600;
}

.w3l-covers-9-main p.para-cover-9 {
  margin: 15px 0 40px;
}

.w3l-covers-9-main .button-cover-9 {
  margin-top: 40px;
  display: inline-block;
}

@media (max-width: 991px) {
  .w3l-covers-9-main .cover-top-center-9 {
    grid-template-columns: 1fr;
  }

  .w3l-covers-9-main h3.title-cover-9 {
    font-size: 35px;
  }
}

@media (max-width: 667px) {
  .w3l-covers-9-main h3.title-cover-9 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .w3l-covers-9-main h3.title-cover-9 {
    font-size: 30px;
    line-height: 35px;
  }

  .w3l-covers-9-main p.para-cover-9 {
    margin: 15px 0 30px;
  }
}

@media (max-width: 384px) {
  .w3l-covers-9-main h3.title-cover-9 {
    font-size: 32px;
    line-height: 38px;
  }

  .w3l-covers-9-main p.para-cover-9 {
    font-size: 16px;
  }

  .w3l-covers-9-main .cover-top-center-9 {
    margin: 0 .5em;
  }
}

@media (max-width: 440px) {
  .w3l-covers-9-main h3.title-cover-9 {
    font-size: 28px;
    line-height: 32px;
  }
}

@media (max-width: 414px) {
  .w3l-covers-9-main p.para-cover-9 {
    font-size: 15px;
    line-height: 22px;
  }
}

.w3l-features-4 {
  /*-- features4 --*/
}

.w3l-features-4 .features4-block {
  padding: 80px 0;
  background: var(--main-bg-color);
}

.w3l-features-4 .features4-grid h5 {
  margin: 20px 0 10px;
}

.w3l-features-4 .features4-grids {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
  text-align: center;
}

.w3l-features-4 .features4-grid {
  box-shadow: 0 10px 30px 0 rgba(17, 17, 17, 0.02);
  background: #fff;
  padding: 30px;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

.w3l-features-4 .feature-images span {
  color: var(--theme-color-2);
  font-size: 28px;
  line-height: 75px;
}

.w3l-features-4 .feature-images {
  display: block;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  text-align: center;
  margin: 0 auto;
  background: rgba(248, 92, 112, 0.17);
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

.w3l-features-4 .features4-grid:hover .feature-images,
.w3l-features-4 .feature-images.active {
  background: var(--theme-color-2);
}

.w3l-features-4 .features4-grid:hover .feature-images span,
.w3l-features-4 .feature-images.active span {
  color: #fff;
}

.w3l-features-4 .features4-grid:hover,
.w3l-features-4 .features4-grid.active {
  box-shadow: 0 10px 30px 0 rgba(17, 17, 17, 0.13);
}

.w3l-features-4 .features4-grid h5 a {
  font-size: 22px;
  line-height: 25px;
  font-weight: 600;
}

.w3l-features-4 .features4-grid p {
  font-size: 16px;
  line-height: 24px;
}

.w3l-features-4 .middle-button {
  text-align: center;
  margin-top: 4em;
}

@media all and (max-width: 1080px) {
  .w3l-features-4 .features4-grid h5 a {
    font-size: 20px;
    line-height: 25px;
  }
}

@media all and (max-width: 992px) {
  .w3l-features-4 .features4-grids {
    grid-template-columns: 1fr 1fr;
  }

  .w3l-features-4 .features4-block {
    padding: 60px 0;
  }

  .w3l-features-4 .features4-grid h5 a {
    font-size: 18px;
  }

  .w3l-features-4 .features4-grid p {
    font-size: 16px;
  }
}

@media all and (max-width: 641px) {
  .w3l-features-4 .features4-block {
    padding: 50px 0;
  }

  .w3l-features-4 .features4-grids {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
  }

  .w3l-features-4 .middle-button {
    margin-top: 3em;
  }
}

@media all and (max-width: 600px) {
  .w3l-features-4 .features4-grid h5 a {
    margin-top: 15px;
  }

  .w3l-features-4 .features4-grid p {
    margin-top: 5px;
    margin-bottom: 15px;
  }

  .w3l-features-4 .features4-grid h5 {
    margin: 20px 0 10px 0;
  }

  .w3l-features-4 .features4-block {
    padding: 40px 0;
  }

  .w3l-features-4 .middle-button {
    margin-top: 2em;
  }
}

.w3l-cutomer-main-cont {
  /* testimonials */
  /* //testimonials */
}

.w3l-cutomer-main-cont .content-sec {
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}

.w3l-cutomer-main-cont .testimonials_grid {
  background: #fff;
  border-radius: 4px;
  box-shadow: -1px 7px 13px 0px rgba(10, 10, 10, 0.08);
  padding: 3rem;
}

.w3l-cutomer-main-cont .testi-img-res img {
  border-radius: 50%;
}

.w3l-cutomer-main-cont p.sub-test span {
  color: #e2e2e2;
  font-size: 28px;
  font-style: italic;
  margin-right: 10px;
}

.w3l-cutomer-main-cont .testi_grid p {
  font-size: 14px;
  color: #666;
}

.w3l-cutomer-main-cont .sub-author-con {
  grid-template-columns: .5fr 1fr;
  align-items: center;
  grid-gap: 20px;
  margin-top: 1.5em;
}

.w3l-cutomer-main-cont .testi_grid h5 {
  font-size: 17px;
  font-weight: 600;
}

@media all and (max-width: 991px) {
  .w3l-cutomer-main-cont .content-sec {
    grid-template-columns: 1fr 1fr;
  }
}

@media all and (max-width: 768px) {
  .w3l-cutomer-main-cont .content-sec {
    grid-template-columns: 1fr;
  }

  .w3l-cutomer-main-cont .sub-author-con {
    grid-template-columns: .2fr 1fr;
  }
}

@media all and (max-width: 480px) {
  .w3l-cutomer-main-cont .sub-author-con {
    grid-template-columns: .3fr 1fr;
  }
}

@media all and (max-width: 375px) {
  .w3l-cutomer-main-cont .sub-author-con {
    grid-template-columns: .5fr 1fr;
  }
}

@media all and (max-width: 340px) {
  .w3l-cutomer-main-cont .testimonials_grid {
    padding: 2rem;
  }
}

.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: 80px 0;
}

.w3l-gallery-25-top .box13 h3 a {
  font-size: 25px;
  line-height: 30px;
}

.w3l-gallery-25-top .box13 p {
  margin: 10px 0 30px;
}

.w3l-gallery-25-top .column.two {
  padding: 0 5em;
}

.w3l-gallery-25-top .box13 span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  display: block;
  font-size: 20px;
  text-align: center;
  background: rgba(248, 92, 112, 0.07);
  color: #EBAE0B;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .w3l-gallery-25-top .column.two {
    padding: 0 2em;
  }
}

@media (max-width: 1024px) {
  .w3l-gallery-25-top .column.two {
    padding: 0 3em;
  }

  .w3l-gallery-25-top .box13 h3 a {
    font-size: 23px;
  }
}

@media (max-width: 991px) {
  .w3l-gallery-25-top .grid-columns {
    grid-template-columns: 1fr;
  }

  .w3l-gallery-25-top .column.two {
    padding: 3em 3em;
    border-bottom: 2px solid #eaf0f5;
  }

  .w3l-gallery-25-top .gallery-25 {
    padding: 60px 0;
  }

  .w3l-gallery-25-top .column:nth-child(1) {
    order: 1;
  }

  .w3l-gallery-25-top .column:nth-child(2) {
    order: 2;
  }

  .w3l-gallery-25-top .column:nth-child(3) {
    order: 4;
  }

  .w3l-gallery-25-top .column:nth-child(4) {
    order: 3;
  }

  .w3l-gallery-25-top .column:nth-child(5) {
    order: 5;
  }

  .w3l-gallery-25-top .column:nth-child(6) {
    order: 6;
  }

  .w3l-gallery-25-top .column:nth-child(7) {
    order: 8;
  }

  .w3l-gallery-25-top .column:nth-child(8) {
    order: 7;
  }
}

@media (max-width: 600px) {
  .w3l-gallery-25-top .box13 h3 a {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .w3l-gallery-25-top .column.two {
    padding: 2em 2em;
  }

  .w3l-gallery-25-top .gallery-25 {
    padding: 40px 0;
  }
}

@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-blog-single .single {
  padding: 80px 0;
}

.w3l-blog-single .grid-colunm-2 {
  grid-template-columns: 2fr .9fr;
  grid-gap: 40px;
}

.w3l-blog-single .w3-blog-info {
  padding: 25px 20px;
  border: 2px solid #eee;
  border-top: none;
}

.w3l-blog-single .w3-blog-info h4 {
  font-size: 22px;
}

.w3l-blog-single .w3-blog-info a.btn {
  background: none;
  color: var(--theme-color);
  padding: 10px 30px;
  display: inline-block;
  letter-spacing: 0px;
  font-size: 15px;
  margin-top: 15px;
}

.w3l-blog-single .blog-grid iframe {
  width: 100%;
  height: 200px;
}

.w3l-blog-single .blog .img-thumbnail {
  border: 1px solid #ccc;
  padding: 3px;
  margin: 5px 15px 0 0;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}

.w3l-blog-single .single-left {
  background: #fff;
}

.w3l-blog-single .blog aside {
  background: #fff;
  margin-bottom: 30px;
  padding: 20px;
  border: 2px solid #eee;
}

.w3l-blog-single h3.aside-title {
  font-size: 19px;
  line-height: 25px;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.w3l-blog-single .form-inline.search-form {
  position: relative;
}

.w3l-blog-single .search-form button.btn.search {
  background: none;
  color: #fff;
  font-size: 16px;
  width: 60px;
  letter-spacing: 0px;
  line-height: 45px;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 46px;
  display: inline-block;
  background: var(--theme-color-2);
}

.w3l-blog-single .media img {
  border-radius: 50%;
  border: 2px solid #e7e7e7;
  padding: 10px;
  background: #fff;
}

.w3l-blog-single .media {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 30px;
  margin-bottom: 20px;
  background: #f8f9fa;
  padding: 30px;
}

.w3l-blog-single ul.tags-list li {
  display: inline-block;
  margin: 6px 2px 0 0;
}

.w3l-blog-single ul.tags-list li a {
  border: 1px solid #ddd;
  padding: 7px 12px;
  font-size: 15px;
  display: inline-block;
}

.w3l-blog-single ul.category li {
  list-style: none;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.w3l-blog-single ul.category li a label {
  font-size: 14px;
  margin-left: auto;
}

.w3l-blog-single ul.category li span {
  min-width: 20px;
  text-align: center;
  color: var(--title-color);
  margin-right: 10px;
}

.w3l-blog-single ul.category li:last-child a {
  margin-bottom: 0;
}

.w3l-blog-single ul.category li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.w3l-blog-single .posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 5px;
}

.w3l-blog-single .grid-col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.w3l-blog-single .posts-grid a {
  display: block;
}

.w3l-blog-single .social-share {
  margin: 40px 0;
}

.w3l-blog-single .comments-grid-right p {
  margin-top: 15px;
}

.w3l-blog-single .comments {
  margin-bottom: 40px;
}

.w3l-blog-single .blog .form-control {
  width: 100%;
  color: #333;
  background: #fff;
  padding: 12px 70px 12px 12px;
  font-size: 16px;
  border: 2px solid #eee;
  border-radius: 4px;
  display: block;
}

.w3l-blog-single .single-left a.button-eff {
  margin-top: 2em;
}

.w3l-blog-single ul.admin-post li a {
  color: var(--para-color);
}

.w3l-blog-single .single-left a span {
  margin-right: 5px;
}

.w3l-blog-single .single-left p img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  vertical-align: bottom;
}

.w3l-blog-single p.subscribe-text {
  font-size: 16px;
  margin-top: 10px;
  color: var(--para-color);
  line-height: 25px;
}

.w3l-blog-single p.subscribe-text a {
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

.w3l-blog-single .posts-grid-right h4 {
  line-height: 20px;
}

.w3l-blog-single .posts-grid-right h4 a {
  font-size: 17px;
  font-weight: 600;
}

.w3l-blog-single .wthree_courses_events_list li {
  display: inline-block;
  font-size: 14px;
  color: #888;
}

.w3l-blog-single ul.wthree_courses_events_list li span {
  color: #a0a0a0;
}

.w3l-blog-single .posts-grid-right h4 a:hover {
  color: #222;
}

.w3l-blog-single .tags ul li {
  display: inline-block;
}

.w3l-blog-single .tags ul li a.text-bl {
  padding: 9px 10px;
  margin: 0 5px 10px 0;
  display: block;
  text-transform: capitalize;
  color: #777;
  font-size: 16px;
  background: #eee;
}

.w3l-blog-single .tags ul li a.text-bl:hover {
  background: #eaeaea;
  color: #999;
}

.w3l-blog-single .wthree_courses_events_list li a {
  color: #777;
}

.w3l-blog-single .comments-grid-right ul li {
  display: inline-block;
  color: #888;
  font-size: 14px;
}

.w3l-blog-single .comments-grid-right ul li a {
  color: var(--heading-color);
  font-weight: 600;
}

.w3l-blog-single .comments-grid-right ul li a:hover {
  color: #333;
}

.w3l-blog-single .social-share a,
.w3l-blog-single .social-icons-section a {
  color: #fff;
  display: inline-block;
  text-align: center;
  font-size: 26px;
  transition: 0.3s;
  width: 30px;
}

.w3l-blog-single a.facebook {
  color: #3b5998;
}

.w3l-blog-single a.instagram {
  color: #c13584;
}

.w3l-blog-single a.pinterest {
  color: #bd081c;
}

.w3l-blog-single a.twitter {
  color: #1da1f2;
}

.w3l-blog-single .leave-coment-form input[type="text"],
.w3l-blog-single .leave-coment-form input[type="email"],
.w3l-blog-single .leave-coment-form textarea {
  width: 100%;
  color: #666;
  background: #fff;
  padding: 12px 25px;
  outline: none;
  font-size: 16px;
  border: 2px solid #eee;
  margin-bottom: 20px;
  font-family: "Lato","微軟正黑體","Microsoft JhengHei",Helvetica,Arial,sans-serif;
}

.w3l-blog-single .right-text {
  align-self: center;
}

.w3l-blog-single .admin-post li {
  display: inline-block;
  margin-right: 10px;
  border-right: 1px solid #eee;
  padding-right: 10px;
}

.w3l-blog-single .admin-post li:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.w3l-blog-single .admin-post {
  border-bottom: 2px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.w3l-blog-single aside.posts .social-icons-section {
  text-align: center;
}

.w3l-blog-single h4.author {
  font-size: 22px;
  font-weight: 400;
  margin: 10px 0;
  text-transform: capitalize;
  color: var(--title-color);
  text-align: center;
}

.w3l-blog-single .single-left2 {
  display: grid;
  grid-template-columns: .8fr 1fr;
  grid-gap: 30px;
  margin: 50px 0;
}

.w3l-blog-single ul.tag-list li {
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 35px;
  display: inline-block;
  background: #f8f9fa;
}

.w3l-blog-single ul.tag-list li a {
  color: var(--para-color);
  width: auto;
  font-size: 16px;
  height: auto;
  line-height: initial;
  padding: 0 10px;
}

.w3l-blog-single .social-share {
  display: grid;
  grid-template-columns: auto 1fr;
}

.w3l-blog-single .social-icons-section {
  text-align: right;
}

.w3l-blog-single .right-text-list li p {
  margin-bottom: 10px;
}

.w3l-blog-single .right-text-list li p span.fa {
  color: var(--theme-color-2);
  width: 22px;
  font-size: 14px;
}

.w3l-blog-single .right-text-list {
  margin: 30px 0;
  border-left: 2px solid #eee;
  padding-left: 25px;
}

.w3l-blog-single .leave-coment-form textarea {
  min-height: 100px;
  resize: none;
  width: 100%;
  border-radius: 50px;
}

.w3l-blog-single .mm_single_submit {
  text-align: left;
}

.w3l-blog-single .leave-coment-form button {
  outline: none;
  border: none;
  background: var(--theme-color);
  border: 2px solid var(--theme-color);
  padding: 12px 35px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  border-radius: 50px;
}

.w3l-blog-single .leave-coment-form button:hover {
  border: 2px solid var(--theme-color);
  background: transparent;
  color: var(--theme-color);
}

.w3l-blog-single .single-left1 {
  margin-bottom: 60px;
}

.w3l-blog-single .single-left1 a.blog-btn {
  font-weight: 600;
  display: inline-block;
  font-size: 16px;
  color: var(--theme-color);
  background: #fff;
  border: 2px solid var(--theme-color);
  text-align: center;
  padding: 12px 35px;
  border-radius: 35px;
  margin-top: 10px;
  display: inline-block;
}

.w3l-blog-single .blog-btn:hover {
  color: #fff;
  background: var(--theme-color);
}

.w3l-blog-single .btom-cont {
  border: 1px solid #eee;
  padding: 2em;
}

.w3l-blog-single h5.card-title a,
.w3l-blog-single h5.card-title {
  font-size: 23px;
  line-height: 30px;
  margin-bottom: 10px;
  text-transform: capitalize;
  font-weight: 600;
}

.w3l-blog-single .single-left1 p a {
  color: var(--heading-color);
  font-weight: bold;
}

.w3l-blog-single .comments-grid-right h4 {
  font-size: 20px;
  color: var(--heading-color);
  text-transform: uppercase;
}

.w3l-blog-single .comments-grid-right h3 {
  font-weight: normal;
  color: var(--heading-color);
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: capitalize;
}

.w3l-blog-single .no-margin {
  margin: 0 !important;
}

.w3l-blog-single p.address {
  margin-top: 5px;
  margin-bottom: 25px;
}

.w3l-blog-single .single-left1 iframe {
  width: 100%;
  height: 350px;
}

.w3l-blog-single .details-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
  margin-bottom: 40px;
}

.w3l-blog-single .details-list li strong {
  color: var(--heading-color);
  font-weight: 600;
}

.w3l-blog-single .details-list li {
  color: var(--para-color);
}

.w3l-blog-single .posts-grid-right span {
  color: var(--para-color);
  margin-top: 5px;
  display: inline-block;
  font-size: 15px;
}

.w3l-blog-single .posts-grid-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 20px;
  margin-bottom: 10px;
  align-items: center;
}

.w3l-blog-single ul.category li a,
.w3l-blog-single ul.category li {
  margin-bottom: 10px;
  color: var(--para-color);
  font-size: 16px;
  line-height: 25px;
  display: flex;
  align-items: baseline;
  width: 100%;
}

.w3l-blog-single .listings-list li {
  display: grid;
  justify-content: space-between;
  grid-template-columns: auto auto;
  border-bottom: 1px solid #eee;
  padding-bottom: 7px;
  margin-bottom: 7px;
}

.w3l-blog-single .listings-list li a {
  font-size: 16px;
  line-height: 25px;
  color: var(--para-color);
}

.w3l-blog-single .pagination {
  margin-top: 3em;
}

.w3l-blog-single .pagination ul li {
  display: inline-block;
}

.w3l-blog-single .pagination a {
  display: inline-block;
  color: #333;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
}

.w3l-blog-single .pagination a span {
  margin: 0;
}

.w3l-blog-single .pagination a.active,
.w3l-blog-single .pagination a:hover {
  background-color: var(--theme-color-1);
  color: #fff;
}

.w3l-blog-single a.not-allowed {
  cursor: not-allowed;
  color: #c3c2c2;
}

.w3l-blog-single .pagination .not-allowed:hover {
  opacity: 1;
  background: transparent;
  color: #c3c2c2;
}

.w3l-blog-single .main-cont-blog {
  max-width: 950px;
  margin: 0 auto;
}

.w3l-blog-single p.para-top-space {
  margin-top: 20px;
}

.w3l-blog-single blockquote {
  background: var(--theme-color-2);
  padding: 30px;
  margin: 0;
  text-align: center;
}

.w3l-blog-single p.quote-text {
  color: #fff;
  font-size: 17px;
  line-height: 25px;
  max-width: 700px;
  display: block;
  margin: 0 auto;
}

.w3l-blog-single p.quote-text span {
  font-size: 35px;
  color: #ffffff45;
}

.w3l-blog-single p.quote-text span.fa.fa-quote-left {
  vertical-align: text-bottom;
  margin-right: 10px;
}

.w3l-blog-single p.quote-text span.fa.fa-quote-right {
  vertical-align: text-top;
  margin-left: 10px;
}

.w3l-blog-single blockquote p a {
  color: #fff;
  font-weight: bold;
  margin-top: 1em;
  display: block;
  font-size: 20px;
}

@media all and (max-width: 1170px) {
  .w3l-blog-single .posts-grid-right span {
    font-size: 14px;
  }
}

@media all and (max-width: 1080px) {
  .w3l-blog-single .social-share {
    grid-template-columns: 1fr;
  }

  .w3l-blog-single .social-icons-section {
    text-align: left;
    margin-top: 10px;
  }
}

@media all and (max-width: 992px) {
  .w3l-blog-single .grid-colunm-2 {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  .w3l-blog-single .right-side-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }

  .w3l-blog-single .pagination {
  }

  .w3l-blog-single .single {
    padding: 60px 0;
  }

  .w3l-blog-single .single-left1 {
    margin-bottom: 40px;
  }

  .w3l-blog-single .blog aside {
    margin-bottom: 0;
  }

  .w3l-blog-single .single-left1:nth-child(3) {
    margin-bottom: 20px;
  }
}

@media all and (max-width: 768px) {
  .w3l-blog-single .right-side-bar {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  .w3l-blog-single .single {
    padding: 60px 0;
  }

  .w3l-blog-single .details-list {
    grid-template-columns: 1fr 1fr;
  }

  .w3l-blog-single .blog aside {
    margin-bottom: 0px;
  }
}

@media all and (max-width: 568px) {
  .w3l-blog-single .single {
    padding: 50px 0;
  }

  .w3l-blog-single .single-left2 {
    grid-template-columns: 1fr;
    margin: 30px 0;
  }

  .w3l-blog-single .single {
    padding: 40px 0;
  }

  .w3l-blog-single .single-left2 {
    margin: 20px 0;
  }

  .w3l-blog-single .media {
    padding: 15px;
  }

  .w3l-blog-single .media img {
    width: 120px;
  }

  .w3l-blog-single .media {
    grid-gap: 10px;
  }

  .w3l-blog-single .social-share {
    margin: 0px 0 20px;
  }

  .w3l-blog-single .comments-grid-right h4 {
    font-size: 18px;
  }

  .w3l-blog-single h5.card-title a,
  .w3l-blog-single h5.card-title {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 10px;
  }

  .w3l-blog-single .single-left1 iframe {
    height: 250px;
  }
}

@media all and (max-width: 480px) {
  .w3l-blog-single .btom-cont {
    padding: 1em;
  }
}

@media all and (max-width: 415px) {
  .w3l-blog-single .media {
    grid-gap: 15px;
  }

  .w3l-blog-single .admin-post li {
    margin-right: 10px;
  }

  .w3l-blog-single .grid-col-2 {
    grid-template-columns: 1fr;
  }

  .w3l-blog-single .leave-coment-form input[type="text"],
  .w3l-blog-single .leave-coment-form input[type="email"],
  .w3l-blog-single .leave-coment-form textarea {
    margin-bottom: 15px;
  }

  .w3l-blog-single .details-list {
    grid-template-columns: 1fr;
  }

  .w3l-blog-single ul.tag-list li {
    padding: 5px;
  }

  .w3l-blog-single ul.tag-list li a {
    padding: 0 5px;
  }
}

@media all and (max-width: 384px) {

  .w3l-blog-single h5.card-title a,
  .w3l-blog-single h5.card-title {
    font-size: 18px;
  }

  .w3l-blog-single .media {
    grid-auto-flow: row;
  }
}

.w3l-text-22 {
  /*-- text 22 --*/
  /*-- //text 22 --*/
  /*-- responsive --*/
  /*-- //responsive --*/
}

.w3l-text-22 .text-22 {
  padding: 0px 0 40px;
}

.w3l-text-22 .text-txt {
  max-width: 950px;
  margin: 0 auto;
}

.w3l-text-22 p.top-para {
  margin-top: 1.5em;
}

.w3l-text-22 .text-txt h3 {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 10px;
}

.w3l-text-22 .text-txt p {
  font-size: 17px;
  line-height: 25px;
}

.w3l-text-22 .two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  margin-top: 30px;
}

.w3l-text-22 .right-column p:nth-child(2) {
  margin-top: 15px;
}

@media (max-width: 1080px) {
  .w3l-text-22 .two-columns {
    grid-gap: 20px;
    margin-top: 40px;
  }
}

@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;
  }
}

@media (max-width: 384px) {
  .w3l-text-22 .text-txt p {
    font-size: 16px;
  }

  .w3l-text-22 p.top-para {
    margin-top: 1em;
  }
}

.w3l-comments-9-main .grid-columns {
  grid-template-columns: 1fr 1fr;
  grid-gap: 80px;
}

.w3l-comments-9-main .gallery-32 {
  padding: 20px 0 40px;
}

.w3l-comments-9-main .grids-32-content {
  max-width: 950px;
  margin: 0 auto;
}

.w3l-comments-9-main img.img-responsive.rounded-circle {
  border-radius: 50%;
  position: relative;
}

.w3l-comments-9-main h3.title-main2 {
  font-size: 30px;
  line-height: 40px;
  color: #202428;
  text-align: left;
  margin-bottom: 40px;
  font-weight: 500;
}

.w3l-comments-9-main .testi-agile p {
  font-size: 17px;
  line-height: 25px;
  color: #333;
  margin-bottom: 1rem;
}

.w3l-comments-9-main .testi-pos h4 {
  color: var(--theme-color-2);
  font-size: 18px;
  text-transform: capitalize;
  line-height: 20px;
  margin-top: 1rem;
}

.w3l-comments-9-main .testi-pos span {
  font-size: 14px;
  text-transform: capitalize;
}

.w3l-comments-9-main .right-coment {
  margin-left: 1em;
}

.w3l-comments-9-main .coments-forms-sub {
  padding: 40px 0 80px;
}

.w3l-comments-9-main .media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.w3l-comments-9-main h3.title-main2 {
  font-size: 30px;
  line-height: 40px;
  color: #202428;
  text-align: left;
  margin-bottom: 40px;
  font-weight: 500;
}

.w3l-comments-9-main .form-commets input,
.w3l-comments-9-main .form-commets textarea {
  outline: none;
  padding: 11px;
  border: 1px solid #ddd;
  width: 100%;
  font-size: 16px;
  color: #888;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.w3l-comments-9-main .form-commets textarea {
  min-height: 150px;
  margin-bottom: 2em;
}

@media (max-width: 991px) {
  .w3l-comments-9-main .coments-forms-sub {
    padding: 40px 0 40px;
  }
}

@media (max-width: 900px) {
  .w3l-comments-9-main .grid-columns {
    grid-gap: 40px;
  }

  .w3l-comments-9-main h3.title-main2 {
    font-size: 27px;
    line-height: 35px;
    margin-bottom: 25px;
  }
}

@media (max-width: 736px) {
  .w3l-comments-9-main .grid-columns {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}

@media (max-width: 600px) {
  .w3l-comments-9-main .gallery-32 {
    padding: 40px 0;
  }
}

@media (max-width: 414px) {
  .w3l-comments-9-main .coments-forms-sub {
    padding: 40px 0 40px;
  }

  .w3l-comments-9-main .media {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }

  .w3l-comments-9-main h3.title-main2 {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .w3l-comments-9-main .coments-forms-sub {
    padding: 20px 0 40px;
  }

  .w3l-comments-9-main .gallery-32 {
    padding: 20px 0 20px;
  }

  .w3l-comments-9-main h3.title-main2 {
    margin-bottom: 20px;
  }
}

@media (max-width: 384px) {
  .w3l-comments-9-main .gallery14-head h3 {
    font-size: 32px;
    line-height: 36px;
  }

  .w3l-comments-9-main h3.title-main2 {
    font-size: 26px;
  }
}

.w3l-comments-form-9 .coments-forms-sub {
  padding: 20px 0 80px;
}

.w3l-comments-form-9 .testi-top {
  max-width: 950px;
  margin: 0 auto;
}

.w3l-comments-form-9 .media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.w3l-comments-form-9 h3.title-main2 {
  font-size: 30px;
  line-height: 40px;
  color: #202428;
  text-align: left;
  margin-bottom: 40px;
  font-weight: 500;
}

.w3l-comments-form-9 .form-commets input,
.w3l-comments-form-9 .form-commets textarea {
  outline: none;
  padding: 11px;
  border: 1px solid #ddd;
  width: 100%;
  font-size: 16px;
  color: #888;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.w3l-comments-form-9 .form-commets textarea {
  min-height: 150px;
  margin-bottom: 2em;
}

@media (max-width: 991px) {
  .w3l-comments-form-9 .coments-forms-sub {
    padding: 40px 0 60px;
  }
}

@media (max-width: 414px) {
  .w3l-comments-form-9 .coments-forms-sub {
    padding: 20px 0 40px;
  }

  .w3l-comments-form-9 .media {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }

  .w3l-comments-form-9 h3.title-main2 {
    font-size: 28px;
    margin-bottom: 24px;
  }
}

.w3l-teams-29-main .grid-col-2 {
  grid-template-columns: 1fr 1fr;
}

.w3l-teams-29-main .grid-col-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.w3l-teams-29-main .grid-col-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.w3l-teams-29-main .align-items-center {
  align-items: center;
}

.w3l-teams-29-main .align-center {
  text-align: center;
}

.w3l-teams-29-main .teams-29 {
  padding: 70px 0;
}

.w3l-teams-29-main .team-main-29 {
  box-shadow: 0 2px 22px 0 rgba(0, 0, 0, 0.05);
}

.w3l-teams-29-main .column-29 {
  padding: 30px;
  padding-bottom: 50px;
  background: #FAF1D6;
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.w3l-teams-29-main .column-29 a.follow {
  background: var(--theme-color-2);
  display: inline-block;
  padding: 10px 0px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  position: absolute;
  bottom: -8%;
  left: 30%;
  width: 40%;
}

.w3l-teams-29-main ul.social {
  background: #fff;
  padding: 30px;
  padding-top: 50px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.w3l-teams-29-main ul.social li {
  display: inline-block;
}

.w3l-teams-29-main span.fa-facebook-square {
  color: #3b5998;
  font-size: 25px;
  margin: 0 5px;
}

.w3l-teams-29-main span.fa-twitter-square {
  color: #1da1f2;
  font-size: 25px;
  margin: 0 5px;
}

.w3l-teams-29-main span.fa-linkedin-square {
  color: #0077b5;
  font-size: 25px;
  margin: 0 5px;
}

.w3l-teams-29-main .column-29 a {
  display: block;
}

.w3l-teams-29-main h6 a.title-team-29 {
  font-size: 20px;
  line-height: 25px;
  margin-top: 20px;
  display: inherit;
  font-weight: 600;
}

.w3l-teams-29-main p.sm-text-29 {
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  margin-top: 5px;
  color: #333;
}

.w3l-teams-29-main .main-contteam-29 {
  grid-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  box-shadow: 0 2px 22px 0 rgba(0, 0, 0, 0.05);
}

.w3l-teams-29-main .title-teams-29 h4 {
  font-size: 45px;
  line-height: 50px;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.w3l-teams-29-main .title-teams-29 {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 1080px) {
  .w3l-teams-29-main .teams-29 {
    padding: 40px 0 50px;
  }

  .w3l-teams-29-main .main-contteam-29 {
    grid-gap: 10px;
  }
}

@media (max-width: 900px) {
  .w3l-teams-29-main .main-contteam-29 {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
}

@media (max-width: 667px) {
  .w3l-teams-29-main .title-teams-29 h4 {
    font-size: 42px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .w3l-teams-29-main .title-teams-29 h4 {
    font-size: 38px;
    line-height: 40px;
  }

  .w3l-teams-29-main .main-contteam-29 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 384px) {
  .w3l-teams-29-main .title-teams-29 {
    margin-bottom: 40px;
  }
}

@media (max-width: 320px) {
  .w3l-teams-29-main .teams-29 {
    padding: 30px 0 40px;
  }

  .w3l-teams-29-main h6 a.title-team-29 {
    font-size: 16px;
    line-height: 21px;
  }
}

/*team-15 */
.w3l-teams-15 .grid {
  display: grid;
}

.w3l-teams-15 .grid-column-2 {
  grid-template-columns: 2fr 1fr;
  grid-column-gap: 60px;
}

.w3l-teams-15 p span,
.w3l-teams-15 a {
  display: inline-block;
  color: var(--para-color);
  line-height: 25px;
  font-size: 17px;
  font-weight: normal;
  font-style: normal;
}

.w3l-teams-15 .team-head {
  line-height: 50px;
  font-size: 45px;
  margin-bottom: 25px;
  font-weight: 600;
}

.w3l-teams-15 .text {
  color: var(--para-color);
  line-height: 25px;
  font-size: 16px;
  margin-bottom: 40px;
}

.w3l-teams-15 .team-para {
  margin-bottom: 15px;
  color: var(--title-color);
  line-height: 25px;
  font-size: 17px;
  font-weight: 600;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  max-width: 600px;
}

.w3l-teams-15 .teams15 {
  padding: 80px 0;
}

.w3l-teams-15 .buttons-teams {
  margin-top: 15px;
}

.w3l-teams-15 .buttons-teams a {
  text-align: center;
}

.w3l-teams-15 .buttons-teams a.facebook {
  font-size: 14px;
  width: 35px;
  height: 35px;
  line-height: 30px;
  background: #fff;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid #3b5998;
  color: #3b5998;
  margin: 0 3px;
}

.w3l-teams-15 .buttons-teams a.facebook:hover {
  background: #3b5998;
  color: #fff;
}

.w3l-teams-15 .buttons-teams a.twitter {
  font-size: 14px;
  width: 35px;
  height: 35px;
  line-height: 30px;
  background: #fff;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid #5599c4;
  color: #5599c4;
  margin: 0 3px;
}

.w3l-teams-15 .buttons-teams a.twitter:hover {
  background: #5599c4;
  color: #fff;
}

.w3l-teams-15 .buttons-teams a.linkedin {
  font-size: 14px;
  width: 35px;
  height: 35px;
  line-height: 30px;
  background: #fff;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid #0077b5;
  color: #0077b5;
  margin: 0 3px;
}

.w3l-teams-15 .buttons-teams a.linkedin:hover {
  background: #0077b5;
  color: #fff;
}

.w3l-teams-15 .about-me-single {
  margin-top: 40px;
}

.w3l-teams-15 .about-me-single p {
  font-size: 16px;
  line-height: 25px;
  margin-top: 15px;
  color: var(--para-color);
}

.w3l-teams-15 .about-me-single h3 {
  font-size: 25px;
  line-height: 30px;
  color: var(--title-color);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.w3l-teams-15 .about-me-single h3 span.line {
  width: 60px;
  height: 2px;
  background: var(--title-color);
  display: block;
  margin-top: 10px;
}

.w3l-teams-15 .buttons-teams .social {
  padding: 0 !important;
}

@media (max-width: 1200px) {
  .w3l-teams-15 .grid-column-2 {
    grid-column-gap: 30px;
  }

  .w3l-teams-15 .team-head {
    line-height: 40px;
    font-size: 35px;
    margin-bottom: 15px;
  }
}

@media (max-width: 900px) {
  .w3l-teams-15 .grid-column-2 {
    grid-column-gap: 30px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .w3l-teams-15 .text {
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .w3l-teams-15 .teams15 {
    padding: 50px 0;
  }
}

@media (max-width: 484px) {
  .w3l-teams-15 .teams15 {
    padding: 40px 0;
  }
}

@media (max-width: 568px) {
  .w3l-teams-15 .grid-column-2 {
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
  }

  .w3l-teams-15 .text {
    margin-bottom: 30px;
  }

  .w3l-teams-15 .team-head {
    line-height: 35px;
    font-size: 30px;
  }

  .w3l-teams-15 .team-para,
  .w3l-teams-15 p span,
  .w3l-teams-15 a {
    font-size: 16px;
  }
}

@media (max-width: 414px) {
  .w3l-teams-15 .grid-column-2 {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
  }

  .w3l-teams-15 .text {
    margin-bottom: 40px;
  }

  .w3l-teams-15 .team-para {
    margin-bottom: 7px;
  }
}

@media (max-width: 384px) {
  .w3l-teams-15 .text {
    margin-bottom: 30px;
  }

  .w3l-teams-15 .about-me-single h3 {
    font-size: 22px;
    line-height: 26px;
  }
}

@media (max-width: 375px) {
  .w3l-teams-15 .grid-column-2 {
    grid-row-gap: 20px;
  }
}

.w3l-faq-main {
  /* faq page */
  /* accordions */
  /* //accordions */
  /* form */
  /* //form */
  /* //faq page */
}

.w3l-faq-main .bg-warning {
  background: #ffc107;
  padding: 1rem;
  color: var(--sub-title-color);
}

.w3l-faq-main .about-right-faq p {
  margin-top: 1em;
}

.w3l-faq-main .faq-cont {
  grid-template-columns: 1fr .5fr;
  grid-gap: 30px;
}

.w3l-faq-main .sub-accor {
  margin-top: 3em;
}

.w3l-faq-main .title-w3-ab {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1em;
}

.w3l-faq-main .accordion {
  border: 1px solid white;
  margin: 0 auto;
  list-style: none outside;
}

.w3l-faq-main .accordion>*+* {
  border-top: 1px solid white;
}

.w3l-faq-main .accordion-item-hd {
  display: block;
  cursor: pointer;
  background-color: #FAF1D6;
  color: #333;
  padding: 18px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  font-size: 15px;
}

.w3l-faq-main li.accordion-item {
  margin-bottom: 1em;
}

.w3l-faq-main .accordion-item-input:checked~.accordion-item-bd {
  max-height: 2000px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  padding: 1.5em;
}

.w3l-faq-main .accordion-item-input:checked~.accordion-item-hd>.accordion-item-hd-cta {
  transform: rotate(0);
}

.w3l-faq-main .accordion-item-hd-cta {
  display: block;
  width: 30px;
  position: absolute;
  top: calc(50% - 6px);
  /*minus half font-size*/
  right: 0;
  transition: transform .3s ease;
  transform: rotate(-180deg);
  text-align: center;
  font-size: 12px;
  line-height: 1;
}

.w3l-faq-main .accordion-item-bd {
  max-height: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.w3l-faq-main .accordion-item-input {
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  left: -9999px;
}

.w3l-faq-main h6.accordion-textm {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
}

.w3l-faq-main .banner-form-w3 h5 {
  color: #333;
  font-size: 20px;
}

.w3l-faq-main .banner-form-w3 form {
  padding: 2em;
  background: #fff;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.17);
  border-top: 1px solid #ddd;
}

.w3l-faq-main .form-style-w3ls .form-control {
  outline: none;
  font-size: 16px;
  border: none;
  color: #666;
  background: #f1f1f1;
  padding: 12px 15px;
  width: 100%;
  margin-bottom: 15px;
  border-radius: 0;
}

.w3l-faq-main .form-style-w3ls textarea {
  min-height: 120px;
}

@media (max-width: 991px) {
  .w3l-faq-main .faq-cont {
    grid-template-columns: 1fr;
  }
}

.w3l-error-main {
  /* error page */
  /* //error page */
}

.w3l-error-main .error {
  background: url(../images/error.jpg) no-repeat center fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  z-index: 0;
}

.w3l-error-main a.logo-2 {
  position: absolute;
  top: 30px;
  text-align: center;
  left: 0;
  right: 0;
}

.w3l-error-main a.logo-2 span {
  background: var(--theme-color-3);
  color: #fff;
  padding: 6px 12px 6px 16px;
  border-radius: 20px 0px 0px 20px;
  margin-right: 6px;
  font-size: 28px;
}

.w3l-error-main .logo-2 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
}

.w3l-error-main .sub-wthreess {
  padding: 4em 0;
}

.w3l-error-main h3.text-err-wthree {
  color: #fff;
  font-weight: bold;
  font-size: 6em;
}

.w3l-error-main .error h4 {
  color: rgba(255, 255, 255, 0.45);
  margin: 6px 0 15px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 24px;
}

.w3l-error-main .error p {
  color: #eee;
}

.w3l-error-main .button-eff {
  padding: 10px 25px;
  font-size: 14px;
  margin-top: 3em;
}

@media all and (max-width: 736px) {
  .w3l-error-main a.logo-2 {
    top: 20px;
  }
}

@media all and (max-width: 600px) {
  .w3l-error-main h3.text-err-wthree {
    font-size: 5em;
  }
}

@media all and (max-width: 375px) {
  .w3l-error-main h3.text-err-wthree {
    font-size: 4em;
  }

  .w3l-error-main .error h4 {
    font-size: 22px;
  }

  .w3l-error-main a.logo-2 {
    top: 20px;
  }
}

.w3l-coming-main {
  /* coming soon */
  /* social icons */
  /* //social icons */
  /* //coming soon */
}

.w3l-coming-main .coming-sub {
  background: url(../images/ba1.jpg) no-repeat center fixed;
  background: url(https://images.pexels.com/photos/237018/pexels-photo-237018.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940) no-repeat center fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  z-index: 0;
}

.w3l-coming-main .coming-sub:before {
  content: "";
  background: rgba(16, 16, 16, 0.57);
  position: absolute;
  top: 0;
  min-height: 100%;
  left: 0;
  right: 0;
  z-index: -1;
}

.w3l-coming-main .page-sec {
  max-width: 700px;
  margin: 0 auto;
  padding: 3em 0;
}

.w3l-coming-main h4.error-title-w3 {
  font-size: 40px;
  line-height: 1;
  color: #fff;
  font-weight: 100;
}

.w3l-coming-main .font-weight-bold {
  font-weight: bold;
}

.w3l-coming-main p.para-wid-error {
  color: #eee;
  margin-top: 1em;
}

.w3l-coming-main .subscribe-w3ls {
  max-width: 600px;
  margin-top: 2em;
}

.w3l-coming-main p.para-com-w3 {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.w3l-coming-main form.d-grid {
  grid-template-columns: 3fr 1fr;
}

.w3l-coming-main .form-group1 .form-control {
  width: 100%;
  color: #111;
  padding: 12px 15px;
  font-size: 16px;
  background: #fff;
  outline: none;
  border: none;
  border-radius: 4px 0 0 4px;
  box-shadow: 0px 4px 0px 0px #dedede;
}

.w3l-coming-main .button-eff {
  padding: 10px 30px;
  border-radius: 0 4px 4px 0;
}

.w3l-coming-main .caption {
  margin-top: 3em;
}

.w3l-coming-main .caption ul li {
  display: inline-block;
}

.w3l-coming-main .caption ul li a {
  width: 35px;
  height: 35px;
  margin: 0 2px;
  display: inline-block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.19);
}

.w3l-coming-main .caption ul li a span {
  color: #fff;
  font-size: 16px;
  line-height: 35px;
}

.w3l-coming-main .caption ul li a.iconf1:hover {
  background: #3b5998;
}

.w3l-coming-main .caption ul li a.iconf2:hover {
  background: #00aced;
}

.w3l-coming-main .caption ul li a.iconf3:hover {
  background: #F44336;
}

.w3l-coming-main .caption ul li a:hover span {
  color: #fff;
  transition: .2s;
}

.w3l-coming-main a.logo-2 {
  /* position: absolute; */
  /* top: 30px; */
  text-align: center;
  /* left: 0; */
  /* right: 0; */
  margin-bottom: 4em;
  display: block;
}

.w3l-coming-main a.logo-2 span {
  background: var(--theme-color-3);
  color: #fff;
  padding: 6px 12px 6px 16px;
  border-radius: 20px 0px 0px 20px;
  margin-right: 6px;
  font-size: 28px;
}

.w3l-coming-main .logo-2 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
}

@media all and (max-width: 1024px) {
  .w3l-coming-main h4.error-title-w3 {
    font-size: 38px;
  }
}

@media all and (max-width: 736px) {
  .w3l-coming-main h4.error-title-w3 {
    font-size: 34px;
  }
}

@media all and (max-width: 640px) {
  .w3l-coming-main .form-group1 .form-control {
    font-size: 15px;
  }

  .w3l-coming-main button.btn {
    padding: 9px 15px;
  }

  .w3l-coming-main a.logo-2 {
    margin-bottom: 3em;
  }
}

@media (max-width: 480px) {
  .w3l-coming-main h4.error-title-w3 {
    font-size: 32px;
  }
}

@media (max-width: 414px) {
  .w3l-coming-main h4.error-title-w3 {
    font-size: 30px;
  }
}

@media (max-width: 390px) {
  .w3l-coming-main form.d-grid {
    grid-template-columns: 2fr 1fr;
  }

  .w3l-coming-main a.logo-2 {
    top: 20px;
  }
}

@media (max-width: 340px) {
  .w3l-coming-main h4.error-title-w3 {
    font-size: 28px;
  }

  .w3l-coming-main form.d-grid {
    grid-template-columns: 1fr;
  }

  .w3l-coming-main button.btn {
    margin-top: 20px;
  }
}

.w3l-timeline-1-main {
  /*==================================
          TIMELINE
      ==================================*/
  /*-- GENERAL STYLES
          
      
          /*----- TIMELINE ITEM -----*/
  /*----- TIMELINE INFO -----*/
  /*----- TIMELINE MARKER -----*/
  /*----- TIMELINE CONTENT -----*/
  /*----- TIMELINE PERIOD -----*/
  /*----------------------------------------------
              MOD: TIMELINE SPLIT
          ----------------------------------------------*/
  /*----------------------------------------------
              MOD: TIMELINE CENTERED
          ----------------------------------------------*/
  /*----------------------------------------------
              MOD: MARKER OUTLINE
          ----------------------------------------------*/
}

.w3l-timeline-1-main .timeline-1 p {
  font-size: 16px;
  line-height: 25px;
  color: var(--para-color);
  margin-top: 10px;
}

.w3l-timeline-1-main .timeline-item {
  padding-left: 40px;
  position: relative;
}

.w3l-timeline-1-main .timeline-item:last-child {
  padding-bottom: 0;
}

.w3l-timeline-1-main .timeline-title {
  font-size: 20px;
  line-height: 25px;
  color: var(--title-color);
}

.w3l-timeline-1-main .timeline-info {
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 .5em 0;
  line-height: 25px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #aaa;
  margin-top: 3px !important;
}

.w3l-timeline-1-main .timeline-marker {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15px;
}

.w3l-timeline-1-main .timeline-marker:before {
  background: var(--theme-color-2);
  border: 3px solid transparent;
  border-radius: 100%;
  content: "";
  display: block;
  height: 15px;
  position: absolute;
  top: 4px;
  left: 0;
  width: 15px;
  transition: background 0.3s ease-in-out,
    border 0.3s ease-in-out;
}

.w3l-timeline-1-main .timeline-marker:after {
  content: "";
  width: 3px;
  background: #CCD5DB;
  display: block;
  position: absolute;
  top: 28px;
  bottom: 0;
  left: 9px;
}

.w3l-timeline-1-main .timeline-item:last-child .timeline-marker:after {
  content: none;
}

.w3l-timeline-1-main .timeline-item:not(.period):hover .timeline-marker:before {
  background: transparent;
  border: 3px solid var(--theme-color-2);
}

.w3l-timeline-1-main .timeline-content {
  padding-bottom: 40px;
  margin-top: 2px !important;
}

.w3l-timeline-1-main .timeline-content p:last-child {
  margin-bottom: 0;
}

.w3l-timeline-1-main .period {
  padding: 0;
}

.w3l-timeline-1-main .period .timeline-info {
  display: none;
}

.w3l-timeline-1-main .period .timeline-marker:before {
  background: transparent;
  content: "";
  width: 20px;
  height: auto;
  border: none;
  border-radius: 0;
  top: 0;
  bottom: 30px;
  position: absolute;
  border-top: 3px solid #CCD5DB;
  border-bottom: 3px solid #CCD5DB;
}

.w3l-timeline-1-main .period .timeline-marker:after {
  content: "";
  height: 32px;
  top: auto;
}

.w3l-timeline-1-main .period .timeline-content {
  padding: 40px 0 70px;
}

.w3l-timeline-1-main .period .timeline-title {
  margin: 0;
}

.w3l-timeline-1-main .timeline-content h2.timeline-title {
  background: #eee;
  padding: 15px;
  box-shadow: 0 4px 7px 0 rgba(17, 17, 17, 0.17);
}

.w3l-timeline-1-main .timeline-item {
  list-style: none;
}

@media (min-width: 768px) {

  .w3l-timeline-1-main .timeline-split .timeline,
  .w3l-timeline-1-main .timeline-centered .timeline {
    display: table;
  }

  .w3l-timeline-1-main .timeline-split .timeline-item,
  .w3l-timeline-1-main .timeline-centered .timeline-item {
    display: table-row;
    padding: 0;
  }

  .w3l-timeline-1-main .timeline-split .timeline-info,
  .w3l-timeline-1-main .timeline-centered .timeline-info,
  .w3l-timeline-1-main .timeline-split .timeline-marker,
  .w3l-timeline-1-main .timeline-centered .timeline-marker,
  .w3l-timeline-1-main .timeline-split .timeline-content,
  .w3l-timeline-1-main .timeline-centered .timeline-content,
  .w3l-timeline-1-main .timeline-split .period .timeline-info,
  .w3l-timeline-1-main .timeline-centered .period .timeline-info {
    display: table-cell;
    vertical-align: top;
  }

  .w3l-timeline-1-main .timeline-split .timeline-marker,
  .w3l-timeline-1-main .timeline-centered .timeline-marker {
    position: relative;
  }

  .w3l-timeline-1-main .timeline-split .timeline-content,
  .w3l-timeline-1-main .timeline-centered .timeline-content {
    padding-left: 30px;
  }

  .w3l-timeline-1-main .timeline-split .timeline-info,
  .w3l-timeline-1-main .timeline-centered .timeline-info {
    padding-right: 30px;
  }

  .w3l-timeline-1-main .timeline-split .period .timeline-title,
  .w3l-timeline-1-main .timeline-centered .period .timeline-title {
    position: relative;
    left: -45px;
  }
}

@media (min-width: 992px) {

  .w3l-timeline-1-main .timeline-centered,
  .w3l-timeline-1-main .timeline-centered .timeline-item,
  .w3l-timeline-1-main .timeline-centered .timeline-info,
  .w3l-timeline-1-main .timeline-centered .timeline-marker,
  .w3l-timeline-1-main .timeline-centered .timeline-content {
    display: block;
    margin: 0;
    padding: 0;
  }

  .w3l-timeline-1-main .timeline-centered .timeline-item {
    padding-bottom: 50px;
    overflow: hidden;
  }

  .w3l-timeline-1-main .timeline-centered .timeline-marker {
    position: absolute;
    left: 50%;
    margin-left: -7.5px;
  }

  .w3l-timeline-1-main .timeline-centered .timeline-info,
  .w3l-timeline-1-main .timeline-centered .timeline-content {
    width: 50%;
  }

  .w3l-timeline-1-main .timeline-centered>.timeline-item:nth-child(odd) .timeline-info {
    float: left;
    text-align: right;
    padding-right: 30px;
  }

  .w3l-timeline-1-main .timeline-centered>.timeline-item:nth-child(odd) .timeline-content {
    float: right;
    text-align: left;
    padding-left: 30px;
  }

  .w3l-timeline-1-main .timeline-centered>.timeline-item:nth-child(even) .timeline-info {
    float: right;
    text-align: left;
    padding-left: 30px;
  }

  .w3l-timeline-1-main .timeline-centered>.timeline-item:nth-child(even) .timeline-content {
    float: left;
    text-align: right;
    padding-right: 30px;
  }

  .w3l-timeline-1-main .timeline-centered>.timeline-item.period .timeline-content {
    float: none;
    padding: 0;
    width: 100%;
    text-align: center;
  }

  .w3l-timeline-1-main .timeline-centered .timeline-item.period {
    padding: 50px 0 90px;
  }

  .w3l-timeline-1-main .timeline-centered .period .timeline-marker:after {
    height: 30px;
    bottom: 0;
    top: auto;
  }

  .w3l-timeline-1-main .timeline-centered .period .timeline-title {
    left: auto;
  }
}

.w3l-timeline-1-main .marker-outline .timeline-marker:before {
  background: transparent;
  border-color: var(--theme-color-2);
}

.w3l-timeline-1-main .marker-outline .timeline-item:hover .timeline-marker:before {
  background: var(--theme-color-2);
}

.w3l-search-results-1-main {
  /*-- search results -- */
  /*-- search results -- */
  /*-- /responsive design --*/
  /*-- /responsive design --*/
}

.w3l-search-results-1-main .search-results-top {
  background: #f8f8f8;
  padding: 50px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.22);
}

.w3l-search-results-1-main .search-results-bottom {
  padding: 60px 0;
}

.w3l-search-results-1-main .search-results-form form {
  max-width: 700px;
  margin: auto;
}

.w3l-search-results-1-main .search-grids {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.w3l-search-results-1-main .search-results-form input {
  border: none;
  color: var(--para-color);
  padding: 15px 20px;
  border-radius: 0px;
  width: 80%;
  font-size: 16px;
  outline: none;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #fff;
  box-shadow: 0px 4px 0px 0px #fff;
}

.w3l-search-results-1-main .search-results-form button.btn {
  width: 20%;
}

.w3l-search-results-1-main .search-content-1 a {
  font-size: 19px;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0px;
}

.w3l-search-results-1-main .search-content-1 h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0px;
}

.w3l-search-results-1-main .search-results-content select.form-control {
  padding: 0;
  margin-left: auto;
  height: 29px !important;
}

.w3l-search-results-1-main .border-bottom p {
  float: left;
}

.w3l-search-results-1-main .select-right {
  float: right;
  margin-left: 10px;
}

.w3l-search-results-1-main .search-results-bottom h5 {
  font-weight: 600;
  margin-top: 10px;
  font-size: 17px;
  line-height: 25px;
}

.w3l-search-results-1-main span.horizontal-line {
  width: 100%;
  height: 1px;
  background: #eee;
  display: block;
  margin: 5px 0;
}

.w3l-search-results-1-main .search-grid-1 {
  margin-top: 40px;
}

.w3l-search-results-1-main .search-grid-1 h4 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 22px;
  line-height: 30px;
}

.w3l-search-results-1-main .search-grid-1 a {
  color: #d2384b;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 25px;
  display: inline-block;
}

.w3l-search-results-1-main .search-grid-1 a:hover {
  text-decoration: underline;
}

.w3l-search-results-1-main .search-grid-1 p {
  font-size: 16px;
  line-height: 25px;
}

@media all and (max-width: 768px) {
  .w3l-search-results-1-main .search-results-form button.btn {
    width: 25%;
  }

  .w3l-search-results-1-main .search-results-form input {
    width: 75%;
  }
}

@media all and (max-width: 600px) {
  .w3l-search-results-1-main .search-results-form button.btn {
    width: 25%;
  }

  .w3l-search-results-1-main .search-results-bottom {
    padding: 40px 0 60px;
  }
}

@media all and (max-width: 480px) {
  .w3l-search-results-1-main .search-grid-1 h4 {
    font-size: 20px;
    line-height: 26px;
  }

  .w3l-search-results-1-main .search-grid-1 a {
    font-size: 15px;
  }

  .w3l-search-results-1-main .search-results-form button.btn {
    width: 30%;
  }

  .w3l-search-results-1-main .search-results-form input,
  .w3l-search-results-1-main .search-results-form button.btn {
    padding: 13px 20px;
    font-size: 16px;
  }

  .w3l-search-results-1-main .search-results-form input {
    width: 70%;
  }
}

@media all and (max-width: 414px) {
  .w3l-search-results-1-main .search-results-1 .section-title h3 {
    margin-bottom: 25px;
    font-size: 30px;
  }

  .w3l-search-results-1-main .search-results-top {
    padding: 40px 0;
  }
}

.w3l-forms-23 {
  /*-- Forms23 block --*/
}

.w3l-forms-23 .forms23-block {
  padding: 4rem 0;
  align-items: center;
  background: url(../images/36.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  z-index: 0;
  background-repeat: repeat-x;
  animation: slideleft 20000s infinite linear;
  -webkit-animation: slideleft 20000s infinite linear;
}

.w3l-forms-23 .forms23-block:before {
  content: "";
  background: rgba(8, 18, 39, 0.67);
  position: absolute;
  top: 0;
  min-height: 100%;
  left: 0;
  right: 0;
  z-index: -1;
}

@keyframes slideleft {
  from {
    background-position: 0%;
  }

  to {
    background-position: 90000%;
  }
}

@-webkit-keyframes slideleft {
  from {
    background-position: 0%;
  }

  to {
    background-position: 90000%;
  }
}

.w3l-forms-23 a.logo-2 {
  position: absolute;
  top: 30px;
  text-align: center;
  left: 0;
  right: 0;
}

.w3l-forms-23 a.logo-2 span {
  background: var(--theme-color-3);
  color: #fff;
  padding: 6px 12px 6px 16px;
  border-radius: 20px 0px 0px 20px;
  margin-right: 6px;
  font-size: 28px;
}

.w3l-forms-23 .logo-2 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
}

.w3l-forms-23 .forms23-grids {
  grid-template-columns: 1fr 1.3fr;
  grid-gap: 127px;
  align-items: center;
  padding-top: 4em;
}

.w3l-forms-23 .form23 {
  background: #fff;
  padding: 35px;
  box-shadow: 0 10px 30px 0 rgba(17, 17, 17, 0.09);
}

.w3l-forms-23 .form23 h6 {
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #333;
}

.w3l-forms-23 .form23-text h6 span {
  font-size: 24px;
  color: var(--theme-color-2);
}

.w3l-forms-23 .form23 form .input-form {
  font-size: 16px;
  border: none;
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  outline: none;
}

.w3l-forms-23 .form23 p {
  margin-top: 15px;
}

.w3l-forms-23 button.button-eff {
  width: 100%;
  margin-top: 1em;
}

.w3l-forms-23 .form23 a {
  font-size: 15px;
  line-height: 20px;
  font-weight: bold;
}

.w3l-forms-23 .form23-text h6 {
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 600;
  color: #eee;
}

.w3l-forms-23 .form23-text h3 {
  font-size: 35px;
  line-height: 40px;
  margin-bottom: 15px;
  color: #fff;
}

.w3l-forms-23 .form23-text p {
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 25px;
  color: #d4d3d3;
}

.w3l-forms-23 a.btn.button-eff-2 {
  margin-top: 2em;
  padding: 10px 25px;
}

.w3l-forms-23 a.btn.button-eff3 {
  color: var(--theme-color-2);
  font-weight: bold;
  margin-top: 2em;
  display: inline-block;
  display: flex;
  align-items: center;
}

.w3l-forms-23 a.btn.button-eff3 span {
  margin-right: 10px;
  font-size: 25px;
}

@media all and (max-width: 1100px) {
  .w3l-forms-23 .forms23-grids {
    grid-gap: 40px;
  }
}

@media all and (max-width: 992px) {
  .w3l-forms-23 .forms23-grids {
    grid-gap: 15px;
    grid-template-columns: 1fr 1fr;
  }
}

@media all and (max-width: 900px) {
  .w3l-forms-23 .form23 {
    padding: 25px;
  }

  .w3l-forms-23 .form23-text h3 {
    font-size: 30px;
    line-height: 34px;
  }
}

@media all and (max-width: 736px) {
  .w3l-forms-23 .forms23-grids {
    grid-gap: 40px;
    grid-template-columns: 1fr;
  }
}

@media all and (max-width: 600px) {
  .w3l-forms-23 .form23-text h3 {
    font-size: 28px;
    line-height: 32px;
  }
}

@media all and (max-width: 500px) {
  .w3l-forms-23 .forms23-grids {
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }

  .w3l-forms-23 .form23-text h3 {
    margin-bottom: 20px;
  }
}

@media all and (max-width: 440px) {
  .w3l-forms-23 .forms23-block {
    padding: 2.5rem 0;
  }

  .w3l-forms-23 .forms23-grids {
    grid-gap: 40px;
  }
}

.w3l-feature-1 .feature {
  background: var(--main-bg-color);
  text-align: center;
}

.w3l-feature-1 .feature h3 {
  font-size: 32px;
}

.w3l-feature-1 .feature p {
  max-width: 700px;
  margin: 20px auto 0;
}

.w3l-feature-1 .discover {
  margin-top: 3em;
}

.w3l-feature-1 .discover ul li {
  display: inline-block;
}

.w3l-feature-1 .discover ul li p.para-free {
  margin: 0 1em;
}

.w3l-feature-1 .read-more {
  border: 1px solid #cecece;
  background: none;
  color: var(--title-color);
  padding: 14px 30px;
  display: inline-block;
  font-size: 16px;
  border-radius: 4px;
  outline: none;
  font-weight: 600;
}

@media (max-width: 992px) {
  .w3l-feature-1 .feature p {
    max-width: 100%;
    margin: 20px auto 0;
  }

  .w3l-feature-1 .discover {
    margin-top: 2em;
  }

  .w3l-feature-1 .discover ul li {
    display: block;
  }

  .w3l-feature-1 .discover ul li p.para-free {
    margin: 1em 0 .5em;
  }
}

@media (max-width: 768px) {
  .w3l-feature-1 .feature h3 {
    font-size: 30px;
    line-height: 35px;
  }
}

@media (max-width: 375px) {
  .w3l-feature-1 .feature h3 {
    font-size: 28px;
    line-height: 32px;
  }
}

/*-- text24-block --*/
.w3l-text-24 .text24-max-align.text-price-cont {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.w3l-text-24 h5.text24-heading {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 20px;
}

.w3l-text-24 .text24-max-align p {
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 20px;
}

.w3l-text-24 .text24-list li {
  font-size: 17px;
  line-height: 25px;
  color: var(--title-color);
  list-style-position: inside;
}

.w3l-text-24 .text24-list {
  margin-top: 20px;
}

.w3l-text-24 li.gap-list {
  margin: 5px 0;
}

@media all and (max-width: 991px) {
  .w3l-text-24 .text24-max-align.text-price-cont {
    padding-bottom: 60px;
  }
}

@media all and (max-width: 480px) {
  .w3l-text-24 .text24-max-align.text-price-cont {
    padding-bottom: 40px;
  }
}

@media all and (max-width: 384px) {
  .w3l-text-24 h5.text24-heading {
    margin-bottom: 15px;
  }

  .w3l-text-24 .text24-max-align p {
    font-size: 16px;
  }

  .w3l-text-24 .text24-list li {
    font-size: 16px;
  }
}

.w3l-products-page {
  /**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
}

.w3l-products-page .grid-colunm {
  grid-template-columns: .9fr 2fr;
  grid-gap: 40px;
}

.w3l-products-page .left-product-sing {
  width: 70%;
  padding-right: 1.5em;
}

.w3l-products-page .product-right-sin {
  width: 29.5%;
}

.w3l-products-page button.btn.reset {
  background: none;
  border: none;
  position: absolute;
  top: -44px;
  right: 0;
  padding: 0;
}

.w3l-products-page button.btn.reset span {
  font-size: 18px;
  color: var(--para-color);
}

.w3l-products-page input.radio-input {
  -webkit-appearance: checkbox;
  cursor: pointer;
}

.w3l-products-page .brand-equal {
  font-size: 16px;
  color: var(--para-color);
  margin-bottom: 8px;
}

.w3l-products-page aside.top-border.d-flex {
  justify-content: space-between;
}

.w3l-products-page aside.top-border h3 {
  margin: 0;
}

.w3l-products-page select.btn.btn-default {
  -webkit-appearance: menulist-button;
  border: none;
  border-bottom: 2px solid #eee;
  font-size: 15px;
  font-weight: normal;
  padding: 2px;
  background: none;
}

.w3l-products-page h3.aside-title.single-prt {
  margin-bottom: 2px;
}

.w3l-products-page p.para-single {
  font-size: 14px;
  margin-bottom: 20px;
}

.w3l-products-page .top-sing-sec {
  margin-top: 3em;
}

.w3l-products-page h5.quote {
  padding-left: 30px;
  border-left: 3px solid var(--theme-color-1);
  margin: 40px 0;
  font-size: 25px;
  line-height: 30px;
  font-weight: 100;
  color: var(--title-color);
}

.w3l-products-page .top-sec-space {
  margin-top: 1em;
}

.w3l-products-page .d-grid.list-styles {
  grid-template-columns: 1fr 1fr;
}

.w3l-products-page ul.ad-lists li {
  list-style: none;
  font-size: 16px;
  color: var(--para-color);
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
}

.w3l-products-page ul.ad-lists li span {
  color: var(--theme-color-2);
  font-size: 18px;
  margin-right: 6px;
}

.w3l-products-page .map-single {
  background: #fff;
  padding: 20px;
  box-shadow: 0 3px 18px 0 rgba(17, 17, 17, 0.06);
  border: 2px solid #eee;
}

.w3l-products-page .map-single iframe {
  min-height: 300px;
}

.w3l-products-page .map-single.product-details-top {
  margin: 2em 0;
}

.w3l-products-page .map-single.product-details-top h4 {
  font-weight: normal;
  display: flex;
  margin-bottom: 10px;
}

.w3l-products-page span.w3layouts-agileinfo {
  width: 100px;
  font-weight: 600;
}

.w3l-products-page .map-single.product-details-top h4 p {
  margin-left: 10px;
}

.w3l-products-page .d-grid.some-text-spe {
  grid-template-columns: 1.2fr 1fr;
}

.w3l-products-page .right-cont-single ul li {
  list-style: none;
  margin-bottom: 10px;
}

.w3l-products-page h3.aside-title.margin-b-3,
.w3l-products-page h3.aside-title.margin-b-3 a {
  margin: 0;
  color: #fff;
}

.w3l-products-page .blog aside.bg-effe {
  background: var(--theme-color-2);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.w3l-products-page .blog aside.bg-effe-2 {
  background: var(--theme-color-3);
}

.w3l-products-page span.pos-icon {
  position: absolute;
  bottom: -10px;
  right: -10px;
  transform: rotate(-30deg);
}

.w3l-products-page span.pos-icon-2 {
  transform: rotate(-8deg);
}

.w3l-products-page span.pos-icon span {
  font-size: 80px;
  color: #fff;
  opacity: 0.3;
  transition: .3s;
}

.w3l-products-page p.para-calls {
  font-size: 14px;
  color: #333;
}

.w3l-products-page ul.category li a.colors {
  color: var(--theme-color-1);
}

.w3l-products-page ul.category li span.yelp {
  color: var(--theme-color-2);
  width: 50px;
  height: 50px;
  border: 2px solid #ececec;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  font-size: 23px;
}

.w3l-products-page ul.category li.user-text {
  color: var(--title-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.w3l-products-page input.form-control {
  margin-bottom: 14px;
}

.w3l-products-page textarea.form-control {
  min-height: 8em;
}

.w3l-products-page .submit.text-right {
  margin-top: 1em;
}

.w3l-products-page ul.links-single li {
  display: inline-block;
  color: var(--para-color);
  text-align: center;
  margin: 0.8em;
  opacity: .75;
}

.w3l-products-page ul.links-single li:hover {
  opacity: 1;
}

.w3l-products-page ul.links-single li span {
  display: block;
  font-size: 18px;
  color: var(--theme-color-1);
}

.w3l-products-page .position-relative.top-sec {
  position: relative;
}

.w3l-products-page .post-sec {
  position: absolute;
  top: 0;
  background: rgba(8, 18, 39, 0.15);
  bottom: 0;
  width: 100%;
  padding: 5.5em 4em;
  text-align: center;
}

.w3l-products-page .post-sec h3.aside-title {
  color: #fff;
  font-weight: bold !important;
}

.w3l-products-page .post-sec h3 span {
  display: block;
  font-weight: 100;
}

.w3l-products-page p.offer-sec {
  background: var(--theme-color-2);
  color: #fff;
  padding: 10px;
}

.w3l-products-page a.button-2.btn {
  background: #fff;
  color: #333;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 15px;
  display: inline-block;
  margin-top: 5em;
  text-align: center;
}
@media all and (max-width: 1920px) {
	.w3l-products-page .left-product-sing {
	  width: 66%;
	}
}

@media all and (max-width: 1280px) {
  .w3l-products-page .post-sec {
    padding: 3.5em 2em;
  }
}

@media all and (max-width: 991px) {
  .w3l-products-page .post-sec {
    padding: 19.5em 10em;
  }
}

@media all and (max-width: 736px) {
  .w3l-products-page .post-sec {
    padding: 13.5em 7em;
  }

  .w3l-products-page .d-grid.some-text-spe {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

@media all and (max-width: 568px) {
  .w3l-products-page .d-grid.list-styles {
    grid-template-columns: 1fr;
  }
}

@media all and (max-width: 500px) {
  .w3l-products-page .post-sec {
    padding: 12.5em 5em;
  }
}

@media all and (max-width: 460px) {
  .w3l-products-page .post-sec {
    padding: 10.5em 3em;
  }
}

@media all and (max-width: 400px) {
  .w3l-products-page .post-sec {
    padding: 7.5em 2em;
  }
}

@media all and (max-width: 380px) {
  .w3l-products-page .post-sec {
    padding: 5.5em 2em;
  }
}

.w3l-products-page .submit {
  margin-top: 1em;
}

.w3l-products-page ul.category.product-page li {
  padding-bottom: 1em;
}

.w3l-products-page ul.category li:last-child {
  padding-bottom: 0;
}

@media (max-width: 1050px) {
  .w3l-products-page .gallery28-align {
    grid-column-gap: 70px;
  }
}

@media (max-width: 992px) {
  .w3l-products-page .gallery28-head h3 {
    font-size: 30px;
    line-height: 35px;
  }

  .w3l-products-page #gallery28-block {
    padding: 60px 0 100px;
  }

  .w3l-products-page .gallery28-align {
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }

  .w3l-products-page .gallery28-head p {
    margin-top: 1em;
  }
}

@media (max-width: 500px) {
  .w3l-products-page .gallery28-align {
    grid-row-gap: 30px;
  }
}

@media (max-width: 440px) {
  .w3l-products-page #gallery28-block {
    padding: 40px 0 80px;
  }

  .w3l-products-page .gallery28-img {
    grid-column-gap: 15px;
  }

  .w3l-products-page .gallery28-head h3 {
    font-size: 25px;
    line-height: 30px;
  }

  .w3l-products-page .csslider>.navigation {
    bottom: -14%;
  }
}

@media all and (max-width: 992px) {
  .w3l-products-page .right-side-bar {
    grid-template-columns: 1fr;
    order: 2;
  }

  .w3l-products-page .grid-colunm {
    grid-template-columns: 1fr;
  }

  .w3l-products-page .single {
    padding: 60px 0;
  }

  .w3l-products-page .pagination {
    display: block;
  }

  .w3l-products-page .left-product-sing {
    width: 100%;
    padding-right: 0;
  }

  .w3l-products-page .product-right-sin {
    width: 100%;
    margin-top: 2em;
  }
}

@media all and (max-width: 768px) {
  .w3l-products-page aside.top-border.d-flex {
    margin-bottom: 1.5em;
  }
}

@media all and (max-width: 568px) {
  .w3l-products-page .input-group-btn {
    width: 100%;
    margin-top: 15px;
  }

  .w3l-products-page select.btn.btn-default {
    width: 100%;
  }

  .w3l-products-page .single {
    padding: 40px 0;
  }

  .w3l-products-page .top-sing-sec {
    margin-top: 2em;
  }
}

.w3l-products-page .owl-carousel,
.w3l-products-page .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.w3l-products-page .owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.w3l-products-page .owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

.w3l-products-page .owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.w3l-products-page .owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.w3l-products-page .owl-carousel .owl-item,
.w3l-products-page .owl-carousel .owl-wrapper {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.w3l-products-page .owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.w3l-products-page .owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.w3l-products-page .owl-carousel .owl-dots.disabled,
.w3l-products-page .owl-carousel .owl-nav.disabled {
  display: none;
}

.w3l-products-page .no-js .owl-carousel,
.w3l-products-page .owl-carousel.owl-loaded {
  display: block;
}

.w3l-products-page .owl-carousel .owl-dot,
.w3l-products-page .owl-carousel .owl-nav .owl-next,
.w3l-products-page .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.w3l-products-page .owl-carousel .owl-nav button.owl-next,
.w3l-products-page .owl-carousel .owl-nav button.owl-prev,
.w3l-products-page .owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.w3l-products-page .owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.w3l-products-page .owl-carousel.owl-hidden {
  opacity: 0;
}

.w3l-products-page .owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.w3l-products-page .owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.w3l-products-page .owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.w3l-products-page .owl-carousel.owl-rtl {
  direction: rtl;
}

.w3l-products-page .owl-carousel.owl-rtl .owl-item {
  float: right;
}

.w3l-products-page .owl-carousel .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.w3l-products-page .owl-carousel .owl-animated-in {
  z-index: 0;
}

.w3l-products-page .owl-carousel .owl-animated-out {
  z-index: 1;
}

.w3l-products-page .owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.w3l-products-page .owl-height {
  transition: height .5s ease-in-out;
}

.w3l-products-page .owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity .4s ease;
}

.w3l-products-page .owl-carousel .owl-item .owl-lazy:not([src]),
.w3l-products-page .owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.w3l-products-page .owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.w3l-products-page .owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.w3l-products-page .owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform .1s ease;
}

.w3l-products-page .owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.w3l-products-page .owl-carousel .owl-video-playing .owl-video-play-icon,
.w3l-products-page .owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.w3l-products-page .owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .4s ease;
}

.w3l-products-page .owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.w3l-products-page .owl-dots {
  display: none;
}

.w3l-content-23 {
  /*-- Content-23-block --*/
}

.w3l-content-23 .icon-eff {
  width: 65px;
  height: 65px;
  background: #fff;
  border-radius: 50%;
  line-height: 65px;
  margin: 0 auto;
  display: block;
}

.w3l-content-23 .icon-eff span {
  color: var(--theme-color-2);
  font-size: 30px;
  line-height: 65px;
}

.w3l-content-23 #content23-block {
  padding: 80px 0;
}

.w3l-content-23 .text-center {
  text-align: center;
}

.w3l-content-23 .content23-head {
  max-width: 750px;
  margin: 0 auto 50px;
}

.w3l-content-23 .content23-head h3 {
  font-size: 35px;
  line-height: 40px;
}

.w3l-content-23 .content23-head p {
  margin-top: 12px;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 25px;
  text-align: center;
}

.w3l-content-23 .d-grid {
  display: grid;
}

.w3l-content-23 .content23-col-2 {
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}

.w3l-content-23 .back-cont-1 {
  background: url(../images/c1.jpg) no-repeat 0px 0px;
  background-size: cover;
}

.w3l-content-23 .back-cont-2 {
  background: url(../images/pf1.jpg) no-repeat 0px 0px;
  background-size: cover;
}

.w3l-content-23 .back-cont-3 {
  background: url(../images/pj1.jpg) no-repeat 0px 0px;
  background-size: cover;
}

.w3l-content-23 .back-cont-4 {
  background: url(../images/pr1.jpg) no-repeat 0px 0px;
  background-size: cover;
}

.w3l-content-23 .back-cont-5 {
  background: url(../images/ps1.jpg) no-repeat 0px 0px;
  background-size: cover;
}

.w3l-content-23 .back-cont-6 {
  background: url(../images/pb1.jpg) no-repeat 0px 0px;
  background-size: cover;
}

.w3l-content-23 .content-texts {
  background: rgba(8, 18, 39, 0.52);
  padding: 50px;
}

.w3l-content-23 .content23-grid h4 a {
  font-size: 23px;
  line-height: 30px;
  color: #fff;
  margin: 10px 0;
  display: block;
  font-weight: 600;
}

.w3l-content-23 .content23-grid p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #eee;
}

@media all and (max-width: 1080px) {
  .w3l-content-23 #content23-block {
    padding: 60px 0;
  }
}

@media all and (max-width: 991px) {
  .w3l-content-23 .content-texts {
    padding: 50px 10px;
  }
}

@media all and (max-width: 800px) {
  .w3l-content-23 .content23-col-2 {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }

  .w3l-content-23 #content23-block {
    padding: 3rem 0;
  }

  .w3l-content-23 .content23-head p {
    margin-top: 20px;
  }

  .w3l-content-23 .content23-head {
    margin: 0 auto 30px;
  }

  .w3l-content-23 #content23-block {
    padding: 40px 0;
  }
}

@media all and (max-width: 568px) {
  .w3l-content-23 .content23-head h3 {
    font-size: 30px;
    line-height: 35px;
  }
}

@media all and (max-width: 440px) {
  .w3l-content-23 .content23-head h3 {
    font-size: 32px !important;
    line-height: 34px;
  }

  .w3l-content-23 .content-texts {
    padding: 30px;
  }

  .w3l-content-23 .content23-col-2 {
    grid-template-columns: 1fr;
  }
}

@media all and (max-width: 320px) {
  .w3l-content-23 .content23-head h3 {
    font-size: 30px !important;
    line-height: 35px;
  }

  .w3l-content-23 .content-texts {
    padding: 30px 20px;
  }
}

.w3l-text-15 {
  /*-- text15-block --*/
}

.w3l-text-15 #text15-block {
  padding: 80px 0;
  background-color: var(--main-bg-color);
}

.w3l-text-15 h5.text15-heading {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 20px;
}

.w3l-text-15 p.text15-para {
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 20px;
}

.w3l-text-15 .text15-left p {
  font-size: 17px;
  line-height: 25px;
}

.w3l-text-15 .text15-list li {
  font-size: 17px;
  line-height: 25px;
  color: var(--para-color);
  margin-bottom: 4px;
}

.w3l-text-15 .text15-list {
  margin-top: 20px;
}

.w3l-text-15 .two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  margin-top: 50px;
}

.w3l-text-15 .right-column p:nth-child(2) {
  margin-top: 15px;
}

.w3l-text-15 a.btn.button-eff {
  margin-top: 2em;
}

@media all and (max-width: 991px) {
  .w3l-text-15 #text15-block {
    padding: 60px 0;
  }
}

@media all and (max-width: 768px) {
  .w3l-text-15 .two-columns {
    grid-template-columns: 1fr;
  }
}

@media all and (max-width: 480px) {
  .w3l-text-15 #text15-block {
    padding: 40px 0;
  }

  .w3l-text-15 p.text15-para,
  .w3l-text-15 .text15-left p,
  .w3l-text-15 .text15-list li {
    font-size: 16px;
  }
}

@media all and (max-width: 384px) {
  .w3l-text-15 h5.text15-heading {
    margin-bottom: 15px;
  }
}

.w3l-post-sec-main .post-cont {
  max-width: 1000px;
  margin: auto;
  border: 2px solid #eee;
  padding: 40px;
}

.w3l-post-sec-main .grid-col-2 {
  grid-template-columns: 1fr 1fr;
  align-items: end;
  grid-gap: 20px;
}

.w3l-post-sec-main .ele-9its_grid input,
.w3l-post-sec-main .ele-9its_grid select {
  outline: none;
  font-size: 16px;
  border: none;
  color: #666;
  padding: 15px;
  width: 100%;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  background: #fff;
}

.w3l-post-sec-main input:focus,
.w3l-post-sec-main select:focus {
  outline: none;
}

.w3l-post-sec-main .ele-9its_grid select {
  background: url(../images/down.png) no-repeat 96% 52%;
  width: 100%;
}

.w3l-post-sec-main .ele-9its_grid h5 {
  color: var(--theme-color-2);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

.w3l-post-sec-main button.btn.button-eff {
  margin-top: 1em;
  padding: 10px 40px;
}

.w3l-post-sec-main .heading-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2em;
}

.w3l-post-sec-main .heading-sec h5 {
  font-size: 20px;
}

.w3l-post-sec-main .heading-sec p {
  color: #4c4c4c;
  font-size: 17px;
}

.w3l-post-sec-main .heading-sec p span {
  color: var(--theme-color-2);
  font-size: 30px;
  margin-right: 10px;
  vertical-align: sub;
}

@media (max-width: 991px) {
  .w3l-post-sec-main .heading-sec {
    display: block;
  }

  .w3l-post-sec-main .heading-sec p {
    margin-top: 10px;
  }

  .w3l-post-sec-main .grid-col-2 {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}

@media (max-width: 480px) {
  .w3l-post-sec-main .post-cont {
    padding: 30px;
  }
}

.w3l-grid-3 .top-bottom {
  padding: 80px 0;
  background: var(--main-bg-color);
}

.w3l-grid-3 .w3layouts-grids-four p {
  font-size: 16px;
  line-height: 25px;
  margin: 10px 0px 20px;
}

.w3l-grid-3 .w3layouts-grids-four h4 {
  font-size: 20px;
  text-transform: uppercase;
}

.w3l-grid-3 .w3layouts-grids-four {
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px 0 rgba(17, 17, 17, 0.09);
}

.w3l-grid-3 .divied-four-grids img {
  width: 100%;
  display: block;
}

.w3l-grid-3 .middle-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}

.w3l-grid-3 .text-link h6 img {
  margin-left: 7px;
  margin-top: 8px;
}

.w3l-grid-3 .text-link h6 :hover {
  opacity: .7;
}

.w3l-grid-3 .w3layouts-grids-four ul li {
  font-size: 15px;
  color: #000;
  font-weight: 600;
  line-height: 25px;
  margin-right: 20px;
  margin-top: 15px;
  display: inline-block;
}

.w3l-grid-3 .divied-four-grids a {
  display: block;
}

.w3l-grid-3 .w3layouts-grids-four del {
  font-size: 14px;
  color: #a0a0a0;
}

.w3l-grid-3 a.all-deals {
  background: #000;
  color: #fff;
  font-size: 15px;
  line-height: 25px;
  padding: 15px 20px;
}

.w3l-grid-3 a.all-deals:hover {
  opacity: .8;
}

.w3l-grid-3 span.fa.fa-angle-right.icon {
  font-size: 16px;
  margin-left: 10px;
  color: #c3c3c3;
}

.w3l-grid-3 .pagination {
  margin-top: 5em;
  text-align: center;
}

.w3l-grid-3 .pagination ul li {
  display: inline-block;
}

.w3l-grid-3 .pagination a {
  display: inline-block;
  color: #333;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
}

.w3l-grid-3 .pagination a span {
  margin: 0;
}

.w3l-grid-3 .pagination a.active,
.w3l-grid-3 .pagination a:hover {
  background-color: var(--theme-color-1);
  color: #fff;
}

.w3l-grid-3 a.not-allowed {
  cursor: not-allowed;
  color: #c3c2c2;
}

.w3l-grid-3 .pagination .not-allowed:hover {
  opacity: 1;
  background: transparent;
  color: #c3c2c2;
}

@media (max-width: 1366px) {
  .w3l-grid-3 .w3layouts-grids-four h4 {
    font-size: 18px;
  }

  .w3l-grid-3 .w3layouts-grids-four p {
    font-size: 15px;
  }
}

@media (max-width: 1280px) {
  .w3l-grid-3 .top-bottom {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}

@media (max-width: 1080px) {
  .w3l-grid-3 .middle-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .w3l-grid-3 .middle-section {
    grid-template-columns: 1fr;
  }

  .w3l-grid-3 .w3layouts-grids-four {
    padding: 15px 15px;
  }

  .w3l-grid-3 .text-link {
    padding-top: 30px;
  }

  .w3l-grid-3 .text14-left p {
    margin-bottom: 15px;
  }
}

.w3l-features-photo-7 .w3l-features-photo-7_sur {
  padding: 80px 0;
}

.w3l-features-photo-7 .w3l-features-photo-7_top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

.w3l-features-photo-7 .feat_top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  margin-top: 40px;
}

.w3l-features-photo-7 .w3l-features-photo-7_top h4 {
  margin-bottom: 24px;
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
}

.w3l-features-photo-7 .w3l-features-photo-7_top h5 {
  font-size: 20px;
  line-height: 25px;
  color: #304659;
  margin: 12px 0;
}

.w3l-features-photo-7 .w3l-features-photo-7_top h5 a {
  color: #304659;
  text-decoration: none;
}

.w3l-features-photo-7 .w3l-features-photo-7_top h5 a:hover {
  opacity: 0.8;
}

.w3l-features-photo-7 .w3l-features-photo-7_top p.para {
  font-size: 17px;
  line-height: 25px;
  color: #555A64;
  margin-bottom: 30px;
}

.w3l-features-photo-7 img {
  width: 100%;
}

.w3l-features-photo-7 ul.star li {
  display: inline-block;
}

.w3l-features-photo-7 span.item_price {
  font-size: 18px;
  color: #f05448;
  font-weight: bold;
}

.w3l-features-photo-7 .w3l-features-photo-7_top-left p del {
  margin: 0 10px;
}

.w3l-features-photo-7 p.coasts {
  margin: 10px 0 20px;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 20px;
}

.w3l-features-photo-7 .sec-grid-1 {
  margin-top: 1rem;
}

.w3l-features-photo-7 .sec-grid-1 label {
  font-size: 16px;
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 600;
  color: #2C3038;
  display: block;
}

.w3l-features-photo-7 .sec-grid-1 select {
  -webkit-appearance: menulist-button;
}

.w3l-features-photo-7 .sec-grid-1 select,
.w3l-features-photo-7 input {
  border: 1px solid rgba(51, 51, 51, 0.25);
  padding: 10px;
  width: 120px;
  font-size: 16px;
  color: #555A64;
  background: transparent;
}

.w3l-features-photo-7 .inline-cont {
  display: flex;
  align-items: center;
  margin-top: 3rem;
}

.w3l-features-photo-7 .buttons-teams {
  margin-left: 1em;
}

.w3l-features-photo-7 .buttons-teams ul li {
  display: inline-block;
  margin: 0 4px;
  vertical-align: middle;
}

.w3l-features-photo-7 .buttons-teams li span {
  font-size: 22px;
}

.w3l-features-photo-7 .buttons-teams li span.fa-facebook-square {
  color: #3b5998;
}

.w3l-features-photo-7 .buttons-teams li span.fa-twitter-square {
  color: #00acee;
}

.w3l-features-photo-7 .buttons-teams li span.fa-google-plus-square {
  color: #DD4B39;
}

.w3l-features-photo-7 .gallery-7_sur {
  padding: 70px 0;
  background: #F5F9FC;
}

.w3l-features-photo-7 .galleryContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  position: relative;
}

.w3l-features-photo-7 .gallery {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  border: 1px solid #eee;
  padding: 20px;
}

.w3l-features-photo-7 .gallery input {
  display: none;
}

.w3l-features-photo-7 .galleryImage {
  transition: opacity 0.25s ease-out;
  overflow: hidden;
  position: absolute;
  top: 0;
  opacity: 0;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.w3l-features-photo-7 .gallery>img:first-of-type {
  position: relative !important;
  display: flex !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 10;
}

.w3l-features-photo-7 .gallery>img:nth-child(2) {
  margin: 0 auto;
}

.w3l-features-photo-7 .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-features-photo-7 .arrowsContainer img {
  width: 100px;
  background: white;
  opacity: 0.4;
  padding-bottom: 20px;
  transition: 0.1s ease;
}

.w3l-features-photo-7 .leftArrow {
  border-top-right-radius: 10px;
  position: absolute;
  bottom: -20px;
  left: -30px;
  padding-left: 40px;
  padding-right: 15px;
}

.w3l-features-photo-7 .rightArrow {
  border-top-left-radius: 10px;
  position: absolute;
  bottom: -20px;
  right: -30px;
  padding-right: 40px;
  padding-left: 15px;
}

.w3l-features-photo-7 .leftArrow:active,
.w3l-features-photo-7 .rightArrow:active {
  transform: scale(0.95, 0.95);
}

.w3l-features-photo-7 .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-features-photo-7 .thumbnailImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 1px solid #eee;
  padding: 10px;
}

.w3l-features-photo-7 .thumbnailImage {
  margin: 0 5px;
  -moz-scroll-snap-align: start;
  -ms-scroll-snap-align: start;
  scroll-snap-align: start;
}

.w3l-features-photo-7 .thumbnailImage:first-child {
  margin-left: 0px;
}

.w3l-features-photo-7 .thumbnailImage:last-child {
  margin-right: 0px;
}

.w3l-features-photo-7 #c1:checked+#i1 {
  opacity: 1;
}

.w3l-features-photo-7 #c2:checked+#i2 {
  opacity: 1;
}

.w3l-features-photo-7 #c3:checked+#i3 {
  opacity: 1;
}

.w3l-features-photo-7 #c4:checked+#i4 {
  opacity: 1;
}

.w3l-features-photo-7 #c5:checked+#i5 {
  opacity: 1;
}

.w3l-features-photo-7 #c6:checked+#i6 {
  opacity: 1;
}

.w3l-features-photo-7 #c7:checked+#i7 {
  opacity: 1;
}

.w3l-features-photo-7 #c8:checked+#i8 {
  opacity: 1;
}

.w3l-features-photo-7 #c9:checked+#i9 {
  opacity: 1;
}

.w3l-features-photo-7 #c10:checked+#i10 {
  opacity: 1;
}

.w3l-features-photo-7 #c11:checked+#i11 {
  opacity: 1;
}

.w3l-features-photo-7 #c12:checked+#i12 {
  opacity: 1;
}

.w3l-features-photo-7 #c13:checked+#i13 {
  opacity: 1;
}

.w3l-features-photo-7 #c1:checked+#i1+#arrows1 {
  display: flex;
}

.w3l-features-photo-7 #c2:checked+#i2+#arrows2 {
  display: flex;
}

.w3l-features-photo-7 #c3:checked+#i3+#arrows3 {
  display: flex;
}

.w3l-features-photo-7 #c4:checked+#i4+#arrows4 {
  display: flex;
}

.w3l-features-photo-7 #c5:checked+#i5+#arrows5 {
  display: flex;
}

.w3l-features-photo-7 #c6:checked+#i6+#arrows6 {
  display: flex;
}

.w3l-features-photo-7 .thumbnails label,
.w3l-features-photo-7 .arrowsContainer label {
  cursor: pointer;
  overflow: hidden;
}

.w3l-features-photo-7 .thumbnails label img {
  transition: 0.3s ease;
}

.w3l-features-photo-7 .thumbnails label img:hover {
  transform: scale(1.2, 1.2);
}

.w3l-features-photo-7 label:focus {
  box-shadow: 0px 0px 7px 1px white;
}

@media screen and (max-width: 1440px) {

  .w3l-features-photo-7 #c4:checked+#i4,
  .w3l-features-photo-7 #c5:checked+#i5,
  .w3l-features-photo-7 #c3:checked+#i3 {
    width: 100%;
  }
}

@media screen and (max-width: 1280px) {
  .w3l-features-photo-7 .w3l-features-photo-7_top h4 {
    font-size: 32px;
  }
}

@media screen and (max-width: 1080px) {
  .w3l-features-photo-7 .wrapper {
    width: 90%;
  }
}

@media screen and (max-width: 992px) {
  .w3l-features-photo-7 .w3l-features-photo-7_top {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .w3l-features-photo-7 .w3l-features-photo-7_top h4 {
    font-size: 30px;
  }

  .w3l-features-photo-7 .w3l-features-photo-7_sur {
    padding: 60px 0;
  }
}

@media screen and (max-width: 667px) {
  .w3l-features-photo-7 .w3l-features-photo-7_top h4 {
    font-size: 28px;
    line-height: 32px;
  }
}

@media screen and (max-width: 568px) {
  .w3l-features-photo-7 .feat_top {
    grid-template-columns: 1fr;
  }

  .w3l-features-photo-7 .w3l-features-photo-7_top h4 {
    font-size: 25px;
    line-height: 30px;
  }

  .w3l-features-photo-7 .gallery {
    overflow: hidden;
  }
}

@media screen and (max-width: 415px) {
  .w3l-features-photo-7 .wrapper {
    width: 100%;
  }

  .w3l-features-photo-7 .w3l-features-photo-7_sur {
    padding: 40px 0;
  }

  .w3l-features-photo-7 .thumbnailImage img {
    padding: 5px;
  }

  .w3l-features-photo-7 .thumbnailImage {
    margin: 0 2px;
  }

  .w3l-features-photo-7 .w3l-features-photo-7_top p.para {
    font-size: 16px;
  }
}

@media screen and (max-width: 320px) {
  .w3l-features-photo-7 .w3l-features-photo-7_top h4 {
    font-size: 22px;
    line-height: 28px;
  }

  .w3l-features-photo-7 .gallery {
    padding: 10px;
  }
}

.w3l-ecom-cart .covers-main {
  padding: 80px 0;
}

.w3l-ecom-cart .product-image {
  float: left;
  width: 25%;
  margin-right: 4em;
}

.w3l-ecom-cart .product-details {
  float: left;
  width: 37%;
}

.w3l-ecom-cart .product-price {
  float: left;
  width: 12%;
  color: #2C3038;
  font-weight: bold;
}

.w3l-ecom-cart .product-quantity {
  float: left;
  width: 25%;
  /*text-align: center; */
}

.w3l-ecom-cart .product-removal {
  float: left;
  width: 9%;
}

.w3l-ecom-cart .product-line-price {
  float: left;
  width: 25%;
  text-align: right;
  color: #f05448;
  font-weight: bold;
}

.w3l-ecom-cart .group:before,
.w3l-ecom-cart .shopping-cart:before,
.w3l-ecom-cart .column-labels:before,
.w3l-ecom-cart .product:before,
.w3l-ecom-cart .totals-item:before,
.w3l-ecom-cart .group:after,
.w3l-ecom-cart .shopping-cart:after,
.w3l-ecom-cart .column-labels:after,
.w3l-ecom-cart .product:after,
.w3l-ecom-cart .totals-item:after {
  content: '';
  display: table;
}

.w3l-ecom-cart .group:after,
.w3l-ecom-cart .shopping-cart:after,
.w3l-ecom-cart .column-labels:after,
.w3l-ecom-cart .product:after,
.w3l-ecom-cart .totals-item:after {
  clear: both;
}

.w3l-ecom-cart .group,
.w3l-ecom-cart .shopping-cart,
.w3l-ecom-cart .column-labels,
.w3l-ecom-cart .product,
.w3l-ecom-cart .totals-item {
  zoom: 1;
}

.w3l-ecom-cart .product .product-price:before,
.w3l-ecom-cart .product .product-line-price:before,
.w3l-ecom-cart .totals-value:before {
  content: '';
}

.w3l-ecom-cart label {
  color: #aaa;
}

.w3l-ecom-cart .column-labels label {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  color: #333;
  font-weight: 600;
}

.w3l-ecom-cart .covers-main h1 {
  margin-bottom: 2.5rem;
}

.w3l-ecom-cart .product {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.w3l-ecom-cart .product .product-details .product-title a {
  margin-right: 20px;
  font-weight: 600;
  color: #2C3038;
  font-size: 18px;
}

.w3l-ecom-cart .product .product-details .product-description {
  margin: 5px 20px 5px 0;
  line-height: 1.4em;
}

.w3l-ecom-cart .product .product-quantity input {
  width: 57px;
  border: none;
  padding: 6px 11px;
  background: #eee;
  border: 1px solid #d6d6d6;
  border-radius: 20px;
}

.w3l-ecom-cart .product .remove-product {
  border: 0;
  padding: 8px 14px;
  background-color: #505050;
  color: #fff;
  font-size: 12px;
  border-radius: 3px;
}

.w3l-ecom-cart .product .remove-product:hover {
  background-color: #333;
}

.w3l-ecom-cart .totals .totals-item {
  float: right;
  clear: both;
  width: 100%;
  margin-bottom: 10px;
}

.w3l-ecom-cart .totals .totals-item label {
  float: left;
  clear: both;
  width: 79%;
  text-align: right;
}

.w3l-ecom-cart .totals .totals-item .totals-value {
  float: right;
  width: 21%;
  text-align: right;
}

.w3l-ecom-cart .checkout {
  float: right;
  margin-top: 2em;
}

.w3l-ecom-cart .checkout:hover {
  background-color: #000;
}

@media screen and (max-width: 991px) {
  .w3l-ecom-cart .covers-main {
    padding: 60px 0;
  }

  .w3l-ecom-cart .product-image {
    margin-right: 2em;
  }

  .w3l-ecom-cart .product-line-price {
    width: 15%;
  }

  .w3l-ecom-cart .product-quantity {
    width: 60%;
  }
}

@media screen and (max-width: 414px) {
  .w3l-ecom-cart .covers-main {
    padding: 40px 0;
  }
}

@media screen and (max-width: 900px) {
  .w3l-ecom-cart .product {
    display: block;
    padding-bottom: 20px;
  }

  .w3l-ecom-cart .shopping-cart {
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }

  .w3l-ecom-cart .column-labels {
    display: none;
  }

  .w3l-ecom-cart .product-image {
    margin-right: 2em;
    width: 25%;
  }

  .w3l-ecom-cart .product-image img {
    margin-bottom: 10px;
  }

  .w3l-ecom-cart .product-details {
    float: none;
    margin-bottom: 10px;
    width: auto;
  }

  .w3l-ecom-cart .product-price {
    clear: both;
    width: 70px;
  }

  .w3l-ecom-cart .product-quantity input {
    margin-left: 20px;
  }

  .w3l-ecom-cart .product-removal {
    width: auto;
  }

  .w3l-ecom-cart .product-line-price {
    float: right;
    width: 70px;
  }
}

@media screen and (max-width: 384px) {
  .w3l-ecom-cart .product-removal {
    float: right;
  }

  .w3l-ecom-cart .product-line-price {
    float: right;
    clear: left;
    width: auto;
    margin-top: 20px;
  }

  .w3l-ecom-cart .product .product-line-price:before {
    content: '';
  }

  .w3l-ecom-cart .totals .totals-item label {
    width: 60%;
  }

  .w3l-ecom-cart .totals .totals-item .totals-value {
    width: 40%;
  }

  .w3l-ecom-cart .covers-main h1 {
    margin-bottom: 2rem;
  }
}

.main-bg-color {
  background-color: var(--main-bg-color);
}

.links-email a {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  text-align: right;
  color: var(--title-color);
  margin-left: 15px;
}

.overlay-banner {
  background: rgba(16, 16, 16, 0.57);
  z-index: 9;
  padding: 3em 0;
}

.email-section-tem {
  padding: 2.5em;
}

.email-tem .text h2 {
  font-size: 35px;
}

table.agileits_footer {
  background: #212121;
}

.overlay-lavi {
  background: rgba(17, 24, 31, 0.55);
  z-index: 9;
  padding: 4em 2em;
  text-align: center;
}

.counter-text .num {
  color: #fff;
  font-size: 2em;
  font-weight: bold;
}

.counter-text .name {
  display: block;
  color: #fff;
  font-size: 0.9em;
  font-weight: 400;
}

.email-hny-section {
  padding: 3em 2em;
  background: #fff;
}

.email-button {
  margin-top: 1em;
}

@media screen and (max-width: 700px) {
  table.wthree_copy_right_grid_right {
    width: 100%;
    display: block;
    margin-top: 10px;
  }

  table.wthree_copy_right_grid_left {
    width: 100% !important;
    display: block;
  }
}

@media screen and (max-width: 667px) {
  table.wthree_footer_grid_left-2 {
    margin-top: 1.5em;
  }

  td.agileinfo_footer_space {
    height: 32px;
  }

  td.wthree_weversion {
    text-align: center;
    margin-top: 8px;
    display: block;
  }

  table.wthree_copy_right_grid_left {
    text-align: center;
  }

  td.agileinfo_copy_right_space {
    height: 30px;
  }

  td.title-text {
    font-size: 1.5em !important;
  }

  table.w3l-email-wrapper {
    width: 100%;
  }

  table.container-middle.combo {
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .email-container {
    max-width: 720px !important;
  }

  table.footer-wid-w3 {
    max-width: 670px;
  }

  table.wthree_copy_right_grid_left {
    width: 369px !important;
  }
}

@media screen and (max-width: 667px) {
  td.w3l-p {
    font-size: 15px !important;
  }

  table.footer-wid-w3 {
    max-width: 500px;
  }

  .email-container {
    max-width: 100% !important;
  }

  td.w3ls_modi {
    font-size: 2.5em !important;
  }

  .text.banner-con h2 {
    font-size: 1.8em !important;
  }

  a.agile-main-2 {
    font-size: 23px !important;
  }

  table.wthree_footer_grid_left {
    width: 100%;
  }

  td.title-text {
    font-size: 1.7em !important;
  }

  table.wthree_copy_right_grid_left {
    width: 100% !important;
  }

  table.wthree_copy_right_grid_right {
    width: 100% !important;
  }
}

@media screen and (max-width: 640px) {
  .banner-con {
    padding: 0 3em !important;
  }

  .email-hny-section {
    padding: 2em 1em;
  }

  .text.banner-con h2 {
    font-size: 1.7em !important;
  }

  .simple-button {
    font-size: 14px;
  }

  table.scale75 {
    width: 600px;
  }
}

@media screen and (max-width: 600px) {
  table {
    width: 100% !important;
  }

  td.logo {
    width: 100%;
    float: left;
    text-align: center !important;
  }

  td.logo.nav-top {
    width: 100%;
    float: left;
  }

  .banner-con {
    padding: 0 1em !important;
  }

  table.pro1-w3.scale {
    width: 100% !important;
  }

  table.scale-90 {
    width: 450px !important;
  }

  td.produ {
    height: 0;
  }

  table.w3l_logo_right {
    width: 50% !important;
    text-align: right;
  }

  table.logo {
    width: 50% !important;
  }

  td.main-text-paras {
    font-size: 1em !important;
  }

  table.dairy {
    width: 580px;
    width: 450px !important;
  }

  table.w3_number {
    width: 30px !important;
  }

  table.scale {
    width: 358px !important;
    margin: 0 auto;
    float: none;
  }

  .middle-team-w3 {
    margin: 1em 0;
  }

  td.abt-pad {
    height: 30px !important;
  }

  table.table-inner {
    max-width: 400px;
    margin: 0 auto;
  }

  td.logo a img {
    max-width: 130px;
  }

  img {
    width: 100%;
  }

  a.agile-main-2 {
    margin: 10px 0 5px;
    display: block;
  }

  table.scale-90 {
    margin-bottom: 1em;
  }

  td.logo {
    width: 100% !important;
  }
}

@media screen and (max-width: 580px) {
  table {
    width: 100% !important;
  }

  .text.banner-con h2 {
    font-size: 1.8em !important;
  }
}

@media screen and (max-width: 480px) {
  td.w3ls_modi {
    font-size: 2.3em !important;
  }

  td.w3l_space1 {
    height: 50px !important;
  }

  td.w3l_space {
    height: 60px !important;
  }

  .text.banner-con p {
    font-size: 14px !important;
  }

  .text.banner-con h2 {
    font-size: 1.6em !important;
  }

  td.title-scale {
    height: 20px !important;
  }

  table.footer-wid-w3 {
    padding: 0 2em;
  }
}

@media screen and (max-width: 440px) {
  td.w3ls_modi {
    font-size: 2em !important;
  }

  table.dairy {
    width: 100% !important;
    padding: 0 2em;
  }

  table.scale-90 {
    width: 100% !important;
    padding: 0 2em;
  }

  td.h-t {
    font-size: 30px !important;
  }
}

@media screen and (max-width: 414px) {
  .button-style-wthree {
    padding: 7px 28px;
  }

  table.scale {
    width: 300px !important;
  }

  .overlay-lavi {
    padding: 1em 1em;
  }

  td.sub-gd.counter-gd {
    width: 100% !important;
    display: block;
    margin: 1.5em 0;
  }

  .email-section-tem {
    padding: 2em;
  }
}

@media screen and (max-width: 384px) {
  .text.banner-con h2 {
    font-size: 1.7em !important;
  }

  .text.banner-con p {
    font-size: 13px;
  }

  .text.banner-con h2 {
    font-size: 1.4em !important;
  }

  td.main-text-paras {
    font-size: .9em !important;
  }

  td.h-t {
    font-size: 28px !important;
  }

  td.agileinfo_copy_right_space,
  td.agileinfo_footer_space {
    height: 20px !important;
  }

  .email-section-tem {
    padding: 2em .5em;
  }
}

@media screen and (max-width: 320px) {
  td.title-text {
    font-size: 1.5em !important;
  }

  table.header-w3ls {
    padding: 8px 15px;
  }

  td.w3ls_modi {
    font-size: 1.8em !important;
  }

  td.main-text-paras {
    font-size: .85em !important;
  }

  table.w3ls_banner_info {
    padding: 0 20px;
  }

  a.button-style-wthree-2 {
    padding: 8px 24px;
  }

  label.content {
    font-size: 14px;
  }

  table.dairy {
    padding: 0 1em;
  }

  a.agile-main-2 {
    font-size: 22px !important;
  }

  table.scale-90 {
    padding: 0 1.5em;
  }

  table.scale {
    width: 250px !important;
  }
}

/*# sourceMappingURL=style-freedom.css.map */
