@charset "UTF-8";
/* ============================================================

  Theme Name: Temaa – Coming Soon HTML Template
  Author: BMKXCODE
  Support: ankoliyac@gmail.com
  Description: Temaa – Coming Soon HTML Template
  Version: 1.0.0

============================================================== */

/*
======================================  
  Table Of Contents
======================================

  01. Global Variables
  02. General CSS
  03. Template CSS
      03.1 Intro Typing Text CSS
      03.2 Intro Countdown CSS
  05. Modal CSS
  05. Sidebar CSS
  06. Marquee Text CSS

*/


/* ==============================
   01. Global Variables CSS
============================== */

:root{
  --primary-color: #20C997;
  --primary-color-rgba20: rgba(32, 201, 151, 0.2);
  --secondary-color: #F9D67B;
  --secondary-color20: #FEF7E5;
  --white-color: #FFFFFF;
  --black-color: #000000;
  --black-color-rgba50: rgba(0, 0, 0, 0.5);
  --black-color-rgba60: rgba(0, 0, 0, 0.6);
  --lightblack-color: #1F1F1F;
  --lightblack-color-rgba20: rgba(31, 31, 31, 0.2);
  --lightblack-color-rgba80: rgba(31, 31, 31, 0.8);
  --theme-font: 'Titillium Web', sans-serif;
}

/* ==============================
   02. General CSS
============================== */

html, body {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body{
  background-color: var(--white-color);
  color: var(--lightblack-color);
  font-family: var(--theme-font);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  padding: 0;
}
img {
  display: block;
  object-fit: cover;
  max-width: 100%;
}
a{
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  outline: none;
}
a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: var(--theme-font);
  border: none;
  outline: none;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
button:hover,
button:focus{
  box-shadow: none;
}
h1, h2, h3, h4, h5, h6{
  margin: 0;
}
ul{
  margin: 0px;
  padding: 0px;
}
li{
  list-style: none;
}
p{
  margin: 0;
}
section{
  display: inline-block;
  width: 100%;
}
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea,
textarea.form-control {
  background-color: transparent;
  border: 1px solid var(--lightblack-color-rgba20);
  color: var(--lightblack-color-rgba80);
  outline: none;
  font-family: var(--theme-font);
  font-size: 16px;
  line-height: 1;
  height: 50px;
  padding: 6px 16px;
  width: 100%;
}
@media (max-width:575px){
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=number],
  input[type=password],
  input[type=url],
  textarea,
  textarea.form-control {
    height: 42px;
  }
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder
textarea.form-control::-webkit-input-placeholder {
  color: var(--lightblack-color-rgba80);
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder,
textarea.form-control::-moz-placeholder {
  color: var(--lightblack-color-rgba80);
}
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea.form-control:-moz-placeholder {
  color: var(--lightblack-color-rgba80);
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
textarea.form-control:-ms-input-placeholder {
  color: var(--lightblack-color-rgba80);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder,
textarea::placeholder,
textarea.form-control::placeholder {
  color: var(--lightblack-color-rgba80);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=url]:focus,
textarea:focus,
textarea.form-control:focus {
  border-color: var(--lightblack-color-rgba20);
  box-shadow: none;
  color: var(--lightblack-color-rgba80);
}

::-moz-selection {
  background-color: var(--primary-color);
  color: var(--white-color);
  text-shadow: none;
}
::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
  text-shadow: none;
}
.primary-btn{
  background-color: var(--primary-color);
  border: 0;
  border-radius: 50px;
  color: var(--lightblack-color);
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  padding: 7px 7px 7px 30px;
  text-transform: uppercase;
}
@media (max-width:575px){
  .primary-btn {
    gap: 16px;
    font-size: 16px;
    line-height: 16px;
    padding: 5px 5px 5px 20px;
  }
}
.primary-btn:hover{
  background-color: var(--secondary-color);
}
.primary-btn i{
  background-color: var(--lightblack-color);
  border-radius: 50px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  width: 36px;
}
@media (max-width:575px){
  .primary-btn i{
    height: 30px;
    width: 30px;
  }
}
.primary-btn:hover i{
  background-color: var(--lightblack-color);
  color: var(--secondary-color);
}
.secondary-btn{
  background-color: var(--secondary-color);
  border: 0;
  border-radius: 50px;
  color: var(--lightblack-color);
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  padding: 7px 7px 7px 30px;
  text-transform: uppercase;
}
@media (max-width:575px){
  .secondary-btn {
    gap: 16px;
    font-size: 16px;
    line-height: 16px;
    padding: 5px 5px 5px 20px;
  }
}
.secondary-btn:hover{
  background-color: var(--primary-color);
}
.secondary-btn i{
  background-color: var(--lightblack-color);
  border-radius: 50px;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  width: 36px;
}
@media (max-width:575px){
  .secondary-btn i{
    height: 30px;
    width: 30px;
  }
}
.secondary-btn:hover i{
  background-color: var(--lightblack-color);
  color: var(--primary-color);
}

#preloader{
  background: var(--secondary-color20);
  height: 100vh;
  margin-top: 0px;
  overflow: hidden;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 999;
}
.preloader-inner{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.loader-icon{
  position: relative;
}
.loader{
  margin: auto;
  width: 120px;
  height: 120px;
  border: 10px solid var(--primary-color);
  border-top: 10px solid var(--secondary-color);
  border-radius: 50%;
  animation: spin 2s linear infinite;
  -webkit-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  -ms-animation: spin 2s linear infinite;
  -o-animation: spin 2s linear infinite;
  text-align: center;
  line-height: 120px;
}
@-moz-keyframes spin {
  0% { 
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
@-ms-keyframes spin {
  0% { 
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% { 
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% { 
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
.preloader-icon{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 46px;
  max-height: 46px;
}

/* ==============================
   03. Template CSS
============================== */

/* =========   03.1 Intro Typing Text CSS   ========= */

.intro-wrapper{
  background-image: url(../images/background/background-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
}
.intro-wrapper::after{
  background-color: var(--black-color-rgba60);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  z-index: -1;
}
.intro-inner{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  padding: 44px 0 90px;
  min-height: 100vh;
}
@media (max-width:575px){
  .intro-inner{
    gap: 30px;
  }
}
.logo a img{
  max-height: 50px;
}
.intro-subheading{
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  margin: 0 auto 20px;
  max-width: 672px;
  text-align: center;
}
@media (max-width:575px){
  .intro-subheading{
    margin: 0 auto 12px;
  }
}
.intro-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}
@media (max-width:575px){
  .intro-title {
    flex-direction: column;
  }
}
.intro-heading {
  color: var(--white-color);
  font-size: 70px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width:991px){
  .intro-heading {
    font-size: 56px;
  }
}
@media (max-width:767px){
  .intro-heading {
    font-size: 46px;
  }
}
@media (max-width:575px){
  .intro-heading {
    font-size: 36px;
  }
}
.typewrite {
  padding-right: 5px;
  border-right: 4px solid #fff;
}
.text-wrap{
  color: var(--white-color);
  font-size: 70px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width:991px){
  .text-wrap{
    font-size: 56px;
  }
}
@media (max-width:767px){
  .text-wrap{
    font-size: 46px;
  }
}
@media (max-width:575px){
  .text-wrap{
    font-size: 36px;
    min-height: 36px;
  }
}
.intro-description{
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0 auto;
  max-width: 672px;
  text-align: center;
}
.intro-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width:575px){
  .intro-btn{
    gap: 16px;
  }
}

/* =========   03.2 Intro Countdown CSS   ========= */

.intro-countdown{
  margin: 0 0 30px;
}
.counters{
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width:575px){
  .counters{
    gap: 10px;
  }
}
.counter{
  display: flex;
  flex-direction: column;
  text-align: center;
  min-width: 110px;
}
@media (max-width:575px){
  .counter{
    min-width: 70px;
  }
}
.counter-value{
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  color: var(--white-color);
  margin: 0 0 10px;
}
@media (max-width:575px){
  .counter-value{
    font-size: 28px;
  }
}
.counter-name{
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: var(--white-color);
  margin: 0;
}
@media (max-width:575px){
  .counter-name{
    font-size: 14px;
  }
}



/* ==============================
   04. Modal CSS
============================== */

.modal-backdrop{
  background-color: var(--black-color-rgba50);
  backdrop-filter: blur(6px);
}
.modal-backdrop.show{
  opacity: 1;
}
@media (min-width:768px){
  .notifyme-popup .modal-dialog{
    max-width: 696px;
  }
}
@media (max-width:767px){
  .notifyme-popup .modal-dialog{
    margin: 0 auto;
    max-width: calc(100% - 40px);
  }
}
.notifyme-popup .modal-body{
  background-color: var(--primary-color-rgba20);
  padding: 60px;
}
@media (max-width:767px){
  .notifyme-popup .modal-body {
    padding: 40px;
  }
}
@media (max-width:575px){
  .notifyme-popup .modal-body {
    padding: 20px;
  }
}
.notifymodal-wrapper{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.notifymodal-title{
  text-align: center;
}
.notifymodal-subheading{
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 10px;
}
.notifymodal-heading{
  color: var(--lightblack-color);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 12px;
  text-transform: uppercase;
}
@media (max-width:991px){
  .notifymodal-heading{
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .notifymodal-heading {
    font-size: 46px;
  }
}
@media (max-width: 575px) {
  .notifymodal-heading {
    font-size: 36px;
  }
}
.notifymodal-line{
  background-color: var(--lightblack-color);
  height: 1px;
  margin: 0 auto;
  max-width: 200px;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .notifymodal-line{
    max-width: 120px;
  }
}
.notifymodal-line::after{
  background-color: var(--lightblack-color);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  height: 11px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  width: 11px;
}
.notifymodal-line::before{
  background-color: var(--lightblack-color);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  height: 11px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  width: 11px;
}
.notifymodal-top{
  margin: 0 0 30px;
}
.notifymodal-icon{
  background-color: var(--primary-color);
  border-radius: 50%;
  color: var(--lightblack-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  height: 100px;
  margin: 0 auto 20px;
  width: 100px;
}
@media (max-width:575px){
  .notifymodal-icon{
    font-size: 30px;
    height: 70px;
    width: 70px;
  }
}
.notifymodal-inner-heading{
  color: var(--lightblack-color);
  font-size: 26px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 10px;
  text-align: center;
}
@media (max-width:575px){
  .notifymodal-inner-heading{
    font-size: 22px;
  }
}
.notifymodal-top p{
  color: var(--lightblack-color);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
.form-input .form-control:focus{
  background-color: transparent;
  border-color: var(--lightblack-color-rgba20);
  box-shadow: none;
  color: var(--lightblack-color-rgba80);
}
.notifymodal-btn-group{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width:575px){
  .notifymodal-btn-group{
    gap: 16px;
  }
}

/* ==============================
   05. Sidebar CSS
============================== */

.sidebar-wp{
  overflow: hidden;
}
.sidebar-inner{
  background-color: var(--secondary-color20);
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  max-width: 500px;
  overflow-y: auto;
  scrollbar-width: none;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transform: translateX(calc(100% + 80px));
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  width: 100%;
  z-index: 99;
}
.sidebar-inner.sidebar-open{
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.sidebar-content{
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
}
.sidebar-header{
  border-bottom: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 0 20px 0;
}
.sidebar-title{
  color: var(--lightblack-color);
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
.sidebar-close-btn{
  background-color: var(--primary-color);
  border-radius: 40px;
  color: var(--lightblack-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0;
  width: 40px;
}
.sidebar-close-btn i{
  font-size: 22px;
}
.sidebar-heading{
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  color: var(--lightblack-color);
  margin: 0 0 20px 0;
}
.sidebar-about p{
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--lightblack-color);
}
.sidebar-contact-form{
  margin: 0 0 10px;
}
.sidebar-contact-form textarea.form-control{
  height: 100px;
  padding: 10px 16px;
  resize: none;
}
.sidebar-contact ul{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-contact ul li{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
}
.sidebar-contact ul li i{
  font-size: 22px;
  color: var(--primary-color);
}
.sidebar-contact ul li a{
  font-size: 16px;
  font-weight: 600;
  color: var(--lightblack-color);
}
.sidebar-contact ul li a:hover{
  color: var(--primary-color);
}
.sidebar-overlay{
  background-color: var(--black-color-rgba50);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  visibility: hidden;
  width: 100%;
  z-index: 98;
}
.sidebar-overlay.sidebar-open{
  opacity: 1;
  visibility: visible;
}

@media (max-width:575px){
  .sidebar-content{
    padding: 20px;
  }
}

/* ==============================
   06. Marquee Text CSS
============================== */

.marquee-text{
  padding: 20px 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  opacity: 0.2;
  width: 100%;
  z-index: 1;
}
.marquee-box-text{
  color: var(--white-color);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  padding: 0 20px;
  text-transform: uppercase;
}
.marquee-with-options i{
  color: var(--white-color);
  font-size: 40px;
  line-height: 1;
}
