/* Fonts */
@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/WorkSans-VariableFont_wght.ttf');
}

:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Amatic SC", sans-serif;
  --font-secondary: "Inter", sans-serif;
  
}
::-moz-selection { /* Code for Firefox */
  background: #00d7b3;
}

::selection {
  background: #00d7b3;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #ce1212;
  --color-secondary: #37373f;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ec2727;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
}

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

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

.section-bg {
  background-color: #191919;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #7f7f90;
  text-transform: uppercase;
  font-family: var(--font-default);
}

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  font-family: var(--font-primary);
}

.section-header p span {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(55, 55, 63, 0.05);
  margin-top: 90px;
}

@media (max-width: 575px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #676775;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #00d7b3;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #0ea386;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #191919;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  margin:auto;
  width:200px;
  height:200px;
  content: '';
  border-radius: 50%;
  position: absolute;
  inset: 0;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3) inset;
}
#preloader:after {
  box-shadow: 0 2px 0 #00d7b3 inset;
  animation: rotate 2s linear infinite;
}
@keyframes rotate {
  0% {  transform: rotate(0)}
  100% { transform: rotate(360deg)}
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #191919;
  transition: all 0.5s;
  z-index: 11;
  height: 90px;
  border-bottom: 1px solid #191919;
  
}

@media (max-width: 575px) {
  .header {
    height: 70px;
    width:100vw;
  }
}

.header.sticked {
  border-color: #191919;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-family: var(--font-secondary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  color: #fff;
  background: var(--color-primary);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #fff;
  background: rgba(206, 18, 18, 0.8);
}

section {
  scroll-margin-top: 80px;
  overflow: initial !important;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  
  .navbar {
    padding: 0;
    display:block;
  }
  .navMobile{
    display:none;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #00d7b3;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #00d7b3;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color:#000;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: #00d7b3;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/

@media (max-width: 1279px) {

  .navbar{
    display:none;
  }
  .navMobile{
    display: block;
  }
  
  .header{
    box-shadow: 0px 1px 5px #000;
  }

  .header .container{
    padding:0;
  }

  .logo{
    padding-left:20px;
  }

  .navbar {
    position: fixed;
    top: 60px;
    transform: scaleY(0);
    width: 100%;
    bottom: 0;
    transition: 0.3s;
    z-index: 10;
    transform-origin: top;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(30, 30, 30, 1);
    height:60%;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 10;
    border-radius: 0 0 1rem 1rem;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s;

  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    color: #00d7b3;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #00d7b3;
    border-color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #191919;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 10;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 10px;
    top: 20px;
    z-index: 10;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    /*top:10%;*/
    transform: scaleY(1);
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    height:50%;
    z-index: 10;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about{
  background-color: #191919;

  /*--- REMOVE THIS IF YOU WANT THE PARTICLES, might do this if it looks cool*/
  position: relative;
}
.svgAbout{
  filter: drop-shadow( 5px 5px 15px hsla(0, 0%, 0%, 0.5)) drop-shadow( -5px -5px 15px hsla(0, 0%, 0%, 0.5));
}
.svgAbout text{
  font-family: "Work Sans", serif;
}
.aboutTitle{
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.2rem;
  letter-spacing: 0.5px;
}
.aboutText{
  font-family: "Work Sans", serif;
  font-weight: 500;
  font-size: 0.3rem;
}
.blueTitle{
  font-family: "Work Sans", serif;
  font-size: 0.6rem;
  text-transform: uppercase;
  font-weight: bold;
}
.seeMoreAbout{
  font-family: "Work Sans", serif;
  font-size: 0.2rem;
  transition: 0.5s;
}
.seeMoreAbout:hover{
  transform: translateX(3px);
}
.about .about-img {
  min-height: 500px;
}
.about h3 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: var(--font-secondary);
}

  .aboutDesktop{
    display: block;
  }
  .aboutMobile{
    display: none;
  }
@media (max-width: 1279px) {
  .aboutDesktop{
    display: none;
  }
  .aboutMobile{
    display: block;
  }
  .blueTitle{
    font-size: 0.5rem;
  }
  .aboutText{
    font-size: 0.3rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.servicesTitle{
  color:#000;
  font-size: clamp(3.5rem, 2.5vw, 4.5rem);;
  font-family: "Work Sans", serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.servicesTitleDark{
  color:#fff;
  font-size: clamp(2rem, 2.5vw, 3rem);
  font-family: "Work Sans", serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.services{
  background-color: #fff;
  position: relative;
}
.services .serviceBox{
  padding: 30px;
  background: var(--color-primary);
  color: #fff;
}

.services .serviceBox h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.services .serviceBox p {
  margin-bottom: 30px;
}

.services .serviceBox .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.services .serviceBox .more-btn i {
  font-size: 14px;
}

.services .serviceBox .more-btn:hover {
  color: var(--color-primary);
  background: #fff;
}

.services .icon-box {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(55, 55, 63, 0.1);
  transition: 0.3s;
}

.services .icon-box i {
  color: var(--color-primary);
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: rgba(206, 18, 18, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.services .icon-box h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 30px 0;
  font-family: var(--font-secondary);
}

.services .icon-box p {
  font-size: 15px;
  color: #6c757d;
}

@media (min-width: 1200px) {
  .services .icon-box:hover {
    transform: scale(1.1);
  }
}
.svgServices{
  position: relative;
  top: 0;
  transition: top ease 0.5s;
}
.svgServices:hover{
  top: -10px;
}
.svgServices text{
  font-family: "Work Sans", serif;
}
@media (max-width: 575px) {
  .svgServices{
    width:340px;
  }
}

.performanceImg img{
  width:100%;
  height:100%;
}
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricingTitle{
  font-family: "Work Sans", serif;
  font-size: 0.6rem;
  text-transform: uppercase;
  font-weight: bold;
}
.pricingMonth{
  font-family: "Work Sans", serif;
  font-size: 0.4rem;
  font-weight: 500;
}
.pricingText{
  font-family: "Work Sans", serif;
  font-weight: 400;
  font-size: 0.35rem;
}

.pricePanel{
  margin-left:50px;
}
.pricePanel h1{
  padding-left:10px;
  color:#fff;
  font-family: "Work Sans", serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: bold;
}
.pricePanel h2{
  padding-left:10px;
  cursor: pointer;
  color:#00d7b3;
  font-family: "Work Sans", serif;
  font-size:1.4rem;
  text-transform: uppercase;
  font-weight: bold;
}
.pricePanel p{
  font-family: "Work Sans", serif;
  font-size:18px;
  padding-top:15px;
  padding-left:10px;
  color:#fff;
}
.pricePanel i{
  color:#fff;
  font-size: 24px;
  padding-right:10px;
}
@media (max-width: 1279px) {
  .pricePanel{
    margin:0;
  }
}
.helpButton{
  border-bottom: #fff 1px solid;
  padding:15px 0 15px 0;
  cursor: pointer;
}
.helpButton:hover{
  border-bottom: #acacac 1px solid;
}
.pricingHeader{
  display:flex;
  align-items: center;
  justify-content: space-between;
}
.helpText{
  display:none;
  border-bottom: #fff 1px solid;
}
.pricingSVGlink{
  font-family: "Work Sans", serif;
  font-size: 0.3rem;
  transition: 0.5s;
}
.pricingSVGlink:hover{
  transform: translateX(3px);
}
/*--------------------------------------------------------------
# Terms/Privacy Section
--------------------------------------------------------------*/
.termsTitle{
  color:#000;
  font-size: 50px;
  font-family: "Work Sans", serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#particles-js{
  z-index: 0;
  max-width: 100%;
  width:100%;
  height:100%;
  margin:0;
  position: fixed;
}
.hero {
  width: 100%;
  background-size: cover;
  position: relative;
  min-height: 100vh;
  padding: 160px 0 60px 0;
}
.hero-services {
  min-height: 50vh;
  padding: 300px 0 60px 0;
  clip-path: ellipse(65% 80% at center 20%);
}

.heroTitle{
  position: absolute;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  top:25%;
  width:100vw;
  transition:all 0.1s;
}

.hero h2 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Work Sans", serif;
  font-weight: bold;
}

.hero h2 span {
  color: var(--color-primary);
}

.hero p {
  color: #fff;
  font-weight: 400;
  margin-bottom: 30px;
}

.hero .btn-book-a-table {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 36px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 8px 28px rgba(206, 18, 18, 0.2);
}

.hero .btn-book-a-table:hover {
  background: rgba(206, 18, 18, 0.8);
  box-shadow: 0 8px 28px rgba(206, 18, 18, 0.45);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--font-secondary);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero .btn-watch-video:hover i {
  color: rgba(206, 18, 18, 0.8);
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #000;
  padding: 50px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h2 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  color: #fff;
}

.footerTop{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 20px 0;
  color:#dddddd;
  font-family: "Work Sans", serif;
}

.footerTop h1{
  font-family: var(--font-secondary);
  font-size: 28px;
  font-weight: 700;
}

.footer-links{
  display: flex;
  justify-content: flex-end;
  font-size:16px;
}

.footerLine {
  border-top: 1px solid rgba(255, 255, 255, 0.1)
}

.footerBottom{
  padding: 20px 0 20px 0;
  font-family: "Work Sans", serif;
  font-size: 16px;
}
.copyright {
  display: flex;
  justify-content: flex-start;
}
.copyright strong{
  padding-left:5px;
}
.terms{
  display: flex;
  justify-content: flex-end;
}
.terms a{
  color:#fff;
  z-index: 1;
}
.terms a:hover{
  color:#9c9c9c;
}
.terms a:first-child{
  padding-right:5px;
}
@media (max-width: 1279px) {
  .footerTop h1{ 
    display: flex;
    justify-content: center;
  }

  .footer-links i{
    display: none;
  }

  .terms, .copyright, .footer-links{
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# InnerPage
--------------------------------------------------------------*/

.whiteText{
  color:#fff;
}
.serviceInfo h1{
  color:#4f4f4f;
  font-family: "Work Sans", serif;
  font-size:2rem;
  text-transform: uppercase;
  font-weight: bold;
}
.serviceInfo p{
  font-size:16px;
}
.performanceIcons{
  color:#fff;
  display: flex;
  flex-direction: column;
}
.performanceIcons i{
  display: flex;
  font-size: 30px;
  padding-top:5px;
} 
.performanceIcons p{
  color:#fff;
  font-family: "Work Sans", serif;
  font-weight: 500;
  font-size:18px;
  padding-left: 30px;
}
.performanceIcons .col{
  padding-top:20px;
  display: flex;
}
.hostingItemTitle{
  display: flex;
  align-items: center;
  justify-content: center;
}
.hostingItem{
  margin-top:80px;
}
.hostingItem i{
  font-size: 22px;
  padding-right:10px;
}
.hostingItem h1{
  font-size: 20px;
  margin:0;
}
.hostingItem p{
  font-size: 16px;
  padding-top:5px;
}
.hostingCol{
  padding:50px 20px 50px 20px;
  box-shadow: 0 0 15px #bbbbbb;
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-in;
}
