/*-------------------------------------- Fonts Starts -------------------------------------*/
/*--------------------------------------- Fonts Ends --------------------------------------*/
/*------------------------------------- Colors Starts -------------------------------------*/
/*-------------------------------------- Colors Ends --------------------------------------*/
/*-------------------------------------- Mixins Starts ------------------------------------*/
.ex-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.ex-flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.ex-vertical {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ex-transition {
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
}

.ex-transition-medium {
  -webkit-transition: all 1.2s ease;
  transition: all 1.2s ease;
}

.ex-transition-large {
  -webkit-transition: all 1.8s ease;
  transition: all 1.8s ease;
}

/*--------------------------------------- Mixins Ends -------------------------------------*/
html {
  height: 100%;
}

body {
  height: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: black;
  line-height: inherit;
  display: block;
  padding: 0px;
  margin: 0px;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a:link, a:visited {
  text-decoration: none;
}

a:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 25px;
}

p {
  margin-bottom: 18px;
}

p:last-of-type {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

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

#wrapper {
  min-height: 100%;
  position: relative;
}

.slick-slider .slick-slide {
  outline: none;
}

.form-action {
  text-align: right;
}

.form-action button {
  border: unset;
  background: unset;
  color: #FFBE58;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

.form-action button span {
  margin-left: 32px;
}

.form-action button.type-green {
  background-color: #6FB342;
  color: #fff;
  border-radius: 4px;
  padding: 15px 25px;
}

.custom-container {
  padding: 80px 100px;
  max-width: 1920px;
  margin: auto;
  position: relative;
}

.custom-container .small-width-container {
  max-width: 1200px;
}

.custom-container .small-medium-container {
  max-width: 1500px;
}

.custom-container.no-top-bottom-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.custom-container.small-padding {
  padding: 30px 0;
}

.custom-container.added-top-padding {
  padding-top: 250px;
}

.ar-btn {
  display: inline-block;
  width: auto !important;
  outline: none;
  padding: 0 30px;
  background-color: #212529;
  border: 1px solid #212529;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
}

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

.section-title h2 {
  margin-bottom: 15px;
  color: #395467;
  font-size: 34px;
  font-family: "Roboto", sans-serif;
}

.section-title h1 {
  font-family: "Roboto", sans-serif;
  color: #FFBE58;
  display: inline-block;
  font-size: 40px;
  font-weight: bold;
  position: relative;
  margin-bottom: 80px;
}

.section-title h1:after {
  position: absolute;
  content: '';
  display: inline-block;
  height: 2px;
  width: 20%;
  background-color: #395467;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -30px;
}
/*# sourceMappingURL=global.css.map */