
/* Variables definition : */
:root {
    --color-1: #000000;
    --color-2: #ffffff;

    --color-3: #1d2466;
    --color-4: #739cc7;
    --color-5: #333333;

    --color-6: #f7f9fd;

    --navbar-padding: 0;
    --content-padding: 0;
    --navbar-height: 90px;

    --content-max-width: 100%;
}

/* Icons styles */

.icon {
    color: var(--color-3);
    font-size: 2.5rem;
    cursor: pointer;
}



/* General styles */

body {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--color-5);
    transition: all 0.3s ease;
  }

  body.no-scroll {
    overflow: hidden;
}

h1, h2, h3 {
    font-family: 'Public Sans', sans-serif;
    font-weight: 600;
    line-height: 1.5;
    text-transform: capitalize;
}

/*--------------------------------------------------------------
/** 1. Base Styles
--------------------------------------------------------------*/
*, *::before, *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  html {
    box-sizing: border-box;
  }
  a {
    font-weight: 400;
    color: var(--color-5);
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    
  }
  a:hover {
    color: var(--color-4);
  }
  ul, ol {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding: 0;
    list-style: none;
  }
  ul ul,
  ol ul,
  ul ol,
  ol ol {
    margin-bottom: 0;
  }
  ul li, ol li {
    outline: 0;
  }
  
  ul li:last-child,
  ol li:last-child {
    margin-bottom: 0;
  }
  dl {
    margin-top: 0;
    margin-bottom: 2rem;
  }
  dt,
  dd {
    line-height: 1.42857143;
  }
  dt {
    font-weight: bold;
  }
  dd {
    margin-left: 0;
  }
  button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    outline: 0;
  }
  figure {
    margin: 0;
  }
  img {
    display: inline-block;
    border: 0;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
  }
  ::selection {
    background: rgba(0,0,0,0.8);
    color: var(--color-2);
    text-shadow: none;
  }
  ::-moz-selection {
    background: rgba(0,0,0,0.8);
    color: var(--color-2);
    text-shadow: none;
  }
  ::-webkit-input-placeholder {
    color: #EDEBE4; /* WebKit browsers */
    -webkit-transition: color .2s;
    transition: color .2s;
  }
  ::-moz-placeholder {
    color: #053634; /* Mozilla Firefox 19+ */
    -webkit-transition: color .2s;
    transition: color .2s;
  }
  :-ms-input-placeholder {
    color: #053634;/* Internet Explorer 10+ */
    -webkit-transition: color .2s;
    transition: color .2s;
  }
  ::placeholder {
    color: #053634;
    -webkit-transition: color .2s;
    transition: color .2s;
  }
  

  section {
    display: flex;
    justify-content: center;
  }


/*--- Section Title
-----------------------------------------------*/
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-subtitle {
  text-align: center;
  color: #c3c7d0;
  margin-bottom: 40px;
  max-width: 800px;
}



.header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  transition: 0.5s;
  height: var(--navbar-height);
}

.content {
    padding: var(--content-padding);
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding-top: var(--navbar-height);
}

  .content-container {
    max-width: 1100px;
  }
  
  .container {
      align-items: center;
      justify-content: center;
      display: flex;
      flex-direction: column;
  }
    

.footer {
}

.error-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50vh;
    width: 100%;
    color: var(--color-3);
}



@media (max-width: 768px) {
    .content {
        padding: 0;
        max-width: 100%;
        margin: 0 auto;
        padding-top: var(--navbar-height);
    }
    .content-container {
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {

    .section-title {
        font-size: 1.5em;
        font-weight: 400;
        line-height: 1 !important;
        text-align: center;

    }

    .inner-content {
        padding: 0;
    }

    h2.section-subtitle.liner {
        text-align: center;
    }
    h2.section-subtitle {
        text-align: center;
    }
    .header {
        position: fixed;
        width: 100%;
        z-index: 999;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
        transition: 0.5s;
        height: var(--navbar-height);
    }
    .content {
        padding: var(--content-padding);
        max-width: var(--content-max-width);
        margin: 0 auto;
        padding-top: var(--navbar-height);
    }
    .content-container {
        max-width: 100%;
    }
    .container {
      max-width: 1700px;
      padding: 30px 30px 0px 30px;
      margin: 0 auto;
      width: 100%;
    }
    .error-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 50vh;
        width: 100%;
        color: var(--color-3);
    }

}