@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;900&display=swap");

/* Normalize */

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f5f5f5be;
}

h1 {
  font-size: 3.75rem;
  line-height: 1.2;
  font-weight: 800;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  text-decoration: none;
  /* transition: all 0.2s 0s; */
}

a:focus,
a:hover,
a:active {
  outline: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  border-radius: 6px;
}

.btn {
  padding: 7px 20px;
  display: inline-block;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
}

form .btn {
  border: 2px solid;
  border-radius: 6px;
}

form .btn:hover {
  background-color: transparent;
}

.btn,
.wp-block-button__link,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
form[CLASS*="wp-block-search__"].wp-block-search
  .wp-block-search__inside-wrapper
  .wp-block-search__button {
  background-color: var(--theme-button-color);
  color: var(--theme-button-text-color);
}

.btn:hover,
.wp-block-button__link:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
form[CLASS*="wp-block-search__"].wp-block-search
  .wp-block-search__inside-wrapper
  .wp-block-search__button:hover {
  background-color: var(--theme-secondary-color);
  color: var(--theme-button-text-color);
}

.contact_form form {
  max-width: 500px;
  width: 100%;
}

a,
.widget a,
.entry-meta i,
.entry-content a {
  color: var(--theme-link-color);
}

a:hover,
.widget a:hover,
.entry-content a:hover {
  color: var(--theme-link-hover-color);
}

.entry-title a {
  color: var(--theme-secondary-color);
}

select {
  background-image: url(assets/images/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right 1rem center;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 30px !important;
  border: 1px solid var(--theme-secondary-color);
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  width: 100%;
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  appearance: textfield;
  outline: none;
}

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

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* Typography */

body,
button,
input,
select,
optgroup,
textarea {
  color: var(--theme-secondary-color);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.mt-6 {
  margin-top: 60px;
}

.mb-6 {
  margin-bottom: 60px;
}

h2 {
  font-size: calc(1.2rem + 1.2vw);
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  margin: 0;
}

p {
  margin-top: 0;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background-color: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background-color: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* Elements */

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

hr {
  background-color: var(--theme-secondary-color);
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

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

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  max-width: 100%;
  transition: all 0.3s;
}

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 30px;
  width: 100%;
  border: 1px solid var(--theme-secondary-color);
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  border: 1px solid var(--theme-secondary-color);
  padding: 5px;
}

/* Forms  */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: var(--theme-secondary-color);
  border: 1px solid var(--theme-secondary-color);
  border-radius: 4px;
  padding: 8px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: white;
  outline: none;
  border-bottom: 3px solid white;
}

input:-webkit-autofill {
  background-color: transparent !important;
}

input:-internal-autofill-selected {
  background-color: transparent !important;
}
/* Menus  */

/* Global Classes  */

.contain-main-wrapper {
  background: #fff;
  margin-top: -80px;
}

.container,
.contain-main-wrapper {
  width: 100%;
  max-width: 1170px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

body.boxed-layout {
  background-color: var(--theme-content-color);
}

body.boxed-layout .site {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
}

.content-area {
  background-color: var(--theme-content-color);
  padding: 30px;
  border-radius: 4px;
}

.row,
.--main-sidearea .widget .event_listings,
.--main-sidearea .widget .event_listings_class {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.column,
.--main-sidearea .widget .event_listings .-single-event-widget,
.--main-sidearea .widget .event_listings_class .-single-event-widget {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.column-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.column-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.column-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.column-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.column-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.column-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.column-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.column-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.column-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.column-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.column-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.column-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

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

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

.align-middle {
  align-items: center !important;
}

.align-end {
  align-items: flex-end !important;
}

.justify-center {
  justify-content: center;
}

.btn:hover,
.btn:focus,
.btn:visited:hover,
.btn.focus-visble,
.btn.focus-visible:visited {
  background-color: var(--theme-secondary-color);
  color: white;
}

.main-contain-wrapper {
  padding: 60px 0;
}

.center {
  width: 100%;
  margin: auto;
}

.fontPoppins {
  font-family: "Poppins";
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-middle {
  display: flex;
  align-items: center;   
}

.flex_grow {
  flex-grow: 1;
}

.flex-intial {
  flex: 0 1 auto;
}

.flex-wrap {
  flex-wrap: wrap;
}

.div-center {
  display: grid;
  place-items: center;
}

/* Navigation */
.header-main {
  background-color: #fff;
  padding: 30px 0;
  margin: 0 30px;
}

.toggle_btn .btn:hover {
  background-color: #fff;
  color: #000;
}

#nav {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  padding: 1rem 1.5rem;
  flex-direction: column;
  background-color: #f4f6f8;
  border-radius: 8px;
  z-index: 2;
  overflow: hidden;
}

.active_navbar {
  max-height: 100vh !important;
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.menu-primary-menu-container {
  margin-right: 30px;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  float: inherit !important;
  display: flex;
}

.main-navigation li {
  position: relative;
}

.main-navigation li a {
  color: #000;
  display: block;
  text-decoration: none;
  text-align: center;
  margin-left: 40px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2.1px;
  position: relative;
}

.main-navigation li.current_page_item > a {
  color: var(--theme-primary-color);
}

.main-navigation li a:hover {
  color: var(--theme-primary-color);
}

.main-navigation ul ul {
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
  min-width: 200px;
  background-color: var(--theme-content-color);
  border-top: 2px solid var(--theme-primary-color);
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.04);
  text-align: left;
  padding: 10px 0;
  display: block;
  border-radius: 10px;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
  transform: inherit;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}

.main-navigation ul ul li {
  width: 100%;
}

.main-navigation ul ul li:last-child {
  border: none;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: 0;
}

.nav-menu > li.menu-item-has-children > a::after {
  content: "\f0d7";
  font-family: FontAwesome;
  font-size: 12px;
  margin-left: 10px;
}

.main-navigation li li a:hover {
  background-color: var(--theme-light-color);
}

.menu-toggle {
  border: 0;
  background-color: transparent;
  display: none;
  cursor: pointer;
  margin: 0px;
}

.menu-toggle:hover {
  background-color: transparent;
}

.bar1,
.bar2,
.bar3 {
  width: 28px;
  height: 3px;
  background-color: var(--theme-secondary-color);
  margin: 6px 0;
  transition: 0.4s;
  display: block;
}

.bar2 {
  width: 28px;
}

.change .bar1 {
  transform: rotate(-45deg) translate(-6px, 7px);
  width: 28px;
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: rotate(45deg) translate(-6px, -7px);
  width: 28px;
}

.main-navigation .site-branding {
  padding: 20px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: 50%;
  transform: translate(-50%, 0px);
}

.header-main-tel {
  color: var(--theme-secondary-color);
}

.header-main-tel i {
  margin-right: 5px;
}

.site-branding {
  line-height: 0;
}

/* Others */
.header-title,
h1.page-title {
  margin-bottom: 0px;
}

.post-thumbnail,
article .entry-header,
.entry-title {
  margin-bottom: 10px;
}

.post-thumbnail,
.post-thumbnail img {
  line-height: 1;
  display: block;
}

.posted-on,
.byline,
.post_by,
.cat-links {
  margin-right: 15px;
}

.posted-on i,
.byline i,
.post_by i,
.cat-links i {
  margin-right: 5px;
}

.blog-list article {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-list article:last-child {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

blockquote {
  border-left: 3px solid #000;
  margin: 0 0 25px 0;
  padding-left: 25px;
}

blockquote p:last-child {
  margin-bottom: 0;
}

.footer-top .container {
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer-col-links li {
  transition: 0.3s ease;
}

.footer-col-links h2 {
  transition: 0.3s ease;
  cursor: pointer;
}

.footer-col-links h2:hover {
  color: var(--theme-primary-color);
}

.footer-col-links li {
  cursor: pointer;
}

form[CLASS*="wp-block-search__"].wp-block-search
  .wp-block-search__inside-wrapper
  .wp-block-search__button {
  color: var(--theme-button-text-color);
  border: 0px;
  border-radius: 4px;
  cursor: pointer;
  padding: 7px 20px;
  display: inline-block;
  border-radius: 4px;
}

#comments .submit,
.search .search-submit {
  padding: 9px 20px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
}

#secondary .widget {
  padding: 20px;
  border-radius: 4px;
  background-color: var(--theme-content-color);
}

.widget ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.widget_archive li,
.widget_recent_comments li,
.widget_categories li,
.widget_recent_entries li,
.widget_meta li,
.widget_nav_menu li {
  padding-left: 20px;
  margin-bottom: 5px;
  position: relative;
}

.widget_archive li:before,
.widget_recent_comments li:before,
.widget_categories li:before,
.widget_recent_entries li:before,
.widget_meta li:before,
.widget_nav_menu li:before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  content: "\f054";
  display: inline-block;
  font-family: "FontAwesome";
}

ol.wp-block-latest-comments {
  padding: 0;
}

@media (min-width: 576px) {
  .column-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .column-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .column-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .column-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .column-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .column-sm-6,
  .--main-sidearea .widget .event_listings .-single-event-widget,
  .--main-sidearea .widget .event_listings_class .-single-event-widget {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .column-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .column-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .column-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .column-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .column-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .column-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .comment-form-author,
  .comment-form-email,
  .comment-form-url {
    float: left;
    width: 31%;
  }

  .comment-form-author,
  .comment-form-email {
    margin-right: 3.5%;
  }

  .comment-form-cookies-consent,
  #comments .form-submit {
    clear: left;
  }

  .recent-post-list-single:nth-child(2),
  .recent-post-list-single:nth-child(3) {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .toggle_btn .btn {
    display: none;
  }

  .active_navbar {
    max-height: 100% !important;
  }

  #nav {
    flex-direction: row;
  }

  .collapse {
    max-height: initial !important;
  }

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

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

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

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

  #primary-menu {
    float: right;
  }

  #primary-menu:after,
  .menu-all-pages-container:after {
    content: "";
    clear: both;
    display: table;
  }

  #primary-menu li a {
    padding: 15px;
  }

  #primary-menu li li a {
    padding: 5px 15px;
    margin-left: 0;
    text-align: left;
  }

  .column-t-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .column-t-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .column-t-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .column-t-4,
  .--main-sidearea .widget .event_listings .-single-event-widget,
  .--main-sidearea .widget .event_listings_class .-single-event-widget {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .column-t-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .column-t-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .column-t-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .column-t-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .column-t-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .column-t-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .column-t-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .column-t-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-t-1,
  .left-sidebar .secondary-content-area {
    -ms-flex-order: 1;
    order: 1;
  }

  .order-t-2,
  .left-sidebar .primary-content-area {
    -ms-flex-order: 2;
    order: 2;
  }

  .order-t-3 {
    -ms-flex-order: 3;
    order: 3;
  }

  .column-l-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .column-l-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .column-l-3,
  .--main-sidearea .widget .event_listings .-single-event-widget,
  .--main-sidearea .widget .event_listings_class .-single-event-widget {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .column-l-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .column-l-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .column-l-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .column-l-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .column-l-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .column-l-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .column-l-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .column-l-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .column-l-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1470px;
  }

  body.boxed-layout .site {
    max-width: 1500px;
  }
}

/* Global Variables */
:root {
  --theme-primary-color: #3700D8 !important;
  --theme-secondary-color: #000;
  --theme-light-color: #f2f4f8;
  --theme-dark-color: #000;
  --theme-button-color1: #3700D8;
  --theme-button-color2: #000;
  --theme-gradient: linear-gradient(
    90deg,
    var(--theme-button-color1),
    var(--theme-button-color2)
  );
  --theme-gradient-hover: linear-gradient(
    260deg,
    var(--theme-button-color1),
    var(--theme-button-color2)
  );
  --box-shadow: 0 10px 40px rgb(0 0 0 / 5%);
  --box-shadow-cards: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body {
  background-color: #fff;
}

.overlay-light {
  background-color: #f5f5f5;
}

.theme_btn {
  background-color: var(--theme-button-color1);
  border: 0;
  color: #fff;
  font-weight: 600;
  padding: 18px 36px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s 0s;
  position: relative;
}

.theme_btn:before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  width: 40px;
  height: 40px;
  border-top: 5px solid var(--theme-button-color1);
  border-left: 5px solid var(--theme-button-color1);
  transition: all 0.3s;
}

.theme_btn:after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 40px;
  height: 40px;
  border-right: 5px solid var(--theme-button-color1);
  border-bottom: 5px solid var(--theme-button-color1);
  transition: all 0.3s;
}

.theme_btn:hover:before {
  width: 100%;
  height: 100%;
  border-color: #000;
}

.theme_btn:hover:after {
  width: 100%;
  height: 100%;
  border-color: #000;
}

.theme_btn:hover {
  background-color: var(--theme-button-color2);
  color: #fff;
}

section {
  padding: 80px 0;
}

.theme-section-title {
  margin-bottom: 60px;
}

.theme-section-title h3 {
  font-size: calc(1.3rem + 1vw);
  display: block;
  margin: 0;
  line-height: normal;
}

.theme-section-title h5 {
  font-size: calc(1.3rem + 1vw);
  display: block;
  margin: 0;
  line-height: normal;
  text-transform: capitalize;
}

.theme-section-title p {
  max-width: 750px;
  width: 100%;
  margin: 20px auto auto auto;
}

.slider-item p {
  max-width: 600px;
  margin: 30px auto;
}

.slider-item h1 {
  color: #000;
  font-size: calc(1.2rem + 2vw);
}

.slider_btn .theme_btn:before,
.slider_btn .theme_btn:after{
  display: none; 
}

p {
  font-weight: 400;
  color: #000;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.ml-8 {
  margin-left: 80px;
}

.relative {
  position: relative;
}

.play-btn {
  background-color: var(--theme-primary-color);
  border-radius: 50%;
  animation: animatewa 2s linear infinite;
  cursor: pointer;
  width: 70px;
  height: 70px;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn.whatsapp-green {
  background-color: #25d366;
}

.play-btn i {
  color: var(--theme-secondary-color);
  font-size: 22px;
}

@keyframes animate {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--theme-primary-color), 0.5);
  }

  50% {
    box-shadow: 0 0 0 15px var(--theme-primary-color);
  }

  100% {
    box-shadow: 0 0 0 rgba(var(--theme-primary-color), 0.5);
  }
}

@keyframes animatewa {
  0% {
    box-shadow: 0 0 0 0 rgba(#25d366, 0.5);
  }

  50% {
    box-shadow: 0 0 0 15px #25d366;
  }

  100% {
    box-shadow: 0 0 0 rgba(#25d366, 0.5);
  }
}

::selection {
  background-color: var(--theme-primary-color);
  color: #fff;
}

/* image scroll hover  */

/* Design Starts  */

.main-menu-container {
  margin: 0 30px;
}

.logo-footer h2 {
  position: relative;
  overflow: hidden;
  max-width: 120px;
}

.logo-footer h2:before {
  content: "kp97";
  color: var(--theme-primary-color);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-right: 4px solid var(--theme-primary-color);
  animation: slide 3s linear infinite;
  overflow: hidden;
}

@keyframes slide {
  0% {
    width: 0;
  }

  50% {
    width: 100%;
  }

  100% {
    width: 0;
  }
}

.site-logo a {
  font-size: calc(1.2rem + 1.2vw);
  line-height: normal;
  font-weight: bold;
  font-family: "poppins";
  letter-spacing: 1px;
  color: #000;
}

.site-logo span {
  color: var(--theme-primary-color);
}

.logo-item:hover img {
  transform: scale(1.2);
}

.banner-title h2 {
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 20px;
}

.banner-title p {
  font-size: 20px;
}

.banner-title {
  margin-bottom: 30px;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  gap: 25px;
}

.social-icons li:hover {
  background-color: var(--theme-primary-color);
  border-color: var(--theme-primary-color);
  color: #fff;
}

.social-icons li:hover a {
  transform: scale(1.2);
}

.social-icons li {
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  position: relative;
  flex-shrink: 0;
}

.lets-connect h2 {
  font-size: 30px;
}

.services-item {
  box-shadow: var(--box-shadow);
  padding: 3rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.skill_item {
  box-shadow: var(--box-shadow);
  padding: 3rem;
  border-radius: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.services-item i {
  width: 60px;
  height: 60px;
  background-color: #f2f3f4;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.demo-item {
  height: 420px;
  overflow: hidden;
}

.demo-item svg {
  color: #087ea4;
  cursor: pointer;
}

.banner-slider {
  margin-top: 2rem;
}

.theme-footer-main {
  padding: 80px 0;
  background-color: #000;
  color: white;
}

.theme-footer-main ul {
  list-style: none;
  display: flex;
  padding: 0;
  opacity: 0.7;
}

.footer-col-links ul {
  flex-direction: column;
}

.footer-links li a {
  font-size: 24px;
  margin-right: 24px;
}

.footer-links li a:hover {
  color: var(--theme-primary-color);
}

.footer-col-links li:hover {
  color: var(--theme-primary-color);
}

.copyright p {
  color: white;
  opacity: 0.7;
}

.whatsapp-floating {
  position: fixed;
  right: 20px;
  bottom: 0;
}

.play-btn i {
  color: white;
  font-weight: bold;
  font-size: 30px;
}

.agency-theme-demo img,
.demo-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  object-position: top;
}

.agency-theme-demo {
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.theme-banner,
.theme-services-section,
.lets-connect {
  background-color: #f2f3f477;
}

.theme-banner .container {
  position: relative;
}

.theme-banner {
  padding: 120px 0;
  animation: changebg 10s linear infinite;
  color: white;
}


@keyframes changebg {
  0% {
    background-color: #3700D8;
  }

  20% {
    background-color: red;
  }

  40% {
    background-color: yellow;
  }

  60% {
    background-color: #1877f2;
  }

  80% {
    background-color: purple;
  }

  100% {
    background-color: #3700D8;
  }
}

.nav-btn {
  position: relative;
  background-color: var(--theme-button-color1);
  color: #fff;
  font-weight: 600;
  padding: 18px 36px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s 0s;
  overflow: hidden;
  z-index: 1;
  animation: changebg 10s linear infinite;
}

.nav-btn:hover {
  box-shadow: var(--box-shadow);
}

.nav-btn:hover .wave {
  top: 0;
}

.nav-btn:hover {
  color: white;
}

@keyframes wavy {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: 122px;
  }
}

.footer-bottom {
  margin-top: 50px;
  color: white;
}

.footer-bottom p, .footer-bottom a {
  color: white;
  opacity: 0.7;
}

.footer-bottom span {
  color: var(--theme-button-color1);
  margin-left: 10px;
  cursor: pointer;
}

/*works start*/
.theme-works-box img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  border-radius: 0;
}

.theme-works-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
}

.theme-works-box-content {
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #fff;
  transition: all 0.3s 0s;
  line-height: normal;
  z-index: 1;
}

.theme-works-box-content h4 {
  font-size: 24px;
  line-height: normal;
  font-weight: 600;
  margin-bottom: 20px;
}

.theme-progress {
  height: 10px;
  background-color: rgb(255 255 255 / 20%);
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 30px;
}

.theme-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--wpem-theme-gradient);
}

.theme-progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.theme-works-box-content .theme_btn {
  opacity: 0;
  visibility: hidden;
}

.theme-works-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(transparent, rgb(0 0 0 / 70%));
}

.theme-works-box:hover .theme-works-box-content {
  bottom: 0;
}

.theme-works-box:hover .theme_btn {
  opacity: 1;
  visibility: visible;
}

.theme-works .column-4:nth-child(2) .theme-works-box img {
  height: 300px;
}

.theme-works .column-4:nth-child(2) .theme-works-box:nth-child(1) {
  margin-bottom: 30px;
}

.lightning_text li:first-child {
  padding-left: 0;
}

/* animated loading divs start  */
.main_loading {
  width: 100%;
  height: 600px;
  position: relative;
  background-color: #f2f3f4;
  display: grid;
  place-items: center;
  border-radius: 20px;
}

.center_loading {
  max-width: 400px;
  width: 100%;
  height: 400px;
  background-color: transparent;
  position: relative;
}

.center_loading span {
  max-width: 150px;
  width: 100%;
  height: 150px;
  border-radius: 20px;
  background-color: var(--theme-button-color1);
  color: #fff;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  animation: load 2s linear infinite;
  transition: all 0.3s;
  margin: 20px;
}

.center_loading span:nth-child(2) {
  animation-delay: 0.67s;
}

.center_loading span:nth-child(3) {
  animation-delay: 1.32s;
}

@keyframes load {
  0% {
    left: 0;
    top: 0;
  }

  12.5% {
    left: 50%;
    top: 0;
  }

  25% {
    left: 50%;
    top: 0;
  }

  37.5% {
    left: 50%;
    top: 50%;
  }

  50% {
    left: 50%;
    top: 50%;
  }

  62.5% {
    left: 0;
    top: 50%;
  }

  75% {
    left: 0;
    top: 50%;
  }

  87.5% {
    left: 0;
    top: 0;
  }

  100% {
    left: 0;
    top: 0;
  }
}

/* animated loading divs end  */

.captions {
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s;
}

.agency-theme-demo:hover img {
  transform: scale(1.4) rotate(15deg);
}

.agency-theme-demo:hover .captions {
  opacity: 1;
}

.captions h4 {
  font-size: 24px;
  margin-top: 250px;
  transition: all 0.5s;
}

.agency-theme-demo:hover .captions h4 {
  margin-top: 0;
}

/* wave animation */
.wave {
  width: 10px;
  height: 60px;
  background-color: #fff;
  display: grid;
  place-items: center;
  margin: 0 4px;
  border-radius: 6px;
  animation: waves 1s linear infinite;
  transform-origin: bottom;
  transition: all 0.3s;
}

.wave_loading_effect h2 {
  color: white;
  margin-right: 80px;
}

@keyframes waves {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

.wave:nth-child(2) {
  animation-delay: 0.1s;
}

.wave:nth-child(3) {
  animation-delay: 0.2s;
}

.wave:nth-child(4) {
  animation-delay: 0.3s;
}

.wave:nth-child(5) {
  animation-delay: 0.4s;
}

.wave:nth-child(6) {
  animation-delay: 0.5s;
}

.wave:nth-child(7) {
  animation-delay: 0.6s;
}

.wave:nth-child(8) {
  animation-delay: 0.7s;
}

.wave:nth-child(9) {
  animation-delay: 0.8s;
}

/* hidden search starts  */
.searchBox {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.searchText {
  width: 0;
  padding: 0 !important;
  transition: all 0.3s;
  height: 50px;
  outline: none;
  border: none;
}

.searchBox:hover .searchText {
    max-width: 420px;
    width: 100%;
    padding: 30px 20px !important;
    border-radius: 8px;
    color: #000;
}

.searchBox:hover .searchBtn {
  right: 30px;
}

.searchBtn {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background-color: var(--theme-primary-color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(100% - 30px);
  transition: all 0.3s;
}

/* hidden search ends  */

/* hover cards starts  */
.hover_card {
  width: 350px;
  min-width: 200px;
  height: 400px;
  background-color: #f2f3f4;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.card_content {
  padding: 0 20px;
  position: absolute;
}

.card_number {
  position: absolute;
  background-color: var(--theme-primary-color);
  color: white;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  transition: all 0.5s linear;
  opacity: 0.9;
  border-radius: 20px;
}

.card_number h2 {
  font-size: 60px;
}

.hover_card {
  border-radius: 20px;
}

.hover_card:hover .card_number h2 {
  font-size: 20px;
}

.hover_card:hover .card_number {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 2px dotted var(--theme-primary-color);
  color: white;
  font-size: 20px;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}

/* hover cards ends  */

/* contact form starts  */
.contact_form_container {
  max-width: 750px;
  width: 100%;
  margin: auto;
  padding: 50px;
  background-color: var(--theme-primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 30px;
}

.inputBox {
  position: relative;
}

.inputBox input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 30px;
  color: #fff;
  border: none;
  border-bottom: 2px solid #fff;
  border-radius: 0;
  background-color: transparent;
  outline: none;
}

.inputBox label {
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px;
  font-size: 16px;
  transition: all 0.5s;
}

.inputBox input:focus ~ label,
.inputBox input:valid ~ label {
  top: -20px;
  left: 0;
  color: white;
  font-size: 14px;
}

.contact_form_container input[type="submit"] {
  background-color: transparent;
  outline: none;
  color: #fff;
  padding: 8px 24px;
  font-size: 14px;
  border: 3px solid;
  border-radius: 6px;
  cursor: pointer;
}

/* contact form ends  */

.slider_btn .theme_btn {
  background-color: #000;
}

.slider_btn .theme_btn:hover {
  background-color: var(--theme-primary-color);
}

.spinner {
  width: 80px;
  height: 80px;
  --clr: #000;
  --clr-alpha: rgb(255, 255, 255, 0.1);
  animation: spinner 2s infinite linear;
  transform-style: preserve-3d;
  position: absolute;
  right: 0;
  bottom: 0;
}

.spinner > div {
  background-color: var(--clr-alpha);
  height: 100%;
  position: absolute;
  width: 100%;
  border: 5px solid var(--clr);
}

.spinner div:nth-of-type(1) {
  transform: translateZ(-40px) rotateY(180deg);
}

.spinner div:nth-of-type(2) {
  transform: rotateY(-270deg) translateX(50%);
  transform-origin: top right;
}

.spinner div:nth-of-type(3) {
  transform: rotateY(270deg) translateX(-50%);
  transform-origin: center left;
}

.spinner div:nth-of-type(4) {
  transform: rotateX(90deg) translateY(-50%);
  transform-origin: top center;
}

.spinner div:nth-of-type(5) {
  transform: rotateX(-90deg) translateY(50%);
  transform-origin: bottom center;
}

.spinner div:nth-of-type(6) {
  transform: translateZ(40px);
}

@keyframes spinner {
  0% {
    transform: rotate(0deg) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: rotate(180deg) rotateX(180deg) rotateY(180deg);
  }

  100% {
    transform: rotate(360deg) rotateX(360deg) rotateY(360deg);
  }
}

.theme-demos .theme-section-title p {
  max-width: 900px;
}

.theme_color_picker_container h2 {
    font-size: 24px;
    line-height: normal;
    font-weight: 900;
    margin-bottom: 20px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.my_summary_image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
} 

.summary_text {
  max-width: 600px;
  width: 100%;
}

.summary_btn {
  background-color: #e3edf7;
  border-radius: 10px;
  box-shadow: 6px 6px 10px -1px rgba(0,0,0,0.15),
      -6px -6px 10px -1px rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0);
  cursor: pointer;
  transition: transform 0.5s;
  width: 62px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.summary_btn:hover {
  box-shadow: inset 4px 4px 6px -1px rgba(0,0,0,0.2),
	      inset -4px -4px 6px -1px rgba(255,255,255,0.7),
	      -0.5px -0.5px 0px rgba(255,255,255,1),
	      0.5px 0.5px 0px rgba(0,0,0,0.15),
	      0px 12px 10px -10px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.1);
  transform: translateY(0.5em);
  background-color: transparent;
}

.summary_btn svg {
  transition: transform 0.5s;
  width: 30px;
  height: 30px;
}

.summary_btn:hover svg {
  transform: scale(0.9);
  fill: #333333;
}

.summary_social_links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.summary_heading {
  margin-bottom: 8px;
}

.skill_item_desc {
  font-size: 24px;
}

.welcome-portfolio-caption h2:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 80px;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  background: url('https://demo.wp-eventmanager.com/wpem-portfolio/wp-content/themes/wpem-portfolio/assets/images/zigzag.svg');
  background-size: cover;
} */

.welcome-portfolio-image img {
  max-width: 639px;
  width: 100%;
}

.my_summary.relative {
  padding-bottom: 0;
}

section#my_work {
  padding-top: 0;
}