/**
 * modified version of eric meyer's reset 2.0
 * http://meyerweb.com/eric/tools/css/reset/
 */
/**
 * basic reset
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, main,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/**
 * HTML5 display-role reset for older browsers
 */
article, aside, details, figcaption, figure,
footer, header, menu, nav, section,
main, summary {
  display: block;
}

body {
  line-height: 1;
}

a {
  text-decoration: none;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  padding: 0;
  border: 0;
}

button, input, a, select, textarea {
  outline: none;
}

h2 {
  font-weight: 300;
  font-size: 3vw;
  padding: 20px 0;
}

p {
  font-size: 1.2vw;
  line-height: 1.7em;
}

/* basic classes */
.container {
  width: 1200px;
  margin: 0px auto;
}

.display__none {
  display: none !important;
}

.display__block {
  display: block !important;
}

.float__left {
  float: left !important;
}

.float__right {
  float: right !important;
}

.text-align__center {
  text-align: center !important;
}

.text-align__left {
  text-align: left !important;
}

.text-underline {
  text-decoration: underline;
}

.clear {
  clear: both;
}

.visibile-hidden {
  visibility: hidden;
}

.tab-content-reset {
  margin: 0 auto;
  padding-left: 0 !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.cat-dropdown {
  opacity: 0;
  visibility: hidden;
}

.mg-0 {
  margin: 0px !important;
}

.nav-up {
  bottom: -55px !important;
}

.regular-font {
  font-weight: 400;
}

.medium-font {
  font-weight: 500;
}

.semibold-font {
  font-weight: 600;
}

.bold-font {
  font-weight: 700;
}

.full-width-padding {
  padding: 0px 120px;
}

.blocker {
  z-index: 9999 !important;
}

.white-text-color {
  color: #FFFFFF;
}

.black-text-color {
  color: #000000;
}

.light-gray-text-color {
  color: #f4f4f4;
}

.light-gray-2-text-color {
  color: #e7e8ea;
}

.gray-text-color {
  color: #a0a6ab;
}

.dark-gray-text-color {
  color: #717981;
}

.dark-blue-text-color {
  color: #3b5cc4;
}

.dark-flat-blue-text-color {
  color: #32325d;
}

.dark-flat-blue-2-text-color {
  color: #333160;
}

.purple-text-color {
  color: #7156b6;
}

.blue-text-color {
  color: #0098ff;
}

.flat-blue-text-color {
  color: #4e6cc9;
}

.flat-blue-2-text-color {
  color: #4e6cc9;
}

.flat-blue-3-text-color {
  color: #626b89;
}

.flat-yellow-text-color {
  color: #f5be58;
}

.yellow-text-color {
  color: #ffcb11;
}

.pink-text-color {
  color: #d0299d;
}

.orange-text-color {
  color: #ff4201;
}

.cubic-text-color {
  color: cubic-bezier(0.64, 0.09, 0.08, 1);
}

.light-gray-bg-color {
  background-color: #f4f4f4;
}

.full-height {
  height: 100%;
}

/*font list*/
* {
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  font-family: 'Hind', sans-serif;
  font-weight: 400;
  color: #5d625f;
  font-size: 16px;
}

.header {
  background-color: #FFFFFF;
  position: absolute;
  top: 30px;
  width: 100%;
  z-index: 200;
  border-bottom: 1px solid #f4f4f4;
  box-shadow: 0px 2px 18px 3px rgba(147, 147, 147, 0.2);
}

.header .container {
  padding: 11px 0px;
}

.header__logo {
  padding: 13px 0px;
}

.header__logo a {
  display: block;
}

.menu--main-horizontal {
  position: relative;
  width: fit-content;
  justify-content: center;
  display: flex;
}

.menu--hidden {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.menu--mobile-menu {
  display: none;
}

@media (min-width: 479px) and (max-width: 766px) {
  .menu--mobile-menu {
    display: block;
  }
}

@media all and (max-width: 479px) {
  .menu--mobile-menu {
    display: block;
  }
}

.menu__item--main {
  position: relative;
  margin-right: 105px;
}

.menu__item--main:last-child {
  margin-right: 0;
}

.menu__item--social {
  margin-right: 32px;
}

.menu__item--social:first-child {
  margin-right: 132px;
}

.menu__item--social:first-child a {
  display: flex;
  align-items: center;
}

.menu__item--social:first-child a img {
  margin-right: 8px;
}

.menu__item--social:last-child {
  margin-right: 0;
}

.menu__item--close {
  position: absolute;
  right: 9px;
  top: 47px;
  display: none;
}

@media (min-width: 479px) and (max-width: 766px) {
  .menu__item--close {
    display: block;
  }
}

@media all and (max-width: 479px) {
  .menu__item--close {
    display: block;
  }
}

.menu__link--main {
  position: relative;
  padding-bottom: 4px;
  font-weight: 600;
  font-size: 17.5px;
  color: #5d625f;
  transition: color 0.5s;
}

.menu__link--main:hover {
  color: #ffcb11;
}

.menu__link--badge span.orange {
  background-color: #ff4201;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
}

.menu__link--social {
  font-weight: 400;
  font-size: 14px;
  color: #32325d;
}

.menu__link--social i {
  font-size: 16px;
}

.menu__link--mobile {
  font-size: 20px;
  color: #000000;
}

.menu__link .user-icon {
  width: 12px;
}

.menu .dropdown:hover .dropdown__sub-menu {
  opacity: 1;
  visibility: visible;
}

.menu .dropdown:hover .dropdown__sub-menu-icon {
  opacity: 1;
  visibility: visible;
}

.menu .dropdown:hover .dropdown__sub-menu-line {
  opacity: 1;
  visibility: visible;
}

.menu .dropdown__sub-menu-icon {
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translate(-50%, 0%);
  padding-top: 17px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.menu .dropdown__sub-menu-line {
  background: #5d625f;
  position: absolute;
  display: block;
  bottom: 0px;
  width: 100%;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.menu .dropdown__sub-menu {
  position: absolute;
  width: 265px;
  left: 50%;
  transform: translate(-48%, 7px);
  padding-top: 17px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.menu .dropdown__sub-menu--item {
  display: flex;
  flex-flow: column;
  text-align: center;
}

.menu .dropdown__sub-menu--link {
  background-color: #FFFFFF;
  padding: 3px 0px 0px;
  border-bottom: 1px solid #f1f1ef;
  line-height: 22px;
  font-weight: 400;
  font-size: 18px;
  color: #5d625f;
  transition: color 0.5s;
}

.menu .dropdown__sub-menu--link:hover {
  color: #ffcb11;
}

.slider-content {
  position: relative;
}

.slider-content .swiper-container .swiper-slide-cover {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 200;
  width: 100%;
}

.slider-content .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-container {
  background: #FFFFFF;
  position: relative;
}

.slider-content .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-container .swiper-slide-img {
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
}

.slider-content .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-container .swiper-slide-img img.swiper-slide-img {
  width: 100%;
}

.slider-content .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-container .swiper-text-content {
  background-color: #ffcb11;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 154px;
  padding: 39px 222px;
}

.slider-content .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-container .swiper-text-content .text-content-body h1 {
  font-family: 'Hind', sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: normal;
  color: #5d625f;
}

.slider-content .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-container .swiper-text-content .text-content-line {
  background-color: #FFFFFF;
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 4px;
  left: 0px;
}

.slider-content .swiper-thumbnails {
  position: absolute;
  bottom: 194px;
  left: 322px;
  z-index: 300;
  display: flex;
  flex-flow: row;
  align-items: center;
}

.slider-content .swiper-thumbnails button {
  width: 25px;
  height: 25px;
  background-color: #ffcb11;
  position: relative;
  cursor: pointer;
  margin-right: 11px;
  border-radius: 30px;
  box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.2);
}

.slider-content .swiper-thumbnails button:last-child {
  margin-right: 0;
}

.slider-content .swiper-thumbnails button.is-active {
  background-color: #5d625f;
}

.breadcrumb-wrapper {
  background-color: #6d51b4;
  padding: 24.5px 0px;
  margin-bottom: 58px;
  position: relative;
  overflow: hidden;
}

.breadcrumb-wrapper:after {
  content: "";
  background-color: #ffcb11;
  position: absolute;
  z-index: 50;
  bottom: -106px;
  right: -50px;
  width: 568px;
  height: 520px;
  border-radius: 500px;
}

.breadcrumb-wrapper:before {
  content: "";
  background-color: #4b2baa;
  position: absolute;
  z-index: 50;
  top: -9px;
  left: -283px;
  width: 475px;
  height: 475px;
  border-radius: 500px;
}

.breadcrumb-wrapper .breadcrumb {
  align-items: center;
}

.breadcrumb-wrapper .breadcrumb__item {
  font-weight: 400;
  font-size: 12px;
  color: #FFFFFF;
}

.breadcrumb-wrapper .breadcrumb__item:first-child a {
  margin-bottom: 5px;
  display: block;
  font-weight: 700;
  font-size: 22px;
  opacity: 1;
}

.breadcrumb-wrapper .breadcrumb__item--current {
  opacity: 0.6;
}

.breadcrumb-wrapper .breadcrumb__item a {
  line-height: normal;
  opacity: 0.6;
  color: #FFFFFF;
}

.breadcrumb-wrapper .breadcrumb__item--chevrons {
  margin: 0px 9px;
}

.breadcrumb-wrapper .breadcrumb__item--chevrons i {
  opacity: 0.6;
  font-size: 9px;
}

.dropdown__content {
  display: none;
}

.dropdown--dropdown-select {
  position: relative;
  overflow: hidden;
  display: block;
  width: 284px;
  height: 50px;
  border: 1px solid #6d51b4;
  border-radius: 5px;
}

.dropdown--dropdown-select:after {
  content: "\f107";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  padding: 18px 23px 0px 0px;
  font-family: "Font Awesome 5 Free";
  text-align: center;
  font-weight: 900;
  font-size: 14px;
  color: #7156b6;
  box-sizing: border-box;
  pointer-events: none;
}

.dropdown__select {
  background-color: rgba(109, 81, 180, 0.1);
  padding: 8px 0px 8px 19px;
  width: 284px;
  height: 50px;
  line-height: 22px;
  font-size: 16px;
  color: #4b2baa;
  border: 0;
  appearance: none;
  cursor: pointer;
}

.dropdown__select--non-background {
  background-color: transparent;
}

form.search-form div.input-box {
  display: flex;
}

form.search-form div.input-box input {
  padding: 7px 0px 7px 11px;
  height: 32px;
  border: 1px solid #f4f4f4;
  border-right: 0;
  border-radius: 3px 0px 0px 3px;
  font-weight: 300;
  font-size: 14px;
  color: #f4f4f4;
}

form.search-form div.input-box input::-webkit-input-placeholder {
  font-weight: 300;
  font-size: 14px;
  color: #bfbfbf;
}

form.search-form div.input-box input:-ms-input-placeholder {
  font-weight: 300;
  font-size: 14px;
  color: #bfbfbf;
}

form.search-form div.input-box input:-moz-placeholder {
  font-weight: 300;
  font-size: 14px;
  color: #bfbfbf;
}

form.search-form div.input-box input::-moz-placeholder {
  font-weight: 300;
  font-size: 14px;
  color: #bfbfbf;
}

form.search-form div.input-box button {
  padding: 7.5px 21px 7.5px 0px;
  height: 32px;
  border: 1px solid #f4f4f4;
  border-left: 0;
  border-radius: 0px 3px 3px 0px;
  cursor: pointer;
}

form.subscriber-form div.input-box input {
  padding: 14px 15px;
  margin-right: 11px;
  width: 385px;
  border: 0px;
  border-radius: 5px;
  line-height: 22px;
  font-weight: 400;
  font-size: 16px;
  color: #a0a6ab;
}

form.subscriber-form div.input-box input::-webkit-input-placeholder {
  line-height: 22px;
  font-weight: 400;
  font-size: 16px;
  color: #a0a6ab;
}

form.subscriber-form div.input-box input:-ms-input-placeholder {
  line-height: 22px;
  font-weight: 400;
  font-size: 16px;
  color: #a0a6ab;
}

form.subscriber-form div.input-box input:-moz-placeholder {
  line-height: 22px;
  font-weight: 400;
  font-size: 16px;
  color: #a0a6ab;
}

form.subscriber-form div.input-box input::-moz-placeholder {
  line-height: 22px;
  font-weight: 400;
  font-size: 16px;
  color: #a0a6ab;
}

form.subscriber-form div.input-box button {
  cursor: pointer;
}

form div.input-box input {
  padding: 0px;
  margin: 0px;
}

.button {
  border-radius: 5px;
}

.button--yellow {
  background-color: #ffcb11;
  padding: 17px 39px;
  width: 160px;
  height: 50px;
}

.button--white {
  background-color: #FFFFFF;
  padding: 17px 40px;
  margin-bottom: 67px;
  width: 186px;
  height: 50px;
  text-align: center;
  display: block;
}

.button--white span {
  color: #717981;
}

.button--border {
  border: 1px solid #cacad2;
}

.button__text {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
}

.button__text--form {
  color: #32325d;
}

section.subscribe-wrapper.subscribe-wrapper-purple {
  background-color: #6d51b4;
  padding: 53px 128px;
  position: relative;
  overflow: hidden;
}

section.subscribe-wrapper.subscribe-wrapper-purple:after {
  content: "";
  background-color: #ffcb11;
  position: absolute;
  z-index: 50;
  bottom: -3px;
  right: -165px;
  width: 500px;
  height: 500px;
  border-radius: 500px;
}

section.subscribe-wrapper.subscribe-wrapper-purple:before {
  content: "";
  background-color: #4b2baa;
  position: absolute;
  z-index: 50;
  top: 152px;
  left: -250px;
  width: 475px;
  height: 475px;
  border-radius: 500px;
}

section.subscribe-wrapper .subscribe-content {
  position: relative;
  z-index: 100;
}

section.subscribe-wrapper .subscribe-content h5 {
  margin-bottom: 22px;
  font-weight: 700;
  font-size: 32px;
  color: #FFFFFF;
}

section.subscribe-wrapper .subscribe-content p {
  margin-bottom: 30px;
  line-height: 30px;
  font-weight: 300;
  font-size: 20px;
  color: #FFFFFF;
}

section .custom-line {
  margin: 50px 0px;
  display: block;
  width: 100%;
  height: 2px;
}

section .custom-line.gray {
  background-color: #f3f4f6;
}

.head-title--single {
  margin-bottom: 30px;
}

.head-title--single h2 {
  line-height: 39px;
  font-weight: 700;
  font-size: 32px;
  color: #32325d;
  padding: 0;
}

.head-title--multi-content {
  margin-bottom: 40px;
}

.head-title--multi-content h2 {
  line-height: 39px;
  font-weight: 700;
  font-size: 32px;
  color: #32325d;
  padding: 0;
}

.head-title__left--post-num {
  font-weight: 400;
}

.light-gray-bg-color {
  padding-top: 125px;
}

.topics--horizontal {
  margin-top: 41px;
  margin-bottom: 0px;
}

.topics__background-lines--single-color::before {
  content: none !important;
}

.topics__background-lines--single-color::after {
  height: 100% !important;
}

.topics__background-lines::after {
  content: "";
  background-color: #f4f5f5;
  width: 50.5%;
  height: 50%;
  position: absolute;
  right: 0;
  top: 0;
}

.topics__background-lines::before {
  content: "";
  background-color: #fff3c8;
  width: 50.5%;
  height: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
}

.topics__items--horizontal {
  height: 175px !important;
  border-right: 1px solid #adb2b3;
}

.topics__items--horizontal:nth-child(5n) {
  border-right: 0px;
}

.topics__items--horizontal img.topics-icon {
  width: 100%;
  outline: none;
}

.topics__items--rounded {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  flex: 0 0 15%;
  width: 15%;
  margin-right: 13.3%;
  margin-bottom: 55px;
}

.topics__items--rounded .rounded-dark-gray {
  background-color: #5d625f;
}

.topics__items--rounded .rounded-yellow {
  background-color: #ffcb11;
}

.topics__items--rounded:nth-child(4n) {
  margin-right: 0px;
}

.topics__items--rounded img.topics-icon {
  height: fit-content;
}

.topics__items--rounded .rounded-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 136px;
  height: 136px;
  padding: 27px 0px;
  margin-bottom: 37px;
  border-radius: 100px;
  box-shadow: 0px 2px 1px 1px rgba(0, 0, 0, 0.2);
}

.topics__items--rounded h3 {
  font-family: 'Hind', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #5d625f;
}

.topics__items--image {
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.topics--slider {
  background-color: #FFFFFF;
  box-shadow: 0px 4px 9px 0px rgba(60, 60, 60, 0.23);
  border: 1px solid #adb2b3;
  padding: 54px 77px;
  position: relative;
}

.topics--slider .swiper-custom-buttons {
  background-color: #FFFFFF;
  width: 70px;
  height: 70px;
  border-radius: 100px;
}

.topics--slider .swiper-custom-buttons:after {
  background-color: #ffcb11;
  z-index: 999;
  width: 50px;
  height: 50px;
  color: #FFFFFF;
  border-radius: 100px;
  font-size: 30px;
  padding: 10px 18px;
  box-sizing: border-box;
}

.topics--slider__shape-title {
  background-image: url("../../../assets/images/landing/reference-shape.png");
  background-position: center left;
  background-repeat: no-repeat;
  background-color: #ffcb11;
  position: absolute;
  top: -38px;
  right: -1px;
  width: 40%;
  height: 38px;
  padding: 10px 27px 10px 0px;
  text-align: right;
  font-family: 'Hind', sans-serif;
  font-weight: 700;
  font-size: 25px;
  color: #5d625f;
}

.topics .swiper-wrapper {
  display: flex;
  align-items: center;
}

.topics--text-content {
  position: relative;
  overflow: hidden;
  padding: 91px 0px 136px;
}

.topics--text-content__background {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
}

.topics--text-content .container {
  position: relative;
  z-index: 200;
}

.topics--text-content__text {
  margin-bottom: 93px;
  font-family: 'Hind', sans-serif;
  line-height: 29px;
  font-weight: 400;
  font-size: 25px;
  color: #5d625f;
}

.topics--text-content__text b {
  font-size: 30px;
  display: block;
}

.topics--text-content__img {
  width: 100%;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.18);
}

.topics--text-content ol li {
  align-items: center;
  margin-bottom: 20px;
}

.topics--text-content ol li:last-child {
  margin-bottom: 0px;
}

.topics--text-content ol li img {
  margin-top: -4px;
  margin-right: 15px;
}

.topics--text-content ol li span {
  font-size: 25px;
}

.topics .square {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 108px;
}

.topics .square:last-child {
  margin-bottom: 0px;
}

.topics .square:nth-child(2n) h2 {
  background-image: url("../../../assets/images/landing/reference-shape-3.png");
  background-position: center left;
  text-align: right;
  padding: 15px 25px 13px 0px;
}

.topics .square:nth-child(2n) p {
  padding: 30px 25px 0px 0px;
  text-align: right;
}

.topics .square__items--image {
  padding: 8px 8px 4px;
  border: 3px solid #ffcb11;
}

.topics .square__items--text-content {
  flex: 1;
}

.topics .square__items--text-content h2 {
  background-color: #ffcb11;
  background-image: url("../../../assets/images/landing/reference-shape-2.png");
  background-repeat: no-repeat;
  background-position: center right;
  height: 51px;
  padding: 15px 0px 13px 25px;
  display: block;
  font-weight: 700;
  font-size: 24px;
  color: #5d625f;
  text-align: left;
}

.topics .square__items--text-content p {
  padding: 30px 0px 0px 25px;
  line-height: 31px;
  font-size: 22px;
  color: #5d625f;
}

.topics .square__items--text-content-lines {
  position: relative;
  z-index: 200;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.topics .square__items--text-content-lines p {
  display: flex;
  flex-flow: column;
  height: 50%;
  align-items: flex-start;
  line-height: 35px;
  font-size: 26px;
  justify-content: center;
  padding-left: 118px;
}

section.all-references .reference-top-title {
  margin-top: 55px;
  margin-bottom: 50px;
}

section.all-references .reference-top-title div {
  flex: 1;
  display: flex;
  justify-content: center;
}

section.all-references .reference-top-title div span {
  display: block;
  width: 172px;
  height: 51px;
  padding: 13px 0px;
  text-align: center;
  font-weight: 600;
  font-size: 25px;
  border: 1px solid #ffcb11;
}

section.all-references .reference-content {
  align-items: center;
  height: 170px;
}

section.all-references .reference-content .reference-img {
  flex: 1;
  text-align: center;
}

section.all-references .reference-content .reference-title {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-left: 1px solid #adb2b3;
  border-right: 1px solid #adb2b3;
}

section.all-references .reference-content .reference-title h2 {
  font-weight: 600;
  font-size: 18px;
}

section.all-references .reference-content .reference-title h2 small {
  font-weight: 400;
}

section.all-references .reference-content .reference-type {
  flex: 1;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}

section.all-references .reference-content .reference-quantity {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  border-left: 1px solid #adb2b3;
  border-right: 1px solid #adb2b3;
}

section.all-references .reference-pagination {
  margin: 62px 0px 0px;
  align-items: center;
  justify-content: center;
}

section.all-references .reference-pagination span {
  display: block;
  padding: 0px 16px;
  font-weight: 600;
  font-size: 20px;
}

.contact-address {
  margin-top: 75px;
  justify-content: space-around;
  align-items: center;
}

.contact-address .address-line {
  background-color: #adb2b3;
  width: 1px;
  height: 97px;
}

.contact-address .company-name {
  font-weight: 600;
  font-size: 30px;
}

.contact-address .company-name small {
  font-size: 22px;
}

.contact-address .address-details {
  font-weight: 400;
  font-size: 25px;
}

.contact-iframe {
  margin: 82px auto 82px;
}

.contact-iframe iframe {
  width: 100%;
  height: 400px;
}

.contact-form-wrapper div.contact-form form.contact div.flex-grid {
  margin-bottom: 20px;
}

.contact-form-wrapper div.contact-form form.contact div.flex-grid:last-child {
  margin-bottom: 0;
}

.contact-form-wrapper div.contact-form form.contact div.flex-grid .input-group {
  flex: 0 0 25%;
}

.contact-form-wrapper div.contact-form form.contact div.flex-grid .input-group:last-child {
  margin-right: 0px;
}

.contact-form-wrapper div.contact-form form.contact div.flex-grid div {
  overflow: hidden;
  display: flex;
  padding-right: 1em;
  position: relative;
}

.contact-form-wrapper div.contact-form form.contact div.flex-grid div input[type="text"] {
  width: 100%;
  height: 29px;
  border: 1px solid #bcbec0;
  font-weight: 600;
  font-size: 18px;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 7px 10px;
}

.contact-form-wrapper div.contact-form form.contact div.flex-grid div textarea {
  width: 100%;
  height: 100%;
  padding: 7px 10px;
  border: 1px solid #bcbec0;
  font-weight: 600;
  font-size: 18px;
  -webkit-appearance: none;
  border-radius: 0;
}

.contact-form-wrapper div.contact-form form.contact div.flex-grid div button {
  background: #ffcb11;
  width: 106px;
  height: 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  color: #5d625f;
}

.contact-form-wrapper div.contact-form form.contact div.flex-grid div:nth-child(3) {
  padding-right: 0 !important;
}

.contact-form-wrapper div.contact-form form.contact div.flex-grid div:first-child {
  padding-left: 0 !important;
}

.contact-form-wrapper div.contact-form form.contact div.flex-grid div:last-child {
  padding-left: 1em;
  padding-right: 0 !important;
}

.contact-form-wrapper div.contact-form form.contact div.flex-grid #result div.success-mail {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #48c131;
}

.contact-form-wrapper div.contact-form form.contact div.flex-grid #result div.error-mail {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #c13131;
}

.banner--yellow-band {
  background-image: url("../../../assets/images/landing/banner-shape-2.jpg");
  background-repeat: no-repeat;
  background-position: center right;
  background-color: #ffcb11;
  height: 167px;
  margin-top: 108px;
  margin-bottom: 108px;
  display: flex;
  align-items: center;
}

.banner--yellow-band p {
  font-size: 34px;
  color: #5d625f;
}

.banner--multi-content {
  margin-bottom: 50px;
}

.banner--rounded-band {
  margin-top: 135px;
}

.banner--rounded-band__content {
  align-items: center;
}

.banner__left-content--title {
  font-weight: 700;
  font-size: 22px;
  color: #32325d;
}

.banner__left-content--rounded-image {
  position: relative;
  z-index: 200;
}

.banner__title--multi-content {
  margin-bottom: 22px;
  font-weight: 700;
  font-size: 32px;
  color: #32325d;
}

.banner__text--multi-content {
  margin-bottom: 30px;
  line-height: 30px;
  font-weight: 300;
  font-size: 20px;
  color: #32325d;
}

.banner__url--multi-content {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  color: #0098ff;
}

.banner__right-content--bg-sticker {
  position: relative;
  left: -15px;
  flex: 1;
}

.banner__right-content--bg-sticker .text-content {
  background-color: #FFFFFF;
  flex: 1;
  height: 111px;
  border-top: 2px solid #ffcb11;
  border-bottom: 2px solid #ffcb11;
  padding: 34px 0px 34px 40px;
}

.banner__right-content--bg-sticker .text-content p {
  font-size: 24px;
}

.banner__right-content--bg-sticker .text-content b {
  font-weight: 700;
}

.banner__right-content--bg-sticker img {
  position: absolute;
  z-index: 300;
  right: 0;
}

.footer {
  margin-top: 205px;
}

.footer__top {
  align-items: center;
  justify-content: space-between;
}

.footer__vertical-line {
  background-color: #ffcb11;
  width: 3px;
  height: 65px;
}

.footer .contact-us {
  flex: 1;
}

.footer .contact-us__item {
  align-items: center;
}

.footer .contact-us__item--text {
  font-size: 20px;
  color: #5d625f;
}

.footer .contact-us__item--text a {
  font-weight: 500;
  color: #5d625f;
}

.footer__bottom {
  background-color: #5d625f;
  width: 100%;
  margin-top: 70px;
  position: relative;
}

.footer__bottom img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.footer__copyright {
  align-items: center;
  height: 35px;
  font-size: 12px;
  color: #FFFFFF;
}

.footer__copyright a {
  color: #FFFFFF;
}

/* flex basic grid structure */
.flex-grid {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
}

.flex-grid-cell {
  flex: 1;
}

.flex-cols-1 .flex-grid-cell {
  flex: 0 0 100% !important;
  margin: 0 !important;
}

.flex-cols-2 .flex-grid-cell {
  flex: 0 0 48.667%;
}

.flex-cols-3 .flex-grid-cell {
  flex: 0 0 33.333%;
}

.flex-custom-cols-2 .flex-grid-cell {
  flex: 0 0 50%;
}

.flex-custom-cols-3 .flex-grid-cell {
  flex: 0 0 31.33%;
  margin: 0px 1% 50px;
}

.flex-cols-4 .flex-grid-cell {
  flex: 0 0 23%;
  margin: 0px 1% 50px;
}

.flex-custom-cols-4 .flex-grid-cell {
  flex: 0 0 23%;
  margin: 0px 2.65% 50px;
}

.flex-custom-cols-4 .flex-grid-cell:nth-child(1n) {
  margin-left: 0px;
}

.flex-custom-cols-4 .flex-grid-cell:nth-child(4n) {
  margin-right: 0px;
}

.flex-2of4 .flex-grid-cell:first-of-type {
  flex: 0 0 calc(49% - 12px);
}

.flex-2of4 .flex-grid-cell {
  flex: 0 0 23%;
  margin: 0px 1% 50px;
}

.flex-6of1 .flex-grid-cells:last-of-type {
  flex: 0 0 calc(76% - 0px);
  margin-left: 3%;
}

.flex-6of1 .flex-grid-cells {
  flex: 0 0 20%;
}

.flex-1of6 .flex-grid-cell:first-of-type {
  flex: 0 0 calc(72% - 0px);
  margin-right: 3%;
}

.flex-1of6 .flex-grid-cell {
  flex: 0 0 25%;
}

.flex-1of6 .flex-grid-cell:last-of-type {
  flex: 0 0 calc(80% - 4px);
}

.flex-grid-right {
  justify-content: flex-end;
}

.flex-grid-center {
  justify-content: center;
}

.flex-space-between {
  justify-content: space-between;
}

.flex-grid-top {
  align-items: flex-start !important;
}

.flex-grid-bottom {
  align-items: flex-end;
}

.flex-grid-center {
  align-items: center;
}

.flex-grid-cell-top {
  align-self: flex-start;
}

.flex-grid-cell-bottom {
  align-self: flex-end;
}

.flex-grid-cell-center {
  align-self: center;
}

@media all and (max-width: 1000px) {
  .custom-visible {
    display: none;
    visibility: hidden;
  }
  a.fullpage-menu-bars {
    display: block !important;
    visibility: visible !important;
  }
  .visible-search-box {
    display: none;
    visibility: hidden;
  }
}

@media all and (max-width: 600px) {
  .hidden-search-box {
    display: none;
    visibility: hidden;
  }
  .visible-search-box {
    display: block !important;
    visibility: visible !important;
  }
}

@media (min-width: 767px) and (max-width: 1219px) {
  .container {
    width: 100%;
  }
  .header {
    padding: 0px 10px;
    position: relative;
    top: 0;
  }
  .header .container {
    align-items: center;
  }
  .menu--main-horizontal {
    background-color: #FFFFFF;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 25px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 55px;
    z-index: 999;
  }
  .menu .close-button {
    top: -43px;
    right: 10px;
  }
  .menu__item--main {
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .menu__link--main {
    font-size: 20px;
  }
  .menu .dropdown:hover .dropdown__sub-menu {
    display: block;
  }
  .menu .dropdown__sub-menu {
    position: inherit;
    left: 0;
    transform: inherit;
    display: none;
  }
  .slider-content .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-container .swiper-text-content {
    height: 20.5%;
    padding: 9px 30px;
  }
  .slider-content .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-container .swiper-text-content .text-content-body h1 {
    font-size: 26px;
  }
  .slider-content .swiper-thumbnails {
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 120px;
  }
  .topics--horizontal {
    padding: 0px 10px;
  }
  .topics--slider {
    width: 90% !important;
  }
  .topics--slider .swiper-custom-buttons {
    width: 45px;
    height: 45px;
  }
  .topics--slider .swiper-custom-buttons.swiper-button-next {
    right: -23px !important;
  }
  .topics--slider .swiper-custom-buttons.swiper-button-prev {
    left: -23px !important;
  }
  .topics--slider .swiper-custom-buttons:after {
    width: 30px;
    height: 30px;
    font-size: 20px;
    padding: 5px 11px;
  }
  .topics--text-content {
    padding: 70px 10px;
  }
  .topics--text-content__text {
    font-size: 20px;
  }
  .topics--text-content__text b {
    font-size: 24px;
  }
  .topics--text-content ol li span {
    font-size: 20px;
  }
  .topics__items--rounded {
    flex: 0 0 19%;
    width: 19%;
    margin-right: 8%;
  }
  .topics__items--rounded .rounded-image {
    width: 100%;
    height: auto;
    padding: 10px 10px;
  }
  .topics__background-lines::after {
    width: 100%;
  }
  .topics__background-lines::before {
    width: 100%;
  }
  .topics .square:nth-child(2n) h2 {
    padding: 11px 20px 13px 0px;
  }
  .topics .square:nth-child(2n) p {
    padding: 5px 25px 0px 0px;
  }
  .topics .square__items--image {
    position: relative;
    z-index: 9999;
  }
  .topics .square__items--image img {
    width: 250px;
  }
  .topics .square__items--text-content h2 {
    height: 40px;
    padding: 11px 0px 13px 20px;
    font-size: 18px;
  }
  .topics .square__items--text-content p {
    padding: 5px 0px 0px 25px;
    line-height: 24px;
    font-size: 16px;
  }
  .topics .square__items--text-content-lines p {
    padding-left: 20px;
    justify-content: flex-start;
    font-size: 18px;
  }
  .banner--yellow-band {
    background-size: contain;
    height: 100px;
  }
  .banner--yellow-band .container {
    padding: 0px 10px;
  }
  .banner--yellow-band p {
    font-size: 22px;
  }
  .banner--rounded-band {
    margin-top: 135px;
  }
  .banner--rounded-band__content {
    align-items: center;
  }
  .banner__left-content--rounded-image img {
    width: 190px;
  }
  .banner__right-content--bg-sticker .text-content {
    padding: 41px 0px 41px 18px;
  }
  .banner__right-content--bg-sticker .text-content p {
    font-size: 16px;
  }
  .contact-address {
    padding: 0px 10px;
  }
  .contact-address .company-name {
    font-size: 20px;
  }
  .contact-address .company-name small {
    font-size: 18px;
  }
  .contact-address .address-details {
    font-size: 18px;
  }
  .contact-iframe {
    padding: 0px 10px;
  }
  .contact-iframe iframe {
    width: 100%;
    height: 200px;
  }
  .contact-form-wrapper {
    padding: 0px 10px;
  }
  .footer {
    margin-top: 100px;
  }
  .footer__top {
    padding: 0px 10px;
  }
  .footer__top--background img {
    width: 150px;
  }
  .footer__vertical-line {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .footer .contact-us__item--text {
    font-size: 17px;
  }
  .footer__bottom {
    padding: 0px 10px;
    margin-top: 40px;
  }
  .footer__bottom img {
    display: none;
  }
}

@media (min-width: 479px) and (max-width: 766px) {
  .container {
    width: 100%;
  }
  .header {
    padding: 0px 10px;
    position: relative;
    top: 0;
  }
  .header .container {
    align-items: center;
  }
  .menu--main-horizontal {
    background-color: #FFFFFF;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 25px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 55px;
    z-index: 999;
  }
  .menu .close-button {
    top: -43px;
    right: 10px;
  }
  .menu__item--main {
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .menu__link--main {
    font-size: 20px;
  }
  .menu .dropdown:hover .dropdown__sub-menu {
    display: block;
  }
  .menu .dropdown__sub-menu {
    position: inherit;
    left: 0;
    transform: inherit;
    display: none;
  }
  .slider-content .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-container .swiper-text-content {
    height: 30.5%;
    padding: 7px 30px;
  }
  .slider-content .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-container .swiper-text-content .text-content-body h1 {
    font-size: 26px;
  }
  .slider-content .swiper-thumbnails {
    bottom: 78px;
  }
  .light-gray-bg-color {
    padding-top: 80px;
  }
  .topics__background-lines .square {
    flex-flow: row !important;
  }
  .topics--horizontal {
    padding: 0px 10px;
  }
  .topics--slider {
    width: 90% !important;
  }
  .topics--slider .swiper-custom-buttons {
    width: 45px;
    height: 45px;
  }
  .topics--slider .swiper-custom-buttons.swiper-button-next {
    right: -23px !important;
  }
  .topics--slider .swiper-custom-buttons.swiper-button-prev {
    left: -23px !important;
  }
  .topics--slider .swiper-custom-buttons:after {
    width: 30px;
    height: 30px;
    font-size: 20px;
    padding: 5px 11px;
  }
  .topics--slider__shape-title {
    padding: 10px 7px 10px 0px;
    font-size: 20px;
  }
  .topics--text-content {
    padding: 30px 10px;
  }
  .topics--text-content__text {
    margin-bottom: 60px;
    font-size: 20px;
  }
  .topics--text-content__text b {
    font-size: 24px;
  }
  .topics--text-content ol li span {
    font-size: 20px;
  }
  .topics__items--rounded {
    flex: 0 0 28%;
    width: 28%;
    margin-right: 8%;
  }
  .topics__items--rounded:nth-child(3n) {
    margin-right: 0px;
  }
  .topics__items--rounded:nth-child(4n) {
    margin-right: 8%;
  }
  .topics__items--rounded .rounded-image {
    width: 100%;
    height: auto;
    padding: 10px 10px;
  }
  .topics__background-lines::after {
    width: 100%;
  }
  .topics__background-lines::before {
    width: 100%;
  }
  .topics .square {
    flex-flow: column;
    margin-bottom: 50px;
  }
  .topics .square:nth-child(2n) h2 {
    padding: 11px 0px 13px 20px;
  }
  .topics .square:nth-child(2n) p {
    padding: 5px 25px 0px 0px;
  }
  .topics .square__items--image {
    position: relative;
    z-index: 9999;
  }
  .topics .square__items--image img {
    width: 100%;
  }
  .topics .square__items--text-content {
    order: 2;
    width: 100%;
  }
  .topics .square__items--text-content h2 {
    background-image: inherit !important;
    height: 40px;
    padding: 11px 0px 13px 20px;
    font-size: 18px;
    text-align: left !important;
  }
  .topics .square__items--text-content p {
    padding: 5px 25px 0px 0px;
    line-height: 24px;
    font-size: 16px;
    text-align: left !important;
  }
  .topics .square__items--text-content-lines p {
    padding-left: 20px;
    justify-content: flex-start;
    font-size: 16px;
  }
  .banner--yellow-band {
    background-image: inherit;
    background-color: #ffcb11;
    height: 100px;
  }
  .banner--yellow-band .container {
    padding: 0px 10px;
  }
  .banner--yellow-band p {
    font-size: 22px;
  }
  .banner--rounded-band {
    margin-top: 77px;
  }
  .banner--rounded-band__content {
    align-items: center;
  }
  .banner__left-content--rounded-image img {
    width: 150px;
  }
  .banner__right-content--bg-sticker .text-content {
    padding: 18px 0px 0px 18px;
    height: 90px;
  }
  .banner__right-content--bg-sticker .text-content p {
    font-size: 16px;
  }
  .banner__right-content--bg-sticker img {
    display: none;
  }
  section.all-references .reference-top-title div span {
    display: block;
    width: 100px;
    height: 50px;
    padding: 17px 0px;
    font-size: 17px;
  }
  section.all-references .reference-content {
    height: 150px;
  }
  section.all-references .reference-content .reference-img img {
    width: 80px;
  }
  section.all-references .reference-content .reference-title h2 {
    font-size: 16px;
  }
  section.all-references .reference-content .reference-type {
    font-size: 16px;
  }
  section.all-references .reference-content .reference-quantity {
    font-size: 16px;
  }
  .contact-address {
    padding: 0px 10px;
    justify-content: space-between;
  }
  .contact-address .contact-logo img {
    width: 70px;
  }
  .contact-address .address-line {
    margin: 0px 10px;
  }
  .contact-address .company-name {
    font-size: 20px;
  }
  .contact-address .company-name small {
    font-size: 18px;
  }
  .contact-address .address-details {
    font-size: 18px;
    flex: 1;
  }
  .contact-iframe {
    padding: 0px 10px;
  }
  .contact-iframe iframe {
    width: 100%;
    height: 200px;
  }
  .contact-form-wrapper {
    padding: 0px 10px;
  }
  .footer {
    margin-top: 60px;
  }
  .footer__top {
    padding: 0px 10px;
  }
  .footer__top--background img {
    width: 150px;
  }
  .footer__vertical-line {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .footer .contact-us__item--text {
    font-size: 17px;
  }
  .footer .contact-us__item--text:last-child {
    margin-top: 7px;
  }
  .footer .contact-us__item .footer__vertical-line {
    display: none;
  }
  .footer__bottom {
    padding: 0px 10px;
    margin-top: 40px;
  }
  .footer__bottom img {
    display: none;
  }
}

@media all and (max-width: 479px) {
  .container {
    width: 100%;
  }
  .header {
    padding: 0px 10px;
    position: relative;
    top: 0;
  }
  .header .container {
    align-items: center;
  }
  .header__logo a img {
    width: 200px;
  }
  .menu--main-horizontal {
    background-color: #FFFFFF;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 25px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 55px;
    z-index: 999;
  }
  .menu .close-button {
    top: -43px;
    right: 10px;
  }
  .menu__item--main {
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .menu__link--main {
    font-size: 20px;
  }
  .menu .dropdown:hover .dropdown__sub-menu {
    display: block;
  }
  .menu .dropdown__sub-menu {
    position: inherit;
    left: 0;
    transform: inherit;
    display: none;
  }
  .slider-content .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-container .swiper-text-content {
    height: 30.5%;
    padding: 2px 30px;
  }
  .slider-content .swiper-container .swiper-wrapper .swiper-slide .swiper-slide-container .swiper-text-content .text-content-body h1 {
    font-size: 19px;
  }
  .slider-content .swiper-thumbnails {
    left: 10px;
    bottom: 38px;
  }
  .light-gray-bg-color {
    padding-top: 80px;
  }
  .topics__background-lines::after, .topics__background-lines::before {
    content: none;
  }
  .topics__background-lines .square {
    flex-flow: column !important;
  }
  .topics--horizontal {
    padding: 0px 10px;
  }
  .topics--slider {
    width: 90% !important;
  }
  .topics--slider .swiper-custom-buttons {
    width: 30px;
    height: 30px;
  }
  .topics--slider .swiper-custom-buttons.swiper-button-next {
    right: -13px !important;
  }
  .topics--slider .swiper-custom-buttons.swiper-button-prev {
    left: -13px !important;
  }
  .topics--slider .swiper-custom-buttons:after {
    width: 20px;
    height: 20px;
    font-size: 16px;
    padding: 1px 6px;
  }
  .topics--slider__shape-title {
    width: 70%;
    padding: 10px 7px 10px 0px;
    font-size: 20px;
  }
  .topics--text-content {
    padding: 30px 10px;
  }
  .topics--text-content__background {
    display: none;
  }
  .topics--text-content__text {
    margin-bottom: 30px;
    font-size: 18px;
  }
  .topics--text-content__text b {
    font-size: 20px;
  }
  .topics--text-content ol li span {
    font-size: 18px;
  }
  .topics__items--rounded {
    flex: 0 0 46%;
    width: 46%;
    margin-right: 8%;
  }
  .topics__items--rounded:nth-child(2n) {
    margin-right: 0%;
  }
  .topics__items--rounded:nth-child(4n) {
    margin-right: 0%;
  }
  .topics__items--rounded .rounded-image {
    width: 100%;
    height: auto;
    padding: 10px 10px;
  }
  .topics__background-lines::after {
    width: 100%;
  }
  .topics__background-lines::before {
    width: 100%;
  }
  .topics .square {
    flex-flow: column;
    margin-bottom: 50px;
  }
  .topics .square:nth-child(2n) h2 {
    padding: 3px 0px 3px 5px !important;
  }
  .topics .square:nth-child(2n) p {
    padding: 5px 25px 0px 0px !important;
  }
  .topics .square__items--image {
    position: relative;
    z-index: 666;
  }
  .topics .square__items--image img {
    width: 100%;
  }
  .topics .square__items--text-content {
    order: 2;
    width: 100%;
  }
  .topics .square__items--text-content h2 {
    background-image: inherit !important;
    height: 40px;
    padding: 3px 0px 3px 5px !important;
    font-size: 18px;
    text-align: left !important;
  }
  .topics .square__items--text-content p {
    padding: 5px 25px 0px 0px !important;
    line-height: 24px;
    font-size: 16px !important;
    text-align: left !important;
  }
  .topics .square__items--text-content-lines p {
    padding: 8px;
    justify-content: flex-start;
    font-size: 16px;
  }
  .topics .square__items--text-content-lines p:last-child {
    background-color: #fff3c8;
  }
  .topics .square__items--text-content-lines p:first-child {
    background-color: #f4f5f5;
  }
  .banner--yellow-band {
    background-image: inherit;
    background-color: #ffcb11;
    height: 100px;
  }
  .banner--yellow-band .container {
    padding: 0px 10px;
  }
  .banner--yellow-band p {
    font-size: 22px;
  }
  .banner--rounded-band {
    margin-top: 77px;
  }
  .banner--rounded-band__content {
    align-items: center;
  }
  .banner__left-content--rounded-image img {
    width: 80px;
  }
  .banner__right-content--bg-sticker .text-content {
    padding: 0px 0px 0px 18px;
    height: 53px;
  }
  .banner__right-content--bg-sticker .text-content p {
    font-size: 15px;
  }
  .banner__right-content--bg-sticker img {
    display: none;
  }
  section.all-references .reference-top-title div span {
    display: flex;
    width: 75px;
    height: 50px;
    padding: 0;
    font-size: 15px;
    align-items: center;
    justify-content: center;
  }
  section.all-references .reference-content {
    height: 150px;
  }
  section.all-references .reference-content .reference-img img {
    width: 50px;
  }
  section.all-references .reference-content .reference-title h2 {
    font-size: 15px;
  }
  section.all-references .reference-content .reference-type {
    font-size: 15px;
  }
  section.all-references .reference-content .reference-quantity {
    font-size: 15px;
  }
  .contact-address {
    padding: 0px 10px;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .contact-address .contact-logo img {
    width: 70px;
  }
  .contact-address .address-line {
    margin: 10px 0px;
    width: 100%;
    height: 1px;
  }
  .contact-address .company-name {
    font-size: 20px;
  }
  .contact-address .company-name small {
    font-size: 18px;
  }
  .contact-address .address-details {
    font-size: 18px;
    flex: 1;
  }
  .contact-iframe {
    padding: 0px 10px;
    margin: 30px auto;
  }
  .contact-iframe iframe {
    width: 100%;
    height: 200px;
  }
  .contact-form-wrapper {
    padding: 0px 10px;
  }
  .contact-form-wrapper div.contact-form form.contact div.flex-grid {
    flex-flow: column;
  }
  .contact-form-wrapper div.contact-form form.contact div.flex-grid .input-group {
    padding: 0px !important;
    margin-bottom: 5px;
  }
  .contact-form-wrapper div.contact-form form.contact div.flex-grid .input-group:last-child {
    margin-bottom: 0px;
  }
  .contact-form-wrapper div.contact-form form.contact div.flex-grid div textarea {
    height: 100px;
    margin-bottom: 5px;
  }
  .footer {
    margin-top: 60px;
  }
  .footer__top {
    padding: 0px 10px;
  }
  .footer__top--background img {
    width: 150px;
  }
  .footer__vertical-line {
    margin-left: 20px !important;
    margin-right: 20px !important;
    display: none;
  }
  .footer .contact-us__item--text {
    font-size: 17px;
  }
  .footer .contact-us__item--text:last-child {
    margin-top: 7px;
  }
  .footer__bottom {
    padding: 0px 10px;
    margin-top: 40px;
  }
  .footer__bottom img {
    display: none;
  }
}
/*# sourceMappingURL=default.css.map */