
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


:root {
  --primary: white;
  --secondary: #eb6a4b;
  --tertiary: #24539f;
  --color-green: #9cc43f;
  --color-yellow: #f8e441;
  --primary-font: "Roboto", sans-serif;
  --secondary-font: "Roboto", sans-serif;
   
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  -webkit-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  color: var(--primary);
  transition: 0.35s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: var(--primary);
}

a,
a:active,
a:hover {
  text-decoration: none;
  outline: 0;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}

.position-relative {
  position: relative;
}

.column-1 {
  grid-column: span 1;
}
.row-1 {
  grid-row: span 1;
}
.column-2 {
  grid-column: span 2;
}
.row-2 {
  grid-row: span 2;
}
.column-3 {
  grid-column: span 3;
}
.row-3 {
  grid-row: span 3;
}
.column-4 {
  grid-column: span 4;
}
.row-4 {
  grid-row: span 4;
}
.column-5 {
  grid-column: span 5;
}
.row-5 {
  grid-row: span 5;
}
.column-6 {
  grid-column: span 6;
}
.row-6 {
  grid-row: span 6;
}
.column-7 {
  grid-column: span 7;
}
.row-7 {
  grid-row: span 7;
}
.column-8 {
  grid-column: span 8;
}
.row-8 {
  grid-row: span 8;
}
.column-9 {
  grid-column: span 9;
}
.row-9 {
  grid-row: span 9;
}
.column-10 {
  grid-column: span 10;
}
.row-10 {
  grid-row: span 10;
}
.column-11 {
  grid-column: span 11;
}
.row-11 {
  grid-row: span 11;
}
.column-12 {
  grid-column: span 12;
}
.row-12 {
  grid-row: span 12;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.section {
  padding-top: 50px;

}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.h-100 {
  height: 100%;
}

.mb-5 {
  margin-bottom: 30px;
}

.mt-48 {
  margin-top: 40%;
}
.flex-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.flex-inline::after,
.flex-inline::before,
.flex::after,
.flex::before {
  display: none;
}
.flex-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.flex-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .column-1,
  .column-2,
  .column-3,
  .column-4,
  .column-5,
  .column-6,
  .column-7,
  .column-8,
  .column-9,
  .column-10,
  .column-11,
  .column-12 {
    grid-column: span 6;
  }
  .grid {
    grid-gap: 16px;
  }
}

@media (max-width: 768px) {
  .column-1,
  .column-2,
  .column-3,
  .column-4,
  .column-5,
  .column-6,
  .column-7,
  .column-8,
  .column-9,
  .column-10,
  .column-11,
  .column-12 {
    grid-column: span 12;
  }
}

.mt-40 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 2rem;
}
.left-column {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
  padding-right: 3rem;
}
.right-column {

  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 300px;
  min-width: 300px;
}

.section-sm {
  padding: 30px 0;
}
.section-md {
  padding: 50px 0;
}
.section-lg {
  padding: 100px 0;
}
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem; 
}

.container-xlarge {
  max-width: 100%;
}

.container-large {
  max-width: 1600px;
}

.container-small {
  max-width: 960px;
}

.container-xsmall {
  max-width: 890px;
  margin: auto;
}

.text-center {
  text-align: center;
}


 blockquote {
  padding-left: 7rem;
  position: relative;
  background: url("../img/icon-quote-left.svg") 0 0 no-repeat;
  background-size: 5rem;
  background-position: 0 8px;
}

 blockquote p {
  font-weight: 500;
  font-size: 2rem;
  line-height: 3rem;
  color: #24539f;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1.5em;
}
