
body {
  margin: 0;
  background: url("../images/assets/new_background.jpg") repeat-y;

  background: linear-gradient(to bottom, #F0FFA0 0%, 5.95238%, rgb(178, 255, 187) 11.9048%, 13.5714%, rgb(141, 255, 203) 15.2381%, 17.381%, rgb(131, 253, 216) 19.5238%, 22.1429%, rgb(144, 238, 238) 24.7619%, 27.8571%, rgb(171, 224, 255) 30.9524%, 34.2857%, rgb(197, 212, 255) 37.619%, 43.0952%, rgb(235, 197, 255) 48.5714%, 51.1905%, rgb(250, 191, 255) 53.8095%, 57.8571%, rgb(255, 185, 247) 61.9048%, 65.4762%, rgb(255, 190, 232) 69.0476%, 77.1429%, rgb(254, 209, 170) 85.2381%, 88.8095%, rgb(254, 229, 139) 92.381%, 96.1905%, rgb(250, 244, 148) 100%);
}

@font-face {
  font-family: karla_light;
  src: url("../images/assets/Karla-Light.ttf");
}

@font-face {
  font-family: karla_medium;
  src: url("../images/assets/Karla-Medium.ttf");
}

@font-face {
  font-family: karla_regular;
  src: url("../images/assets/Karla-Regular.ttf");
}

/* Layout */
.site-container {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

/* Header */
.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 75px;
  margin: 16px 0 32px;
}

.site-header ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.site-header ul li {
    padding-left: 5px;
}

/* Restrict Header width when narrow-header class is present */
@media all and (min-width: 1280px) {
  .site-header.narrow-header {
    margin-left: auto;
    margin-right: auto;
    width: 82%;
  }
}

.site-logo .logo_img {
  width: 100%;
}

.site-logo {
  max-width: 120px;
}

.site-header .menu-instagram {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.site-header .menu-instagram img {
  display: block;
}

.site-header .menu-instagram img + img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.2s;
}

.site-header .menu-instagram:hover img + img {
  opacity: 1;
}

.responsive {
  max-width: 80px;
  min-width: 55%;
  height: auto;
}

.center_img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}

.logo_img {
  display: block;
  margin-left: auto;
    margin-right: auto;
  width: 20%;
}

/* Footer */
.footer-logo {
  width: 100%;
  max-width: 90px;
  margin: 50px auto 20px;
}

.footer-logo img {
  width: 100%;
  max-width: 100%;
}

/*fbcfff fcfcbd*/

* {
  box-sizing: border-box;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 75px;
  margin-left: -20px;
  margin-right: -20px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 33.33%;
  max-width: 33.33%;
  padding: 0 20px;
}

.column img {
  margin-top: 40px;
  vertical-align: middle;
  width: 100%;
}

.intro-title {
  padding-left: 75px;
}

/* Resize Global Paddings and Fix Header Layout */
@media all and (max-width: 992px) {
  .site-logo {
    max-width: 130px;
  }

  .site-header,
  .row {
    padding: 0 30px;
  }

  .intro-title {
    padding: 0 30px;
  }
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

.column2_left {
  flex: 40%;
  max-width: 40%;
  padding: 0 20px;
  margin-left: auto;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media (max-width: 800px) {
  .column2_left {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .column2_left {
    flex: 100%;
    max-width: 100%;
  }
}

.column2_right {
  flex: 40%;
  max-width: 40%;
  padding: 0 20px;
  margin-right: auto;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media (max-width: 800px) {
  .column2_right {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .column2_right {
    flex: 100%;
    max-width: 100%;
  }
}

.col_ver_left {
  flex: 50%;
  max-width: 50%;
  padding: 0 20px;
  text-align: right;
  align-self: flex-end;
}

.col_ver_left img {
  margin-top: 40px;
  vertical-align: bottom;
  width: 80%;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .col_ver_left {
    flex: 100%;
    max-width: 100%;
    text-align: center;
  }
  .col_ver_left img {
    margin-top: 40px;
    vertical-align: bottom;
    width: 100%;
  }
}

.col_ver_mid {
  flex: 50%;
  max-width: 50%;
  padding: 0 20px;
  text-align: right;
  align-self: flex-center;
}

.col_ver_mid img {
  margin-top: 40px;
  vertical-align: bottom;
  width: 80%;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .col_ver_mid {
    flex: 100%;
    max-width: 100%;
    text-align: center;
  }
  .col_ver_mid img {
    margin-top: 40px;
    vertical-align: bottom;
    width: 100%;
  }
}

.col_ver_right {
  flex: 50%;
  max-width: 50%;
  padding: 0 20px;
  text-align: left;
  align-self: flex-end;
}

.col_ver_right img {
  margin-top: 40px;
  vertical-align: bottom;
  width: 80%;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .col_ver_right {
    flex: 100%;
    max-width: 100%;
      text-align: center;
  }
    .col_ver_right img {
  margin-top: 40px;
  vertical-align: bottom;
  width: 100%;
}
}

.col_hor {
  flex: 100%;
  max-width: 100%;
  padding: 0 20px;
  text-align: center;
}

.col_hor img {
  margin-top: 40px;
  vertical-align: top;
  width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .col_hor {
    flex: 100%;
    max-width: 100%;
  }
    
    .col_hor img {
  margin-top: 40px;
  vertical-align: top;
  width: 100%;
    margin-left: auto;
    margin-right: auto;
}
}

/**********************/
/*     Navigation     */
/**********************/
li {
  display: inline;
    font-size: 20px;
	font-family: "karla_light";
    color: #f390ff;
}
li a{
  display: inline;
    font-size: 20px;
	font-family: "karla_light";
    color: #f390ff;
}


/**********************/
/*     Text           */
/**********************/




body, p {
	color: #8a87ff;
    font-size: 14px;
	font-family: "karla_light";
}

h1 {
	color: #8a87ff;
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 3.25rem;
	letter-spacing: -0.2px;
}

h2 {
	color: #8a87ff;
	font-weight: 700;
	font-size: 2.125rem;
	line-height: 2.625rem;
	letter-spacing: -0.2px;
}

h3 {
	color: #8a87ff;
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 2.25rem;
	letter-spacing: -0.2px;
}

h4 {
	color: #8a87ff;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 2rem;
	letter-spacing: -0.2px;	
}

h5 {
	color: #8a87ff;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.625rem;
}

h6 {
	color: #8a87ff;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.375rem;
}


a {
	color: #8a87ff;
    text-decoration-line: none;
}

a:hover {
	color: #8a87ff;
    text-decoration-line: none;
}



/**********************/
/*     overlay           */
/**********************/



.container {
  position: relative;
  width: 100%;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #fbcfff;
}

.container:hover .overlay {
  opacity: 0.65;
}

.text {
  color: #606060;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.about-page {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}

.body-img img {
  max-width: 100%;
  height: auto;
}

/* Responsiveness */

@media all and (max-width: 767px) {
  body {
    background-size: auto;
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-header > ul {
    width: 100%;
    padding: 0;
    text-align: center;
    justify-content: center;
  }

  .column img {
      margin-top: 15px;
  }

  .site-header,
  .row,
  .about-page,
  .intro-title {
    padding: 0 20px;
  }
}