@charset "UTF-8";
/*
*
*
Theme Name: isglobalweb
Theme URI: 
Description: Wordpress Theme, best suited for personal blogs, News and Blogs
Author: Abhishek Shukla
Author URI: 
Version: 1.0
License: 
License URI: 
Text Domain: isglobalweb
Tags: custom-header, custom-menu, editor-style, featured-images, post-formats, sticky-post, translation-ready
*
*
*/
/*--------------------------------------------------------------
   TABLE OF CONTENTS:
----------------------------------------------------------------
  #Reset
  #Basic Styles
  #Site Styles
  #Typography
  #Links
  #Lists
  #Images
  #Buttons
  #Forms
  #Misc
  #Home Slider
  #Latest Blog Home
  #Footer
  #Blog Page
  #Pagniation
  #Sidebar
  #Blog Detail Page
  #Audio

*/
.container {
  max-width: 1140px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/**
 * 1. =Resets & Core Elements
 * ----------------------------------------------------------------------------
 */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em,
img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, hr,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figure, figcaption, hgroup,
menu, footer, header, nav, section, summary, time, mark, audio, video,
button, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 100%;
  font-family: inherit;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  font-weight: 600;
  color: #19E6B1;
}
a:hover {
  text-decoration: underline;
  color: #19E6B1;
}

a:hover {
  text-decoration: none;
}

/* #Lists
================================================== */
ul,
ol {
  margin-bottom: 20px;
}

ol,
ul.square,
ul.circle,
ul.disc {
  margin-left: 30px;
}

ul.square {
  list-style: square outside;
}

ul.circle {
  list-style: circle outside;
}

ul.disc {
  list-style: disc outside;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 4px 0 5px 30px;
}

ul ul li,
ul ol li,
ol ol li,
ol ul li {
  margin-bottom: 6px;
}

ul {
  list-style: disc inside;
}

li {
  line-height: 22px;
  margin-bottom: 12px;
}
li p {
  line-height: 21px;
}

ul.large li {
  line-height: 21px;
}

ol {
  list-style: decimal;
  margin-left: 1.5em;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

blockquote h2 {
  font-size: 1.8rem;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Be compatible with "input" defaults */
button,
input[type=submit] {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  cursor: pointer;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Normalize webkit search */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
}

/* Fix IE scrollbar */
textarea {
  overflow: auto;
}

a img {
  border: 0;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
}

/* Reset placeholder color */
::-webkit-input-placeholder {
  color: inherit;
}

::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
}

/* Code block */
pre {
  display: block;
  font-family: Monaco, Monospace;
  font-size: 14px;
  line-height: 22px;
  background-color: #f5f5f5;
  overflow: auto;
  word-wrap: break-word;
  padding: 20px;
  margin-bottom: 30px;
}

/* #Basic Styles
================================================== 
*/
body {
  background: #ffffff;
  color: #666;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */
  -webkit-text-size-adjust: 100%;
}

button,
select,
input {
  font-family: "Montserrat", sans-serif;
}

/*  Blockquotes  */
blockquote,
blockquote p {
  font-size: 18px;
  line-height: 30px;
  font-style: italic;
  font-weight: 300;
}

blockquote {
  padding: 20px 20px 20px 20px;
  border: none;
  border-left: 6px solid #ddd;
  border-radius: 1px;
  margin-bottom: 20px;
  margin-top: 20px;
}

blockquote cite {
  display: block;
  font-size: 12px;
  color: #555;
}

blockquote cite:before {
  content: "— ";
}

blockquote cite a,
blockquote cite a:visited,
blockquote cite a:visited {
  color: #555;
}

hr {
  border: solid #ddd;
  border-width: 1px 0 0;
  clear: both;
  margin: 10px 0 30px;
  height: 0;
}

/* #Links
================================================== */
a {
  transition: color 0.2s ease-out;
}

a,
a:visited,
a:before,
a:after {
  text-decoration: none;
  outline: 0;
  transition: all 0.2s;
}

a:hover,
a:focus {
  text-decoration: none;
}

p a,
p a:visited {
  line-height: inherit;
}

/*Default Style for editor*/
table,
th,
td {
  border: 1px solid #d1d1d1;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  border-width: 1px 0 0 1px;
  margin: 0 0 1.75em;
  table-layout: fixed;
  /* Prevents HTML tables from becoming too wide */
  width: 100%;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

.calendar_wrap th {
  color: #000;
  text-align: center;
}

.calendar_wrap td {
  font-size: 12px;
  text-align: center;
}

th {
  border-width: 0 1px 1px 0;
  font-weight: 700;
}

td {
  border-width: 0 1px 1px 0;
}

th,
td {
  padding: 0.4375em;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol {
  list-style: decimal;
  margin-left: 1.5em;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

dl {
  margin: 0 0 1.75em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 0 1.75em;
}

*, ::after, ::before {
  box-sizing: border-box;
}

.mb-0 {
  margin-bottom: 0;
}

/* #Typography
================================================== */
:root {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}
@media (max-width: 940px) {
  body {
    font-size: 16px;
  }
}

div {
  font-size: 1.4rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #101010;
  font-weight: 700;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: inherit;
}

h1 {
  font-size: 5rem;
  line-height: 1.5;
  margin-bottom: 3rem;
}

h2 {
  font-size: 3.8rem;
  line-height: 1.5;
  margin-bottom: 3rem;
}

h3 {
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 3rem;
}

h4 {
  font-size: 2.1rem;
  line-height: 1.5;
  margin-bottom: 3rem;
  letter-spacing: 0.5px;
}

h5 {
  font-size: 1.6rem;
  line-height: 1.5;
}

h6 {
  font-size: 1.6rem;
  line-height: 1.5;
}

p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 20px 0;
  padding: 0;
}

p img {
  margin: 0;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

small {
  font-size: 80%;
}

.text-link {
  position: relative;
  color: #1D202B;
}
.text-link::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -3px;
  left: 0;
  background: linear-gradient(142deg, rgb(25, 230, 177) 0%, rgb(212, 239, 30) 100%);
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.grey-light-bg {
  background-color: #FBFBFB;
}

.grey-dark-bg {
  background-color: #131313;
}

.clearfix::before, .clearfix::after {
  content: "";
  display: table;
  clear: both;
}

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

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

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

.text-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.row {
  display: flex;
  flex-wrap: wrap;
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(3rem / 2);
  padding-left: calc(3rem / 2);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
/*Header bar*/
.header-bar {
  background: #fff;
  padding: 8px 0px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.02);
  position: relative;
}

/* main Header */
.header-bg {
  background-color: #ffffff;
  padding: 70px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-logo {
  position: absolute;
  top: -9000px;
  left: -9000px;
}

.logo-outer {
  display: table;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .logo-outer {
    margin-bottom: 0;
  }
}
.logo-outer h1 {
  margin-bottom: 0;
  line-height: 50px;
}
.logo-outer a {
  display: inline-block;
}
.logo-outer img {
  display: block;
}

/* navigation menu*/
.navbar {
  border-radius: 0;
  border: none;
}

.navbar-nav {
  text-align: center;
  float: none;
  text-align: center;
  float: none;
  width: 770px;
  display: flex;
  justify-content: space-between;
}
.navbar-nav ul {
  list-style: none;
  margin: 0;
}
.navbar-nav > li {
  display: inline-block;
  margin-right: 0px;
  margin-bottom: 0;
  position: relative;
  float: none;
  list-style: none;
}
.navbar-nav > li a {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0px;
  display: block;
  transition: 0.25s;
  line-height: 50px;
  padding: 0 10px;
}
@media (max-width: 1500px) {
  .navbar-nav > li a {
    font-size: 1.4rem;
  }
}
.navbar-nav > li a:hover {
  color: #ffffff;
}
.navbar-nav > li > .sub-menu {
  border-radius: 0;
  border: none;
  padding: 5px;
  position: absolute;
  background: #FFFFFF;
  text-align: left;
  left: -30px;
  top: 50px;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s linear;
}
.navbar-nav > li > .sub-menu .menu-item-has-children > a {
  font-weight: bold;
}
.navbar-nav > li:hover > .sub-menu {
  top: 60px;
  visibility: visible;
  opacity: 1;
  display: block;
  transition-delay: 0.23s;
}

.nav-section .nav > li.menu-item-has-children > a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  margin-left: 7px;
  color: #999;
  font-size: 13px;
  font-weight: 600;
}
.nav-section ul.nav ul a,
.nav-section .nav ul ul a {
  color: #333333;
  margin: 0;
  font-size: 13px;
  padding: 6px 15px;
  min-width: 250px;
  line-height: 30px;
  transition: 0.25s;
  font-weight: 400;
  box-sizing: border-box;
}
.nav-section ul.nav ul a:hover,
.nav-section .nav ul ul a:hover {
  color: #1DE6AE;
  font-weight: 500;
  text-decoration: none;
  background: #fafafa;
  padding-left: 5px;
}
.nav-section ul.nav li:hover > ul,
.nav-section .nav ul li:hover > ul {
  display: block;
  margin-left: 0;
}
.nav-section li.super > ul {
  width: 1000px;
}
.nav-section li.super > ul > li {
  display: inline-block;
  width: 24%;
  float: left;
}
.nav-section li.super > ul > li:nth-child(4) {
  width: 26%;
}
.nav-section li.super > ul > li:nth-child(5) {
  width: 26%;
}
.nav-section li.super > ul > li:last-child {
  width: 26%;
}
.nav-section .nav .sub-menu ul,
.nav-section .nav .children ul {
  left: 100%;
  top: 0;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  animation: animate-header 0.4s ease-out forwards;
}
.sticky .nav-section .nav > li > a {
  color: #ffffff;
}
.sticky .nav-section .nav > li > a:hover {
  color: #ffffff;
}
.sticky .header-contact .contact-number a {
  color: #ffffff;
}
.sticky:hover #ISGWeb {
  fill: url("#pattern-rainbowColorList");
}
.sticky::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(142deg, #19E6B1, #D4EF1E);
  top: 0;
  left: 0;
}

@keyframes animate-header {
  from {
    background: transparent;
  }
  to {
    background: #131313;
  }
}
body.home .header-fluid {
  background: transparent;
}
body.home .header-fluid .navbar-nav > li a {
  color: #131313;
}
body.home .sticky .nav-section .nav > li > a {
  color: #ffffff;
}
body.home .header-contact .contact-number a {
  color: #1D202B;
}
body.home .sticky .header-contact .contact-number a {
  color: #ffffff;
}

.header-fluid {
  background: #131313;
  padding: 10px 30px;
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
}
.header-fluid .header-container {
  display: flex;
  align-items: center;
}
.header-fluid .header-container .logo {
  position: relative;
  text-align: left;
  margin-bottom: 0;
  vertical-align: middle;
  flex: 1;
}
@media (max-width: 1500px) {
  .header-fluid .header-container .logo {
    flex: 2;
  }
}
.header-fluid .header-container .nav-section {
  flex: 4;
}
.header-fluid .header-container .header-contact {
  flex: 2;
}
@media (max-width: 940px) {
  .header-fluid {
    display: none;
  }
}

.header-back {
  animation: animate-header-back 0.4s ease-in forwards;
}

@keyframes animate-header-back {
  from {
    transform: translateY(88px);
  }
  to {
    transform: translateY(0px);
  }
}
.header-contact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-contact .contact-number {
  margin-right: 3rem;
}
@media (max-width: 1500px) {
  .header-contact .contact-number {
    display: none;
  }
}
.header-contact .contact-number a {
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: bold;
}
@media (max-width: 1500px) {
  .header-contact .contact-number a {
    font-size: 1.4rem;
  }
}

.sidr {
  display: block;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 999999;
  width: 340px;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
  box-shadow: 0 0 50px rgba(70, 70, 70, 0.15);
}
.sidr .sidr-inner:first-child {
  padding: 40px 30px 20px;
}
.sidr ul.menu li,
.sidr .sub-menu {
  border-color: #e8e8e8;
}
.sidr .menu li {
  width: 100%;
  float: left;
  border-bottom: 1px solid;
  border-color: #e8e8e8;
  list-style: none;
}
.sidr .menu li:last-child {
  border-bottom: none;
}
.sidr .menu li a {
  display: block;
  padding: 11px 0;
  float: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: #000;
}
.sidr .navbar-nav > li {
  width: 100%;
}
.sidr ul li .open-sidr {
  color: #000;
  float: right;
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  cursor: pointer;
  padding: 13px 10px;
  font-weight: 700;
}
.sidr .sub-menu {
  display: none;
  clear: both;
  float: none;
  border-top: 1px solid;
  border-color: #e8e8e8;
  width: 100%;
  margin-left: 0;
}
.sidr ul.sub-menu li a {
  padding-left: 15px;
  padding-right: 15px;
}

.sidr.left {
  left: -440px;
  right: auto;
}

.sidr-inner {
  padding: 30px;
  clear: both;
}
.sidr-inner .image-logo img {
  max-width: 80%;
}
.sidr-inner .menu {
  margin: 0;
}
.sidr-inner .social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  float: none;
  margin-bottom: 20px;
}

.open-sidr:after {
  content: "\f078";
}

.sidr .sidr-inner:last-child {
  padding-top: 50px;
}

.sidr-inner .header-social {
  float: left;
}
.sidr-inner .header-social a {
  margin-left: 0;
  margin-right: 12px;
  color: #000;
}
.sidr-inner .header-search-wrap {
  float: right;
  border-left: none;
  padding-left: 0;
  margin-left: 0;
}
.sidr-inner .header-search-wrap a {
  color: #000;
}
.sidr-inner .show-search {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

#mobile-menu {
  background: #002333;
}

#mobile-header-wrapper-sticky-wrapper, #mobile-header-wrapper {
  display: none;
}

#mobile-header,
#mobile-footer {
  display: none;
}

#mobile-menu.mobile-header .image-logo img {
  max-height: 62px;
  max-width: 200px;
}

@media screen and (max-width: 1200px) {
  /* Mobile menu */
  #mobile-header-wrapper,
  #mobile-header-wrapper-sticky-wrapper {
    display: block;
  }
  .header-bg,
  .nav-section,
  .header-bar,
  .header-fluid,
  .header-fluid .logo {
    display: none;
  }
}
#mobile-header-wrapper {
  width: 100%;
  z-index: 100;
}

#mobile-menu.mobile-header {
  height: 70px;
}

.menu-icon {
  position: absolute;
  left: 15px;
  cursor: pointer;
  transition: all 0.1s linear;
  color: #000;
}

#mobile-navigation {
  display: none;
}

#mobile-menu {
  position: relative;
  width: 100%;
  height: 90px;
  box-shadow: 0 0px 28px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: height 0.25s ease;
}

.menu-toggle {
  border: none;
  outline: none;
  position: relative;
  display: inline-block;
  width: 20px;
  max-width: 20px;
  min-width: 20px;
  height: 14px;
  background: transparent;
  border-top: 2px solid;
  border-bottom: 2px solid;
  color: #fff;
  font-size: 0;
  transition: all 0.15s ease-in-out;
  cursor: pointer;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}
.menu-toggle:hover {
  background: transparent;
  color: #fff;
}
.menu-toggle::before, .menu-toggle::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-in-out;
}

.menu-icon span {
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  margin-left: 6px;
  color: #000;
}

#close-mobile-menu {
  position: absolute;
  right: 20px;
  height: 22px;
  width: 32px;
  top: 40px;
}
#close-mobile-menu::before, #close-mobile-menu::after {
  position: absolute;
  right: 20px;
  content: " ";
  height: 18px;
  width: 1px;
  background-color: #333;
}
#close-mobile-menu::before {
  transform: rotate(45deg);
}
#close-mobile-menu::after {
  transform: rotate(-45deg);
}

.sidr-inner .show-search input[type=text].search-bar,
.sidr-inner .show-search .search-outer {
  width: 100%;
}
.sidr-inner .mobile-visible {
  display: block !important;
}

.mobile-visible {
  display: none !important;
}

.logo {
  position: relative;
}

.santa-cap {
  position: absolute;
  left: -22px;
  top: -13px;
  width: 52px;
}

footer .footer-block {
  background: #131313;
  padding: 12rem 0;
  position: relative;
}
footer .copyright-bar {
  background: #ffffff;
}
footer .copyright-bar:hover .footer-social {
  background: #0D0E0E;
}
footer .copyright-bar .copyright {
  display: flex;
}
@media (max-width: 767px) {
  footer .copyright-bar .copyright {
    flex-direction: column;
  }
}
footer .copyright-bar .footer-social {
  flex: 1;
  background: linear-gradient(142deg, rgb(25, 230, 177) 0%, rgb(212, 239, 30) 100%);
  transition: background 0.3s ease-out;
}
footer .copyright-bar .footer-social li {
  list-style: none;
}
footer .copyright-bar .footer-social ul {
  display: flex;
  justify-content: space-evenly;
  height: 120px;
  align-items: center;
}
footer .copyright-bar .footer-social a {
  color: #ffffff;
  font-size: 30px;
  width: 5rem;
  line-height: 5rem;
  text-align: center;
  transition: all 0.2s;
}
footer .copyright-bar .footer-social a:hover {
  transform: scale(1.4);
}
footer .copyright-bar .footer-social .fa-facebook-f:hover {
  color: #3b5998;
}
footer .copyright-bar .footer-social .fa-twitter:hover {
  color: #1da1f2;
}
footer .copyright-bar .footer-social .fa-linkedin-in:hover {
  color: #0077b5;
}
footer .copyright-bar .copy {
  flex: 3;
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 2rem 0;
  margin: 0 10rem;
}
footer .copyright-bar .copy li {
  list-style: none;
}
@media (max-width: 940px) {
  footer .copyright-bar .copy {
    margin: 0 1rem;
  }
}
@media (max-width: 767px) {
  footer .copyright-bar .copy {
    flex-direction: column;
  }
}
footer .copyright-bar .copy ul {
  display: flex;
  justify-content: left;
  padding: 2rem 2rem;
}
footer .copyright-bar .copy ul li {
  margin-right: 30px;
}
footer .copyright-bar .copy ul li:last-child {
  margin-right: 0;
}
footer .copyright-bar .copy ul a {
  color: #1D202B;
}
footer .copyright-bar .copy .copyright-text {
  color: #959595;
  flex: 2;
  text-align: right;
}
footer .footer-area {
  display: flex;
  color: #959595;
}
@media (max-width: 940px) {
  footer .footer-area {
    flex-direction: column;
  }
}
footer .footer-area address {
  font-size: 1.6rem;
  font-weight: 300;
}
footer .footer-area address a {
  color: #959595;
}
footer .footer-area address a:hover {
  color: #ffffff;
}
footer .footer-area .address-link {
  margin-right: 3rem;
  flex-grow: 1;
}
footer .footer-area .address-link > div {
  padding-bottom: 3rem;
}
footer .footer-area .ft-menu-link {
  flex-grow: 2;
}
footer .footer-area .footer-nav {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 940px) {
  footer .footer-area .footer-nav {
    flex-direction: column;
  }
}
footer .footer-area .footer-nav > li {
  margin-right: 3rem;
  border-top: 1px solid #707070;
  padding-top: 2rem;
  padding-bottom: 3rem;
}
footer .footer-area .footer-nav > li:last-child {
  margin-right: 0;
}
footer .footer-area .footer-nav > li > a {
  color: #ffffff;
  position: relative;
  font-size: 2rem;
}
footer .footer-area .footer-nav .sub-menu {
  margin-left: 0;
}
footer .footer-area .footer-nav .sub-menu li {
  margin-bottom: 0;
}
footer .footer-area .footer-nav .sub-menu li a {
  color: #D6D6D6;
  line-height: 4.6rem;
}
footer .footer-area .footer-nav .sub-menu li a:hover {
  color: #ffffff;
}
footer .email-subscribe {
  max-width: 65rem;
  margin: 10rem auto 0;
}
footer .email-subscribe label {
  margin-bottom: 1rem;
  display: block;
  color: #ffffff;
}
footer .subscribe > form {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  footer .subscribe > form {
    flex-direction: column;
  }
}
footer .subscribe input[type=email] {
  background: #202020;
  color: #959595;
  font-size: 1.6rem;
  padding: 1.5rem 2rem;
  border: none;
  flex: 1;
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  footer .subscribe input[type=email] {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}
footer .subscribe input[type=email]:focus {
  box-shadow: none;
}
footer .subscribe input[type=submit] {
  border-radius: 0;
  color: #ffffff;
}
footer:hover #ISGWeb-footer {
  fill: url("#pattern-rainbowColorList");
}

.google-badge {
  display: block;
  height: 88px;
}
.google-badge img {
  height: 88px;
  width: 88px;
}

.sidebar {
  padding-top: 0px;
}
@media (max-width: 767px) {
  .sidebar {
    width: 100%;
  }
}
@media (max-width: 940px) {
  .sidebar {
    width: 100%;
  }
}

.sidebar-outer {
  float: left;
}

.widget {
  background: #fff;
  padding: 20px 30px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.02);
}
.widget .widget-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #131313;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}

.widget_categories .cat-item a {
  font-size: 1.6rem;
  color: #131313;
  font-weight: 500;
  line-height: 4rem;
  position: relative;
}
.widget_categories .cat-item a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -3px;
  left: 0;
  background: linear-gradient(142deg, rgb(25, 230, 177) 0%, rgb(212, 239, 30) 100%);
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.widget_categories .cat-item a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.widget-area aside {
  border-bottom: 1px solid #707070;
}

.wp-block-latest-posts li {
  margin-bottom: 3rem;
}
.wp-block-latest-posts a {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 500;
  color: #131313;
}
.wp-block-latest-posts__featured-image {
  margin-bottom: 20px;
}
.wp-block-latest-posts__featured-image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  height: 120px;
  width: 100%;
}

.wp-block-search .wp-block-search__button {
  width: 56px;
  height: 54px;
  background: #131313;
}
.wp-block-search .wp-block-search__button svg {
  fill: #ffffff;
  font-size: 24px;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  padding: 0px;
  border: 1px solid #131313;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
  padding: 0 0 0 1.25em;
}

.left-sidebar {
  float: right;
}

.sidebar form {
  margin-bottom: 0;
}
.sidebar .mc4wp-form-fields {
  text-align: center;
}
.sidebar .mc4wp-form-fields > p {
  margin-bottom: 0;
}
.sidebar .mc4wp-form-fields h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.sidebar .mc4wp-form-fields input[type=email] {
  margin-bottom: 10px;
  margin-top: 10px;
  height: 44px;
}
.sidebar .mc4wp-form-fields input[type=submit] {
  width: 100%;
}

/* #Forms
================================================== */
form {
  margin-bottom: 20px;
}

fieldset {
  margin-bottom: 20px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=search],
input[type=tel],
input[type=number],
textarea,
select {
  border: 2px solid #CCCCCC;
  padding: 6px 29px;
  outline: none;
  font-size: 16px !important;
  color: #52626f;
  margin: 0;
  width: 100%;
  max-width: 100%;
  display: block;
  background: #fff;
  height: 56px;
  box-sizing: border-box;
}

select {
  padding: 0;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus {
  border: 2px solid #CCCCCC;
  color: #444;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.input-group textarea.input-is-active ~ .placeholder,
.input-group input.input-is-active ~ .placeholder,
.input-group input[type=text]:focus ~ .placeholder,
.input-group input[type=email]:focus ~ .placeholder,
.input-group input[type=number]:focus ~ .placeholder,
.input-group textarea:focus ~ .placeholder {
  font-size: 1.2rem;
  top: -10px;
  left: 15px;
  background: #fff;
  padding: 0 6px;
}

textarea {
  min-height: 150px;
  font-size: 16px;
}

label,
legend {
  display: block;
  font-weight: bold;
  font-size: 13px;
}

select {
  width: 220px;
}

input[type=checkbox] {
  display: inline;
}

label span,
legend span {
  font-weight: normal;
  font-size: 13px;
  color: #444;
}

.placeholder {
  letter-spacing: 0;
  pointer-events: none;
  position: absolute;
  top: 14px;
  left: 15px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1D202B;
  transition: all 0.2s ease-in-out;
  z-index: 1;
}

.input-group.focus {
  top: -13px;
  font-size: 1.2rem;
}

.form-text {
  margin-bottom: 40px;
}
.form-text h2 {
  margin-bottom: 20px;
}

.form-box {
  background: #ffffff;
  border-radius: 5px;
  margin: 0 0 10rem 0;
  padding: 6rem;
  overflow: hidden;
  border: 1px solid #E9E9E9;
  max-width: 670px;
  position: relative;
  z-index: 1;
}
@media (max-width: 940px) {
  .form-box {
    padding: 1.5rem;
    max-width: 100%;
  }
}

.input-group {
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
}
.input-group .form-control {
  position: relative;
  width: 100%;
}

.input-group .form-control,
.input-group-addon,
.input-group-btn {
  display: table-cell;
}

.input-group-addon {
  font-size: 14px;
  font-weight: 400;
  width: 40px;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #ddd;
  border: 1px solid #ededed;
  vertical-align: top;
  padding: 10px 0 0;
  display: none;
}

.selectBox,
.form-control {
  font-size: 12px;
  line-height: 22px;
  min-height: 40px;
}

.selectBox:hover,
.form-control:hover {
  text-decoration: none;
}

textarea.form-control {
  height: 100px;
  max-width: 100%;
}

.selectBox {
  max-width: 100%;
  width: 100% !important;
}

.captcha-number {
  display: flex;
}
.captcha-number .captcha-label {
  min-width: 150px;
  align-self: center;
  font-weight: 600;
}

.ZipCodeStyle {
  height: 1px !important;
}

.tab-form li {
  display: inline-block;
  font-size: 18px;
  background: #fff;
  padding: 10px 15px;
  border: #98c500 1px solid;
  border-bottom: none;
  margin-bottom: 0;
}

.tab-form li.active {
  background: #98c500;
  color: #fff;
}

.tab-form li a {
  display: block;
  color: #000;
}

.tab-form form {
  border: #98c500 1px solid;
  padding: 20px;
}

/* #Buttons */
.btn {
  background: #ffffff;
  color: #1c1c1c;
  display: inline-flex;
  justify-content: center;
  min-width: 120px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  line-height: 45px;
  padding: 0 3rem;
  box-sizing: border-box;
  position: relative;
  border: 2px solid transparent;
  text-align: center;
  position: relative;
  background-clip: content-box, border-box; /* !importanté */
  background-repeat: no-repeat;
  background-origin: border-box;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(142deg, #D4EF1E, #19E6B1);
  transition: box-shadow 0.2s linear;
  transition: color 0.1s linear;
  border-radius: 50px;
}
@media (max-width: 940px) {
  .btn {
    min-width: auto;
  }
}
.btn--bg-dark {
  box-shadow: 2px 1000px 1px #131313 inset;
  color: #fff;
}
.btn--bg-light {
  box-shadow: 2px 1000px 1px #fff inset;
}
.btn i {
  margin-left: 3rem;
}
.btn i svg {
  vertical-align: middle;
}

.btn-rounded {
  border-radius: 100px;
}

.btn:hover,
button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover {
  color: #fff;
  box-shadow: none;
}

.btn:active,
button:active,
input[type=submit]:active,
input[type=reset]:active,
input[type=button]:active {
  color: #fff;
  background: #000;
}

.btn.full-width,
button.full-width,
input[type=submit].full-width,
input[type=reset].full-width,
input[type=button].full-width {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center;
}

.btn.btn-primary:hover {
  background: #000;
  border: none;
}

/* Fix for odd Mozilla border & padding issues */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.btn-lg {
  font-size: 12px;
  padding: 16px 44px 16px 34px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.btn-secondary {
  background-color: #DC143C;
  color: #fff;
  border-bottom: 2px solid #fff;
}

.link-button {
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: 46px;
  font-weight: 600;
}
.link-button--with-arrow {
  position: relative;
  display: inline-flex;
}
.link-button--with-arrow i {
  position: relative;
  width: 46px;
  height: 46px;
  margin-left: 15px;
}
.link-button--with-arrow i img {
  width: 22px;
}
.link-button:hover i {
  box-shadow: none;
}

/* Home Slider */
.banner-home {
  opacity: 1;
  height: 82vh;
  display: flex;
  align-items: center;
  background-size: 55%;
  justify-content: space-between;
  margin-bottom: 6rem;
  position: relative;
}
@media (max-width: 1500px) {
  .banner-home {
    background-size: 80%;
  }
}
@media (max-width: 1200px) {
  .banner-home {
    height: 72vh;
    background-size: 70%;
  }
}
@media (max-width: 940px) {
  .banner-home {
    flex-direction: column;
    height: auto;
  }
}
.banner-home h1 {
  font-size: 6.6rem;
  font-size: 2.6vw;
  font-weight: bold;
  color: #ffffff;
  max-width: 769px;
  margin-bottom: 3rem;
}
@media (max-width: 1500px) {
  .banner-home h1 {
    font-size: 3vw;
  }
}
@media (max-width: 1200px) {
  .banner-home h1 {
    font-size: 3.8vw;
  }
}
@media (max-width: 767px) {
  .banner-home h1 {
    font-size: 5.7vw;
  }
}
.banner-home p {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 3rem;
  max-width: 90%;
}
.banner-home .banner-text {
  width: 50%;
  height: 100%;
  margin-bottom: 2rem;
  background: linear-gradient(142deg, rgb(25, 230, 177) 0%, rgb(212, 239, 30) 100%);
  position: relative;
  padding: 8rem 8rem 8rem;
  display: flex;
}
@media (max-width: 1500px) {
  .banner-home .banner-text {
    width: 70%;
    padding: 9rem 8rem 8rem;
  }
}
@media (max-width: 940px) {
  .banner-home .banner-text {
    width: 100%;
    height: 70%;
  }
}
@media (max-width: 767px) {
  .banner-home .banner-text {
    padding: 1.5rem 1.5rem 2rem;
  }
}
.banner-home .banner-text::after {
  content: " ";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background: rgb(25, 230, 177);
  background: url(../../../images/banner-bg.png) bottom right no-repeat;
  background-size: contain;
}
.banner-home .banner-text .text-block {
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 99;
  align-self: center;
}
.banner-home .banner-image {
  width: 50%;
  height: 100%;
  position: relative;
  padding: 8rem 8rem 8rem 8rem;
}
@media (max-width: 940px) {
  .banner-home .banner-image {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .banner-home .banner-image {
    padding: 1.5rem 1.5rem 2rem;
  }
}
.banner-home .banner-image > div {
  width: 100%;
  position: absolute;
}
@media (max-width: 940px) {
  .banner-home .banner-image > div {
    position: relative;
  }
}
.banner-home .banner-image > div img {
  width: 90vh;
}
.banner-home .banner-image .img-1 {
  z-index: 2;
  top: 20px;
  right: 0;
}
.banner-home .banner-image .img-2 {
  z-index: 1;
  top: 100px;
  right: 40px;
  border-radius: 65px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
}

.slider-arrow {
  width: 70px;
  height: 70px;
  position: absolute;
  left: 0;
  bottom: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border: 2px solid transparent;
  text-align: center;
  border-radius: 100px;
  background-clip: content-box, border-box; /* !importanté */
  background-repeat: no-repeat;
  box-shadow: 2px 1000px 1px #fff inset;
  background-origin: border-box;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(142deg, #D4EF1E, #19E6B1);
  transition: box-shadow 0.2s linear;
  transition: color 0.1s linear;
}
.slider-arrow:hover {
  box-shadow: none;
}

.slider-arrow.next {
  left: 90px;
}

.services-block {
  width: 100%;
  padding: 6rem 0 4rem;
  position: relative;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .service-list {
    flex-direction: column;
  }
}
.service-list .item {
  width: 50%;
  display: flex;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .service-list .item {
    width: 100%;
    flex-direction: column;
  }
}
.service-list .item > a {
  display: inline-flex;
}
@media (max-width: 767px) {
  .service-list .item > a {
    display: block;
  }
}
.service-list .item:hover .icon:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .service-list .item h3 {
    font-size: 2rem;
  }
}
.service-list .item .icon {
  background: linear-gradient(142deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
  box-shadow: 10px 10px 20px rgba(216, 216, 216, 0.34);
  padding: 2rem;
  width: 12rem;
  height: 12rem;
  max-width: 12rem;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  border-radius: 2.5rem;
  margin-right: 3rem;
  flex: 100%;
  transition: all 0.2s;
  position: relative;
}
@media (max-width: 767px) {
  .service-list .item .icon {
    width: 8rem;
    height: 8rem;
    border-radius: 8px;
  }
}
.service-list .item .icon img {
  position: relative;
}
@media (max-width: 767px) {
  .service-list .item .icon img {
    width: 40px;
  }
}
@media (max-width: 767px) {
  .service-list .item .icon {
    margin-bottom: 3rem;
  }
}
.service-list .item .icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(142deg, rgb(25, 230, 177) 0%, rgb(212, 239, 30) 100%);
  top: 0;
  left: 0;
  border-radius: 2.5rem;
  opacity: 0;
  transition: all 0.3s;
  z-index: 0;
}
.service-list .item .item-content h3 {
  margin-bottom: 1.3rem;
}
.service-list .item .item-content p {
  font-size: 1.4rem;
  color: #959595;
  margin-bottom: 0;
}
@media (max-width: 940px) {
  .service-list .item .item-content p {
    font-size: inherit;
  }
}

.solution-block {
  width: 100%;
  padding: 6rem 0 22rem;
  position: relative;
}
.solution-block::before {
  content: "";
  background: url("../../../images/home/left-plane.svg") left bottom no-repeat;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 290px;
  height: 543px;
}
@media (max-width: 1500px) {
  .solution-block::before {
    background-size: 60%;
    height: 320px;
    opacity: 0.5;
  }
}
.solution-block::after {
  content: "";
  background: url(../../../images/home/right-plane.svg) right top no-repeat;
  position: absolute;
  right: 20px;
  top: -196px;
  width: 473px;
  height: 400px;
}
@media (max-width: 1500px) {
  .solution-block::after {
    background-size: 80%;
    opacity: 0.5;
    top: -100px;
  }
}
.solution-block .solutions-design {
  width: 100vw;
  position: absolute;
  top: 120px;
  left: 0;
  overflow: hidden;
}
@media (max-width: 940px) {
  .solution-block .solutions-design {
    position: relative;
    top: 0px;
  }
}
.solution-block .solutions-design > img {
  float: right;
}
@media (max-width: 1500px) {
  .solution-block .solutions-design > img {
    float: right;
    position: relative;
    right: -240px;
  }
}
@media (max-width: 940px) {
  .solution-block .solutions-design > img {
    right: -110px;
  }
}
.solution-block .solutions-design .poping-elements-animation {
  position: absolute;
  right: 0;
  height: 600px;
  margin-right: 5vw;
  max-width: 600px;
  width: 37vw;
}
@media (max-width: 940px) {
  .solution-block .solutions-design .poping-elements-animation {
    width: 100vw;
    position: relative;
    margin: 0 auto;
    right: 0;
    max-width: 390px;
  }
}
.solution-block .solutions-design .poping-elements {
  position: relative;
}
.solution-block .solutions-design .poping-elements > img {
  position: absolute;
}
.solution-block .solutions-design .poping-elements .element1 {
  top: 0;
  left: 20px;
}
.solution-block .solutions-design .poping-elements .element2 {
  top: 30px;
  left: 190px;
}
.solution-block .solutions-design .poping-elements .element3 {
  top: 230px;
  left: 160px;
}
.solution-block .solutions-design .poping-elements .element4 {
  top: 190px;
  left: -10px;
}

.solutions-content {
  display: flex;
}
.solutions-content .item-list {
  max-width: 57rem;
}
@media (max-width: 940px) {
  .solutions-content .item-list {
    max-width: 100%;
  }
}
.solutions-content .item-list li {
  position: relative;
  padding-left: 45px;
  line-height: 1.5;
  margin-bottom: 2.6rem;
  color: #CDCDCD;
}
.solutions-content .item-list li::before {
  content: "";
  background: url("../../../images/svgs/tick.svg") 0 0 no-repeat;
  position: absolute;
  width: 26px;
  height: 26px;
  left: 0;
}

.portfolio {
  padding: 9rem 0 12rem;
}
.portfolio__container {
  display: flex;
  flex-wrap: wrap;
}
.portfolio__container .col {
  width: 50%;
}
.portfolio__container .col:nth-child(even) {
  margin-top: -10rem;
}
@media (max-width: 940px) {
  .portfolio__container .col {
    width: 100%;
  }
  .portfolio__container .col:nth-child(even) {
    margin-top: 0rem;
  }
}
.portfolio__item {
  margin-bottom: 5.4rem;
}
.portfolio__image {
  overflow: hidden;
  margin-bottom: 1.4rem;
}
.portfolio__image img {
  width: 100%;
  display: block;
  transition: all 0.3s;
}
.portfolio__image:hover img {
  transform: scale(1.1);
}
.portfolio__title {
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.portfolio__type {
  font-size: 1.2rem;
  color: #959595;
  text-transform: uppercase;
}

.testimonial {
  background: url("../../../images/testimonials/world-map.svg") center top no-repeat;
  padding: 8rem 0;
  overflow-x: hidden;
}
.testimonial .content-flex {
  display: flex;
  justify-content: center;
  max-width: 1140px;
  margin: 0 auto;
}
@media (max-width: 940px) {
  .testimonial .content-flex {
    flex-direction: column;
  }
}
.testimonial .content-flex .heading-section {
  max-width: 54rem;
}
.testimonial .content-flex h2 {
  font-size: 6.6rem;
}
.testimonial .content-flex .col {
  width: 50%;
}
@media (max-width: 940px) {
  .testimonial .content-flex .col {
    width: 100%;
  }
}
.testimonial .testimonial-cards {
  min-width: 100%;
  width: 30vw;
}
@media (max-width: 940px) {
  .testimonial .testimonial-cards {
    width: 100%;
    margin-left: 0;
  }
}
.testimonial .testimonial-cards .testimonial-card {
  max-width: 532px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 3rem;
  margin: 0 3rem 1rem 0;
}
@media (max-width: 1200px) {
  .testimonial .testimonial-cards .testimonial-card {
    max-width: 50rem;
  }
}
@media (max-width: 767px) {
  .testimonial .testimonial-cards .testimonial-card {
    max-width: 46rem;
  }
}
.testimonial .testimonial-cards .testimonial-card .author {
  width: 100%;
  display: flex;
  align-items: center;
}
.testimonial .testimonial-cards .testimonial-card .author .author-icon {
  margin-right: 4.3rem;
}
.testimonial .testimonial-cards .testimonial-card .author .author-icon img {
  float: left;
}
.testimonial .testimonial-cards .testimonial-card .author .author-data h4 {
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1.3;
  font-weight: 600;
}
.testimonial .testimonial-cards .testimonial-card .author .author-data p {
  font-size: 1.4rem;
  color: #959595;
  margin-bottom: 0;
}
.testimonial .testimonial-animate {
  overflow: hidden;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 400;
  width: 200%;
  margin-top: 160px;
}
@media (max-width: 767px) {
  .testimonial .testimonial-animate {
    margin-top: 120px;
  }
}
.testimonial .testimonial-animate .anim {
  stroke-width: 1.5;
  margin-left: 0.5rem;
  display: flex;
  background: url("../../../images/testimonials/testimonial-image-loop.png") center top repeat-x;
  width: 100%;
  height: 170px;
}
.testimonial .testimonial-animate .anim img {
  width: 100%;
  margin-right: 100px;
}
.testimonial .testimonial-animate .anim {
  animation: uiScrollInfinite 100s linear infinite;
}
.testimonial .testimonial-animate .anim2 {
  animation: 15s linear 1s infinite running uiScrollInfinite;
}
@keyframes uiScrollInfinite {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: -5912px;
  }
}
@keyframes uiScrollInfinite2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.testimonial .slider-arrow {
  bottom: -110px;
}

section.home-blog {
  background: #131313;
  overflow: hidden;
}

.home-blog {
  padding: 8rem 0 0 0;
  position: relative;
}
.home-blog__item {
  margin-bottom: 3rem;
}
.home-blog__image {
  margin-bottom: 2rem;
}
.home-blog__image a {
  display: block;
}
.home-blog__image img {
  display: block;
}
.home-blog__category {
  color: #19E6B1;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2rem;
}
.home-blog__category a {
  color: #19E6B1;
}
.home-blog__title {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.1;
}
.home-blog__title a {
  color: #ffffff;
  font-weight: 600;
  font-size: 2.1rem;
}
.home-blog__title a:visited {
  color: #ffffff;
}
.home-blog__date {
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #8F8F8F;
}
.home-blog .character {
  position: relative;
  bottom: 0;
  left: 0;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
}
.home-blog .lamp {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  height: 100%;
  width: 57vw;
}
@media (max-width: 1500px) {
  .home-blog .lamp {
    width: 74vw;
  }
}
.home-blog .lamp img {
  position: absolute;
  top: -80px;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
  height: calc(100% + 80px);
  transform-origin: 57% 0;
}
@media (max-width: 1200px) {
  .home-blog .lamp img {
    -o-object-position: top left;
       object-position: top left;
  }
}
@media (max-width: 940px) {
  .home-blog .lamp img {
    display: none !important;
  }
}

.PatronsOuter {
  margin-bottom: 4rem;
  max-height: 125px;
}
.PatronsOuter .slick-slide {
  padding: 0 30px;
}

.heading-section {
  max-width: 48rem;
  margin-bottom: 5rem;
}
.heading-section h2 {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .heading-section {
    max-width: 60rem;
  }
}
.heading-section > span {
  text-transform: uppercase;
  color: #002333;
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
}
.heading-section > span::before {
  position: absolute;
  content: "";
  width: 7rem;
  height: 0.2rem;
  background-color: #002333;
  top: 9px;
  left: -86px;
}
@media (max-width: 1200px) {
  .heading-section > span::before {
    display: none;
  }
}
.heading-section.heading-light * {
  color: #ffffff;
}
.heading-section.heading-light *::before {
  background-color: #ffffff;
}

.titleBox2:before {
  left: 15px;
}

.bg__Head {
  background: url(../images/page-header-bg.svg) top center no-repeat;
  margin: 82px 0 10rem;
  background-size: cover;
  background-color: #002333;
  padding: 30vh 0 2vh 0;
  display: flex;
}
@media (max-width: 1200px) {
  .bg__Head {
    margin: 0px 0 0;
    padding: 40px 0;
  }
}
.bg__Head .entry-title {
  color: #ffffff;
  font-size: 6.4rem;
  font-size: 4.5vw;
  line-height: 1.3;
  background: -webkit-linear-gradient(-330deg, #25E7A7, #9CEC49);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1200px) {
  .bg__Head .entry-title {
    font-size: 11vw;
    line-height: 1.3;
  }
}
.bg__Head #breadcrumbs a {
  color: #D6D6D6;
}
.bg__Head .page-title--des {
  color: #C8C8C8;
  font-size: 1.6rem;
  line-height: 2.8rem;
}

.bg__Head .titleBox2:before {
  background: none;
}

.author-info {
  display: flex;
  width: 100%;
  background: #131313;
  color: #fff;
  padding: 2.5rem;
  position: relative;
}
.author-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(142deg, #19E6B1, #D4EF1E);
}
.author-info .author-bio {
  font-size: 1.4rem;
}
.author-info .author-avatar {
  min-width: 8rem;
  width: 8rem;
  height: 8rem;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 20px;
}
.author-info .author-title {
  color: #fff;
  margin-bottom: 10px;
}

/* Post Comments */
.comments-section {
  width: 100%;
  margin-top: 3rem;
}

.comments-section .title {
  text-align: center;
  font-size: 18px;
  border-bottom: 1px solid #ddd;
  background: #ffffff;
  padding: 10px 0;
  color: #666;
}

.comments {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  list-style: none;
}

.thecomment {
  border-bottom: 1px dotted #eee;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.title-comment {
  float: left;
  width: 100%;
  margin-bottom: 29px;
}

.thecomment .author-img {
  float: left;
  margin-right: 20px;
}

.thecomment .comment-text {
  overflow: hidden;
}

.thecomment .comment-text h6.author,
.thecomment .comment-text h6.author a {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: #333;
}

.thecomment .comment-text span.date {
  font-size: 12px;
  color: #999;
  font-style: italic;
  display: block;
  margin-bottom: 10px;
}

.title-comment h4 {
  font-size: 30px;
  line-height: 20px;
  text-transform: none;
}

.write-comment-link {
  float: right;
  font-size: 16px;
  line-height: 32px;
  color: #4e4e4e;
  font-weight: 700;
  margin-top: -8px;
}

.write-comment-link div.icon {
  width: 32px;
  height: 32px;
  display: block;
  border: 1px solid #4e4e4e;
  line-height: 30px;
  text-align: center;
  float: left;
  margin-right: 10px;
}

.write-comment-link i {
  color: #4e4e4e;
}

.comment-body {
  position: relative;
}
.comment-body a.reply {
  background: #4e4e4e;
  color: #fff;
  display: inline-block;
  margin: 4px;
  cursor: pointer;
  text-transform: uppercase;
  position: absolute;
  top: 26px;
  right: 10px;
  padding: 3px 8px;
}
.comment-body a.reply:hover {
  text-decoration: none;
  background: #000;
}

.comments {
  padding: 0;
  margin: 0;
  width: 100%;
  float: left;
}
.comments li {
  list-style: none;
  margin-bottom: 20px;
}
.comments li .comment-body {
  position: relative;
  border-bottom: 1px solid #eceeef;
  padding: 10px 0;
}
.comments li .comment-body .comment-meta {
  margin: 0 0 15px 0;
  float: left;
  width: 100%;
}
.comments li .comment-body .comment-meta .comment-author img {
  margin-right: 23px;
  background: #ddd;
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 60px;
  height: 60px;
  float: left;
  border-radius: 50%;
}
.comments li .comment-body .comment-meta .comment-author a {
  color: #4e4e4e;
  font-size: 18px;
  font-weight: 700;
}
.comments li .comment-body .comment-meta .comment-author b {
  font-weight: 600;
}
.comments li .comment-body .comment-meta .comment-metadata {
  font-size: 13px;
  line-height: 13px;
  color: #999999;
  font-weight: 700;
  margin-top: 9px;
}
.comments li .comment-body .comment-meta .comment-metadata a {
  color: #7e8890;
  font-weight: 400;
  text-transform: uppercase;
}
.comments li .comment-body .comment-meta .comment-metadata a:hover {
  color: #000;
  text-decoration: none;
}
.comments li .comment-body .comment-content {
  padding: 0 0 20px 0;
  font-size: 14px;
  line-height: 24px;
  clear: both;
}
.comments li .comment-body .comment-content p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}
.comments li .children {
  margin: 20px 0;
  padding: 0 0 0 50px;
  position: relative;
}
.comments li .children li {
  position: relative;
}
.comments li .reply {
  padding-bottom: 20px;
}
.comments li .reply a {
  text-transform: uppercase;
  font-size: 13px;
  color: #7e8890;
}
.comments li .reply a:hover {
  color: #000;
  text-decoration: none;
}
.comments li.parent {
  position: relative;
}

.comment-metadata > a {
  font-size: 12px;
  color: #999;
}

.comments-closed {
  text-align: center;
  margin: 50px 0;
}

.comment-respond {
  position: relative;
  z-index: 99;
}

/* Comment Form */
.leave-comment {
  text-align: left;
  float: left;
  width: 100%;
}

.margin-top-50 {
  margin-top: 50px;
}

.leave-comment .main-title-2 {
  text-align: left;
}

.main-title-2 h2 {
  font-size: 20px;
  position: relative;
  margin-bottom: 50px;
  text-align: left;
  text-transform: uppercase;
}

.comment-form {
  width: 100%;
  margin-top: 15px;
}

.comment-form-title h4 {
  font-size: 20px;
  color: #4e4e4e;
  text-transform: none;
  margin-bottom: 14px;
}

.comment-form input {
  height: 44px;
  margin-bottom: 20px;
}

.comment-form textarea {
  min-height: 110px;
  margin-bottom: 20px;
}

/*pagination*/
.pagination {
  display: flex;
  justify-content: center;
  width: 100%;
  clear: both;
  padding: 0 1.5rem;
  margin: 11.5rem 0;
}
.pagination .pagination-arrow {
  width: 6.5rem;
  height: 6.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border: 2px solid transparent;
  text-align: center;
  border-radius: 100px;
  background-clip: content-box, border-box; /* !importanté */
  background-repeat: no-repeat;
  box-shadow: 2px 1000px 1px #fff inset;
  background-origin: border-box;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(142deg, #D4EF1E, #19E6B1);
  transition: box-shadow 0.2s linear;
  transition: color 0.1s linear;
}
@media (max-width: 767px) {
  .pagination .pagination-arrow {
    width: 4rem;
    height: 4rem;
  }
}
@media (max-width: 767px) {
  .pagination .pagination-arrow img {
    width: 2.5rem;
  }
}
.pagination .pagination-arrow:hover {
  box-shadow: none;
}

ul.page-numbers {
  text-align: center;
  margin-bottom: 0;
  margin-left: 0;
  background: #fff;
  display: flex;
  align-items: center;
}
ul.page-numbers a.page-numbers {
  color: #131313;
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  font-weight: 700;
  font-size: 14px;
  border-radius: 100%;
  background: #F3F3F3;
}
ul.page-numbers li {
  display: inline-block;
  margin: 0 0 0 0;
  margin: 0 0.5rem;
}
ul.page-numbers li a.next.page-numbers,
ul.page-numbers li a.prev.page-numbers {
  color: #131313;
  display: block;
  width: 6.5rem;
  height: 6.5rem;
  line-height: 1.5;
  font-weight: 700;
  font-size: 18px;
  border-radius: 100%;
  background: hsl(164, 80%, 50%);
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(142deg, #19E6B1, #D4EF1E);
}
@media (max-width: 767px) {
  ul.page-numbers li a.next.page-numbers,
  ul.page-numbers li a.prev.page-numbers {
    width: 4rem;
    height: 4rem;
  }
}
ul.page-numbers li a:hover {
  text-decoration: none;
  color: #333;
}
ul.page-numbers li a.next.page-numbers {
  margin-left: 3rem;
}
@media (max-width: 767px) {
  ul.page-numbers li a.next.page-numbers {
    margin-left: 0.5rem;
  }
}
ul.page-numbers li a.prev.page-numbers {
  margin-right: 3rem;
}
@media (max-width: 767px) {
  ul.page-numbers li a.prev.page-numbers {
    margin-right: 0.5rem;
  }
}
ul.page-numbers li span {
  color: #131313;
  display: block;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  font-weight: 700;
  font-size: 14px;
  border-radius: 100%;
  background: hsl(164, 80%, 50%);
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(142deg, #19E6B1, #D4EF1E);
}
@media (max-width: 767px) {
  ul.page-numbers li span {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
  }
}
ul.page-numbers li span.dots {
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(142deg, #F3F3F3, #F3F3F3);
}
ul.page-numbers li a i {
  font-size: 22px;
  color: #000;
  font-weight: 700;
}
ul.page-numbers li a i:hover {
  color: #333;
}

.clients .entry-content {
  margin-bottom: 120px;
}

.client {
  position: relative;
  margin-bottom: 10rem;
}
@media (max-width: 767px) {
  .client {
    margin-bottom: 4rem;
  }
}
.client:nth-child(even) .client-flex {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .client:nth-child(even) .client-flex {
    flex-direction: column-reverse;
  }
}
.client .client-content {
  position: relative;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100%;
}
.client .client-bg {
  position: absolute;
}

.client-logo-area {
  display: flex;
  justify-content: space-between;
}
.client-logo-area > div {
  margin: 2rem;
}
.client-flex {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .client-flex {
    flex-direction: column-reverse;
  }
}
.client-flex .client-imgs {
  width: 58%;
  align-self: flex-start;
  padding: 0 3rem;
  height: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .client-flex .client-imgs {
    width: 100%;
  }
}
.client-flex .client-text {
  width: 42%;
  color: #fff;
  margin-bottom: 0rem;
  padding: 2rem;
  align-self: center;
}
@media (max-width: 767px) {
  .client-flex .client-text {
    margin-bottom: 0rem;
    width: 100%;
  }
}
.client-flex .client-text h2 {
  color: #fff;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.client-flex .client-text p {
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 2rem;
}
.client-flex .client-text .client-services {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .client-flex .client-text .client-services {
    margin-top: 3rem;
  }
}
.client-flex .client-text .client-services strong {
  font-weight: 600;
}
.client-flex .laptop-img {
  position: relative;
  bottom: -32px;
}
@media (max-width: 767px) {
  .client-flex .laptop-img {
    bottom: 0;
    padding-bottom: 3rem;
  }
}
.client-flex .mobile-img {
  position: absolute;
  bottom: -58px;
  z-index: 2;
}
@media (max-width: 767px) {
  .client-flex .mobile-img {
    display: none;
  }
}
.client-flex .mobile-img img {
  width: 10vw;
  max-width: 160px;
}

.load-more {
  margin-bottom: 5rem;
}

.contact-details {
  margin-bottom: 5.5rem;
}
.contact-details a {
  color: #1D202B;
}
.contact-details h3 {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
}
.contact-details .social-icons ul {
  display: flex;
}
.contact-details .social-icons li {
  margin-right: 15px;
}
.contact-details .social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  border: 1px solid #F2F2F2;
  text-align: center;
  line-height: 40px;
  color: #131313;
}
.contact-details .contact-us {
  margin-bottom: 3rem;
}
.contact-details .contact-us p {
  margin-bottom: 5px;
}
.contact-details .contact-us address div {
  margin-top: 1.5rem;
}
.contact-details .contact-us .flag {
  margin-bottom: 10px;
}

.contact-us-page {
  padding: 0 0 0 0;
  position: relative;
}
.contact-us-page .heading-section {
  max-width: 85.5rem;
}
.contact-us-page .heading-section h2 {
  font-size: 6.6rem;
}
@media (max-width: 940px) {
  .contact-us-page .heading-section h2 {
    font-size: 4.6rem;
  }
}
@media (max-width: 767px) {
  .contact-us-page .heading-section h2 {
    font-size: 3.6rem;
  }
}
.contact-us-page .contact-us-img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: -110px;
  -o-object-position: bottom center;
     object-position: bottom center;
  width: 100%;
  z-index: -1;
}
@media (max-width: 1500px) {
  .contact-us-page .contact-us-img {
    bottom: 190px;
  }
}
@media (max-width: 767px) {
  .contact-us-page .contact-us-img {
    display: none;
  }
}

#google-map {
  height: 600px;
}
@media (max-width: 767px) {
  #google-map {
    height: 400px;
  }
}

.thanks-page {
  text-align: center;
  margin-top: 20rem;
}
@media (max-width: 767px) {
  .thanks-page {
    margin-top: 6rem;
  }
}
.thanks-page svg {
  width: 100%;
}
.thanks-page .thanks-container {
  max-width: 1100px;
  background: #fff;
  text-align: center;
  border: 1px solid #E9E9E9;
  padding: 4.4rem;
  position: relative;
  margin-top: -6px;
}
@media (max-width: 767px) {
  .thanks-page .thanks-container {
    padding: 2.5rem;
  }
}
@media (max-width: 767px) {
  .thanks-page .thanks-container h1 {
    font-size: 2.5rem;
  }
}
.thanks-page .thanks-container h4 {
  font-size: 2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}
.thanks-page .thanks-container p {
  margin-bottom: 0;
  line-height: 26px;
}
.thanks-page .thanks-container .thanks-content {
  max-width: 700px;
  margin: 0 auto 2rem;
}
.thanks-page .thanks-container .thanks-content li {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.page-template-contact-us .RequestOuter {
  display: none;
}

.blog-collection .blog-post {
  padding: 5rem 0;
  border-top: 1px solid #131313;
  border-bottom: 1px solid #131313;
}
.blog-collection .entry-title {
  font-size: 3.6rem;
  color: #131313;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.blog-collection .entry-title a {
  color: #131313;
}
.blog-collection .post-date {
  text-transform: uppercase;
  font-size: 1.6rem;
  position: relative;
  color: #131313;
}
.blog-collection .post-date::before {
  position: absolute;
  content: "";
  width: 7rem;
  height: 0.2rem;
  background-color: #002333;
  top: 9px;
  left: -86px;
}
.blog-collection .read-more {
  font-size: 1.6rem;
  font-weight: 400;
  color: #131313;
  margin-right: 1rem;
  line-height: 1.4;
}
.blog-collection .button-with-arrow {
  display: flex;
  max-width: none;
  padding-right: 20px;
  padding-left: 0;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.blog-collection .button-with-arrow:hover .right-arrow {
  transform: translate3d(10px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
.blog-collection .right-arrow {
  display: flex;
  align-items: stretch;
  transition: transform 250ms;
}
.blog-collection .posted-by {
  font-size: 1.6rem;
  color: #474747;
  margin-bottom: 1.5rem;
}
.blog-collection .posted-by strong {
  font-weight: 600;
}
.blog-collection .posted-by a {
  color: #474747;
}

.entry-content ul {
  list-style: disc;
  margin-left: 20px;
}
.entry-content h2 {
  font-size: 2.8rem;
}

.single-page-head.bg__Head {
  align-items: end;
  height: 60vh;
}
.single-page-head.bg__Head .entry-title {
  font-size: 6.6rem;
  background: transparent;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #fff;
}
@media (max-width: 767px) {
  .single-page-head.bg__Head .entry-title {
    font-size: 3.6rem;
  }
}
.single-page-head.bg__Head .post-date {
  color: #fff;
  text-transform: uppercase;
  position: relative;
}
.single-page-head.bg__Head .post-date::before {
  position: absolute;
  content: "";
  width: 7rem;
  height: 0.2rem;
  background-color: #ffffff;
  top: 12px;
  left: -86px;
}

.single-post-meta {
  display: flex;
  justify-content: space-between;
}
.single-post-meta .meta-content {
  color: #fff;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.single-post-meta .meta-content a {
  font-weight: 600;
  color: #fff;
}

.featured-image {
  margin-bottom: 10rem;
}
@media (max-width: 767px) {
  .featured-image {
    margin-bottom: 3rem;
  }
}
.featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single .entry-content {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.single .entry-content p {
  margin-bottom: 2rem;
}
.single .entry-content h2 {
  font-size: 3.2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}
.single .entry-content h3 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  font-weight: 600;
}
.single .entry-content h4 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: 600;
}
.single .entry-content h5 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.page-content {
  padding: 30px;
  background: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.02);
}

.blockquote {
  border: 1px solid #4e4e4e;
  border-left: 10px solid #4e4e4e;
  margin: 0 0 0 19px;
}

.quote {
  padding: 20px 20px 20px 20px;
  border: 1px solid #ddd;
  border-left: 6px solid #ddd;
  border-radius: 1px;
  margin-bottom: 20px;
}
.quote h4 {
  font-weight: bold;
  margin-bottom: 0 !important;
}
.quote p {
  text-align: left;
  color: #ddd;
  font-size: 15px;
  font-weight: 400;
  margin-top: 10px;
}

.post-tags {
  float: left;
  padding-left: 15px;
}
.post-tags i {
  font-size: 12px;
  padding: 5px;
}
.post-tags span {
  color: #666666;
}
.post-tags span a {
  font-size: 12px;
  line-height: 18px;
  color: #999;
  text-transform: uppercase;
  margin: 0 10px 0px 0;
  padding: 4px 10px;
  display: inline-block;
  background-color: #fafafa;
}
.post-tags span a:hover {
  color: #fff;
  background-color: #151515;
  text-decoration: none;
}

.section {
  width: 100%;
  padding: 150px 0;
  clear: both;
}

body {
  font-family: "Poppins", sans-serif;
}

.dark-circle {
  position: absolute;
  right: 0;
  bottom: 0;
}

.light-circle {
  position: absolute;
  right: 0;
  bottom: 0;
}

#fixed-bar {
  right: 30px;
  bottom: 70px;
  z-index: 999;
}

.bottom-contact-bar {
  position: fixed;
  width: 100%;
  background: #101010;
  z-index: 99;
  bottom: 0;
  text-align: center;
  justify-content: space-around;
  display: flex;
}
@media (max-width: 767px) {
  .bottom-contact-bar {
    flex-wrap: wrap;
  }
}
.bottom-contact-bar::before {
  content: "";
  top: 0;
  width: 100%;
  height: 2px;
  position: absolute;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(142deg, #D4EF1E, #19E6B1);
}
.bottom-contact-bar a {
  padding: 10px 20px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .bottom-contact-bar a {
    padding: 8px 10px;
  }
}
.bottom-contact-bar a:hover {
  color: #19E6B1;
}
.bottom-contact-bar .icon {
  display: inline-flex;
  flex-direction: row;
  position: relative;
  top: 3px;
}

/* Style to edit *//*# sourceMappingURL=style.css.map */