/* 
   Description: Master CSS file
   "Landing Page Mini Gold"
   Tukuemas.com
*/

/*****************************************
Colors:
- Backgrounds - turquoise #B37E10
- Backgrounds - blue #0079f9
- Backgrounds - light gray #f7fcfd
- Buttons, bullets, icons, links - turquoise #B37E10
- Cards border, inputs border - light gray #c4d8dc
- Text headers, navbar links - black #393939
- Text body - black #626262
******************************************/

/******************************/
/*     General Styles     */
/******************************/
body,
html {
  width: 100%;
  height: 100%;
}

body,
p {
  color: #626262;
  font: 400 0.875rem/1.375rem "Raleway", sans-serif;
}

.p-large {
  font: 400 1rem/1.5rem "Raleway", sans-serif;
}

.p-small {
  font: 400 0.75rem/1.25rem "Raleway", sans-serif;
}

.p-heading {
  margin-bottom: 3.875rem;
}

.li-space-lg li {
  margin-bottom: 0.25rem;
}

.indent {
  padding-left: 1.25rem;
}

h1 {
  color: #393939;
  font: 700 3rem/3.5rem "Raleway", sans-serif;
}

h2 {
  color: #393939;
  font: 700 2.25rem/2.75rem "Raleway", sans-serif;
}

h3 {
  color: #393939;
  font: 700 1.75rem/2rem "Raleway", sans-serif;
}

h4 {
  color: #393939;
  font: 700 1.375rem/1.875rem "Raleway", sans-serif;
}

h5 {
  color: #393939;
  font: 700 1.125rem/1.625rem "Raleway", sans-serif;
}

h6 {
  color: #393939;
  font: 700 1rem/1.5rem "Raleway", sans-serif;
}

a {
  color: #626262;
  text-decoration: underline;
}

a:hover {
  color: #626262;
  text-decoration: underline;
}

a.turquoise {
  /* color: #B37E10; */
  color: #b37e10;
}

a.white {
  color: #fff;
}

.testimonial-text {
  font: italic 400 1rem/1.5rem "Raleway", sans-serif;
}

.testimonial-author {
  font: 700 1rem/1.5rem "Raleway", sans-serif;
}

.turquoise {
  color: #b37e10;
}

.btn-solid-reg {
  display: inline-block;
  padding: 1.1875rem 2.125rem 1.1875rem 2.125rem;
  border: 0.125rem solid #b37e10;
  border-radius: 2rem;
  background-color: #b37e10;
  color: #fff;
  font: 700 0.75rem/0 "Raleway", sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-solid-reg:hover {
  background-color: transparent;
  color: #b37e10;
  text-decoration: none;
}

.btn-solid-lg {
  display: inline-block;
  padding: 1.375rem 2.625rem 1.375rem 2.625rem;
  border: 0.125rem solid #b37e10;
  border-radius: 2rem;
  background-color: #b37e10;
  color: #fff;
  font: 700 0.75rem/0 "Raleway", sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-solid-lg:hover {
  background-color: transparent;
  color: #b37e10;
  text-decoration: none;
}

.btn-outline-reg {
  display: inline-block;
  padding: 1.1875rem 2.125rem 1.1875rem 2.125rem;
  border: 0.125rem solid #b37e10;
  border-radius: 2rem;
  background-color: transparent;
  color: #b37e10;
  font: 700 0.75rem/0 "Raleway", sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-reg:hover {
  background-color: #b37e10;
  color: #fff;
  text-decoration: none;
}

.btn-outline-lg {
  display: inline-block;
  padding: 1.375rem 2.625rem 1.375rem 2.625rem;
  border: 0.125rem solid #b37e10;
  border-radius: 2rem;
  background-color: transparent;
  color: #b37e10;
  font: 700 0.75rem/0 "Raleway", sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-lg:hover {
  background-color: #b37e10;
  color: #fff;
  text-decoration: none;
}

.btn-outline-sm {
  display: inline-block;
  padding: 1rem 1.625rem 0.875rem 1.625rem;
  border: 0.125rem solid #b37e10;
  border-radius: 2rem;
  background-color: transparent;
  color: #b37e10;
  font: 700 0.625rem/0 "Raleway", sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-sm:hover {
  background-color: #b37e10;
  color: #fff;
  text-decoration: none;
}

/*************************/
/*     Preloader     */
/*************************/
.spinner-wrapper {
  position: fixed;
  z-index: 999999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
}

.spinner {
  position: absolute;
  top: 50%;
  /* centers the loading animation vertically one the screen */
  left: 50%;
  /* centers the loading animation horizontally one the screen */
  width: 3.75rem;
  height: 1.25rem;
  margin: -0.625rem 0 0 -1.875rem;
  /* is width and height divided by two */
  text-align: center;
}

.spinner > div {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  background-color: #d1b410;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

/**************************/
/*     line-header     */
/**************************/

.line-header {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
}

.line-header::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #b37e10;
  bottom: 0;
  left: calc(50% - 25px);
}

.line-header h3 {
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

/**************************/
/*    Navigation     */
/**************************/
.navbar-custom {
  background-color: #fff;
  box-shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.1);
  font: 600 0.875rem/0.875rem "Raleway", sans-serif;
  transition: all 0.2s;
}

.navbar-custom .navbar-brand.logo-image img {
  /* width: 5%; */
  /* width: 7.4375rem;
	height: 2rem; */
  width: 2.5rem;
  height: 2.5rem;
}

.navbar-custom .navbar-brand.logo-text {
  font: 600 2rem/1.5rem "Raleway", sans-serif;
  color: #393939;
  text-decoration: none;
}

.navbar-custom .navbar-nav {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

.navbar-custom .nav-item .nav-link {
  padding: 0.625rem 0.75rem 0.625rem 0.75rem;
  color: #393939;
  text-decoration: none;
  transition: all 0.2s ease;
}

.navbar-custom .nav-item .nav-link:hover,
.navbar-custom .nav-item .nav-link.active {
  color: #b37e10;
}

.navbar-custom .social-icons {
  display: none;
}

.navbar-custom .navbar-toggler {
  border: none;
  color: #393939;
  font-size: 2rem;
}

.navbar-custom
  button[aria-expanded="false"]
  .navbar-toggler-awesome.fas.fa-times {
  display: none;
}

.navbar-custom
  button[aria-expanded="false"]
  .navbar-toggler-awesome.fas.fa-bars {
  display: inline-block;
}

.navbar-custom
  button[aria-expanded="true"]
  .navbar-toggler-awesome.fas.fa-bars {
  display: none;
}

.navbar-custom
  button[aria-expanded="true"]
  .navbar-toggler-awesome.fas.fa-times {
  display: inline-block;
  margin-right: 0.125rem;
}

/*********************/
/*    Header     */
/*********************/
.header {
  background-color: #fff;
}

.header .header-content {
  padding-top: 8rem;
  padding-bottom: 4rem;
  text-align: center;
}

.header .text-container {
  margin-bottom: 4rem;
}

.header h1 {
  margin-bottom: 1.125rem;
  font-size: 2.5rem;
  line-height: 3.125rem;
}

.header .p-large {
  margin-bottom: 1.875rem;
}

#awal {
  opacity: 0;
  transform: translate(-50px, 0);
  transition: 2s;
}

#awal.aMuncul {
  opacity: 1;
  transform: translate(0, 0);
}

/******************************/
/*     nabung     */
/******************************/

.nabung {
  text-align: center;
  background: url("../images/bg_2.jpg") center no-repeat;
  background-size: cover;
}

.card {
  width: 18 rem;
  padding: 0.5rem 0.5rem 0.2rem 0.5rem;
  background: white;
  margin: 0.6rem;
  border-radius: 0.3rem;
  box-shadow: 0 0 0.5rem grey;
}

.card > img {
  height: 5rem;
}

.nabung .card {
  opacity: 0;
  transform: translate(0, -40px);
}

.nabung .card.muncul {
  opacity: 1;
  transform: translate(0, 0);
  transition: 0.5s;
}

/******************************/
/*     simulasi   */
/******************************/
#simulasi .tampil {
  opacity: 0;
  transform: scale(0.6);
}

#simulasi .tampil.sMuncul {
  opacity: 1;
  transform: translate(0, 0);
  transition: 0.5s;
}
/******************************/
/*     About    */
/******************************/
#About .tampil {
  opacity: 0;
  transform: scale(0.6);
}

#About .tampil.aMuncul {
  opacity: 1;
  transform: translate(0, 0);
  transition: 0.5s;
}

/******************************/
/*     Produk     */
/******************************/
#Produk {
  background: url(../images/back_produk.jpg) center center no-repeat;
  overflow: hidden;
  background-attachment: fixed;
}

#Produk .card {
  opacity: 0;
  transform: translate(0, -40px);
}

#Produk .card.pMuncul {
  opacity: 1;
  transform: translate(0, 0);
  transition: 0.5s;
}

/******************************/
/*     Update Harga    */
/******************************/

/* .limiter {
  width: 100%;
  margin: 0 auto;
} */

#update_harga {
  background: #252525;
}

.container-table100 {
  width: 100%;
  /* min-height: 100vh; */

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 33px 30px;
}

.wrap-table100 {
  width: 650px;
  border-radius: 10px;
  overflow: hidden;
}

.table {
  width: 100%;
  display: table;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .table {
    display: block;
  }
}

.row.update,
.row.header {
  display: table-row;
  background: #fff;
}

.row.header {
  color: #ffffff;
  background: #b37e10;
}

@media screen and (max-width: 768px) {
  .row.update {
    display: block;
  }

  .row.header {
    padding: 0;
    height: 0px;
  }

  .row.header .cell {
    display: none;
  }

  .row.update .cell:before {
    font-family: Poppins-Bold;
    font-size: 12px;
    color: #808080;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: unset !important;

    margin-bottom: 13px;
    content: attr(data-title);
    min-width: 98px;
    display: block;
  }
}

.cell {
  display: table-cell;
}

@media screen and (max-width: 768px) {
  .cell {
    display: block;
  }
}

.row.update .cell {
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #666666;
  line-height: 1.2;
  font-weight: unset !important;

  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f2f2f2;
}

.row.header .cell {
  font-family: Poppins-Regular;
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
  font-weight: unset !important;

  padding-top: 19px;
  padding-bottom: 19px;
}

.row.update .cell:nth-child(1) {
  width: 360px;
  padding-left: 40px;
}

.row.header .cell:nth-child(1) {
  width: 360px;
  padding-left: 40px;
}

.row.update .cell:nth-child(2) {
  width: 160px;
}

.row.update .cell:nth-child(3) {
  width: 250px;
}

.table,
.row.header,
.row.update {
  width: 100% !important;
}

.row.update:hover {
  background-color: #f3c261;
  cursor: pointer;
}

@media (max-width: 768px) {
  .row.update {
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 18px;
    padding-top: 30px;
    padding-right: 15px;
    margin: 0;
  }

  .row.update .cell {
    border: none;
    padding-left: 30px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .row.update .cell:nth-child(1) {
    padding-left: 30px;
  }

  .row.update .cell {
    font-family: Poppins-Regular;
    font-size: 18px;
    color: #555555;
    line-height: 1.2;
    font-weight: unset !important;
  }

  .table,
  .row.header,
  .row.update,
  .cell {
    width: 100% !important;
  }
}

#update_harga .table {
  opacity: 0;
  transform: translate(0, -40px);
}

#update_harga .table.hMuncul {
  opacity: 1;
  transform: translate(0, 0);
  transition: 0.5s;
}

#update_harga .logo {
  opacity: 0;
  transform: scale(0.6);
}

#update_harga .logo.lgMuncul {
  opacity: 1;
  transform: translate(0, 0);
  transition: 0.5s;
}

/************************/
/*     Benefit    */
/************************/

/* #Benefit .col-md-6 .card img {
  height: max-content;
  max-height: -moz-max-content;
} */
#Benefit .col-md-6 .card img {
  height: fit-content;
  height: -moz-fit-content;
}

#Benefit .card {
  opacity: 0;
  transform: translate(0, -40px);
}

#Benefit .card.bMuncul {
  opacity: 1;
  transform: translate(0, 0);
  transition: 0.5s;
}

/************************/
/*     card    */
/************************/
.cards-1 {
  padding-top: 4rem;
  padding-bottom: 1.625rem;
  text-align: center;
}

.cards-1 .card {
  max-width: 21rem;
  margin-right: auto;
  margin-bottom: 4.5rem;
  margin-left: auto;
  padding: 3.25rem 2rem 2rem 2rem;
  border: 1px solid #b37e10;
  border-radius: 0.5rem;
  background: transparent;
}

.cards-1 .card-image {
  width: 6rem;
  height: 6rem;
  margin-right: auto;
  margin-bottom: 2rem;
  margin-left: auto;
}

.cards-1 .card-title {
  margin-bottom: 0.875rem;
}

.cards-1 .card-body {
  padding: 0;
}

/*************************/
/*      Copyright     */
/*************************/
.copyright {
  padding-top: 1rem;
  padding-bottom: 0.375rem;
  text-align: center;
}

.copyright .p-small {
  padding-top: 1.375rem;
  /* border-top: 1px solid #6e5555; */
  opacity: 0.7;
}

/**********************************/
/*  Back To Top Button ,join,beli    */
/**********************************/

.back_top {
  display: none;
  /* position: fixed;
  bottom: 2rem;
  right: 2rem; */
  text-decoration: none;
  width: 5rem;
  padding: 0.5rem 0;
  text-align: center;
  background: #b37e10;
  border-radius: 0.3rem;
  color: rgb(255, 255, 255);
  font-weight: bolder;
  font-size: 0.8rem;
  cursor: pointer;
  margin: 0 0.25rem;
}

.button-fix {
  position: fixed;
  bottom: 2rem;
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  width: 100%;
  /* align-items: center; */
}

.fix_bottom {
  display: none;
  /* position: fixed; */
  /* right: 2rem; */
  text-align: center;
  text-decoration: none;
  color: rgb(255, 255, 255);
  padding: 0.5rem 0;
  border-radius: 0.3rem;
  border: #b37e10;
  background: linear-gradient(to right, #b37e10, #f7b733);
  width: 5rem;
  margin: 0 0.5rem;
}

/******************************/
/*     kenapa harus beli di toko    */
/******************************/
.kelebihan .icon-box {
  text-align: center;
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.kelebihan .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  border: 1px solid #b37e10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #b37e10;
}

.kelebihan .icon-box .icon i {
  font-size: 28px;
}

.kelebihan .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.kelebihan .icon-box h4 a {
  color: #36343a;
  transition: ease-in-out 0.3s;
}

.kelebihan .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.kelebihan .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.kelebihan .icon-box:hover h4 a {
  color: #b37e10;
}

.kelebihan .icon-box:hover .icon {
  color: #fff;
  background: #b37e10;
}

#kelebihan .up {
  opacity: 0;
  transform: translate(0, -40px);
}

#kelebihan .up.upMuncul {
  opacity: 1;
  transform: translate(0, 0);
  transition: 0.5s;
}

#kelebihan .gambar {
  opacity: 0;
  transform: scale(0.6);
}

#kelebihan .gambar.gMuncul {
  opacity: 1;
  transform: translate(0, 0);
  transition: 0.5s;
}

/******************************/
/*     youtube   */
/******************************/
#youtube .yt {
  opacity: 0;
  transform: translate(0, -40px);
}

#youtube .yt.yMuncul {
  opacity: 1;
  transform: translate(0, 0);
  transition: 0.5s;
}

/******************************/
/*     Testimoni    */
/******************************/

#Testimoni {
  padding: 60px;
  background: url(../images//bg_produk.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#Testimoni:before {
  content: "";
  background: rgba(6, 12, 34, 0.9);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

@media (min-width: 1024px) {
  #Testimoni {
    background-attachment: fixed;
  }
}

#Testimoni .line-header h3,
#Testimoni p {
  color: #fff;
}

/* @media (min-width: 1024px) {
	#Produk {
		background-attachment: fixed;
	}
} */

/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/
#faq {
  padding: 60px 0;
}

#faq #faq-list {
  padding: 0;
  list-style: none;
}

#faq #faq-list li {
  border-bottom: 1px solid #ddd;
}

#faq #faq-list a {
  padding: 18px 0;
  display: block;
  position: relative;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding-right: 20px;
}

#faq #faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 16px;
}

#faq #faq-list p {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  #faq #faq-list a {
    font-size: 18px;
  }

  #faq #faq-list i {
    top: 13px;
  }
}

a:hover,
a:active,
a:focus {
  outline: none;
  color: #b37e10;
  text-decoration: none;
}

a {
  color: #b37e10;
}

#faq #faq-list a.collapse {
  color: #b37e10;
}

#faq #faq-list a.collapsed {
  color: #000;
}

#faq #faq-list a.collapsed i::before {
  content: "\f055" !important;
}

#faq .container {
  opacity: 0;
  transform: scale(0.6);
}

#faq .container.fMuncul {
  opacity: 1;
  transform: translate(0, 0);
  transition: 0.5s;
}

/*****************************/
/*     Media Queries     */
/*****************************/
/* Min-width width 768px */
@media (min-width: 768px) {
  /* General Styles */
  .p-heading {
    width: 85%;
    margin-right: auto;
    margin-left: auto;
  }

  /* end of general styles */

  /* Header */
  .header .header-content {
    padding-top: 10.5rem;
  }

  .header h1 {
    font-size: 3rem;
    line-height: 3.5rem;
  }

  /* end of header */
}

/* end of min-width width 768px */

/* Min-width width 992px */
@media (min-width: 992px) {
  /* Navigation */
  .navbar-custom {
    padding: 2.125rem 1.5rem 2.125rem 2rem;
    box-shadow: none;
    background: transparent;
  }

  .navbar-custom .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
  }

  .navbar-custom .nav-item .nav-link {
    padding: 0.25rem 0.75rem 0.25rem 0.75rem;
    color: #fff;
    opacity: 0.8;
  }

  .navbar-custom .nav-item .nav-link:hover,
  .navbar-custom .nav-item .nav-link.active {
    color: #fff;
    opacity: 1;
  }

  .navbar-custom.top-nav-collapse {
    padding: 0.5rem 1.5rem 0.5rem 2rem;
    box-shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }

  .navbar-custom.top-nav-collapse .nav-item .nav-link {
    color: #393939;
    opacity: 1;
  }

  .navbar-custom.top-nav-collapse .nav-item .nav-link:hover,
  .navbar-custom.top-nav-collapse .nav-item .nav-link.active {
    color: #b37e10;
  }

  .navbar-custom .social-icons {
    display: block;
    margin-left: 0.5rem;
  }

  .navbar-custom .fa-stack {
    margin-bottom: 0.1875rem;
    margin-left: 0.25rem;
    font-size: 0.75rem;
  }

  .navbar-custom .fa-stack-2x {
    color: #b37e10;
    transition: all 0.2s ease;
  }

  .navbar-custom .fa-stack-1x {
    color: #fff;
    transition: all 0.2s ease;
  }

  .navbar-custom .fa-stack:hover .fa-stack-2x {
    color: #fff;
  }

  .navbar-custom .fa-stack:hover .fa-stack-1x {
    color: #b37e10;
  }

  .navbar-custom.top-nav-collapse .fa-stack-2x {
    color: #b37e10;
  }

  .navbar-custom.top-nav-collapse .fa-stack-1x {
    color: #fff;
  }

  .navbar-custom.top-nav-collapse .fa-stack:hover .fa-stack-2x {
    color: #b37e10;
  }

  .navbar-custom.top-nav-collapse .fa-stack:hover .fa-stack-1x {
    color: #fff;
  }

  /* end of navigation */

  /* General Styles */
  .p-heading {
    width: 65%;
  }

  /* end of general styles */

  /* Header */
  .header {
    background: url("../images/header_bg.jpg") center center no-repeat;
    background-size: cover;
  }

  .header .header-content {
    padding-top: 11.5rem;
    text-align: left;
  }

  .header .text-container {
    margin-top: 3rem;
    margin-bottom: 0;
  }

  /* end of header */

  /* kelebihan */
  .cards-1 .card {
    display: inline-block;
    max-width: 17.125rem;
    vertical-align: top;
  }

  .cards-1 .col-lg-12 div.card:nth-child(3n + 2) {
    margin-right: 2rem;
    margin-left: 2rem;
  }

  /* end of kelebihan */
}

/* end of min-width width 992px */

/* Min-width width 1200px */
@media (min-width: 1200px) {
  /* Navigation */
  .navbar-custom {
    padding: 2.125rem 5rem 2.125rem 5rem;
  }

  .navbar-custom.top-nav-collapse {
    padding: 0.5rem 5rem 0.5rem 5rem;
  }

  /* end of navigation */

  /* General Styles */
  .p-heading {
    width: 55%;
  }

  /* end of general styles */

  /* Header */
  .header .header-content {
    padding-top: 12.5rem;
  }

  .header .text-container {
    margin-top: 5.375rem;
    margin-left: 1rem;
    margin-right: 2rem;
  }

  .header .image-container {
    margin-left: 2rem;
    margin-right: 1rem;
  }

  /* end of header */
}

/* end of min-width width 1200px */

/* animate */
