/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

 :root {
  --black: #0D0D0D;
  --black-black: #000000;
  --white: #ffffff;
  --gray: #8E8E8E;
  --gray-second: #696969;
  --green: #183824;
  --green-light: #43895C;
  --blue: #2953B2;
  --page-width: 1260px;
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --font-secondary: 'Inter', sans-serif;
}

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 16px;
  line-height: 1.4;
  font-family: var(--font-primary);
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

.page-width {
  max-width: var(--page-width);
  width: 100%;
  margin: 0 auto;
}

@media(max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}
@media only screen and (min-width : 768px) {
  .hidden-mobile {
    display: block;
  }
  .hidden-desktop {
    display: none !important;
  }
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: var(--white);
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: var(--white);
 opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: var(--white);
 opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--white);
}
::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--white);
}

::placeholder { /* Most modern browsers support this now. */
  color: var(--white);
}

*, :after, :before {
  box-sizing: border-box;
}


img {
  height: auto;
  display: block;
  max-width: 100%;
}

p {
  line-height: 1.6;
}


body {
  /* background-image: url("../img/body-bg.png");
  background-repeat: no-repeat;
  background-position: top right; */
  position: relative;
}

body::before {
  overflow: hidden;
  content: url("../img/body-bg-mobile.png");
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
}

@media(min-width: 768px) {
  body::before {
    content: url("../img/body-bg.png");
  }
}

/** Header */
header {
  padding: 40px 15px;
}

@media(min-width: 768px) {
  header {
    padding: 45px 0;
  }
}

header .page-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  flex: 1;
}

header .logo svg {
  max-width: 140px;
}

@media(min-width: 768px) {
  header .logo svg {
    max-width: 146px;
  }
}

.nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}
@media(min-width: 768px) {
  .nav {
    justify-content: end;
  }
}

.nav a {
  text-decoration: none;
  color: #28583A;
  font-family: var(--font-secondary);
  text-align: center;
  flex: 1;
}

@media(min-width: 768px) {
  .nav a {
    flex: unset;
  }
}

.nav .cta {
  color: var(--white);
  border-radius: 4px;
  background-color: var(--green-light);
  padding: 14px;
  display: inline-block;
  text-align: center;
  width: 100%;
  text-decoration: none;
  transition: .2s background-color, .2s color;
  flex: 1;
}
.nav .cta:hover {
  background-color: var(--green);
}

@media(min-width: 768px) {
  .nav .cta {
    max-width: 120px;
    margin-left: 30px;
  }
}

/** EOF Header */


/** Hero */
.hero {
  padding-bottom: 60px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 541px;
  height: 541px;
  background: #F0E7DD;
/* Blur - 620 */

filter: blur(310px);
  z-index: -1;
}

@media(min-width: 992px) {
  .hero {
    padding-bottom: 100px;
  }
}

.hero .page-width {
  display: grid;
  padding: 0 12px;
}
@media(min-width: 992px) {
  .hero .page-width {
    padding: 0;
    grid-template-columns: calc(54% - 22.5px) calc(46% - 22.5px);
    grid-gap: 45px;
  }
}

.hero .h-left h2 {
  font-weight: 500;
  font-size: 38px;
  margin: 0 0 24px 0;
  line-height: 1.25;
}
@media(min-width: 768px) {
  .hero .h-left h2 {
    font-weight: 500;
    font-size: 64px;
  }
}

.hero .h-left p {
  font-size: 20px;
  color: var(--gray-second);
}
@media(min-width: 768px) {
  .hero .h-left p {
    font-size: 24px;
    max-width: 90%;
  }
}

.hero .h-left a {
  text-decoration: none;
  color: var(--green-light);
}

.hero .h-left a svg {
  width: 20px;
  height: 20px;
  margin-right: 15px;
}

.hero .h-right img {
  margin-left: auto;
}
/** EOF Hero */

/** Our themes */
.our-themes  {
  padding: 0 0 80px;
}

@media(min-width: 992px)  {
  .our-themes  {
    padding: 0 0 170px;
  }
}

.our-themes .page-width {
  padding: 0 12px;
}

.our-themes h2 {
  text-align: center;
  font-weight: 600;
  font-size: 34px;
  margin-top: 0;
}
@media(min-width: 768px) {
  .our-themes h2 {
    text-align: left;
    font-weight: 600;
    font-size: 48px;
  }
}

.our-themes .ot-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media(min-width: 768px) {
  .our-themes .ot-grid {
    display: grid;
    grid-template-columns: calc(70% - 15px) calc(30% - 15px);
    padding: 0;
    grid-gap: 30px;
    align-items: unset;
  }
}

@media(min-width: 992px) {
  .our-themes .ot-grid {
    display: grid;
    grid-template-columns: calc(70.45% - 15px) calc(29.55% - 15px);
    padding: 0;
  }
}

@media(max-width: 768px) {
  .our-themes .ot-right {
    margin-top: 75px;
  }
}


@media(min-width: 768px) {
  .our-themes .ot-left {
    display: flex;
    align-items: start;
    flex-direction: column;
  }  
}

@media(min-width: 992px) {
  .our-themes .ot-left {
    align-items: center;
    flex-direction: row;
  }  
}

.our-themes .ot-left .info-wrap {
  padding-left: 30px;
}


@media(min-width: 992px) {
  .our-themes .ot-left .info-wrap {
    padding-left: 5px;
  }
}

.our-themes .ot-left h3 {
  font-weight: 400;
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 26px;
}

.our-themes .ot-left ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.our-themes .ot-left ul li {
  font-weight: 400;
  font-size: 16px;
  color: var(--gray-second);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
}

.our-themes .ot-left ul li span {
  vertical-align: middle;
  display: inline-block;
  margin-left: 12px;
}

.our-themes .ot-left ul li img {
  display: inline-block;
  margin: 0;
}

.our-themes .ot-left ul li svg {
  width: 24px;
  height: 24px;
}

.our-themes .cta-wrap {
  margin-top: 30px;
  display: flex;
  align-items: center;
}

.our-themes .cta-wrap a {
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  color: var(--green-light);
}

.our-themes .cta-wrap .cta {
  color: var(--white);
  border-radius: 4px;
  background-color: var(--green-light);
  padding: 16px;
  margin-left: 45px;
  display: inline-block;
  text-align: center;
  width: 100%;
  max-width: 155px;
}

.our-themes .cta-wrap .cta:hover {
  background-color: var(--green);
}

.our-themes .ot-left img {
  display: block;
  height: auto;
  margin: 0 auto;
}
@media(min-width: 992px) {
  .our-themes .ot-left img {
    max-width: 448px;
  }
}
/* @media(min-width: 768px) {
  .our-themes .ot-left img {
    margin-right: 35px;
  }
} */

.our-themes .ot-right h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
}

@media(min-width: 768px) {
  .our-themes .ot-right h2 {
    font-weight: 600;
    font-size: 28px;
  }
}

.our-themes .ot-right .img-wrap {
  position: relative;
  text-align: center;
}

.our-themes .ot-right .img-wrap::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 4.21%, #FFFFFF 75.73%);
  top: 44%;
  bottom: 0;
  right: 0;
  left: 0;
}

.our-themes .ot-right .img-wrap img {
  display: block;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}

.our-themes .ot-right .notify-btn {
  border: 1px solid var(--green-light);
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--font-secondary);
  display: block;
  text-align: center;
  padding: 13px;
  width: 100%;
  max-width: 250px;
  text-decoration: none;
  margin: 0 auto;
  color: var(--green-light);
  transition: .2s background-color, .2s color;
}

.our-themes .ot-right .notify-btn:hover {
  background-color: var(--green-light);
  color: var(--white);
}

/** Using Our themes section */
.using-themes .page-width {
  max-width: 1007px;
  padding: 0;
}
@media(min-width: 768px) {
  .using-themes .ut-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 35px;
    padding: 0;
  }
}

.using-themes h2 {
  text-align: left;
  font-weight: 600;
  font-size: 34px;
  margin-bottom: 30px;
  margin-top: 5px;
  padding: 0 12px;
}

@media(min-width: 768px) {
  .using-themes h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 50px;
    padding: 0;
  }
}

.using-themes img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.using-themes h3 {
  font-weight: 500;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: var(--font-secondary);
  color: var(--black);
}

@media(min-width: 768px) {
  .using-themes h3 {
    font-size: 28px;
    font-weight: 400;
  }
}

.using-themes p {
  color: var(--black-black);
  margin-top: 0;
}

.using-themes a {
  color: var(--blue);
  text-decoration: none;
  letter-spacing: -0.02em;

}
.using-themes svg {
  width: 16px;
  height: 16px;
  margin-left: 9px;
  fill: var(--blue);
}

.using-themes svg path {
  fill: var(--blue);
}

.using-themes .ut-left div,
.using-themes .ut-right div  {
  padding: 0 12px;
  margin-bottom: 40px;
}
@media(min-width: 768px) {
  .using-themes .ut-left div,
  .using-themes .ut-right div  {
    padding: 0;
    margin-bottom: 0;
  }
}

/** EOF Using Our themes section */

/** Apps section */
.apps-section {
  padding: 14px 12px 54px 12px;
  position: relative;
  z-index: 1;
}
@media(min-width: 768px) {
  .apps-section {
    background-image: url("../img/Ellipse\ 36.png");
    background-size: 740px;
    background-repeat: no-repeat;
    background-position: 60% -20px;
    padding: 54px 12px;
  }
}

@media(min-width: 992px) {
  .apps-section::before {
    content: "";
    background: url("../img/Vector\ 3.png") no-repeat top left;
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    z-index: -1;
  }
}

@media(min-width: 768px) {
  .apps-section {
    padding: 170px 30px 100px;
  }
  .apps-section .page-width {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    grid-gap: 30px;
  }
}

@media(min-width: 768px) {
  .apps-section .apps-left {
    padding-right: 25%;
  }
}

.apps-section .apps-left h2 {
  font-weight: 600;
  font-size: 34px;
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.25;
}

.apps-section .apps-left p {
  color: var(--black-black);
  margin-top: 0;
}

@media(min-width: 768px) {
  .apps-section .apps-left h2 {
    font-size: 48px;
  }
}

.apps-section .apps-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 40px;
  column-gap: 15px;
  margin-top: 40px;
}
.apps-section .apps-list > div {
  display: flex;
}

.apps-section .apps-list span {
  font-weight: 400;
  font-size: 14px;
  color: var(--gray-second);
  font-family: var(--font-secondary);
}

.apps-section .apps-list h3 {
  font-weight: 500;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 13px;
  font-family: var(--font-secondary);
}


.apps-section .apps-list a {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--green-light);
}


.apps-section .apps-list img {
  display: block;
  height: 32px;
  width: 32px;
  max-width: 100%;
  margin-right: 8px;
  filter: drop-shadow(0px 8px 32px rgba(119, 119, 119, 0.3));
}

@media(min-width: 768px) {
  .apps-section .apps-list img {
    height: 40px;
    width: 40px;
    margin-right: 15px;
    filter: none;
  }
}

.apps-section .apps-list svg {
  width: 16px;
  height: 16px;
  margin-left: 9px;
}
/** EOF Apps section */

/** Contact form section */
.contact-form {
  background-color: var(--black);
  color: var(--white);
  padding: 64px 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-image: url("../img/Mask\ group.png");
  background-color: var(--black);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
}

@media(min-width: 768px) {
  .contact-form {
    padding: 100px 30px;
    background-position: center right;
    background-size: unset;
  } 
}

/* .contact-form::before {
  content: "";
  filter: blur(210px);
  transform: rotate(180deg);
  opacity: 0.8;
  background: var(--green-light);
  width: 100%;
  height: 60%;
  left: auto;
  right: -50%;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  position: absolute;
  z-index: -1;
} */


@media(min-width: 768px) {
  .contact-form .page-width {
    grid-template-columns: 38% 62%;
    display: grid;
  }
}
.contact-left h2 {
  font-weight: 400;
  font-size: 34px;
  margin-bottom: 24px;
  margin-top: 0;
}
@media(min-width: 768px) {
  .contact-left h2 {
    font-size: 48px;
  }
}

@media(min-width: 768px) {
  .contact-left p {
    max-width: 80%;
  }
}
@media(min-width: 768px) {
  .contact-right form {
    max-width: 488px;
    color: var(--white);
  }
}


.contact-right {
  font-size: 14px;
  color: var(--white);
}

.contact-right p {
  color: var(--white) !important;
}

.contact-right input[type="text"],
.contact-right input[type="email"] {
  background: var(--green);
  border-radius: 4px;
  color: var(--white);
  box-shadow: none;
  border: 0;
  padding: 16px 24px;
  margin-bottom: 24px;
  width: 100%;
  box-sizing: border-box;
  font-weight: 600;
}

.contact-right input[type="checkbox"] {
  margin-bottom: 24px;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 1px solid #B9B9B9;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}
  
.contact-right .form-control {
  display: grid;
  grid-template-columns: 1em auto;
  gap: 0.5em;
  margin-bottom: 24px;
  align-items: center;
}

.contact-right input[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--green-light);
  background-color: CanvasText;
}

.contact-right input[type="checkbox"]:checked::before {
  transform: scale(1);
}


.contact-right button {
  background: var(--green-light);
  border-radius: 4px;
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  padding: 0 24px !important;
  border: 0;
  box-sizing: none;
  cursor: pointer;
  transition: .2s background-color, .2s color;
}

.contact-right button:hover {
  background: var(--green);
}

/** EOF  Contact form section */

/** Footer */
footer {
  background-color: var(--black);
  color: var(--white);
  padding: 64px 30px;
} 

@media(min-width: 768px) {
  footer {
    padding: 80px 30px;
  } 
}


@media(min-width: 768px) {
  footer .page-width {
    grid-template-columns: 32% 68%;
    display: grid;
  }
}

.footer-left {
  margin-bottom: 40px;
}

@media(min-width: 768px) {
  .footer-left {
    margin-bottom: 0;
  }
}

.footer-left svg {
  max-width: 146px;
}

.footer-copyright {
  font-size: 10px;
}

.footer-left .footer-copyright {
  margin-top: 55px;
}

.footer-copyright a {
  color: var(--white);
  text-decoration: none;
}

@media(min-width: 768px) {
  .footer-right {
    display: flex;
  }
}

.footer-right ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 48px;
  text-align: left;
}

@media(min-width: 768px) {
  .footer-right ul {
    padding-left: 13%;
    margin-bottom: 0;
  }
  .footer-right ul:first-of-type {
    padding-left: 0;
  }
}

.footer-right ul li {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-right ul li a {
  color: var(--white);
  text-decoration: none;
}




@media(min-width: 992px) {
  .bg-elipse-img{
    position: relative;
  }

  .bg-elipse-img::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 837px;
    height: 837px;
    background: #F0E7DD;
    opacity: 0.7;
    /* Blur - 620 */

    filter: blur(310px);
    transform: matrix(-1, 0, 0, 1, 0, 0);
    z-index: -1;
  }
}
