@import "fonts.css";

:root {
  --primary: #243763;
  --white: #ffffff;
  --secondary: #58b490;
  --secondary-200: #49cea4;
  --secondary-300: #7cdabd;
  --secondary-400: #f2fefa;
  --brown: #333333;
  --brown-200: #555555;
  --brown-300: #868686;
  --black: #0000004d;
  --black-200: #00000029;
  --blue: #cfdefd;
  --orange: #eb8c3c;
}

/* COLOR INITIALIZATION */

._secondary {
  color: var(--secondary);
}
._foot-icon a {
  margin: 0 10px;
}
._secondary-200 {
  color: var(--secondary-200);
}
._secondary-300 {
  color: var(--secondary-300);
}
._secondary-400 {
  color: var(--secondary-400);
}
._brown {
  color: var(--brown);
}
._brown-200 {
  color: var(--brown-200);
}
._brown-300 {
  color: var(--brown-300);
}
._black {
  color: var(--black);
}
._black-200 {
  color: var(--black-200);
}
._blue {
  color: var(--blue);
}
._orange {
  color: var(--orange);
}
._white {
  color: var(--white);
}

/* COLOR INITIALIZATION */

/* global styles starts */

html {
  overflow-x: hidden !important;
}

*,
*:focus,
*:active {
  outline: none !important;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

._divider {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 10px 0 20px 0;
  background: var(--white);
}

h1 {
  text-align: left;
  font: normal normal bold 35px/45px "Maven Pro";
  letter-spacing: 0px;
  color: var(--brown);
  opacity: 1;
  position: relative;
  padding-bottom: 5px;
}

h1::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 10px;
  background-color: var(--secondary);
  bottom: -5px;
  left: 0;
}

h3 {
  text-align: left;
  font: normal normal bold 30px/45px "Maven Pro";
  letter-spacing: 0px;
  color: var(--brown);
  opacity: 1;
}

p._text,
._desc-card .text {
  text-align: left;
  font: normal normal normal 16px/30px "Roboto";
  letter-spacing: 0px;
  color: var(--brown-200);
  opacity: 1;
}

p._text-bold {
  text-align: left;
  font: normal normal 500 18px/35px "Maven Pro";
  letter-spacing: 0px;
  color: var(--brown);
  opacity: 1;
}

._underline {
  text-decoration: underline;
}

._btn {
  padding: 10px 25px;
  box-shadow: 0px 3px 6px var(--black-200);
  border-radius: 23px;
  min-width: 140px;
  max-width: max-content;
  font: normal normal normal 15px/26px "Roboto";
  letter-spacing: 0px;
  border: 0;
  text-transform: capitalize;
  opacity: 1;
  transition: 0.45s ease all;
}

._btn:active {
  top: -200%;
  box-shadow: inset 0px 0px 12px rgba(0, 0, 0, 0.2);
  animation: 0.7s pulse 1 forwards;
}

._btn-secondary {
  background: var(--secondary-200) 0% 0% no-repeat padding-box;
  color: var(--white);
}
._btn-secondary:hover,
._btn-secondary:focus,
._btn-secondary:active {
  background: var(--secondary-200) 0% 0% no-repeat padding-box;
  color: var(--white);
}

._btn-blue {
  background: var(--blue) 0% 0% no-repeat padding-box;
  color: var(--primary);
}
._btn-blue:hover,
._btn-blue:focus,
._btn-blue:active {
  background: var(--blue) 0% 0% no-repeat padding-box;
  color: var(--primary);
}
._btn-transparent,
._btn-transparent:hover,
._btn-transparent:focus {
  background: none;
  font: normal normal normal 16px/35px "Maven Pro";
  letter-spacing: 0.32px;
  color: var(--brown);
  box-shadow: none;
}

._btn-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

._btn-icon > i,
._btn-icon > img {
  font-size: 24px;
  width: 20px;
  margin-right: 10px;
}

._ad-block {
  width: 80%;
  padding: 40px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  margin: 10px;
  z-index: 1;
}

._ad-block::before {
  content: "Ad";
  font: normal normal bold 40px/75px "Roboto";
  letter-spacing: 0px;
  color: var(--brown-200);
  opacity: 1;
}
.dot-holder {
  position: absolute;
  opacity: 0.3;
  z-index: 0;
}

.dot-holder > img {
  width: 180px;
}

._grid-responsive {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 40px;
}

._grid-3x {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 40px;
}

._grid-4x {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 40px;
}
._grid-5x {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 20px;
}

._hide {
  visibility: collapse;
  width: 0;
  height: 0;
  overflow: hidden;
}
/* global styles ends */

/* header style starts */

/* [[changes to navbar]]  */
body header {
  background: var(--primary);
  padding-bottom: 150px;
  padding-top: 50px; /* padding to to support the fixed nav */
}

.navbar-nav a.nav-item.nav-link {
  text-align: left;
  font: normal normal normal 16px/18px "Roboto";
  letter-spacing: 0px;
  color: var(--primary); /* chnage nav-items color from white to primary */
  opacity: 1;
}
.navbar-nav a.nav-item.nav-link._btn {
  padding-left: 25px;
  padding-right: 25px;
}
.navbar-nav a.nav-item.nav-link:hover,
.navbar-nav a.nav-item.nav-link:focus {
  text-align: left;
  font: normal normal normal 16px/18px "Roboto";
  letter-spacing: 0px;
  color: var(--primary); /* chnage nav-items color from white to primary */
  opacity: 1;
}

/* //make butoon retain color */
.navbar-nav a.nav-item.nav-link._btn,
.navbar-nav a.nav-item.nav-link._btn:hover {
  color: var(--white);
}


/* [[changes to navbar]]  */


.navbar-light .navbar-toggler-icon {
  background-image: url("../svg/bars.svg");
}

nav .dropdown {
  z-index: 6000;
  position: relative;
  display: inline-block;
}

/* header content */
._header-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

._header-content p._main-text {
  font: normal normal bold 35px/75px "Maven Pro";
  letter-spacing: 0px;
  color: var(--white);
  text-align: center;
  z-index: unset;
}

._header-content ._sub-text {
  font: normal normal normal 25px/30px "Roboto";
  letter-spacing: 0px;
  color: var(--white);
  text-align: center;
}

/* action section style */
._action-section {
  z-index: 400;
}
._action-section ._action-card {
  background: var(--white) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #0000004d;
  padding: 30px 20px 50px 20px;
  border-radius: 6px;
  z-index: 200;
  opacity: 1;
}

._action-section ._action-display {
  min-height: 160px;
  border: 2px dashed var(--secondary-300);
  background: var(--secondary-400);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

#_drop-area.glow {
  border-width: 3px;
  border-style: solid;
  border-color: var(--blue);
  border-radius: 3px;
}
._action-section ._action-display ._list-items {
  width: 80%;
}
._action-section ._action-display ._list-items > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5px;
  border-bottom: 1px solid var(--brown-200);
}

._action-section ._action-display ._list-items > div p {
  margin-bottom: 0;
}
._action-section ._action-display ._list-items > div small {
  font-weight: 300;
}

._action-section ._action-display ._list-items > div:last-child {
  border-bottom: 0;
}

._action-section ._action-display ._item {
  padding: 6px;
  border: 2.5px solid var(--secondary);
  border-radius: 5px;
  color: var(--brown-200);
  font-family: "Roboto";
  font-weight: 400;
  font-size: 13px;
  margin: 5px;
}
._action-section ._action-display ._loader {
  display: flex;
  flex-direction: column;
  align-items: center;
}
._action-section ._action-display ._loader img {
  width: 60px;
}
._action-section ._action-display ._loader p {
  letter-spacing: 0px;
  color: var(--secondary-300);
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0 0 0;
}

._action-section ._action-display ._uploader p {
  text-align: center;
}

._action-display-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px;
  background: var(--secondary-400) 0% 0% no-repeat padding-box;
  border: 1px solid var(--secondary);
  opacity: 1;
  margin-top: 20px;
}

._action-display-bottom.dropdown-toggle::after {
  color: var(--secondary);
  font-size: 20px;
}

._action-display-bottom ._image {
  display: flex;
  align-items: center;
}
._action-display-bottom ._image > div {
  display: flex;
  align-items: center;
}
._action-display-bottom ._image > div img {
  width: 20px;
}
._action-display-bottom ._image > div ._arrow {
  color: var(--brown-200);
  margin: 0 5px;
}

._action-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

._action-buttons button {
  margin: 0 10px;
}

._action-section ._action-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
._action-section ._action-nav a {
  padding: 25px 50px;
  background: var(--white);
  color: var(--brown-200);
  text-align: center;
  font: normal normal medium 16px/25px "Roboto";
  letter-spacing: 0px;
  margin: 0 10px;
}

._header-content .dot-holder:first-child {
  left: 0em;
}
._header-content .dot-holder.two {
  right: 0em;
  bottom: 20px;
}
/* header style ends */

/* content section style starts */

section._content {
  padding-top: 130px;
  padding-bottom: 100px;
  background: var(--secondary-400);
  display: flex;
  flex-direction: column;
}

body > section._content > div > .dot-holder:nth-child(1) {
  left: 0;
}
body > section._content > div > .dot-holder.two {
  right: 0;
}

._desc-card {
  background: var(--white) 0% 0% no-repeat padding-box;
  padding: 20px 40px 40px 20px;
  z-index: 1;
}

._desc-card ._counter {
  padding: 5px;
  background-color: var(--secondary-400);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font: normal normal bold 20px/45px "Roboto";
  letter-spacing: 0px;
  color: var(--brown);
  opacity: 1;
  margin-bottom: 30px;
  border-radius: 50%;
}

section._content ._ad-section {
  margin-bottom: 120px;
  display: flex;
  justify-content: center;
}

section._content ._description h1 {
  margin-bottom: 60px;
}

section._content ._product-desc {
  margin-top: 120px;
}

section._content ._product-desc > div img {
  width: 40px;
}

section._content ._product-desc > div ._text-bold {
  margin: 15px 0 20px 0;
}

/* content section style ends */

/* userflow style starts */

section._user-flow {
  margin-top: 100px;
  margin-bottom: 120px;
}

/* userflow style end */

/* review style starts */
section._review {
  margin-bottom: 100px;
}

._review-star > div {
  color: var(--secondary);
  font-size: 34px;
  margin: 0 10px;
  cursor: pointer;
}

._review-star > span {
  cursor: pointer;
}
/* review style end */

/* footer style starts */
footer {
  padding: 100px 0 50px 0;
  background: url("../svg/footer-2.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

footer .container:first-child {
  margin-top: 80px;
}

footer ._text-bold {
  color: var(--white);
}

footer a,
footer a:hover,
footer a:focus {
  text-align: left;
  font: normal normal normal 15px/28px "Roboto";
  letter-spacing: 0px;
  color: #ffffff;
  display: block;
  opacity: 1;
  margin-bottom: 10px;
}

body > footer > div > div > div:nth-child(5) > div > a > svg {
  font-size: 28px;
  color: var(--white);
}

body > footer > div > div > div:nth-child(5) > div > a:nth-child(2) {
  margin: 0 10px;
}
/* footer style ends */

/* MEDIA QUERIES */

@media all and (max-width: 992px) {
  ._grid-responsive {
    grid-template-columns: repeat(2, 1fr);
  }

  footer ._grid-responsive {
    justify-items: center;
    text-align: center;
  }

  footer a,
  footer p._text-bold {
    text-align: center;
  }

  ._flex-wrap-md {
    flex-wrap: wrap;
  }

  ._col-md {
    flex-direction: column;
  }

  ._action-section ._action-display ._list-items > div {
    display: flex;
    justify-content: space-evenly;
  }
}

@media all and (max-width: 760px) {
  ._action-section ._action-display ._list-items > div {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }
}

@media all and (max-width: 570px) {
  ._show-mobile {
    visibility: visible;
    width: max-content;
    height: max-content;
  }

  footer .container:first-child {
    margin-top: 110px;
  }

  ._hide-mobile {
    width: 0;
    height: 0;
    visibility: collapse;
  }

  ._grid-responsive {
    grid-template-columns: repeat(1, 1fr);
  }

  ._col-sm {
    flex-direction: column;
  }
}

/* ANIMATIONS */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(0.95, 0.95, 0.95);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}
.admin-bar .navbar{
	top: 32px;
}