/*------------------------------------------------------------------------------

MASTER STYLESHEET

    Project         : K2B Secure Solution Website.
    Version         : 1.0
    Created on      : Dec 20, 2022, 08:31:38 PM
    Last change     : Dec 20, 2022, 08:31:38 PM
    Author          : Prakasam Mathaiyan
    URL             :
    Email           : prakasam.mathaiyan@bt.com
    For             : K2B Secure Solution Pvt. Ltd.


--------------------------------------------------------------------------------
[IMPORTS]                                                                     */
:root {
  --font-primary: "TT Norms Pro", sans-serif;
  --font-secondary: "PT Serif", serif;
  --font-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  --font-icon: "Font Awesome 6 Pro" !important;
}

:root {
  --color-white-hex: #FFFFFF;
  --color-white-rgb: 255, 255, 255;
  --color-black-hex: #000000;
  --color-black-rgb: 0, 0, 0;
  --color-primary-hex: #FF0000;
  --color-primary-rgb: 255, 0, 0;
  --color-secondary-hex: #222222;
  --color-secondary-rgb: 34, 34, 34;
  --color-neutral-050: #FAFAFA;
  --color-neutral-100: #F5F5F5;
  --color-neutral-200: #EBEBEB;
  --color-neutral-300: #C4C4C4;
  --color-neutral-400: #B1B1B0;
  --color-neutral-500: #9D9D9C;
  --color-neutral-600: #5E5E5C;
  --color-neutral-700: #474745;
  --color-neutral-800: #333333;
  --color-neutral-900: #111111;
  --color-success-hex: #28CD41;
  --color-success-rgb: 40, 205, 65;
  --color-danger-hex: #FF3B30;
  --color-danger-rgb: 255, 59, 48;
  --color-warning-hex: #FF9500;
  --color-warning-rgb: 255, 49, 0;
  --color-info-hex: #007AFF;
  --color-info-rgb: 0, 122, 255;
}

[data-theme=light] {
  --color-text-dft: var(--color-neutral-800);
  --color-text-drk: var(--color-neutral-900);
  --color-text-lit: var(--color-neutral-700);
  --color-text-xlt: var(--color-neutral-500);
  --color-text-xxlt: var(--color-neutral-300);
  --bg-surface-dft: var(--color-white-hex);
  --bg-surface-lit: var(--color-neutral-100);
  --bg-surface-xlt: var(--color-neutral-050);
  --bg-surface-invert-dft: var(--color-white-hex);
  --color-border-dft: var(--color-neutral-300);
  --color-border-lit: var(--color-neutral-200);
  --bg-body-dft: var(--color-white-hex);
  --bg-body-lit: var(--color-neutral-100);
  --bg-body-xlt: var(--color-neutral-050);
}

[data-theme=dark] {
  --color-text-dft: var(--color-neutral-100);
  --color-text-drk: var(--color-neutral-050);
  --color-text-lit: var(--color-neutral-700);
  --color-text-xlt: var(--color-neutral-500);
  --color-text-xxlt: var(--color-neutral-300);
  --color-text-link: var(--color-neutral-300);
  --bg-surface-dft: var(--color-white-hex);
  --bg-surface-lit: var(--color-neutral-800);
  --bg-surface-xlt: var(--color-neutral-900);
  --bg-surface-invert-dft: var(--color-white-hex);
  --color-border-dft: var(--color-neutral-600);
  --color-border-lit: var(--color-neutral-700);
  --bg-body-dft: var(--color-black-hex);
  --bg-body-lit: var(--color-neutral-800);
  --bg-body-xlt: var(--color-neutral-900);
}

:root {
  --font-size-base: 1rem;
  --font-size-body: 1rem;
  --border-radius-dft: 0rem;
  --border-radius-50p: 50%;
  --border-radius-nor: 0rem;
  --border-radius-xsm: 0.125rem;
  --border-radius-sml: 0.25rem;
  --border-radius-mdm: 0.5rem;
  --border-radius-lrg: 0.75rem;
  --border-radius-xlg: 1rem;
  --line-height-base: 1.3;
  --line-height-content: 1.6;
  --font-weight-heading: 500;
  --font-weight-body: 500;
  --size-nos: 0rem;
  --size-xsm: 0.25rem;
  --size-sml: 0.5rem;
  --size-mdm: 1rem;
  --size-lrg: 2rem;
  --size-xlg: 4rem;
  --size-xxl: 5rem;
}

.hover-this {
  cursor: pointer;
}
.hover-this .hover-anim {
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  -o-transition: transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.cursor {
  pointer-events: none;
  position: fixed;
  padding: 0.3rem;
  background-color: #fff;
  border-radius: 50%;
  mix-blend-mode: difference;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease, opacity 0.4s ease;
  transition: transform 0.3s ease, opacity 0.4s ease;
  transition: transform 0.3s ease, opacity 0.4s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translateX(-5px) translateY(-5px);
  -ms-transform: translateX(-5px) translateY(-5px);
  transform: translateX(-5px) translateY(-5px);
  z-index: 99999;
}

.cursor-active {
  -webkit-transform: translate(-50%, -50%) scale(8);
  -ms-transform: translate(-50%, -50%) scale(8);
  transform: translate(-50%, -50%) scale(8);
  opacity: 0.1;
}

.rolling-text {
  display: inline-block;
  overflow: hidden;
  line-height: 50px;
  height: 50px;
}
.rolling-text.butn {
  padding: 0 35px;
}

.social-text .rolling-text {
  line-height: 30px;
  height: 30px;
}

.rolling-text:hover .letter, .rolling-text.play .letter {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.rolling-text .letter {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  -o-transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1), -webkit-transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.letter:nth-child(1) {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.letter:nth-child(2) {
  -webkit-transition-delay: 0.015s;
  -o-transition-delay: 0.015s;
  transition-delay: 0.015s;
}
.letter:nth-child(3) {
  -webkit-transition-delay: 0.03s;
  -o-transition-delay: 0.03s;
  transition-delay: 0.03s;
}
.letter:nth-child(4) {
  -webkit-transition-delay: 0.045s;
  -o-transition-delay: 0.045s;
  transition-delay: 0.045s;
}
.letter:nth-child(5) {
  -webkit-transition-delay: 0.06s;
  -o-transition-delay: 0.06s;
  transition-delay: 0.06s;
}
.letter:nth-child(6) {
  -webkit-transition-delay: 0.075s;
  -o-transition-delay: 0.075s;
  transition-delay: 0.075s;
}
.letter:nth-child(7) {
  -webkit-transition-delay: 0.09s;
  -o-transition-delay: 0.09s;
  transition-delay: 0.09s;
}
.letter:nth-child(8) {
  -webkit-transition-delay: 0.105s;
  -o-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.letter:nth-child(9) {
  -webkit-transition-delay: 0.12s;
  -o-transition-delay: 0.12s;
  transition-delay: 0.12s;
}
.letter:nth-child(10) {
  -webkit-transition-delay: 0.135s;
  -o-transition-delay: 0.135s;
  transition-delay: 0.135s;
}
.letter:nth-child(11) {
  -webkit-transition-delay: 0.15s;
  -o-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.letter:nth-child(12) {
  -webkit-transition-delay: 0.165s;
  -o-transition-delay: 0.165s;
  transition-delay: 0.165s;
}
.letter:nth-child(13) {
  -webkit-transition-delay: 0.18s;
  -o-transition-delay: 0.18s;
  transition-delay: 0.18s;
}
.letter:nth-child(14) {
  -webkit-transition-delay: 0.195s;
  -o-transition-delay: 0.195s;
  transition-delay: 0.195s;
}
.letter:nth-child(15) {
  -webkit-transition-delay: 0.21s;
  -o-transition-delay: 0.21s;
  transition-delay: 0.21s;
}
.letter:nth-child(16) {
  -webkit-transition-delay: 0.225s;
  -o-transition-delay: 0.225s;
  transition-delay: 0.225s;
}
.letter:nth-child(17) {
  -webkit-transition-delay: 0.24s;
  -o-transition-delay: 0.24s;
  transition-delay: 0.24s;
}
.letter:nth-child(18) {
  -webkit-transition-delay: 0.255s;
  -o-transition-delay: 0.255s;
  transition-delay: 0.255s;
}
.letter:nth-child(19) {
  -webkit-transition-delay: 0.27s;
  -o-transition-delay: 0.27s;
  transition-delay: 0.27s;
}
.letter:nth-child(20) {
  -webkit-transition-delay: 0.285s;
  -o-transition-delay: 0.285s;
  transition-delay: 0.285s;
}
.letter:nth-child(21) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.progress-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
  mix-blend-mode: difference;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  font-family: var(--font-icon);
  content: "\f077";
  text-align: center;
  line-height: 44px;
  font-size: 13px;
  font-weight: 900;
  color: #ccc;
  left: 0;
  top: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: #ccc;
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

body.loaded {
  overflow: hidden !important;
  height: 100% !important;
}

.loader-wrap {
  position: fixed;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent;
  z-index: 2000;
}
.loader-wrap svg {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 110vh;
  fill: var(--bg-body-lit);
}
.loader-wrap .loader-wrap-heading .load-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  ccolor: var(--color-text-dft);
}

.load-text span {
  -webkit-animation: loading 1s infinite alternate;
  animation: loading 1s infinite alternate;
}
.load-text span:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.load-text span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.load-text span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.load-text span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.load-text span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.load-text span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.load-text span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*------------------------------------------------------------------------------
BASCIC ELEMENTS                                                               */
* {
  outline: none !important;
}

html, body {
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-body-dft);
  color: var(--color-text-dft);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-body);
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
body.modal-opened {
  overflow: hidden;
}

.wrapper {
  overflow: hidden;
  min-height: 100vh;
}
.wrapper::after {
  display: block;
  content: "";
  clear: both;
}

[data-theme=light] .logo-light {
  display: block;
}
[data-theme=light] .logo-dark {
  display: none;
}

[data-theme=dark] .logo-light {
  display: none;
}
[data-theme=dark] .logo-dark {
  display: block;
}

.topnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 200;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.topnav.blur.nav-scroll {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.topnav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.topnav .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 60px;
}
.topnav .menu-icon {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.topnav .menu-icon.open .text .word {
  opacity: 0;
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.topnav .menu-icon.open .text:after {
  opacity: 1;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.topnav .menu-icon.open .icon {
  width: 20px;
}
.topnav .menu-icon.open .icon i {
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  margin: 0;
}
.topnav .menu-icon.open .icon i:first-of-type {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.topnav .menu-icon.open .icon i:last-of-type {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.topnav .menu-icon .text {
  font-size: 13px;
  font-weight: 500;
  padding-right: 15px;
  position: relative;
}
.topnav .menu-icon .text:after {
  content: "close";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-right: 15px;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.topnav .menu-icon .text .word {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.topnav .menu-icon .icon {
  position: relative;
}
.topnav .menu-icon .icon i {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px 0;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  -o-transition: transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  background: var(--color-text-dft);
}
.topnav .logo img {
  height: 2rem;
}

.hamenu {
  position: fixed;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg-surface-lit);
  padding: 120px 30px 30px;
  overflow: hidden;
  z-index: 100;
  -webkit-transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
  -o-transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
  transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
}
.hamenu.open .menu-links .main-menu > li .link {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
.hamenu.open .cont-info:after {
  height: 200vh;
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
.hamenu.open .cont-info .bottom, .hamenu.open .cont-info .item {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
.hamenu.open .menu-text:after {
  height: 200vh;
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
.hamenu .menu-links {
  color: var(--color-text-dft);
  padding-right: 30px;
}
.hamenu .menu-links .o-hidden {
  display: inline-block;
}
.hamenu .menu-links .main-menu {
  list-style: none;
  position: relative;
  z-index: 2;
}
.hamenu .menu-links .main-menu.gosub > li {
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 0.2s !important;
  -o-transition-delay: 0.2s !important;
  transition-delay: 0.2s !important;
}
.hamenu .menu-links .main-menu.gosub > li .link {
  -webkit-transform: translateY(45px) !important;
  -ms-transform: translateY(45px) !important;
  transform: translateY(45px) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  -webkit-transition-delay: 0.2s !important;
  -o-transition-delay: 0.2s !important;
  transition-delay: 0.2s !important;
}
.hamenu .menu-links .main-menu.gosub .sub-menu.sub-open {
  z-index: 3 !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.hamenu .menu-links .main-menu > li {
  font-size: 60px;
  font-weight: 700;
  /*text-transform: uppercase;*/
  line-height: 1;
  padding: 10px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.hamenu .menu-links .main-menu > li span.nm {
  opacity: 0.8;
  font-size: 13px;
  margin-right: 10px;
}
.hamenu .menu-links .main-menu > li .link {
  -webkit-transform: translateY(65px);
  -ms-transform: translateY(65px);
  transform: translateY(65px);
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  cursor: pointer;
}
.hamenu .menu-links .main-menu .sub-menu {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.hamenu .menu-links .main-menu .sub-menu.sub-open {
  z-index: 3;
}
.hamenu .menu-links .main-menu .sub-menu.sub-open li .sub-link {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
.hamenu .menu-links .main-menu .sub-menu li {
  font-size: 28px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 5px 15px;
}
.hamenu .menu-links .main-menu .sub-menu li .sub-link {
  -webkit-transform: translateY(65px);
  -ms-transform: translateY(65px);
  transform: translateY(65px);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  padding: 10px 0;
  white-space: nowrap;
}
.hamenu .menu-links .main-menu .sub-menu li .sub-link:hover {
  text-decoration: underline;
}
.hamenu .menu-links .main-menu .sub-menu li .sub-link.back {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
}
.hamenu .menu-links .main-menu .sub-menu li .sub-link.back i {
  margin-right: 5px;
}
.hamenu .cont-info {
  position: relative;
  padding-left: 30px;
}
.hamenu .cont-info:after {
  content: "";
  width: 1px;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: -30px;
  top: -75vh;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.hamenu .cont-info .item {
  margin-bottom: 50px;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
  opacity: 0;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}
.hamenu .cont-info .bottom {
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

/* Pages Header
-----------------------------------------------------------------*/
.land-header {
  padding: 12rem 0 8rem;
}

.crev-header {
  padding-top: 12rem;
}
.crev-header h1 {
  font-size: 6rem;
}
.crev-header .img {
  position: relative;
  height: 70vh;
}
.crev-header .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.crev-header .img .curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
}
.crev-header .img .curve svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.crev-header2 {
  padding-top: 180px;
  padding-bottom: 120px;
}
.crev-header2 .text {
  font-size: 150px;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.crev-header2 .text.text-lg {
  font-size: 170px;
}
.crev-header2 .text span {
  white-space: nowrap;
}
.crev-header2 .text .img {
  width: 300px;
  height: 175px;
  margin: -30px 40px 0;
}
.crev-header2 .text .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.crev-header2 .img-long {
  position: relative;
  width: 100%;
  height: 100%;
}
.crev-header2 .img-long .iner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300%;
}
.crev-header2 .img-long .iner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.crev-header2 p {
  font-size: 13px;
  text-transform: uppercase;
}

.about-header .cont h6 {
  font-size: 18px;
}
.about-header .cont h1 {
  font-size: 100px;
}
.about-header .img {
  height: 65vh;
  min-height: 350px;
}
.about-header .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.contact-header {
  position: relative;
  z-index: 3;
}
.contact-header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--bg-body-lit);
  z-index: -1;
}
.contact-header .cont h6 {
  font-size: 18px;
}
.contact-header .cont h1 {
  font-size: 100px;
}
.contact-header .google-map {
  height: 450px;
  width: 100%;
  position: relative;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.contact-header .google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header-project1 {
  padding: 180px 0 0;
}
.header-project1 .bg-img {
  height: 540px;
}

.header-project2 .project2 {
  width: 130%;
  margin-left: -15%;
}
.header-project2 .project2 .img {
  height: 75vh;
  min-height: 500px;
}
.header-project2 .project2 .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.header-project3 {
  min-height: 70vh;
  padding: 220px 0 120px;
}
.header-project3:before {
  background: -webkit-gradient(linear, left bottom, left top, from(#0c0c0c), to(transparent));
  background: -webkit-linear-gradient(bottom, #0c0c0c, transparent);
  background: -o-linear-gradient(bottom, #0c0c0c, transparent);
  background: linear-gradient(to top, #0c0c0c, transparent);
  opacity: 1;
}

.header-project4 {
  min-height: 100vh;
  padding: 220px 0 80px;
}

.header-blog {
  padding: 220px 0 0;
}
.header-blog .cont h6 {
  font-size: 18px;
}
.header-blog .cont h1 {
  font-size: 100px;
}

.sub-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.sub-title.bord {
  padding: 0.5rem 2rem;
  border: 1px solid var(--color-border-dft);
  border-radius: 40px;
}

.text-indent {
  text-indent: 20%;
}

.section-padding {
  padding: 120px 0;
}

.bg-xlt {
  background-color: var(--bg-body-lit);
}

.link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Services
-----------------------------------------------------------------*/
.serv-tags .items a {
  padding: 14px 30px;
  border: 1px solid var(--color-border-lit);
  border-radius: 30px;
  font-size: 22px;
  margin: 10px 5px;
}

.services-box .title {
  font-size: 5rem;
  margin-top: 5rem;
  position: sticky;
}
.services-box .item {
  border-left: 1px solid var(--color-border-dft);
  border-top: 1px solid var(--color-border-lit);
  padding: 60px 40px;
}
.services-box .item .icon-img-60 i {
  font-size: 3rem;
  color: var(--color-primary-hex);
}
.services-box .item .txt-des {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1rem;
}
.services-box .item:last-of-type {
  /*border-right: 1px solid var(--color-border-lit);*/
}
.services-box .item .link-more {
  overflow: hidden;
}
.services-box .item .link-more:hover .text {
  margin-left: 0;
}
.services-box .item .link-more .text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: -92px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.services-box .item .link-more .arrow {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  margin-left: 10px;
}
.services-box.home-service .item:last-of-type {
  border-right: 1px solid var(--color-border-dft);
}

.feat .items {
  padding: 30px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.feat .items:last-of-type {
  border: 0;
}
.feat .item {
  position: relative;
}
.feat .item .numb {
  position: absolute;
  top: 0;
  right: 0;
}
.feat .item h6 {
  margin: 40px 0 10px;
}
.feat .item p {
  font-size: 13px;
}

/* Main Marque
-----------------------------------------------------------------*/
.main-marq {
  position: relative;
  padding: 0;
}
.main-marq.lrg .box .item h4 {
  font-size: 6vw;
  font-weight: 700;
}
.main-marq.xlrg .box .item {
  padding: 0 30px;
}
.main-marq.xlrg .box .item h4 {
  font-size: 10vw;
  font-weight: 800;
}
.main-marq.xlg-pading .item {
  padding: 0 60px !important;
}
.main-marq .slide-har {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-marq .strok .item h4 {
  color: transparent !important;
  -webkit-text-stroke: 0.5px #fff;
}
.main-marq .strok .item h4 a {
  color: transparent !important;
  -webkit-text-stroke: 0.5px #fff;
}
.main-marq .non-strok .item h4 {
  color: #fff !important;
  -webkit-text-stroke: 0 !important;
}
.main-marq .non-strok .item h4 a {
  color: #fff !important;
  -webkit-text-stroke: 0 !important;
}
.main-marq .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-marq .box .item {
  padding: 0 30px;
}
.main-marq .box .item h4 {
  white-space: nowrap;
  line-height: 1;
  margin: 0;
}
.main-marq .box .item h4 .icon {
  font-size: 90px;
  margin-bottom: -50px;
}
.main-marq .box .item h2 {
  white-space: nowrap;
  line-height: 1;
  margin: 0;
}
.main-marq .box .item:nth-of-type(even) h4 {
  color: transparent;
  -webkit-text-stroke: 0.5px #fff;
}
.main-marq .box .item:nth-of-type(even) h4 a {
  color: transparent;
  -webkit-text-stroke: 0.5px #fff;
}
.main-marq .box:last-of-type .item:nth-of-type(even) h4 {
  color: #fff;
  -webkit-text-stroke: 0;
}
.main-marq .box:last-of-type .item:nth-of-type(even) h4 a {
  color: #fff;
  -webkit-text-stroke: 0;
}
.main-marq .box:last-of-type .item:nth-of-type(odd) h4 {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}
.main-marq .box:last-of-type .item:nth-of-type(odd) h4 a {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.work .marquee-head .item {
  padding: 0;
}
.work .marquee-head .item h2 {
  font-size: 10vw;
  position: relative;
}
.work .marquee-head .item h2:after {
  content: "-";
  position: relative;
  font-size: 10vw;
  margin: 0 100px;
}
.work .gallery-img .item {
  margin-top: 120px;
  position: relative;
}
.work .gallery-img .item img {
  width: 100%;
  height: auto;
}

.slide-har {
  position: relative;
}
.slide-har.st1 .box {
  position: relative;
  -webkit-animation: slide-har 80s linear infinite;
  animation: slide-har 80s linear infinite;
}
.slide-har.st2 .box {
  position: relative;
  -webkit-animation: slide-har-revers 80s linear infinite;
  animation: slide-har-revers 80s linear infinite;
}

@-webkit-keyframes slide-har {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes slide-har {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes slide-har-revers {
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes slide-har-revers {
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.about .text-reval .text {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}
.about .text-indent {
  text-indent: 20%;
}

.text-reval .text {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--color-text-dft)), color-stop(50%, #7d7d7d));
  background: -webkit-linear-gradient(left, var(--color-text-dft) 50%, #7d7d7d 50%);
  background: -o-linear-gradient(left, var(--color-text-dft) 50%, #7d7d7d 50%);
  background: linear-gradient(to right, var(--color-text-dft) 50%, #7d7d7d 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-transition: background-position-x 0.8s !important;
  -o-transition: background-position-x 0.8s !important;
  transition: background-position-x 0.8s !important;
}

/* Numbers
-----------------------------------------------------------------*/
.numbers h3 {
  font-size: 100px;
  line-height: 1;
}

/* Testimonials
-----------------------------------------------------------------*/
.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  display: inline-block;
  position: static;
  width: 45px;
  height: 45px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  margin-left: 10px;
  color: var(--color-text-dft);
  border: 1px solid var(--color-border-dft);
}
.testimonials .swiper-button-prev:after, .testimonials .swiper-button-next:after {
  display: none;
}
.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: var(--color-primary-hex);
  border-color: var(--color-primary-hex);
  color: #FFFFFF;
}
.testimonials .swiper-pagination {
  width: 140px;
  height: 140px;
  border: 1px solid var(--color-border-dft);
  border-radius: 50%;
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.testimonials .swiper-pagination span {
  font-size: 30px;
}
.testimonials .swiper-pagination .swiper-pagination-total {
  position: relative;
  font-size: 17px;
  margin-bottom: -10px;
}
.testimonials .swiper-pagination .swiper-pagination-total:before {
  content: "/";
  position: relative;
  margin: 0 2px 0 7px;
}

/* Brands
-----------------------------------------------------------------*/
.clients-carso {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.clients-carso .img {
  margin: auto;
  opacity: 0.8;
}
.clients-carso .img:hover {
  opacity: 1;
}

.brands .brand-items {
  text-align: center;
}
.brands .brand-items .img {
  opacity: 0.7;
}
.brands .brand-items .img:hover {
  opacity: 1;
}
.brands .brand-items img {
  max-width: 160px;
  margin: 3rem auto;
}

.clients-marq {
  position: relative;
}
.clients-marq:before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: -30px;
  right: -30px;
  pointer-events: none;
  background: -webkit-linear-gradient(right, #0c0c0c, transparent 300px, transparent calc(100% - 300px), #0c0c0c);
  background: -o-linear-gradient(right, #0c0c0c, transparent 300px, transparent calc(100% - 300px), #0c0c0c);
  background: linear-gradient(to left, #0c0c0c, transparent 300px, transparent calc(100% - 300px), #0c0c0c);
  z-index: 3;
}
.clients-marq .item {
  padding: 80px 60px !important;
  margin: 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
}

.sub-bg .clients-marq:before {
  background: -webkit-linear-gradient(right, #141414, transparent 300px, transparent calc(100% - 300px), #141414);
  background: -o-linear-gradient(right, #141414, transparent 300px, transparent calc(100% - 300px), #141414);
  background: linear-gradient(to left, #141414, transparent 300px, transparent calc(100% - 300px), #141414);
}

/*

[data-theme="light"] {
    .logo-light {
        display: block;
    }
    .logo-dark {
        display: none;
    }
}

[data-theme="dark"] {
    .logo-light {
        display: none;
    }
    .logo-dark {
        display: block;
    }
}
*/
select,
input,
textarea {
  padding: 12px 12px;
  border: 0;
  border: 1px solid var(--color-border-dft);
  background: transparent;
  color: var(--color-text-dft);
  width: 100%;
}
select:focus,
input:focus,
textarea:focus {
  border-color: var(--color-text-dft);
}

.submit-btn {
  border: none;
  background: var(--color-primary-hex);
  color: var(--color-white-hex);
  padding: 12px 12px;
  font-weight: 700;
}
.submit-btn .loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #007cba;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Contact
-----------------------------------------------------------------*/
.contact .required {
  color: red;
}
.contact .container {
  position: relative;
}
.contact .container:after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 0;
  right: 0;
}
.contact .container.no-bord:after {
  display: none;
}
.contact .hover-this {
  display: inline-block;
  cursor: pointer;
}
.contact .info {
  position: relative;
  height: 100%;
  z-index: 3;
}
.contact .info:after {
  content: "";
  position: absolute;
  top: -120px;
  left: -80px;
  right: -80vw;
  bottom: -120px;
  background: #141414;
  opacity: 0.5;
  z-index: -1;
}
.contact .message {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
  display: none;
}
.contact .success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.contact .error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.call-action .marquee-head .item h2 {
  font-size: 10vw;
  position: relative;
}
.call-action .marquee-head .item h2 span {
  margin: 0 100px 0 30px;
}
.call-action .marquee-head .item h2 span svg {
  width: 100px;
  height: 100px;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(var(--color-primary-rgb), 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.gallery-item:hover {
  /*        &::before {
              opacity: 1;
          }*/
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

/*
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 3;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.overlay-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.overlay-description {
    font-size: 0.9rem;
    opacity: 0.9;
}*/
/* Specific grid positioning for masonry effect */
.gallery-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}
.gallery-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1/3;
}
.gallery-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.gallery-item:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}
.gallery-item:nth-child(4) {
  grid-column: 4/6;
  grid-row: 1;
}
.gallery-item:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}
.gallery-item:nth-child(6) {
  grid-column: 3;
  grid-row: 2;
}
.gallery-item:nth-child(7) {
  grid-column: 4;
  grid-row: 2;
}
.gallery-item:nth-child(8) {
  grid-column: 5;
  grid-row: 2;
}
.gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}
.gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}
.gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}
.gallery-item:nth-child(4) {
  animation-delay: 0.4s;
}
.gallery-item:nth-child(5) {
  animation-delay: 0.5s;
}
.gallery-item:nth-child(6) {
  animation-delay: 0.6s;
}
.gallery-item:nth-child(7) {
  animation-delay: 0.7s;
}
.gallery-item:nth-child(8) {
  animation-delay: 0.8s;
}

/* Responsive design */
@media (max-width: 1200px) {
  .masonry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery-item:nth-child(4) {
    grid-column: 4;
    grid-row: 1;
  }
  .gallery-item:nth-child(8) {
    grid-column: 4;
    grid-row: 2;
  }
}
@media (max-width: 768px) {
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 250px);
  }
  .gallery-item {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .gallery-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .masonry-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, 200px);
  }
  .gallery-title {
    font-size: 1.5rem;
  }
}
/* Loading animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Footer
-----------------------------------------------------------------*/
footer {
  position: relative;
}
footer .eml .sub-title {
  margin-bottom: 15px;
}
footer .column li,
footer .links li {
  display: inline-block;
  margin-right: 30px;
  margin-top: 1rem;
}
footer .column li:last-of-type,
footer .links li:last-of-type {
  margin-right: 0;
}
footer .logo img {
  max-width: 100px;
}
footer .bord {
  border-top: 1px solid var(--color-border-lit);
}

.list-theme-switcher {
  list-style: none;
  padding: 2px;
  margin: 0px;
  display: flex;
  border-radius: 16px;
  border: 1px solid var(--color-border-dft);
}
.list-theme-switcher > li {
  padding: 0px;
  margin: 0px;
  height: 1.5rem;
}
.list-theme-switcher > li > a {
  display: block;
  text-decoration: none;
  padding: 0px 12px;
  border-radius: 16px;
  line-height: 24px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-txt-hex);
}
.list-theme-switcher > li > a.active {
  background-color: var(--color-info-hex);
  color: #FFFFFF;
}
.list-theme-switcher > li.active > a {
  background-color: var(--color-info-hex);
  color: #FFFFFF;
}

.modal-flot {
  z-index: 1000;
}
.modal-flot::before {
  position: fixed;
  content: "";
  z-index: 1001;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
  -o-transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
  transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
}
.modal-flot > .modal-contant {
  position: fixed;
  z-index: 1002;
  background-color: var(--bg-body-dft);
  overflow: hidden;
  -webkit-transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
  -o-transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
  transition: all 0.5s cubic-bezier(1, 0, 0.55, 1);
}
.modal-flot > .modal-contant .modal-header {
  border: none;
  border-radius: 0px;
  position: relative;
  padding: 1rem;
  padding-right: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal-flot > .modal-contant .modal-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.modal-flot > .modal-contant .modal-header .list-links {
  list-style: none;
  position: absolute;
  right: 0px;
  top: 0px;
}
.modal-flot > .modal-contant .modal-header .list-links > li > a {
  color: var(--color-text-dft);
  padding: 0px 12px;
  font-size: 18px;
  line-height: 43px;
}
.modal-flot > .modal-contant .modal-body {
  padding: 1rem;
}
.modal-flot.show {
  /*> .modal-contant { @include box-shadow(0px 0px 20px rgba(50,50,50,.1)); }*/
}
.modal-flot.show.minimised::before {
  width: 0px;
  height: 0px;
  bottom: 0px;
  top: auto;
}
.modal-flot.show.minimised > .modal-contant {
  width: 300px !important;
  height: 43px !important;
  bottom: 0px !important;
  right: 0px !important;
  top: auto !important;
  /*@include transition($all);*/
}
.modal-flot.show.minimised > .modal-contant .slimScrollDiv,
.modal-flot.show.minimised > .modal-contant .modal-body,
.modal-flot.show.minimised > .modal-contant .modal-footer {
  display: none;
  overflow: hidden !important;
}

.modal-flot[data-position=right]::before {
  width: 0px;
  height: 100%;
  right: 0px;
  top: 0px;
}
.modal-flot[data-position=right] .slimScrollDiv,
.modal-flot[data-position=right] .modal-body {
  padding-bottom: 100px !important;
}
.modal-flot[data-position=right].no-footer .slimScrollDiv,
.modal-flot[data-position=right].no-footer .modal-body {
  padding-bottom: 60px !important;
}
.modal-flot[data-position=right].modal-md > .modal-contant {
  width: 500px;
  height: 100%;
  top: 0px;
  bottom: auto;
  right: -510px;
}
.modal-flot[data-position=right].modal-lg > .modal-contant {
  width: 720px;
  height: 100%;
  top: 0px;
  bottom: auto;
  right: -730px;
}
.modal-flot[data-position=right].modal-xl > .modal-contant {
  width: 960px;
  height: 100%;
  top: 0px;
  bottom: auto;
  right: -970px;
}
.modal-flot[data-position=right].show > .modal-contant {
  right: 0px;
}
.modal-flot[data-position=right].show::before {
  width: 100%;
}

.modal-flot[data-position=bottom-center].modal-md > .modal-contant {
  width: 450px;
  left: calc(50% - 225px);
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.modal-flot[data-position=bottom-center].modal-md > .modal-contant .modal-header {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.modal-flot[data-position=bottom-center].modal-lg > .modal-contant {
  width: 60%;
  max-height: 600px;
  left: 20%;
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.modal-flot[data-position=bottom-center].modal-lg > .modal-contant .modal-header {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.modal-flot[data-position=bottom-center]::before {
  width: 100%;
  height: 0px;
  left: 0px;
  bottom: 0px;
}
.modal-flot[data-position=bottom-center].show > .modal-contant {
  bottom: 0px;
}
.modal-flot[data-position=bottom-center].show::before {
  height: 100%;
}

@media only screen and (max-width: 600px) {
  .about-header .cont h1 {
    font-size: 60px;
  }
  .about-header .img {
    height: 40vh;
    min-height: 350px;
  }
}

/*# sourceMappingURL=style.main.css.map */
