/*   
Theme Name: KCAT
Description: This is the website for KCAT
Author: -
Author URI: 
Version: 1.0.0
Tags: full
License: 
License URI: 
*/

/*

TABLE OF CONTENTS

1. Variables
2. Custom CSS

*/

/*******************************************************
 *
 * 1. Variables
 *
 *******************************************************/




:root {
    /** Font default */
    --font-family-default: "League Spartan", sans-serif;
    --font-family-title: "Montserrat", sans-serif;
    --font-family-body: "League Spartan", sans-serif;
    --font-size-default: 16px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --font-color-title: #6c757d;
    
    /** Use for input, button, and any other element */
    --primary: #2DA7F2;
    --secondary: #121F41;
    --accent: #0A56A4;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #fff;
    --dark: #000;

    --default-transition: 0.3s ease;

    --bg: #000000;
    --clr-1: #00c2ff;
    --clr-2: #33ff8c;
    --clr-3: #ffc640;
    --clr-4: #e54cff;

    --blur: 1rem;
    --fs: clamp(3rem, 8vw, 7rem);
    --ls: clamp(-1.75px, -0.25vw, -3.5px);
}

/*******************************************************
 *
 * 2. Navigation
 *
 *******************************************************/

/* Sub Menu */
#nav li {
    position:relative;
    display: inline-block;
}

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: rgba(0,0,0,0.9) url("images/submenu-fixer.png");
    display: none;
    padding: 0;
    position: absolute;
 	width:100%;
 	min-width:180px;
}
#nav .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 10px;
}
#nav .sub-menu a:hover {
    background: none repeat scroll 0 0 var(--light);
    color: var(--font-color-default);
    text-decoration: none;
}
#nav .sub-menu .sub-menu {
    margin-left: 100%;
 	top:0;
}
#nav li:hover > .sub-menu {
    display: block;
}
#nav .sub-menu li {
    position: relative;
}


/*******************************************************
 *
 * 3. Custom CSS
 *
 *******************************************************/

/* Global */
html * {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-default) !important;
  font-size: var(--font-size-default);
  background: #000;
  color: var(--font-color-default);
  margin: 0;
  /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
  /* -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
}

body.overflow {
  overflow: hidden;
}

.grecaptcha-badge {
  z-index: 100;
}

.site-canvas {
  display: block;
  width: 100%;
}

.custom-container {
  max-width: 1440px;
  width: 100%;
  margin: auto;
}

a,
a:focus,
a:hover,
a:focus-within {
  text-decoration: none;
}

input,
textarea,
button {
	outline: none;
}

.home video {
  cursor: pointer;
}

.rel {
  position: relative;
}

.blk {
  display: block !important;
}

.no-padding {
  padding-right: 0 !important;
}

.disable {
  pointer-events: none;
}

.img-object {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w-bg {
  background: #fff;
}

.img-wrapper {
  position: relative;
}

.img-wrapper canvas {
  display: block;
  width: 100%;
} 

.img-wrapper img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.bg-canvas-wrap::before {
  content: '';
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 293px;
  z-index: 1;
}

.bg-canvas-wrap::after {
  content: '';
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 293px;
  z-index: 1;
}

.bg-canvas-rel {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.ios-true .bg-canvas,
.safari .bg-canvas,
.ios-true .bg-fixed,
.safari .bg-fixed {
  background-attachment: scroll !important;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bg-canvas-g {
  filter: grayscale(1);
}

.bg-fixed {
  background-attachment: scroll !important;
}

.bw {
  filter: grayscale(1);
}

.ease {
  transition: var(--default-transition);
  -webkit-transition: var(--default-transition);
  -moz-transition: var(--default-transition);
  -o-transition: var(--default-transition);
}

.ease-1 {
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

#main-wrapper {
  overflow: hidden;
}

.show-mb {
  display: none !important;
}

.txt-up {
  text-transform: uppercase;
}

.zi-100 {
  z-index: 100;
}

.rel-z {
  position: relative;
  z-index: 100;
}

.hidden {
  display: none !important;
}

.no-margin {
  margin: 0 !important;
}

.n-app {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-progress-appearance: none;
  outline: none;
  background: transparent;
  border: 0;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1170px;
  width: 100%;
  margin: auto;
  padding: 0 15px;
}

.text-center {
  text-align: center;
}

input,
textarea,
button {
  border-radius: 0 !important;
}

/* Flex */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.custom-flex {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.ai-fs {
  align-items: flex-start;
}

.ai-fe {
  align-items: flex-end;
}

.ai-c {
  align-items: center;
}

.jc-fs {
  justify-content: flex-start;
}

.jc-fe {
  justify-content: flex-end;
}

.jc-c {
  justify-content: center;
}

.jc-sb {
  justify-content: space-between;
}

.fd-c{
  flex-direction: column;
}

.fd-rr {
  flex-direction: row-reverse;
}

/* Global title */
.global-title-txt {
  font-family: var(--font-family-title);
  font-size: clamp(35px,2.6vw,50px);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}

.global-title-txt span {
  display: block;
  font-weight: 700;
}

/* Global text */
.global-txt {
  font-family: var(--font-family-title);
  font-size: clamp(16px,1.04vw,20px);
  color: #fff;
}

/* Global btn */
.global-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: #fff;
  height: clamp(50px,3.13vw,60px);
  width: 100%;
  max-width: clamp(190px,15.1vw,290px);
  border-radius: 50px;
  text-transform: uppercase;
  font-size: clamp(16px,1.04vw,20px);
  letter-spacing: 0.1em;
  margin: 0 auto;
  transition: var(--default-transition);
}

.global-btn.blue {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--primary);
  height: clamp(60px,4.17vw,80px);
  width: 100%;
  max-width: clamp(200px,15.63vw,300px);
  border-radius: 50px;
  text-transform: uppercase;
  font-size: clamp(16px,1.04vw,20px);
  letter-spacing: 0.1em;
  margin: 0 auto;
  transition: var(--default-transition);
}

.global-btn.blue:hover {
  background: #000;
  box-shadow: 0 0 20px 0 rgba(45, 166, 242, 1);
}


/* Header */
.header-marquee {
  background: var(--secondary);
  color: #fff;
  font-size: clamp(16px,1.04vw,20px);
  padding: 21px 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header-marquee p {
  margin: 0;
  /* animation: glow 1s ease-in-out infinite alternate; */
}

.aurora {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  mix-blend-mode: darken;
  pointer-events: none;
}

.aurora__item {
  overflow: hidden;
  position: absolute;
  width: 60vw;
  height: 60vw;
  background-color: var(--clr-1);
  border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
  filter: blur(var(--blur));
  mix-blend-mode: overlay;
}

.aurora__item:nth-of-type(1) {
  top: -50%;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-1 12s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(2) {
  background-color: var(--clr-3);
  right: 0;
  top: 0;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-2 12s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(3) {
  background-color: var(--clr-2);
  left: 0;
  bottom: 0;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-3 8s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(4) {
  background-color: var(--clr-4);
  right: 0;
  bottom: -50%;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-4 24s ease-in-out infinite alternate;
}

@keyframes aurora-1 {
  0% {
    top: 0;
    right: 0;
  }

  50% {
    top: 100%;
    right: 75%;
  }

  75% {
    top: 100%;
    right: 25%;
  }

  100% {
    top: 0;
    right: 0;
  }
}

@keyframes aurora-2 {
  0% {
    top: -50%;
    left: 0%;
  }

  60% {
    top: 100%;
    left: 75%;
  }

  85% {
    top: 100%;
    left: 25%;
  }

  100% {
    top: -50%;
    left: 0%;
  }
}

@keyframes aurora-3 {
  0% {
    bottom: 0;
    left: 0;
  }

  40% {
    bottom: 100%;
    left: 75%;
  }

  65% {
    bottom: 40%;
    left: 50%;
  }

  100% {
    bottom: 0;
    left: 0;
  }
}

@keyframes aurora-4 {
  0% {
    bottom: -50%;
    right: 0;
  }

  50% {
    bottom: 0%;
    right: 40%;
  }

  90% {
    bottom: 50%;
    right: 25%;
  }

  100% {
    bottom: -50%;
    right: 0;
  }
}

@keyframes aurora-border {
  0% {
    border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
  }

  25% {
    border-radius: 47% 29% 39% 49% / 61% 19% 66% 26%;
  }

  50% {
    border-radius: 57% 23% 47% 72% / 63% 17% 66% 33%;
  }

  75% {
    border-radius: 28% 49% 29% 100% / 93% 20% 64% 25%;
  }

  100% {
    border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
  }
}


/* @keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #0A56A4;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #2DA7F2, 0 0 40px #2DA7F2;
  }
} */

.header-container {
  background: #000;
  padding: 25px 15px;
}

.hc-logo a {
  display: flex;
}

.dark .hc-logo img {
  filter: invert(1) brightness(100);
}

/* Header nav */
.hc-nav .main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
}

.hc-nav .main-menu li {
  padding: 0 clamp(10px,1.04vw,20px);
}

.hc-nav .main-menu a {
  color: #fff;
  font-family: var(--font-family-title);
  font-size: clamp(16px,1.04vw,20px);
  line-height: 1;
  text-transform: uppercase;
  transition: var(--default-transition);
}

.hc-nav .main-menu a:hover {
  color: var(--primary);
}

.switch i {
  font-size: 32px;
  color: #fff;
  display: block;
}

.header-menu-icon {
  width: 51px;
  height: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  margin-left: clamp(10px,2.08vw,40px);
  cursor: pointer;
}

.header-menu-icon::before {
  content: '';
  width: 40px;
  height: 2px;
  background: #fff;
}

.header-menu-icon i {
  width: 51px;
  height: 2px;
  background: #fff;
  display: block;
}

.header-menu-icon::after {
  content: '';
  width: 32px;
  height: 2px;
  background: #fff;
}

.header-main {
  max-width: 1820px;
  width: 100%;
  margin: auto;
}

/* Sliding Menu */
.slide-menu{
    position:fixed;
    top:0;
    right:0;
    width:100%;
    height:100%;
    background:rgba(0, 0, 0, 0.95);
    z-index:9999;
    transition: var(--default-transition);
    opacity: 0;
    visibility: hidden;
    /* transform: scale(0); */
}

.slide-menu.active{
    opacity: 1;
    visibility: visible;
    /* transform: scale(1); */
}

.slide-menu-inner{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.slide-menu ul{
    list-style:none;
    padding:0;
    margin:0;
    text-align:center;
}

.slide-menu li{
    margin:20px 0;
}

.slide-menu a{
    color:#fff;
    font-size:clamp(20px,1.3vw,25px);
    text-decoration:none;
    font-family: var(--font-family-title);
    transition: var(--default-transition);
    text-transform: uppercase;
}

.slide-menu a:hover {
  color: var(--primary);
}

/* CLOSE BUTTON */

.slide-menu-close{
    position:absolute;
    top:30px;
    right:40px;
    width:30px;
    height:30px;
    cursor:pointer;
}

.slide-menu-close span{
    position:absolute;
    width:100%;
    height:3px;
    background:#fff;
    top:50%;
    left:0;
}

.slide-menu-close span:first-child{
    transform:rotate(45deg);
}

.slide-menu-close span:last-child{
    transform:rotate(-45deg);
}

/* IP Header */
.ip-container:not(.home) .header,
.home-container.blog .header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.ip-container:not(.home) .header .hc-nav,
.home-container.blog .header .hc-nav {
  display: none;
}

/* Slider */
.hero-wrap::after {
    content: '';
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 293px;
    z-index: 1;
}

.hero-slider:not(.slick-initialized) .slider-item:nth-child(n + 1) ~ div {
  display: none;
}

.hero-wrap .slick-dots {
    display: flex;
    font-size: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: 46px;
    width: 100%;
}

.hero-wrap .slick-dots button {
    appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    font-size: 0;
    border: 2px solid #fff;
    height: 20px;
    width: 20px;
    background: transparent;
    border-radius: 20px !important;
    padding: 0;
    margin: 0;
    cursor: pointer;
    box-shadow: 4px 4px 4px rgba(0,0,0,0.35);
}

.hero-wrap .slick-dots .slick-active button {
  background: #fff;
}

.hero-wrap .slick-dots li {
    padding: 0 5px;
}


/* Static Hero */
.hero-slider-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    z-index: 100;
}

.hero-slider-inner {
    max-width: 1820px;
    width: 100%;
    margin: auto;
}

.hero-slider-content h1 {
  color: #fff;
  font-size: clamp(45px,5vw,96px);
  font-weight: 400;
  font-family: var(--font-family-title);
  margin: 0;
  line-height: 1.22;
}

.hero-slider-content h1 span {
  display: block;
}

.hero-btn .global-btn.blue {
    margin: 80px 0 0;
}

.slider-item .img-wrapper canvas {
    min-height: 500px;
}

/* Plans */
.plans-wrap {
  min-height: 1424px;
  padding: 120px 15px;
}

.plans-holder {
    max-width: 1770px;
    width: 100%;
    margin: auto;
}

.plans-item {
  width: calc(100% / 3);
  padding: 20px;
}

.plans-item-inner {
  max-width: 550px;
  width: 100%;
  background: var(--accent);
  color: #fff;
  text-align: center;
  margin: 0 auto;
  text-transform: uppercase;
  min-height: 310px;
  padding: 27px 15px;
  border-radius: 20px;
  transition: var(--default-transition);
}

.plans-item-inner:hover {
  background: #000;
  box-shadow: 0 0 20px 0 rgba(45, 166, 242, 1);
}

.plans-item-inner .global-btn:hover {
  background: var(--primary);
  color: #fff;
}

.plans-txt-xs {
  font-size: clamp(16px,1.04vw,20px);
}

.plans-txt-lg {
  font-size: clamp(35px,2.6vw,50px);
  font-family: var(--font-family-title);
  font-weight: 700;
}

.plans-txt-md {
  font-size: clamp(20px,1.82vw,35px);
  font-family: var(--font-family-title);
  text-transform: none;
  min-height: 43px;
}

.plans-txt-sm {
    font-size: clamp(20px,1.82vw,35px);
    margin: 25px 0 15px;
}

.plans-wrap .global-txt {
  margin: 50px 0 100px;
}

.plans-tagline {
  color: #fff;
  font-size: clamp(35px,2.6vw,50px);
  line-height: 1.5;
  font-weight: 300;
  margin: 100px 0 0;
}

.plans-tagline a {
  color: var(--primary);
  font-weight: 700;
}

/* Services */
.services-wrap {
  overflow: hidden;
  padding: 200px 0 100px;
}

.services-title {
  width: 26.4062%;
  padding: 90px 0 0 15px;
}

.services-title .global-title {
  max-width: 420px;
  width: 100%;
  margin: 0 0 0 auto;
}

.services-holder-wrap {
  width: 73.5938%;
}

.services-holder-inner {
  margin-right: -11.275%;
}

.services-holder-inner::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
  height: 100%;
  background: #000000;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 1) 100%);
  z-index: 100;
}

.services-item {
  width: calc(100% / 3);
  padding: 20px;
}

.services-item a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: var(--default-transition);
}

.services-holder:not(.slick-initialized) {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}

.services-holder .slick-list {
    padding: 0 33.34% 0 0;
}

.services-item-img {
  background: #000;
  position: relative;
}

.services-item-img img {
  opacity: 0.5;
}

.services-item-img h3 {
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  color: #fff;
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: clamp(20px,1.82vw,35px);
}

.services-item-content {
  background: var(--accent);
  padding: 25px 15px;
  transition: var(--default-transition);
}

.services-item-content-inner {
  max-width: 400px;
  width: 100%;
  margin: auto;
}

.services-item-content-inner p {
  margin: 0 0 25px;
  font-size: clamp(16px,1.04vw,20px);
  font-weight: 300;
  line-height: 1.3;
  color: #fff;
  min-height: 78px;
}

.services-item-content-inner .global-btn {
  margin: 0;
}

.services-nav .next {
  position: absolute;
  right: 40px;
  top: 22%;
  width: 70px;
  height: 70px;
  background: transparent;
  color: #fff;
  font-size: 70px;
  padding: 0;
  margin: 0;
  z-index: 150;
  cursor: pointer;
}

.services-nav .prev {
  position: absolute;
  left: 40px;
  top: 22%;
  width: 70px;
  height: 70px;
  background: transparent;
  color: #fff;
  font-size: 70px;
  padding: 0;
  margin: 0;
  z-index: 150;
  cursor: pointer;
  display: none;
}

.services-holder .slick-prev {
  display: none !important;
}

.services-item a:hover {
  box-shadow: 0 0 20px 0 rgba(45, 166, 242, 1);
}

.services-item a:hover .services-item-content {
  background: #000;
}

.services-item a:hover .services-item-content-inner .global-btn {
  background: var(--primary);
  color: #fff;
}

/* FAQ */
.faq-wrap {
  padding: 300px 15px 200px;
}

.faq-wrap .global-title {
  margin: 0 0 50px;
}

.faq-wrap .global-title span {
  display: inline-block;
}
.faq-container {
  max-width: 1736px;
  width: 100%;
  margin: auto;
}

.accordion-item{
  border-bottom:1px solid #ddd;
}

.accordion-item:last-of-type {
  border: 0;
}

.accordion-title {
  cursor: pointer;
  padding: 43px 0 10px;
  font-weight: 700;
  font-size: clamp(20px,1.82vw,35px);
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--primary);
}

.accordion-item span {
  flex: 1;
  padding: 0 15px 0 0;
}

.accordion-title i {
  font-weight: 600;
  font-size: clamp(25px,1.67vw,32px);
  color: #fff;
  display: block;
  width: 40px;
}

.accordion-content{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0;
  color: #fff;
  font-size: clamp(20px,1.82vw,35px);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 30px;
}

.accordion-item.active .accordion-content{
  max-height:300px;
}

.accordion-item .fa {
  transform: rotate(90deg);
}

.accordion-item.active .fa {
  transform: rotate(270deg); /* points down */
  transition: transform 0.35s ease;
}

/* Choose */
.choose-wrap {
  padding: 100px 15px;
}

.choose-container {
    max-width: 1736px;
    width: 100%;
    margin: auto;
}

.choose-holder {
  margin: 50px 0;
}

.choose-col {
  width: 50%;
}

.choose-col.content {
  padding: 0 15px 0 0;
}

.choose-col.img .img-wrapper {
    max-width: 811px;
    width: 100%;
    margin: 0 0 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.choose-icon {
  width: 100px;
  color: #fff;
  font-size: clamp(35px,2.6vw,50px);
  padding: 6px 0 0;
}

.choose-txt {
  flex: 1;
}

.choose-txt h3 {
  font-size: clamp(25px,2.6vw,50px);
  font-family: var(--font-family-title);
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.choose-txt p {
  margin: 30px 0 0;
  font-size: clamp(16px,1.04vw,20px);
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  max-width: 507px;
  width: 100%;
}

.choose-item {
  padding: 20px 0;
}

/* News and Insights */
.news-wrap {
  padding: 350px 15px 15px;
}

.news-wrap .global-title span {
  display: inline-block;
}

.news-container {
    max-width: 1736px;
    width: 100%;
    margin: auto;
}

.news-top {
  margin: 0 0 120px;
}

.news-top .news-title,
.news-top .news-btn {
  width: 50%;
}

.news-top .global-txt {
  margin: 30px 0 0;
}

.news-btn .global-btn {
  margin: 0 0 0 auto;
}

.news-holder-lg {
  width: 65.2073%;
}

.news-holder-lg-img {
  width: 40.6719%;
}

.news-holder-lg-img .img-wrapper {
  border-radius: 20px;
  overflow: hidden;
}

.news-holder-lg-content {
  width: 59.3281%;
  padding: 0 73px 0 26px;
}

.news-holder-btn {
  transition: var(--default-transition);
}

.news-holder-lg-content a:hover .news-holder-btn {
  color: var(--primary);
}



.news-holder-datecat,
.news-holder-desc {
  font-size: clamp(16px,1.04vw,20px);
  line-height: 1.3;
  color: #fff;
}

.news-holder-datecat a {
  color: #fff;
}

.news-holder-title {
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: clamp(20px,1.82vw,35px);
  color: var(--primary);
  margin: 10px 0 20px;
}

.news-holder-title h3 {
  margin: 0;
  line-height: 1.3;
  font-size: clamp(20px,1.82vw,35px);
}

.news-holder-btn {
  font-size: clamp(16px,1.04vw,20px);
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  margin: 30px 0 0;

}

.news-holder-sm {
  width: 34.7927%;
}

.news-holder-sm .news-holder-title h3 {
  font-size: clamp(16px,1.04vw,20px);
}

.news-holder-sm-item {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 23px;
    margin-bottom: 20px;
}

.news-holder-sm .news-holder-title {
    margin: 5px 0 0;
}

.news-holder-sm .news-holder-btn {
    margin: 13px 0 0;
    font-weight: 400;
}

.news-holder-sm-item:last-of-type {
  border: 0;
}

.news-holder-sm-item a:hover .news-holder-btn {
  color: var(--primary);
}

/* Contact */
.contact-wrap {
    padding: 343px 15px 200px;
}

.contact-form-holder {
  max-width: 1036px;
  width: 100%;
  margin: 120px auto 0;
  position: relative;
}

.contact-form-holder p {
  margin: 0;
}

.cf-field.half {
  width: 50%;
}

.cf-row-name-email {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 36px;
}

.cf-row-name-email .half:first-of-type {
  padding-right: 16px;
}

.cf-row-name-email .half:last-of-type {
  padding-left: 16px;
}

.cf-field input,
.cf-field textarea,
.cf-field select {
  width: 100%;
  height: 100px;
  border-radius: 20px !important;
  border: 0;
  padding: 0 15px;
  margin: 0;
  font-family: var(--font-family-default);
  font-size: clamp(16px,1.04vw,20px);
  font-weight: 400;
  background: #fff;
  color: #000;
  text-transform: uppercase;
}

.cf-field.cf-field-plan {
    width: 100%;
    margin: 36px 0;
}

.cf-field select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-progress-appearance: none;
}

.cf-field textarea {
  resize: none;
  height: 261px;
  padding: 35px 100px 15px 15px; 
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.cf-field.cf-field-submit {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 25px;
    bottom: 30px;
    cursor: pointer;
}

.cf-field.cf-field-submit i {
  font-size: clamp(35px,2.6vw,50px);
  color: var(--primary);
  display: block;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.cf-field.cf-field-submit input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  font-size: 0;
  padding: 0;
  cursor: pointer;
}

.cf-field.cf-field-submit .wpcf7-spinner {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
}

.contact-form-holder .use-floating-validation-tip .wpcf7-not-valid-tip {
  position: absolute;
  right: 10px;
  left: auto;
  top: 10px;
  margin: auto;
  width: auto;
  font-size: 11px;
  padding: 10px;
}

.contact-form-holder .wpcf7-form-control-wrap {
  display: block;
}

.contact-form-holder .wpcf7 form .wpcf7-response-output {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -50px;
  color: #fff;
  text-align: center;
  font-size: 11px;
  padding: 10px;
}

/* Footer */
.footer {
  padding: 100px 15px 70px;
}

.footer a {
  transition: var(--default-transition);
}

.footer a:hover {
  color: var(--primary);
}

.footer-container {
    max-width: 1736px;
    width: 100%;
    margin: auto;
}

.fc-logo img {
    filter: invert(1) brightness(15);
}

.fc-logo a {
  display: flex;
}

.footer-col h3 {
  color: var(--primary);
  font-size: clamp(20px,1.82vw,35px);
  font-weight: 700;
  font-family: var(--font-family-title);
  text-transform: uppercase;
  margin: 0 0 50px;
}

.fc-contact a,
.fc-ops {
  font-size: clamp(16px,1.04vw,20px);
  color: #fff;
}

.fc-ops span {
  display: block;
  margin: 0 0 20px;
}

.fc-contact a {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 0 20px;
}

.fc-contact a i {
  width: 50px;
  font-size: 25px;
}

.fc-contact a span {
  flex-shrink: 1;
}

.fc-contact,
.fc-ops {
    line-height: 1.3;
}

.fc-socials a {
  font-size: 25px;
  color: #fff;
  margin: 0 20px 0 0;
}

.fc-col {
  padding-right: 15px;
}

.fc-col:last-of-type {
  padding-right: 0;
}

.copyright {
  color: #fff;
  font-size: clamp(16px,1.04vw,20px);
  text-transform: uppercase;
  margin: 65px 0 0;
  line-height: 1.3;
}

/* IP Banner */
.ip-banner {
  position: relative;
}

.ip-banner canvas {
  width: 100%;
  display: block;
  min-height: 500px;
}

.ip-banner-title {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ip-banner-title-inner {
  max-width: 1602px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.entry-title-banner {
  font-family: var(--font-family-title);
  font-size: clamp(20px,2.6vw,50px);
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
  margin: 100px 0 0;
}

.ip-banner-breadcrumbs {
  font-family: var(--font-family-title);
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

.ip-banner-breadcrumbs a {
  color: #fff;
}

/* Blog Archive */
.blog div#inner-page-wrapper > .container,
.archive div#inner-page-wrapper > .container {
    max-width: 1602px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.ip-blog-img {
  width: 30.3435%;
  padding: 0 15px 0 0;
}

.ip-blog-img .img-wrapper {
  max-width: 451px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.ip-blog-content {
  width: 69.6565%;
}

.ip-blog-item .global-btn.blue {
    margin: 50px 0 0 auto;
}

.ip-blog-item {
  padding: 76px 0;
  margin: 0 0 76px;
  border-bottom: 1px solid #CCCCCC;
}

.ip-blog-item:last-of-type {
  border-bottom: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(16px,1.04vw,20px);
    font-weight: 700;
    font-family: var(--font-family-title);
    color: var(--primary);
}

.nav-links a {
  color: var(--primary);
  margin: 10px;
}

.nav-links span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(50px,3.65vw,70px);
  width: clamp(50px,3.65vw,70px);
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  margin: 10px;
}

/* Popup */
.popup-overlay {
    display: none;          /* hidden initially */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center */
    
    padding: 20px;           /* spacing on small screens */
    overflow-y: auto;        /* scroll if popup too tall */
}

.popup-content {
    background: #000;
    color: #fff;
    padding: 75px 25px;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;        /* 90% of viewport */
    overflow-y: auto;        /* scroll inside popup */
    text-align: center;
    position: relative;
    box-shadow: 0 0 20px 0 rgba(45, 166, 242, 1);
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

.popup-content .cf-field input,
.popup-content .cf-field textarea,
.popup-content .cf-field select {
  height: 70px;
}

.popup-content .cf-field textarea {
  height: 100px;
}

.popup-content .contact-form-holder {
  margin: 30px 0 0;
}

.popup-form-box {
  /* padding-bottom: 70px; */
}

/* Sidebar CTA */
.ip-single-sidebar-cta-item {
    padding: 19px 0;
}

.ip-single-sidebar-cta-item a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 395px;
    border-radius: 20px;
    box-shadow: 0 0 20px 0 rgba(45, 166, 242, 0.4);
    transition: var(--default-transition);
    text-align: center;
    padding: 15px;
    color: #fff;
}

.ip-single-sidebar-cta-item a:hover {
    box-shadow: 0 0 20px 0 rgba(45, 166, 242, 1);
}

.ip-single-sidebar-cta-item a .bg-canvas {
    transition: var(--default-transition);
}

.ip-single-sidebar-cta-item a:hover .bg-canvas {
    opacity: 0;
}

.ip-single-sidebar-cta-item .bg-canvas {
    opacity: 0.2;
}

.ip-single-sidebar-cta-item h4,
.ip-single-sidebar-cta-item p,
.sidebar-cta-btn {
    position: relative;
    z-index: 10;
}

.ip-single-sidebar-cta-item h4 {
    margin: 0;
    font-size: clamp(20px,1.82vw,35px);
    font-family: var(--font-family-title);
    font-weight: 700;
    color: var(--primary);
}

.ip-single-sidebar-cta-item p {
    font-size: clamp(16px,1.04vw,20px);
    font-weight: 300;
    line-height: 1.3;
    margin: 30px 0;
}

.sidebar-cta-btn {
    max-width: 288px;
    width: 100%;
}

.ip-single-sidebar-cta-item a:hover .global-btn {
    background: var(--primary);
    color: #fff;
}

.main-blog {
  margin: 0 -15px;
}

.main-blog .ip-single-sidebar-cta-item {
  width: 50%;
  padding: 15px;
}

@media only screen and (max-width: 1024px) {
  .ip-blog-img {
      width: 100%;
      padding: 0 0 35px;
  }

  .ip-blog-content {
    width: 100%;
  }

  .ip-blog-item .global-btn.blue {
    margin: 50px 0 0;
  }

  .ip-blog-item:first-of-type {
    padding-top: 0;
  }

  .main-blog .ip-single-sidebar-cta-item {
    width: 100%;
  }

  /* Header */
  .hc-nav {
    display: none;
  }

  /* Plans */
  .plans-item {
    width: 100%;
  }

  .services-title {
    width: 100%;
    padding: 0 0 30px;
  }

  .services-title .global-title {
    margin: 0 auto;
    text-align: center;
  }

  .services-nav .prev {
    display: block;
  }

  .services-holder .slick-list {
    padding: 0;
  }

  .services-holder-inner::before {
    display: none;
  }

  .services-holder-inner {
      margin-right: 0;
      max-width: 500px;
      width: 100%;
      margin: auto;
      text-align: center;
  }

  .services-holder-wrap {
    width: 100%;
  }

  .services-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
  }

  .services-nav button {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: 0 !important;
    display: flex !important;
  }

  .services-item-content-inner .global-btn {
    margin: 0 auto;
  }

  .choose-col {
    width: 100%;
  }

  .choose-item-inner {
    flex-direction: column-reverse;
  }

  .choose-col.content {
    padding: 30px 0 0;
  }

  .choose-icon {
    width: 65px;
  }

  .choose-col.img .img-wrapper {
    margin: 0;
  }

  .choose-container {
    max-width: 500px;
  }

  /* Faq */
  .faq-container {
    max-width: 500px;
  }

  /* News */
  .news-container {
    max-width: 500px;
  }

  .news-holder-lg-img {
    width: 100%;
  }

  .news-top .news-title, .news-top .news-btn {
    width: 100%;
  }

  .news-btn .global-btn {
    margin: 30px 0 0;
  }

  .news-holder-lg {
    width: 100%;
  }

  .news-holder-sm {
    width: 100%;
    padding: 40px 0 0;
  }

  .news-holder-lg-content {
    width: 100%;
    padding: 30px 0;
  }

  .news-holder-lg-img a {
    max-width: 400px;
    width: 100%;
    display: flex;
  }

  /* Contact */
  .cf-field.half {
    width: 100%;
    padding: 0 0 36px !important;
  }

  .cf-row-name-email {
    margin: 0;
  }

  .contact-form-holder {
    max-width: 500px;
  }

  /* Footer */
  .footer-col {
    width: 100%;
    padding: 20px 0;
  }

}