@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@200;300&display=swap");
:root {
  --primary__font: "Lato", sans-serif;
  --primary__font: "Ubuntu", sans-serif;
  --secondary__font: "Yanone Kaffeesatz", sans-serif;
  --primary__font__size: 18px;
  --text__color: rgb(10 13 28);
  --text__color__o: 10, 13, 28;
  --text__color__default: rgb(10 13 28);
  --text__color__inverted: rgb(250, 250, 250);
  --text__color__light: rgb(10 13 28);
  --text__color__dark: rgb(0, 0, 0);
  --bg__color: rgb(255, 255, 255);
  --bg__color__o: 255, 255, 255;
  --bg__color__light: rgb(245, 247, 252);
  --bg__color__dark: rgb(38, 44, 55);
  --bg__color__dark__o: 38, 44, 55;
  --button__background: rgba(2, 167, 240, 1);
  --button__text__color: rgb(255, 255, 255);
  --tertiary__color: rgba(225, 225, 225, 1);
  --tertiary__color__light: rgb(246, 248, 252);
  --link__color: rgba(2, 167, 240, 1);
  --border__radius: 2px;
  --weight__thin: 200;
  --weight__light: 300;
  --weight__medium: 400;
  --weight__bold: 500;
  --weight__bold__dark: 600;
  --theme__color: #f19c1e;
  --selection__color: #fff;
  --selection__bg: #f19c1e;
  --slider-tbox-height:35px;
}

[data-theme=dark] {
  --text__color: rgb(185, 200, 225);
  --text__color__o: 185, 200, 225;
  --text__color__default: rgb(185, 200, 225);
  --text-color-light: rgb(76, 89, 103);
  --text__color__dark: rgb(255, 255, 255);
  --text__color__inverted: rgb(214, 229, 255);
  --bg__color: rgb(24, 31, 37);
  --bg__color__o: 24, 31, 37;
  --bg__color__light: rgb(31, 40, 49);
  --bg__color__dark: rgb(18, 23, 27);
  --bg__color__dark__o: 18, 23, 27;
  --tertiary__color: rgba(52, 52, 79, 1);
  --tertiary__color--light: rgba(250, 250, 250, 1);
  --text-color-normal: rgb(148, 158, 168);
  --text-color-richer: rgb(148, 184, 219);
  --text-color-highlight: rgb(195, 101, 34);
  --link-color: rgb(110, 179, 247);
  --accent-color: rgb(255, 166, 102);
  --error-color: rgb(240, 50, 50);
  --button__background: rgb(41, 110, 179);
  --button__text__color: rgb(233, 233, 233);
  --background: rgb(24, 31, 37);
  --theme__color: #2e1f08;
  --selection__color: #2e1f08;
  --selection__bg: rgb(255, 255, 255);
}
[data-theme=dark] img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: filter 0.3s ease-in-out;
  -o-transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
}

[data-font=small] {
  --primary__font__size: 12px;
  --slider-tbox-height:28px;
  --primary__textbox_f_size: 12px;
}

[data-font=normal] {
  --primary__font__size: 18px;
  --slider-tbox-height:35x;
  --primary__textbox_f_size: 14px;
}

[data-font=large] {
  --primary__font__size: 24px;
  --slider-tbox-height:38px;
  --primary__textbox_f_size: 16px;
}
[data-font=large] .slider__text {
  max-width: 875px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.text__uppercase {
  text-transform: uppercase;
}

.text__lowercase {
  text-transform: lowercase;
}

.text__center {
  text-align: center;
}

.text__left {
  text-align: left;
}

.text__right {
  text-align: right;
}

.padding__large {
  padding: 70px 0;
}

.padding__medium {
  padding: 50px 0;
}

.padding__small {
  padding: 35px 0;
}

.bg__color__light {
  background-color: var(--bg__color__light);
}

.bg__color__dark {
  background-color: var(--bg__color__dark);
}

.text__color__inverted {
  color: var(--text__color__inverted);
}

.bg__0 {
  background-color: #000;
}

.border {
  border: 1px solid;
}

.border__bottom {
  border-bottom: 1px solid;
}

.border__top {
  border-top: 1px solid;
}

.font__size--85 {
  font-size: 85%;
}

.font__size--70 {
  font-size: 70%;
}

.width__800 {
  width: 100%;
  max-width: 800px;
  display: inline-flex;
}

.hr {
  border-top: 1px solid;
}

.font__size__large {
  font-size: 1.25rem;
}

.font__size__x__large {
  font-size: 1.5rem;
}

.font__size__2x__large {
  font-size: 1.75rem;
}

.font__size__3x__large {
  font-size: 2rem;
}

.font__size__4x__large {
  font-size: 2.5rem;
}

.shadow__div {
  -webkit-box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.2);
}

.round__edge {
  border-radius: 8px;
}

.c__pointer {
  cursor: pointer;
}

.no__select {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.max__800 {
  width: 100%;
  max-width: 800px;
}

.max__300 {
  width: 100%;
  max-width: 300px;
}

.primary__font {
  font-family: var(--primary__font);
}

.secondary__font {
  font-family: var(--secondary__font);
}

.font__weight__thin {
  font-weight: var(--weight__thin);
}

.font__weight__light {
  font-weight: var(--weight__light);
}

.font__weight__medium {
  font-weight: var(--weight__medium);
}

.font__weight__bold {
  font-weight: var(--weight__bold);
}

.font__weight__bold__dark {
  font-weight: var(--weight__bold__dark);
}

.qft-a-height {
  display: flex;
  flex-direction: column;
}

.qft-a-shrink {
  flex-shrink: 0;
}

.qft-a-scroll {
  height: 100%;
  overflow-y: auto;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

.link {
  color: var(--button__background);
  text-decoration: none;
}

::selection {
  background-color: var(--selection__bg);
  color: var(--selection__color);
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
em,
img,
ul,
li,
nav,
menu,
form,
label,
aside,
figure,
footer,
header,
strong,
article,
blockquote,
section {
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 100%;
  background: transparent;
}

html {
  overflow-x: hidden;
  font-size: var(--primary__font__size);
  -webkit-transition: font-size 0.3s ease-in-out;
  -o-transition: font-size 0.3s ease-in-out;
  transition: font-size 0.3s ease-in-out;
}

body {
  width: 100%;
  padding: 0px;
  margin: 0 auto;
  line-height: 1.25;
  letter-spacing: 0.2px;
  color: var(--text__color);
  font-weight: var(--weight__light);
  font-family: var(--primary__font);
  background-color: var(--bg__color);
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2 {
  font-family: var(--secondary__font);
  font-weight: 200;
}

h3,
h4,
h5,
h6 {
  font-family: var(--secondary__font);
  font-weight: 300;
}

h1 {
  font-size: 2.66rem;
  margin-top: 0.67rem;
  margin-bottom: 0.67rem;
}

h2 {
  font-size: 2.22rem;
  margin-top: 0.83rem;
  margin-bottom: 0.83rem;
}

h3 {
  font-size: 1.77rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.33rem;
  margin-top: 1.33rem;
  margin-bottom: 1.33rem;
}

h5 {
  font-size: 1.11rem;
  margin-top: 1.67rem;
  margin-bottom: 1.67rem;
}

h6 {
  font-size: 1rem;
  margin-top: 2.33rem;
  margin-bottom: 2.33rem;
}

p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-transition: filter 0.3s ease-in-out;
  -o-transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
}

textarea {
  resize: none;
}

::-webkit-input-placeholder {
  color: rgba(var(--text__color__o), 0.5);
  font-family: var(--primary__font);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

:-ms-input-placeholder {
  color: rgba(var(--text__color__o), 0.5);
  font-family: var(--primary__font);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

::placeholder {
  color: rgba(var(--text__color__o), 0.5);
  font-family: var(--primary__font);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input {
  height: 40px;
  border: 1px solid var(--tertiary__color);
  border-radius: var(--border__radius);
  background-color: var(--bg__color);
  color: var(--text__color);
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  padding: 0 10px;
}

.button {
  height: 40px;
  min-width: 140px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: var(--button__text__color);
  border-radius: var(--border__radius);
  background-color: var(--button__background);
  font: inherit;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.button:hover {
  opacity: 0.9;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.button__mini {
  font-size: 0.75rem;
  min-width: 100px;
  height: 30px;
}

.button__secondary {
  background-color: transparent;
  color: var(--text__color__inverted);
  border: 1px solid var(--text__color__inverted);
}

.button__enquiry {
  position: fixed;
  bottom: -100px;
  right: 25px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  animation: enquiryButton 0.5s linear 1 6s forwards;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@keyframes enquiryButton {
  100% {
    bottom: 25px;
  }
}
ul li {
  list-style-type: none;
}

ol li {
  margin-bottom: 10px;
  padding-inline-start: 20px;
  padding-inline-end: 20px;
}

header {
  border-bottom: 2px solid var(--tertiary__color);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition-duration: 0.75s;
}

.header__fixed {
  position: fixed;
  border-color: transparent;
  padding: 10px 0;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition-duration: 0.75s;
}
.header__fixed .logo {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition-duration: 0.75s;
}
.header__fixed:not(.sticky) .header__light .nav__link {
  color: var(--text__color__inverted);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header__fixed:not(.sticky) .header__light__icons {
  color: var(--text__color__inverted);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header__fixed.header__hover {
  background-color: rgba(var(--bg__color__o), 1);
  border-bottom-color: var(--tertiary__color);
  transition: none;
}
.header__fixed.header__hover .logo {
  -webkit-filter: invert(0.6);
  -moz-filter: invert(0.6);
  filter: invert(0.6);
  transition: none;
}
.header__fixed.header__hover .header__light .nav__link {
  color: var(--text__color__default);
}
.header__fixed.header__hover .header__light__icons {
  color: var(--text__color__default);
}
.header__fixed.sticky {
  padding: 0;
  background-color: var(--bg__color);
  border-bottom-color: var(--tertiary__color);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition-duration: 0.75s;
}
.header__fixed.sticky .logo {
  -webkit-filter: invert(0.6);
  -moz-filter: invert(0.6);
  filter: invert(0.6);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition-duration: 0.75s;
}
.header__fixed.sticky .hamburger .hamburger__line {
  background-color: var(--text__color);
}

nav {
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
}

.nav__item {
  display: inline-flex;
  box-sizing: border-box;
  align-items: center;
}

.nav__link {
  display: inline-flex;
  height: 60px;
  padding: 0 10px;
  min-width: 80px;
  align-items: center;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: var(--weight__light);
}

.nav__item .nav__link:after {
  content: "";
  font-family: "FontAwesome";
  opacity: 0.65;
  position: relative;
  left: 5px;
}

.header__search {
  transform: rotate(-45deg);
  height: 25px;
  width: 25px;
  font-size: 2rem;
}
.header__search span {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 3px;
}

.nav__mega--menu {
  position: absolute;
  width: 90%;
  max-width: 2000px;
  left: 0;
  right: 0;
  margin: auto;
  top: 60px;
  display: none;
  background-color: var(--bg__color);
  border-top: 2px solid var(--tertiary__color);
  z-index: 100;
  -webkit-box-shadow: 0px 6px 9px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 6px 9px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 6px 9px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.nav__mega--menu.small {
  max-width: 250px;
  left: unset;
  right: unset;
}
.nav__mega--menu.medium {
  max-width: 350px;
  left: unset;
  right: 15px;
}
.nav__mega--menu.medium_700 {
  max-width: 700px;
}
.nav__mega--menu:hover {
  display: flex;
}
.nav__mega--menu a {
  font-size: 0.9rem;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.nav__mega--menu a.active {
  background-color: var(--bg__color__dark);
  color: var(--text__color__inverted);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.nav__mega--menu a:hover {
  background-color: var(--bg__color__dark);
  color: var(--text__color__inverted);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.nav__item--mega--menu > .nav__link:hover + .nav__mega--menu,
.nav__item--mega--menu > .nav__link.active + .nav__mega--menu {
  display: flex;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.font__switch {
  user-select: none;
  display: flex;
}

.font__switch--item {
  padding: 5px;
  width: 35px;
  height: 30px;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  font-size: 16px;
}
.font__switch--item:hover {
  font-weight: var(--weight__bold);
  color: var(--text__color__inverted);
  background-color: var(--button__background);
  border-color: var(--button__background);
}

.font__switch--active {
  font-weight: var(--weight__bold);
  color: var(--text__color__inverted);
  background-color: var(--button__background);
  border-color: var(--button__background);
  cursor: not-allowed;
}

.switch {
  display: flex;
  align-items: center;
}
.switch em {
  margin-left: 10px;
  font-size: 1rem;
}

.switch__label {
  display: inline-block;
  height: 25px;
  position: relative;
  width: 45px;
}

.switch__label input {
  display: none;
}

.switch__slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
}

.switch__slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  width: 18px;
  height: 18px;
  left: 4px;
  position: absolute;
  transition: 0.4s;
}

input:checked + .switch__slider {
  background-color: var(--button__background);
}
input:checked + .switch__slider:before {
  background-color: var(--text__color__inverted);
}

input:checked + .switch__slider:before {
  transform: translateX(18px);
}

.switch__slider.switch__slider--round {
  border-radius: 34px;
}

.switch__slider.switch__slider--round:before {
  border-radius: 50%;
}

.hamburger {
  position: relative;
  z-index: 15;
  cursor: pointer;
}

.hamburger .hamburger__line {
  width: 30px;
  height: 2px;
  background-color: var(--text__color__inverted);
  display: block;
  margin: 6px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#hamburger-1.hamburger__active .hamburger__line:nth-child(2) {
  opacity: 0;
}
#hamburger-1.hamburger__active .hamburger__line:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  -o-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}
#hamburger-1.hamburger__active .hamburger__line:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  -o-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

.slider {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  min-height: 550px;
}
.slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  background-color: rgba(var(--bg__color__dark__o), 0.4);
}

.slider__text {
  width: 100%;
  max-width: 650px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.slider__text h1 {
  font-weight: var(--weight__light);
  font-size: 3rem;
}

.slider__item {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  color: var(--text__color__inverted);
  z-index: 1;
}

#slideshow {
  margin: 0 auto;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  height: 100vh;
  min-height: 550px;
}
#slideshow > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#slideshow > div > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
#slideshow .slide__btn {
  z-index: 99;
  background: transparent;
  outline: none;
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  padding: 1.5rem;
}
#slideshow .slide__btn i {
  opacity: 0.2;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#slideshow .slide__btn:focus, #slideshow .slide__btn:active {
  outline: none;
}
#slideshow .slide__btn:hover i {
  opacity: 1;
}
#slideshow .prev {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
#slideshow .prev i {
  height: 3rem;
  width: 3rem;
  display: flex;
  border: 2px solid var(--text__color__inverted);
  border-right-color: transparent;
  border-bottom-color: transparent;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#slideshow .next {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}
#slideshow .next i {
  height: 50px;
  width: 50px;
  display: flex;
  border: 2px solid var(--text__color__inverted);
  border-right-color: transparent;
  border-bottom-color: transparent;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
#slideshow .slider-dots {
  list-style: none;
  display: inline-block;
  padding-left: 0;
  margin-bottom: 0;
  position: absolute;
  left: 50%;
  bottom: 3%;
  transform: translate(-50%, 0);
  z-index: 99;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#slideshow .slider-dots li {
  display: inline-flex;
  margin: 0 5px;
  cursor: pointer;
  height: 3px;
  width: 25px;
  background: var(--text__color__inverted);
  opacity: 0.95;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#slideshow .slider-dots li.active {
  width: 50px;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#slideshow:hover i {
  opacity: 0.5;
}

.content__container {
  width: 100%;
  height: 100%;
  padding: 15px 20px;
  display: block;
  align-items: center;
  background-color: var(--bg__color);
}
.content__container img {
  width: 100%;
  max-width: 250px;
  height: auto;
}

.page__banner {
  min-height: 450px;
  height: 75vh;
  display: flex;
  align-items: center;
  background-size: cover;
  position: relative;
}
.page__banner h1 {
  font-weight: var(--weight__light);
}
.page__banner h2 {
  font-weight: var(--weight__light);
}
.page__banner .page__banner__image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}
.page__banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  background-color: rgba(var(--bg__color__dark__o), 0.6);
  z-index: -1;
}

.business__intelligence {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../images/section-head/section-head.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.contact__bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../images/section-head/contact.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.tab__wrapper {
  padding: 15px 0;
}
.tab__wrapper ul {
  display: flex;
  border-bottom: 1px solid;
}
.tab__wrapper ul a {
  display: inline-flex;
  padding: 10px;
  min-width: 100px;
}
.tab__wrapper ul a:focus {
  outline: none;
  border: none;
}
.tab__wrapper .ui-state-active,
.tab__wrapper .ui-state-hover {
  font-weight: var(--weight__bold);
  position: relative;
}
.tab__wrapper .ui-state-active::after,
.tab__wrapper .ui-state-hover::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--text__color);
  bottom: -1px;
  left: 0;
}

.accordion .ui-accordion-header {
  margin-block-start: 0;
  margin-block-end: 0;
  padding: 20px 0;
  font-size: 1.3rem;
  font-weight: normal;
  cursor: pointer;
  position: relative;
}
.accordion .ui-accordion-header:not(:first-of-type) {
  border-top: 1px solid;
}
.accordion .ui-accordion-header:not(.ui-accordion-header-active):last-of-type {
  border-bottom: 1px solid;
}
.accordion .ui-accordion-header:focus {
  outline: none;
}
.accordion .ui-accordion-header::after {
  content: "";
  display: inline-flex;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: linear-gradient(var(--text__color), var(--text__color)), linear-gradient(var(--text__color), var(--text__color));
  background-position: center;
  background-size: 50% 2px, 2px 50%;
  background-repeat: no-repeat;
}
.accordion .ui-accordion-header.ui-accordion-header-active::after {
  background-size: 50% 2px, 50% 2px;
}
.accordion .ui-accordion-content {
  padding: 0 0 20px 0;
}
.accordion .ui-accordion-content.ui-accordion-content-active:last-of-type {
  border-bottom: 1px solid;
}

.border__color {
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.border__color:hover {
  border-color: var(--theme__color);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.head__end {
  display: inline-block;
  background-color: var(--theme__color);
}

.tabContent {
  padding: 15px !important;
  display: none;
}
.tabContent.active {
  display: block;
}
.tabContent img {
  width: 15rem;
}

P a {
  color: var(--link__color);
  text-decoration: underline;
}

.main__btn__rect,
.main__btn__circle {
  position: relative;
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: #fffff0;
  background-color: var(--button__background);
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 1px;
  outline: none;
  cursor: pointer;
  z-index: 100;
}

.main__btn__rect {
  padding: 10px 80px;
  line-height: 30px;
}

.main__btn__rect:before,
.main__btn__rect:after {
  position: absolute;
  content: "";
  top: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 240, 0.2);
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}

.main__btn__rect:before {
  left: 0;
}

.main__btn__rect:after {
  right: 0;
}

.main__btn__rect:hover:before,
.main__btn__rect:hover:after {
  width: 50%;
}

.main__btn__circle {
  height: 30px;
  width: 30px;
  -webkit-border-radius: 50%;
  border-radius: 100%;
  line-height: 30px;
  -webkit-transition: box-shadow 0.3s;
  -o-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
}

.main__btn__circle:hover {
  -webkit-box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
  -moz-box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
  box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
}

.popup {
  position: fixed;
  top: 100%;
  width: 100%;
  height: 100%;
  z-index: 10001;
}

.popup.active {
  top: 0;
  background-color: rgba(3, 3, 3, 0.9);
  transition: background-color 0.6s, opacity 0.6s;
}

.popup .main__btn__rect {
  padding: 10px 100px;
}

.popup .popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: 568px;
  width: 85%;
  max-width: 400px;
  margin-top: 150px;
  padding: 35px 25px;
  background-color: var(--bg__color);
  color: var(--text__color);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transition: margin 0.6s;
  -webkit-transition: margin 0.6s;
  -moz-transition: margin 0.6s;
  -o-transition: margin 0.6s;
  border-radius: 5px;
}

.popup.active .popup__content {
  margin-top: 0px;
}

.form__group {
  position: relative;
  width: 90%;
  margin: 0px auto;
}

form#send input,
form#send textarea {
  position: relative;
  margin-bottom: 25px;
  width: 100%;
  height: 30px;
  font-family: "RobotoLight", sans-serif;
  background-color: transparent;
  outline: 0;
  border: none;
  border-bottom: 1px solid rgba(var(--text__color__o), 0.2);
  -webkit-transition: border 0.6s;
  -o-transition: border 0.6s;
  transition: border 0.6s;
  padding: 0 10px;
  border-radius: 0;
}

form#send textarea {
  height: auto;
}

form#send input:focus,
form#send textarea:focus {
  border-bottom: 1px solid var(--button__background);
}

form#send label {
  position: absolute;
  top: 0;
  left: 2px;
  line-height: 28px;
  -webkit-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
}

form#send input:focus + label,
form#send textarea:focus + label {
  color: var(--button__background);
}

form#send .txt {
  line-height: 22px;
  left: 2px;
}

form#send .main__btn__rect {
  position: relative;
  display: block;
  padding: 12px 80px;
  margin: 0px auto;
  font-size: 14px;
}

form#send .main__btn__rect i {
  margin-right: 5px;
}

.popup .fade__out {
  position: absolute;
  top: -20px;
  right: -20px;
  text-align: center;
  font-size: 10px;
}

.mobile__menu {
  right: -300px;
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 280px;
  top: 0;
  background-color: var(--bg__color__dark);
  -webkit-transition: right 0.5s ease;
  -moz-transition: right 0.5s ease;
  transition: right 0.5s ease;
}
.mobile__menu .company {
  color: var(--theme__color);
  text-transform: uppercase;
  padding: 30px;
}
.mobile__menu ul {
  color: var(--text__color__inverted);
  font-size: 16px;
}
.mobile__menu ul li {
  padding: 0;
  display: block;
}
.mobile__menu ul li a {
  display: block;
  padding: 0 30px;
  height: 40px;
  line-height: 40px;
  outline: none;
}
.mobile__menu ul li a:focus {
  outline: none;
}
.mobile__menu .mobile__menu__wrapper .mobile__menu__item {
  position: relative;
}
.mobile__menu .mobile__menu__wrapper .mobile__menu__item > a {
  border-left: 5px solid transparent;
}
.mobile__menu .mobile__menu__wrapper .mobile__menu__item > ul {
  opacity: 0;
  height: 0;
  display: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.mobile__menu .mobile__menu__wrapper .mobile__menu__item:after {
  content: "";
  font-family: "FontAwesome";
  opacity: 0.65;
  position: absolute;
  right: 30px;
  top: 9px;
  pointer-events: none;
  color: var(--theme__color);
}
.mobile__menu .mobile__menu__wrapper .mobile__menu__item .menu__active {
  border-left-color: var(--theme__color);
  background-color: #000;
}
.mobile__menu .mobile__menu__wrapper .mobile__menu__item .menu__active + ul {
  opacity: 1;
  display: block;
  height: auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: rgba(0, 0, 0, 0.25);
}
.mobile__menu .mobile__menu__wrapper .mobile__menu__item .menu__active + ul li a {
  padding: 0 0 0 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.mobile__menu .font__switch {
  padding: 20px;
}
.mobile__menu .font__switch span {
  margin-left: 10px;
  margin-right: 10px;
}

.hamburger__active + .mobile__menu {
  right: 0;
  -webkit-transition: right 0.5s ease;
  -moz-transition: right 0.5s ease;
  transition: right 0.5s ease;
}
.hamburger__active .hamburger__line {
  background-color: #fff !important;
}

.content h2 {
  font-weight: var(--weight__medium);
}

::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.05);
  border-left: 1px solid transparent;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-track:hover {
  background-color: rgba(0, 0, 0, 0.15);
  border-left-color: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
  box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.25);
}

::-webkit-scrollbar-corner {
  background-color: transparent;
}

@media screen and (max-width: 991px) {
  .padding__large {
    padding: 25px 0;
  }

  .padding__medium {
    padding: 20px 0;
  }

  .page__banner {
    min-height: 450px;
  }

  .slider__text h1 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  #slideshow {
    height: 700px;
  }

  .header__fixed .logo {
    max-width: 250px;
  }

  .tab__wrapper ul {
    flex-direction: column;
    border-bottom: none;
    padding: 15px;
    border: 1px solid;
  }
  .tab__wrapper ul a {
    width: 100%;
  }
  .tab__wrapper .ui-state-active,
.tab__wrapper .ui-state-hover {
    background-color: var(--bg__color__light);
  }
  .tab__wrapper .ui-state-active::after,
.tab__wrapper .ui-state-hover::after {
    display: none;
  }

  .slider__text h1 {
    font-size: 2rem;
  }
  .slider__text h1 br {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .max__md__300 {
    width: 100%;
    max-width: 300px;
  }

  .w__md__auto {
    width: auto !important;
  }
}
[dir=rtl] .accordion .ui-accordion-header::after {
  right: unset;
  left: 0;
  top: 0;
  bottom: 0;
}

.slider-contact-form{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5%;
  margin: auto;
  display: flex;
  align-items: center;
  color: var(--text__color__inverted);
  z-index: 1;
  max-width: 375px;
  width: 100%;

}


.slider-contact-form .slider-contact-content{
  background: #0000006e;
  /* background: #fff; */
  width: 100%;
  border: 1px solid #333;
  padding: 20px;
  padding-top: 10px;
}

.slider-contact-form .slider-contact-content .slider-contact-text-box{
  border: 1px solid #fff !important;
  padding: 5px 10px !important;
  height:  var(--slider-tbox-height) !important;
  color: #fff !important;
  margin-bottom: 15px !important;
  font-size: var(--primary__textbox_f_size);
}
.slider-contact-form .slider-contact-content .slider-contact-text-box::-webkit-input-placeholder{
  color: #fff;
}
.slider-contact-form .slider-contact-content .slider-contact-text-box:-moz-placeholder{
  color: #fff;
}
.slider-contact-form .slider-contact-content textarea{
  border: 1px solid #fff !important;
  padding: 5px 10px !important;
  color: #fff !important;
}
.slider-contact-form .slider-contact-content textarea::-webkit-input-placeholder{
  color: #fff;
}
.slider-contact-form .slider-contact-content textarea:-moz-placeholder{
  color: #fff;
}
.slider-submit-btn{
  width: 100% !important;
  border-radius: 5px !important;
  background-color: #02a7f0 !important;
  color: #fff !important;
  font-weight: 500;
  letter-spacing: 3px;
  font-size: 18px;
  height: 45px !important;
  cursor: pointer;
  border: none;
}
.slider-submit-btn:hover{
  background-color:  #15a3e2 !important;
}
.slider-contact-header{
  text-align: center;
  font-family: inherit;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: var(--primary__font__size);
}
.g-recaptcha div{
  margin: auto;
}

.contact-page-form{
  margin: auto;
  display: flex;
  align-items: center;
  color: var(--text__color__inverted);
  z-index: 1;
  max-width: 465px;
  width: 100%;
  background: #f6f5fa;
}
.contact-page-form .contact-page-form-content{
width: 100%;
border: 1px solid #333;
padding: 20px;
}

.contact-page-form .contact-page-form-content .slider-contact-text-box{
  border: 1px solid #33333347 !important;
  padding: 5px 10px !important;
  height: 45px !important;
  background-color: #fff !important;
}
.contact-page-form .contact-page-form-content textarea{
  border: 1px solid #33333347 !important;
  padding: 5px 10px !important;
  background-color: #fff !important;
}
.contact-submit-btn{
  background-color: #efc001 !important;
    color: #fff !important;
}

.contact-page-header{
  color: #333;
  text-align: center;
  margin-top: 0;
}

.contact-page-lect-content{
  height: 100%;
  display: flex;
  align-items: center;
}

.slider-toggle-btn{
    display: flex;
    flex-flow: row;
    justify-content: flex-end;
}

.slider-contact-content .slider-toggle-btn .btn-transparent{
  height: 15px;
  width: 15px;
  background: #000;
  display: inline-block;
  border-radius: 20px;
  margin-right: 10px;
}
.slider-contact-content .slider-toggle-btn .btn-fullwhite{
  height: 15px;
  width: 15px;
  background: #fff;
  display: inline-block;
  border-radius: 20px;
}

@media screen and (max-width: 1400px) and (min-width: 902px) {
  .slider-contact-form .slider-contact-content .slider-contact-text-box{
    /* height: 34px !important; */
    margin-bottom: 15px !important;
  }
}

@media screen and (max-width: 1200px) and (min-width: 902px) {
  .slider-contact-form{
    max-width: 325px;
  }



}
@media screen and (max-width: 901px){
  .slider-contact-form{
    position: static;
    max-width: unset;
  }
  .solution-mobile-screen{
    padding-top: 605px;
  }
  .slider-contact-form .slider-contact-content{
    background: #fff;
    border: none;
  }

  .slider-contact-form .slider-contact-content .slider-contact-text-box{
     border: 1px solid #333 !important;
  }
  .slider-contact-form .slider-contact-content .slider-contact-text-box::-webkit-input-placeholder{
    color: #333;
  }
  .slider-contact-form .slider-contact-content .slider-contact-text-box:-moz-placeholder{
    color: #333;
  }
  .slider-contact-header{
    color: #333;
  }
  .slider-contact-form .slider-contact-content textarea{
    border: 1px solid #333 !important;
    color: #333 !important;
  }
  .slider-contact-form .slider-contact-content textarea::-webkit-input-placeholder{
    color: #333;
  }
  .slider-submit-btn{
    background-color: #efc001 !important;
    color: #fff !important;
  }

  [data-font=normal] {
    --primary__font__size: 18px;
  }
  
}

#mail-status.error{
  font-size: 14px;
  text-align: center;
}
#mail-status.success{
  font-size: 14px;
  text-align: center;
}
/*# sourceMappingURL=style.css.map */
