@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* font family ***********************************************************************/
:root {
  --blue: #0024ff;
  --white: #ffffff;
  --black: #000000;
  --gray: #2f322f;
  --blue-chill: #128c7f;
  --mirage: #111B21;

}

/* Common class Start ****************************************************************/
.mobile {
  display: none !important;
}
.desktop {
  display: block !important;
}

.bg {
  padding: 100px 0;
}
.white {
  color: var(--white) !important;
}
.black {
  color: var(--black);
}
.gray {
  color: var(--gray) !important;
}
.blue-chill-bg {
  background-color: var(--blue-chill) !important;
}

.x-small {
  font-size: 10px;
}
.small {
  font-size: 12px;
}

/* Common class End ******************************************************************/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}
.common::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
}
body {
  font-family: "Poppins", sans-serif;
  max-width: 480px;
  margin: 0 auto;
}
body.show {
  position: fixed;
  top: 0;
  width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}
h1 {
  font-size: 52px;
}
h2 {
  font-size: 44px;
}
h3 {
  font-size: 36px;
}
h4 {
  font-size: 28px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 20px;
}
p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}
ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  font-family: inherit;
}
span {
  display: inline-block;
}
img,
video {
  max-width: 100%;
}
.btn-common {
  font-size: 15px;
  font-weight: 400;
  padding: 12px 20px;
  background: transparent;
  color: var(--blue);
  border-radius: 30px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-common img {
  max-width: 30px;
  margin-right: 10px;
}
section {
  padding: 80px 0;
  overflow: hidden;
}
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.button-box {
  padding-top: 20px;
}
.button-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 10px;
}

/* header css start **********************************************************************/
#header {
  padding: 20px 0;
  background: transparent;
  transition: 0.5s all;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}
#header .header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}
#header .logo-box img {
  max-width: 180px;
  width: 100%;
}
#header .main-nav .click-menu, #header .main-nav .cancel-menu {
    /* display: none; */
    cursor: pointer;
    position: relative;
    z-index: 11;
    width: 30px;
    height: 15px;
    /* overflow: hidden; */
    display: flex;
    flex-direction: column;
    gap: 2px;
}
#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
  width: 28px;
  height: 4px;
  background: var(--black);
  transition: 0.5s all ease-in-out;
  border-radius: 14px;
  position: relative;
}
#header .main-nav .cancel-menu span {
  position: absolute;
  height: 4px;
}
#header .main-nav .cancel-menu span:first-child {
  transform: rotate(45deg);
}
#header .main-nav .cancel-menu span:last-child {
  transform: rotate(-45deg);
}
#header .main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* padding-left: 20px; */
}
#header .button-box {
  padding-top: 0;
  margin-left: 20px;
}
#header .main-nav nav ul li {
  display: inline-block;
  position: relative;
  margin-right: 16px;
}
#header .main-nav nav ul li a {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray);
  padding: 5px 5px;
}

#header .button-box ul {
  column-gap: 0;
}

#header .logo-box{
  margin: 0 auto;
}

/* homeBanner css ***************************************************************************/
#home-banner {
  padding: 0 0;
}
#home-banner .home-banner-part {
  /* background: url("../images/bannerBg.png") no-repeat;
  background-size: cover;
  background-position: center center; */
  /* height: 100vh; */
  padding: 20% 0;
  background-color: var(--white);
  place-content: center;
}
#home-banner .box .img-box {
  margin-bottom: 20px;
}
#home-banner .box .img-box img {
  max-width: 30%;
  width: 100%;
}

.chat-box {
    border-bottom: 1px solid #f7efef;
    text-align: left;
    height: 100px;
    place-content: end;
    padding: 20px 10px;
}
.chat-box p {
  font-size: 18px;
  color: #5A5A5A;
}

#home-banner h6 {
  color: #010101;
  font-weight: unset;
  text-transform: uppercase;
  margin: 0;
}

/* Footer *******************************************/
#footer {
  padding: 30px 10px;
  text-align: center;
  background-color: var(--mirage);
}
#footer .row {
  row-gap: 20px;
}
#footer .top-box .logo-box {
  margin-bottom: 20px;
}
#footer .top-box .usefull-links a {
  font-size: 18px;
  color: var(--white);
  line-height: 1.6;
}
#footer .top-box .footer-col-title {
  font-size: 14px;
  color: var(--white);
}


#footer .end-box {
  color: var(--white);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #474a4b;
}
#footer .end-box .row {
  row-gap: 0;
}
#footer .end-box p {
  color: var(--white);
}
#footer .end-box .button-box ul {
  column-gap: 10px;
  justify-content: center;
}
#footer .end-box .social-bx a {
    width: 36px;
    height: 36px;
    color: var(--white);
    border-radius: 50%;
    background-color: var(--black);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

