:root {
  --paragraph-color: #696969;
  --main-color: #269dff;
  --main-font-family: "Roboto", sans-serif;
  --sp-font-family: "Space Grotesk", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  --wp-admin--admin-bar--height: 32px;
  scroll-padding-top: var(--wp-admin--admin-bar--height);
  margin-top: 0 !important;
}

body {
  margin: 0;
  padding: 0;
  color: var(--paragraph-color);
  font-family: var(--main-font-family);
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
}

/*
==================
Header
==================
*/
.site-header {
  /* position: relative; */
  z-index: 222;
}

/* Menu */
.site-header .main-menu {
  display: flex;
  align-items: center;
  position: relative;
  height: 100px;
}
.site-header .main-menu .manu-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .main-menu .manu-wrapper .site-branding {
  flex-shrink: 0;
}
.site-header .main-menu .manu-wrapper .site-branding img {
  width: 100px;
}
.site-header .main-menu .manu-wrapper .site-branding .site-title {
  margin: 0;
}
.site-header .main-menu .manu-wrapper .menu-ul,
.site-header .main-menu .manu-wrapper .menu-ul ul {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
}
.site-header .main-menu .manu-wrapper .menu-ul li a {
  display: inline-block;
  color: #232323;
  font-size: 16px;
  font-weight: 600;
  padding: 38px 13px;
}
.site-header .main-menu .manu-wrapper .menu-ul li a i {
  font-size: 10px;
  margin-left: 4px;
}
.site-header .main-menu .manu-wrapper .menu-ul .current-menu-item a {
  color: var(--main-color);
}
.site-header .main-menu .manu-wrapper .menu-ul li a:hover {
  color: var(--main-color);
}

.site-header .main-menu .manu-wrapper .menu-element {
  display: flex;
  align-items: center;
}
.site-header .main-menu .manu-wrapper .menu-element .search {
  position: relative;
  margin-left: 20px;
}
.site-header .main-menu .menu-element .search .search-icon i {
  cursor: pointer;
}
.site-header .main-menu .menu-element .search .search-icon.active i::before {
  content: "\F659";
}
.site-header .main-menu .manu-wrapper .menu-element .menu-button {
  margin-left: 30px;
}
.site-header .main-menu .manu-wrapper .menu-element .menu-button a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 32px;
  border: 1px solid var(--main-color);
  z-index: 1;
  overflow: hidden;
}
.site-header .main-menu .manu-wrapper .menu-element .menu-button a:hover {
  color: var(--title-color);
}
.site-header .main-menu .manu-wrapper .menu-element .menu-button a::before {
  content: "";
  position: absolute;
  height: 100%;
  background-color: var(--main-color);
  width: 50%;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.site-header
  .main-menu
  .manu-wrapper
  .menu-element
  .menu-button
  a:hover::before {
  left: -50%;
}
.site-header .main-menu .manu-wrapper .menu-element .menu-button a::after {
  content: "";
  position: absolute;
  height: 100%;
  background-color: var(--main-color);
  width: 50%;
  top: 0;
  right: 0;
  z-index: -1;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.site-header
  .main-menu
  .manu-wrapper
  .menu-element
  .menu-button
  a:hover::after {
  right: -50%;
}

/* //// */
#sticky-header {
  transition: all 300ms ease;
}

.site-header .transparent-menu {
  position: absolute;
  width: 100%;
  z-index: 2;
}

/* Site Brand - Logo */
.custom-logo-link {
  display: inline-block;
}

/* Site Navigation - Links */
.main-navigation {
  display: block;
}

/* Ul */

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation li {
  position: relative;
}

.site-header .transparent-menu .manu-wrapper .menu-ul li a {
  color: #fff;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

/* Sub Menu */

.site-header .main-menu .manu-wrapper .menu-ul li .sub-menu-toggle {
  position: absolute;
  top: 43%;
  right: 0;
  font-size: 13px;
  opacity: 0.5;
}
.site-header .main-menu .manu-wrapper .menu-ul li .sub-menu .sub-menu-toggle {
  right: 14px;
}
.site-header .main-menu .manu-wrapper .menu-ul li .sub-menu {
  position: absolute;
  display: block;
  background-color: #fff;
  width: 270px;
  left: 0;
  top: 130%;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 5px rgb(0 0 0 / 15%);
  float: left;
  padding: 10px 0;
  z-index: 99999;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.site-header
  .main-menu
  .manu-wrapper
  .menu-ul
  li
  .sub-menu
  .menu-item-has-children {
  margin-right: 0;
}
.site-header .main-menu .manu-wrapper .menu-ul li:hover .sub-menu {
  top: 100%;
  visibility: visible;
  opacity: 1;
}
.site-header .main-menu .manu-wrapper .menu-ul li .sub-menu li {
  position: relative;
  transition: 0.3s;
}
.site-header .main-menu .manu-wrapper .menu-ul li .sub-menu li:hover {
  margin-left: 15px;
}
.site-header .main-menu .manu-wrapper .menu-ul li .sub-menu li::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 15px;
  background-color: var(--main-color);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.1s;
}
.site-header .main-menu .manu-wrapper .menu-ul li .sub-menu li:hover::before {
  opacity: 1;
}
.site-header .main-menu .manu-wrapper .menu-ul li .sub-menu li a {
  display: block;
  color: #616161;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
}
.site-header .main-menu .manu-wrapper .menu-ul li .sub-menu .sub-menu {
  left: 100%;
  top: 130%;
  visibility: hidden;
  opacity: 0;
}
.site-header .main-menu .manu-wrapper .menu-ul li .sub-menu li:hover .sub-menu {
  top: 0;
  visibility: visible;
  opacity: 1;
}

.site-header .transparent-menu .manu-wrapper .menu-ul li a {
  color: #fff;
}
.site-header .transparent-menu .manu-wrapper .menu-ul li .sub-menu-toggle {
  color: #fff;
}
.site-header
  .transparent-menu
  .manu-wrapper
  .menu-ul
  li
  .sub-menu
  li
  .sub-menu-toggle {
  color: var(--main-color);
}
.site-header .transparent-menu .menu-element .search .search-icon {
  color: #fff;
  height: 40px;
  width: 40px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  line-height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.sticky-nav .transparent-menu {
  background-color: var(--title-color);
}
.site-header .transparent-menu .manu-wrapper .menu-toggle i {
  color: #fff;
}
.site-header
  .transparent-menu
  .manu-wrapper
  .menu-element
  .menu-button
  a:hover {
  color: #fff;
}

/* Responsive Menu */

.site-header .main-menu .main-navigation .header-nav {
  display: flex;
  align-items: center;
  justify-content: end;
}

/* Menu */
.site-header .main-menu .manu-wrapper .menu-element {
  display: flex;
  align-items: center;
}

/*
==================
 Mobile Menu
==================
*/

.mobile-menu {
  position: relative;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  display: none;
  background: white;
}
.mobile-menu .menu-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
}
.mobile-menu .menu-toggle {
  cursor: pointer;
  font-size: 30;
}
.mobile-menu .menu-toggle i {
  color: var(--main-color);
  font-size: 24px;
}
.mobile-menu .menu-content {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  background: #fff;
  padding: 30px 30px 40px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 99;
}
.mobile-menu .menu-ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-menu .menu-ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-menu .menu-ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--title-color);
  font-weight: 600;
  text-decoration: none;
  padding: 10px 10px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.mobile-menu .menu-ul li a:hover {
  color: var(--main-color);
}
.mobile-menu .menu-ul li a i {
  padding: 0 10px;
}
.mobile-menu .menu-ul .sub-menu {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: none;
  display: none;
}
.mobile-menu .menu-content .info {
  margin: 30px 0 0;
}
.mobile-menu .menu-content .info .title {
  position: relative;
  font-size: 22px;
  margin-bottom: 16px;
  padding-left: 15px;
}
.mobile-menu .menu-content .info .title::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 3px;
  background-color: var(--main-color);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mobile-menu .menu-content .info-box {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.mobile-menu .menu-content .info-box i {
  margin-right: 10px;
}
.mobile-menu .menu-content .info-box a {
  color: var(--paragraph-color);
}
.mobile-menu .menu-content .info-box a:hover {
  color: var(--main-color);
}
.mobile-menu .menu-content .search-icon {
  color: #fff !important;
  font-size: 22px;
  height: 46px;
  width: 46px;
  background-color: var(--main-color);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu .menu-content .component {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  padding-top: 20px;
}
.mobile-menu .menu-content .search-icon i:hover {
  background-color: var(--title-color);
}
.mobile-menu .menu-content .component .menu-btn {
  margin-left: 20px;
}
.mobile-menu .menu-content .component .menu-btn a {
  display: inline-block;
  color: #fff;
  padding: 12px 20px;
  background-color: var(--main-color);
  border-radius: 5px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.mobile-menu .menu-content .component .menu-btn a:hover {
  background-color: var(--title-color);
}
.mobile-menu .menu-content .component .menu-btn a i {
  margin-left: 3px;
}

/* Sub menu */

.mobile-menu .menu-ul li .sub-menu li {
  border-bottom: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.custom-logo-link img {
  width: 100px;
}

/*================
 Search Popup
==================*/

.search-window {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.search-active.search-window {
  transform: translateY(0%) !important;
  margin-top: 0 !important;
}
.search-window .search-close {
  position: absolute;
  right: 40px;
  top: 40px;
  margin: 0;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  border: 0;
  padding: 0;
  border-radius: 5px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.search-active.search-window .search-close {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}
.search-window .search-close {
  display: inline-block;
  color: #ffffff;
  font-size: 24px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background-color: var(--main-color);
  border-radius: 5px;
}
.search-window form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  background-color: #111111;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.search-active.search-window form {
  transform: scaleX(1);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}
.search-window .form-group {
  position: relative;
  margin: 0px;
  overflow: hidden;
}
.search-window .form-group input[type="text"],
.search-window .form-group input[type="search"] {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 50px;
  height: 70px;
  width: 100%;
  padding: 10px 170px 10px 30px;
  background-color: #ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: 0;
  outline: 0;
  border-radius: 0;
}
.search-window .form-group input[type="submit"],
.search-window .form-group button {
  position: absolute;
  right: 0;
  top: 0px;
  height: 70px;
  width: 140px;
  line-height: 70px;
  background: var(--main-color);
  text-align: center;
  font-size: 24px;
  color: #fff;
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: none;
  border-radius: 0;
}
.search-window .form-group input[type="submit"]:hover,
.search-window .form-group button:hover {
  color: #000000;
}
.search-window input::placeholder,
.search-window textarea::placeholder {
  color: #000000;
}

/* Services */
.service-item {
  justify-content: center;
}
.service-item img {
  width: 100px;
}

/* *
** Hero Section
*/

.section {
  position: relative;
  overflow: hidden;
}

.shape-bottom {
  position: absolute;
  left: 47%;
  bottom: 0;
  width: calc(125% + 10px);
  transform: translateX(-50%);
  z-index: 1;
}

.hero-particles {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

  text-align: center;
  height: 990px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-particles .subtitle {
  position: relative;
  display: inline-block;
  color: var(--main-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 6px;
  z-index: 1;
}

.hero-particles .subtitle::before,
.hero-particles .subtitle::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 45px;
  background-color: var(--main-color);
  top: 50%;
  left: -55px;
}

.hero-particles .subtitle::after {
  left: inherit;
  right: -55px;
}

.hero-particles .title {
  color: #ffffff;
}

/*
===================
Hero Particles
===================
*/

@media (max-width: 1366px) {
  .hero-particles .title {
    font-size: 70px;
  }
}

.hero-particles {
  position: relative;
  text-align: center;
  height: 990px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-particles .wrapper {
  max-width: 60%;
}

.hero-particles .subtitle {
  position: relative;
  display: inline-block;
  color: var(--main-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 6px;
  z-index: 1;
}
.hero-particles .subtitle::before,
.hero-particles .subtitle::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 45px;
  background-color: var(--main-color);
  top: 50%;
  left: -55px;
}
.hero-particles .subtitle::after {
  left: inherit;
  right: -55px;
}
.hero-particles .title {
  position: relative;
  font-size: 85px;
  font-weight: bold;
  margin-bottom: 18px;
  z-index: 1;
  font-family: var(--sp-font-family);
}
.hero-particles .title span {
  color: var(--main-color);
}
.hero-particles .description {
  margin-bottom: 53px;
}
.hero-particles .button-set a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 32px;
  border: 1px solid var(--main-color);
  z-index: 1;
  overflow: hidden;
}
.hero-particles .button-set a.hero-btn1 {
  color: #fff;
  margin-right: 10px;
  text-decoration: none;
}
.hero-particles .button-set a.hero-btn1::before {
  content: "";
  position: absolute;
  height: 100%;
  background-color: var(--main-color);
  width: 50%;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.hero-particles .button-set a.hero-btn1:hover::before {
  left: -50%;
}
.hero-particles .button-set a.hero-btn1::after {
  content: "";
  position: absolute;
  height: 100%;
  background-color: var(--main-color);
  width: 50%;
  top: 0;
  right: 0;
  z-index: -1;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.hero-particles .button-set a.hero-btn1:hover::after {
  right: -50%;
}
.hero-particles .button-set a.hero-btn2 {
  background-color: transparent;
  text-decoration: none;
}
.hero-particles .hero-btn2 {
  color: #ffffff;
}
.hero-particles .button-set a.hero-btn2::before {
  content: "";
  position: absolute;
  height: 100%;
  background-color: var(--main-color);
  width: 50%;
  top: 0;
  left: -50%;
  z-index: -1;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.hero-particles .button-set a.hero-btn2:hover::before {
  left: 0;
}
.hero-particles .button-set a.hero-btn2::after {
  content: "";
  position: absolute;
  height: 100%;
  background-color: var(--main-color);
  width: 50%;
  top: 0;
  right: -50%;
  z-index: -1;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.hero-particles .button-set a.hero-btn2:hover::after {
  right: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.hero-particles .description {
  color: #ffffffcc;
}

/* ====================
=== About Us
=======================*/
.section.p {
  padding: 71px 0px 90px 0px;
}
.single-image img {
  max-width: 100%;
}

/*
===================
Section Title
===================
*/
.section-title.style1 .subtitle {
  position: relative;
  display: inline-block;
  color: var(--main-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 15px;
}
.section-title.style1 .subtitle::before,
.section-title.style1 .subtitle::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 45px;
  background-color: var(--main-color);
  top: 50%;
  left: -55px;
}
.section-title.style1 .subtitle::after {
  left: inherit;
  right: -55px;
}
.section-title.style1 .title {
  font-size: 50px;
  margin-bottom: 20px;
  font-family: var(--sp-font-family);
  font: bold;
}
.section-title.style1 .title span {
  color: var(--main-color);
}
.section-title.center {
  text-align: center;
  margin: auto;
}
.section-title.right {
  text-align: right;
}
.section-title.left .subtitle::before {
  display: none;
}
.section-title.right .subtitle::after {
  display: none;
}

.quote {
  border-style: solid;
  border-width: 0px 0px 0px 3px;
  border-color: var(--main-color);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 0px 0px 0px 20px;
}

.quote .form {
  display: flex;
  color: #616161;
}

/*
===================
Single Button
===================
*/
.single-button.style1 .button {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 34px;
  border: 1px solid var(--main-color);
  overflow: hidden;
  z-index: 1;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}
.single-button.style1 .button:hover {
  color: var(--title-color);
}
.single-button.style1 .button i {
  font-size: 16px;
}
.single-button.style1 .button::before {
  content: "";
  position: absolute;
  height: 100%;
  background-color: var(--main-color);
  width: 50%;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.single-button.style1 .button:hover::before {
  left: -50%;
}
.single-button.style1 .button::after {
  content: "";
  position: absolute;
  height: 100%;
  background-color: var(--main-color);
  width: 50%;
  top: 0;
  right: 0;
  z-index: -1;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.single-button.style1 .button:hover::after {
  right: -50%;
}
