/* ============================================================
    [ Master Stylesheets ]

    Theme Name:     Roboking
    Theme URL:      http://
    Description:    Roboking - Multi Proposal HTML Template
    Version:        1.0.0

============================================================== */


/*========================================

*********** TABLE OF CONTENTS **********

    01. Global / Reset / Normalize Styles CSS
    02. Layout CSS
    03. Sidebar CSS

*********** TABLE OF CONTENTS **********

========================================*/


/* ==============================
   01. Global / Reset / Normalize Styles CSS
============================== */

:root{
  --theme-color: #FF6680;
  --theme-10-color: rgba(255, 102, 128, 0.1);
  --secondary-color: #0173FF;
  --white-color: #FFFFFF;
  --white-80-color: rgba(255, 255, 255, 0.8);
  --white-90-color: rgba(255, 255, 255, 0.9);
  --gray-color: #333237;
  --gray-30-color: rgba(51, 50, 55, 0.3);
  --gray-50-color: rgba(51, 50, 55, 0.5);
  --gray-80-color: rgba(51, 50, 55, 0.8);
  --theme-font: 'Dosis', sans-serif;
  --theme-icon-font: 'icomoon';
}

html, body {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body{
  background-color: var(--white-color);
  color: var(--gray-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;
  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;
}
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, textarea, select{
  box-shadow: none;
  font-family: var(--theme-font);
  outline: none;
}
input:focus, textarea:focus, select:focus, .form-control:focus{
  box-shadow: none;
}
::-moz-selection {
  background-color: var(--theme-color);
  color: var(--gray-color);
  text-shadow: none;
}
::selection {
  background-color: var(--theme-color);
  color: var(--gray-color);
  text-shadow: none;
}

/* ==============================
   02. Layout CSS
============================== */

.main-wrapper{
  position: relative;
}
.hero-wrap-left{
  position: relative;
  height: 100%;  
}
.hero-wrap-top{
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding: 100px 50px;
}
.logo{
  margin: 0 0 80px;
}
.heading{
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  color: var(--secondary-color);
  margin: 0 0 40px;
}

/* Counter CSS */
.counters{
  display: flex;
  gap: 40px;
  margin: 0 0 60px;
}
.counter{
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
  min-width: 120px;
}
.counter::after{
  position: absolute;
  top: -30px;
  bottom: 0;
  right: -25px;
  margin: auto 0;
  content: "";
  background-color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10px;
  width: 10px;
}
.counter::before{
  position: absolute;
  top: 0;
  bottom: -30px;
  right: -25px;
  margin: auto 0;
  content: "";
  background-color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10px;
  width: 10px;
}
.counter:last-child::after,
.counter:last-child::before{
  display: none;
}
.counter-value{
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  color: var(--gray-color);
  margin: 0 0 10px;
}
.counter-name{
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  color: var(--gray-color);
  margin: 0;
  text-transform: uppercase;
}
/* Counter CSS */

/* NOTIFY ME CSS */
.notify-form{
  margin: 0 0 30px;
  max-width: 600px;
  width: 100%;
}
.notify-form .form-group{
  position: relative;
}
.notify-form .form-control{
  background-color: var(--theme-10-color);
  border: 1px solid var(--gray-80-color);
  border-radius: 8px;
  color: var(--gray-80-color);
  font-family: var(--theme-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  height: 60px;
  padding: 5px 150px 5px 20px;
  outline: none;
}
.notify-form .form-control::placeholder{
  color: var(--gray-80-color);
}
.notify-form .btn-submit{
  background-color: var(--theme-color);
  border: none;
  border-radius: 8px;
  color: var(--gray-color);
  font-family: var(--theme-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  height: 50px;
  padding: 15px 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto 0;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
}
.notify-form .btn-submit:hover,
.notify-form .btn-submit:focus{
  background-color: var(--gray-color);
  color: var(--white-color);
}
/* NOTIFY ME CSS */

/* Copyright CSS */
.copyright p{
  color: var(--gray-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
/* Copyright CSS */

/* Infinite Text CSS */
.hero-wrap-bottom{
  background-color: var(--theme-10-color);
  padding: 18px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.hero-text-box-inner{
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px 0 0;
}
.hero-text{
  color: var(--gray-color);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}
.hero-text-box-inner i{
  color: var(--theme-color);
  font-size: 24px;
  line-height: 1;
}
/* Infinite Text CSS */

/* Hero Right */
.hero-wrap-right{
  height: 100%;
}
.hero-img{
  position: relative;
  height: 100%;
}
.hero-img::after{
  background-color: var(--gray-30-color);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
}
.hero-img img{
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.siderbar-btn{
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 9;
}
.sidebar-toggle{
  background-color: var(--theme-color);
  border: none;
  border-radius: 5px;
  color: var(--gray-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  height: 50px;
  width: 50px;
  padding: 0;
  transition: all 0.5s ease-in-out;
}
.sidebar-toggle:hover,
.sidebar-toggle:focus,
.sidebar-toggle:active{
  background-color: var(--gray-color) !important;
  color: var(--white-color);
}
.social-media{
  background-color: var(--white-80-color);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  bottom: 40px;
  right: 40px;
  padding: 6px 16px 6px 6px;
  z-index: 9;
}
.social-media ul{
  display: flex;
  align-items: center;
  gap: 6px;
}
.social-media ul li a{
  background-color: var(--theme-color);
  border-radius: 8px;
  color: var(--gray-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
}
.social-media ul li a:hover,
.social-media ul li a:focus,
.social-media ul li a:active{
  background-color: var(--gray-color) !important;
  color: var(--white-color);
}
.social-media ul li a i{
  font-size: 20px;
}
.social-heading{
  color: var(--gray-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
/* Hero Right */

@media only screen and (max-width:1365px){
  /* Counter CSS */
  .counter{
    min-width: 100px;
  }
  .counter-name{
    font-size: 22px;
  }
  /* Counter CSS */
}
@media only screen and (max-width:1279px){
  .heading{
    font-size: 42px;
    margin: 0 0 30px;
  }
  /* Counter CSS */
  .counters {
    margin: 0 0 40px;
  }
  .counter {
    min-width: 65px;
  }
  .counter-value{
    font-size: 40px;
  }
  .counter-name {
    font-size: 18px;
  }
  /* Counter CSS */
}
@media only screen and (max-width:991px){
  .hero-wrap-top {
    padding: 100px 50px 150px 50px;
  }
  .mobile-hide{
    display: none;
  }
  .siderbar-btn {
    top: 20px;
    right: 20px;
  }
  .social-media {
    background-color: var(--gray-color);
    bottom: 80px;
    right: 0;
    left: 0;
    margin: 0 auto;
    max-width: max-content;
    width: 100%;
  }
  .social-heading{
    color: var(--white-color);
  }
}
@media only screen and (max-width:575px){
  .sidebar-toggle{
    font-size: 22px;
    height: 40px;
    width: 40px;
  }
  .hero-wrap-top {
    padding: 100px 20px 130px;
  }
  .social-media{
    bottom: 60px;
  }
  .heading {
    font-size: 32px;
  }
  /* Counter CSS */
  .counters{
    gap: 20px;
  }
  .counter {
    min-width: 60px;
  }
  .counter::before{
    bottom: -20px;
    right: -13px;
    height: 6px;
    width: 6px;
  }
  .counter::after{
    top: -20px;
    right: -13px;
    height: 6px;
    width: 6px;
  }
  .counter-value {
    font-size: 30px;
  }
  .counter-name {
    font-size: 14px;
  }
  /* Counter CSS */
  /* NOTIFY ME CSS */
  .notify-form{
    margin: 0 0 20px;
  }
  .notify-form .form-control{
    border-radius: 6px;
    font-size: 16px;
    height: 50px;
    padding: 5px 120px 5px 12px;
  }
  .notify-form .btn-submit{
    border-radius: 6px;
    font-size: 16px;
    height: 40px;
    padding: 10px 16px;
  }
  /* NOTIFY ME CSS */
  /* Copyright CSS */
  .copyright p{
    font-size: 16px;
  }
  /* Copyright CSS */
  /* Infinite Text CSS */
  .hero-wrap-bottom{
    padding: 10px 20px;
  }
  .hero-text,
  .hero-text-box-inner i{
    font-size: 20px;
  }
  /* Infinite Text CSS */
  /* Hero Right */
  .social-heading{
    font-size: 18px;
  }
  /* Hero Right */

  
}


/* ==============================
   03. Sidebar CSS
============================== */

.sidebar-wp{
  overflow: hidden;
}
.sidebar-inner{
  background-color: var(--white-color);
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  max-width: 500px;
  overflow-y: auto;
  scrollbar-width: none;
  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: 40px;
}
.sidebar-header{
  border-bottom: 1px solid var(--gray-30-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 0 20px 0;
}
.sidebar-close-btn{
  background-color: var(--white-color);
  border: 2px solid var(--gray-color);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0;
  width: 40px;
}
.sidebar-close-btn i{
  font-size: 14px;
  font-weight: 600;
}
.sidebar-about-inner{
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 20px;
}
.sidebar-about-inner .sidebar-heading{
  margin: 0;
}
.sidebar-about-inner i{
  color: var(--theme-color);
  font-size: 30px;
}
.sidebar-heading{
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  color: var(--gray-color);
  margin: 0 0 20px 0;
}
.sidebar-about p{
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  color: var(--gray-color);
}
.sidebar-contact ul{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-contact ul li{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  color: var(--theme-color);
}
.sidebar-contact ul li i{
  font-size: 22px;
  color: var(--theme-color);
}
.sidebar-contact ul li a{
  font-size: 18px;
  font-weight: 500;
  color: var(--gray-color);
}
.sidebar-contact ul li a:hover{
  color: var(--theme-color);
}
.sidebar-overlay{
  background-color: var(--gray-50-color);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  width: 100%;
  z-index: 98;
}
.sidebar-overlay.sidebar-open{
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width:575px){
  .sidebar-content{
    padding: 20px;
  }
}