@charset "UTF-8";
/*!
 * SailPoint | HTML Product Landing Page
 * Version: 1.0.0
 * Created: 01 Feb 2020
 * Last Update: 01 Feb 2020
 * Author: Web_Trendy
 * Copyright 2019 © Web_Trendy (https://codecanyon.net/user/web_trendy/portfolio)
 * Licensed under Envato (https://codecanyon.net/licenses/standard)
 *
 * "Life is balance of holding on and letting go." --Rumi
 *
 */
/*------------------------------------------------------------------
[Table of contents]

1.0 Variables
2.0 Google Fonts
3.0 Set Font-families
4.0 Custom Cursor Styles
5.0 General Styles
6.0 Home Page
7.0 About Page
8.0 Services Page
9.0 Works Page
10.0 Contact Page
11.0 Media Queries

-------------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
2.0 Google Fonts
--------------------------------------------------------------*/
/*To change the fonts, get the font link from (https://www.google.com/fonts) and replace with this line, then update the font-family section below.*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap");
/*--------------------------------------------------------------
3.0 Set Font-families
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  background-color: #0d0d0d;
  color: #f2f2f2;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
4.0 Custom Cursor Styles
--------------------------------------------------------------*/
.custom-cursor {
  cursor: none;
  --top: 0;
  --left: 0;
  --cursor-width: 30px;
  --color: #000000;
  --blending-mode: normal;
}
.custom-cursor .cursor > div {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.custom-cursor .cursor div,
.custom-cursor .cursor img,
.custom-cursor .cursor svg {
  position: fixed;
  pointer-events: none;
  z-index: 999999;
  mix-blend-mode: var(--blending-mode);
}

/*Cursor 1*/
.cursor-1 .cursor .cursor-el1 {
  width: var(--cursor-width);
  height: var(--cursor-width);
  border: calc(var(--cursor-width) / 25) solid var(--color);
  border-radius: 50%;
  top: calc(var(--cursor-width) / -2);
  left: calc(var(--cursor-width) / -2);
  -webkit-transition: all 200ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: all 200ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.cursor-1 .cursor .cursor-el2 {
  width: calc(var(--cursor-width) / 5);
  height: calc(var(--cursor-width) / 5);
  border-radius: 50%;
  background-color: var(--color);
  top: calc(var(--cursor-width) / -10);
  left: calc(var(--cursor-width) / -10);
}
.cursor-1.onlink .cursor .cursor-el1 {
  opacity: 0;
}
.cursor-1.onlink .cursor .cursor-el2 {
  opacity: 0;
}

/*--------------------------------------------------------------
5.0 General Styles
--------------------------------------------------------------*/
.btn-link {
  position: relative;
  color: #f9a806;
}
.btn-link:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #00e6bf;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
.btn-link:hover,
.btn-link:focus {
  text-decoration: none;
  color: #00e6bf;
}
.btn-link:hover:before,
.btn-link:focus:before {
  width: 100%;
}

.color-primary {
  color: #f9a806;
}

.btn-round {
  border-radius: 150px;
}

.menu-header .btn {
  font-size: 0.9em;
  font-weight: 300;
}
.menu-header {
  padding-top: 10px;
}

/*--------------------------------------------------------------
6.0 Page Styles
--------------------------------------------------------------*/
/*Intro Section*/
.intro {
  overflow: hidden;
}
.intro .product-wrapper {
  position: relative;
  display: inline-block;
}
.intro .product-wrapper img {
  width: 300px;
}
.intro .product-wrapper .scroll-stable {
  position: relative;
  z-index: 99;
  width: 350px;
}
.intro .scroll-move {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -150px;
}

/*Info Section*/
.info .img-wrapper {
  position: relative;
}
.info .img-wrapper .absolute {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.info .max-vh-80 {
  max-height: 80vh;
}

/*Call to Action Section*/
.cta {
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background-image: url(../img/background-900x500.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.cta:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), transparent);
}

/*Specs Section*/
.specs .img-wrapper {
  position: relative;
}
.specs .img-wrapper .absolute {
  position: absolute;
  left: 0;
  top: 30px;
  z-index: -1;
}

/*Footer*/
.app-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.2;
  text-align: left;
  font-size: 30px;
  border-radius: 30px;
  padding: 10px 20px;
  margin-top: 20px;
}
footer .btn-warning:hover,
footer .btn-warning:focus {
  color: #0d0d0d;
}
footer .social-media a {
  text-decoration: none;
}
footer a:not(.btn) {
  color: #f9a806;
}
footer a:not(.btn):hover,
footer a:not(.btn):focus {
  color: #00e6bf;
}
footer .cp {
  border-top: 1px solid #262626;
}

/*--------------------------------------------------------------
11.0 Media Queries
--------------------------------------------------------------*/
@media only screen and (max-width: 991px) {
  .intro .display-1 {
    font-size: 3rem;
  }
  .intro .product-wrapper img {
    width: 160px;
  }
  .intro .product-wrapper .scroll-stable {
    width: 220px;
  }
  .intro .scroll-move {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -80px;
  }

  .mb-sm-large {
    margin-bottom: 250px;
  }

  .cursor {
    display: none;
  }
}

.lead {
  font-size: 18px;
}

/*--------------------------------------------------------------
Imprint Page
--------------------------------------------------------------*/
.imprint {
  height: 250px;
  background-color: #262626;
  display: flex;
  align-items: center;
}

.imprint-info {
  padding: 50px 0px 50px 0px;
}

.imprint-info h1 {
  text-align: center;
  margin-bottom: 20px;
}

.imprint-info p {
  margin-bottom: 10px;
  color: #a0a0a0;
}
.imprint-info li {
  color: #a0a0a0;
}
.imprint-info p font {
  color: #a0a0a0;
}

.imprint-info .privacy-policy {
  margin-top: 30px;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

/*--------------------------------------------------------------
Contact Us Form
--------------------------------------------------------------*/
#contact-form input {
  background-color: #0d0d0d;
  border: none;
  border-bottom: 2px solid white;
  color: #fff;
  outline: none;
  margin-bottom: 34px;
  width: 100%;
  font-size: 24px;
}
#contact-form textarea {
  background-color: #0d0d0d;
  border: none;
  border-bottom: 2px solid white;
  color: #fff;
  outline: none;
  margin-bottom: 20px;
  width: 100%;
  font-size: 24px;
}
#contact-form button {
  background-color: #f47f45;
  color: #ffffff;
  border-radius: 30px;
  padding: 12px 26px;
  cursor: pointer;
  border: none !important;
}
#contact-form .btn-container {
  display: flex;
  justify-content: end;
}
#contact-form button:disabled,
#contact-form button[disabled] {
  background-color: #cccccc;
}
#contact-form input::placeholder {
  color: #ffffff;
  opacity: 1; /* Firefox */
}

#contact-form input::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #ffffff;
}
#contact-form textarea::placeholder {
  color: #ffffff;
  opacity: 1; /* Firefox */
}

#contact-form textarea::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #ffffff;
}
.form-section {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.form-section .left-side h2 {
  font-size: 50px;
  font-weight: 700;
  color: #f47f45 !important;
}

/*--------------------------------------------------------------
Footer
--------------------------------------------------------------*/
.footer-info {
  display: flex;
}

/*--------------------------------------------------------------
Hero Section
--------------------------------------------------------------*/
.product-preview-image {
  margin-top: 100px !important;
}

@media (max-width: 575px) {
  .hero-section h1 {
    font-size: 33px;
  }
  .hero-section p {
    font-size: 18px;
  }
  .form-section .left-side h2 {
    font-size: 32px;
  }
  .form-section .left-side h3 {
    font-size: 18px;
  }
  #contact-form input {
    font-size: 18px;
  }
  #contact-form textarea {
    font-size: 18px;
  }
  .info .max-vh-80 {
    max-height: 60vh;
  }
  .app-btn {
    font-size: 20px;
    border-radius: 30px;
    padding: 10px 20px;
    margin-top: 10px;
  }
  .second-section {
    order: 2;
  }
  #contact-form .btn-container {
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    max-width: 720px !important;
  }
  .info {
    margin-bottom: 100px;
  }
}
