/* importing font Montserrat Thin 100 / 200 / 300 / Regular 400 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@100;400&family=Montserrat:wght@100;200;300;400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

:root {
  --highlight: #e1fa03;
  --highlight-2: #f2ff78;
  --black: #14000a;
}

body {
  font-family: "Montserrat", "Montserrat Alternates", sans-serif;
  color: var(--black);
}

#navbar {
  display: inline-flex;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 90px;
  width: 100%;
  position: fixed;
  background-color: var(--highlight);
  justify-content: space-between;
  color: var(--black);
  z-index: 10;
  transition: all 0.3s ease-in;
}

#navbar ul {
  vertical-align: middle;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#navbar li {
  position: relative;
  display: inline-block;
  padding: 20px;
  font-size: 15px;
  font-weight: 200;
  list-style: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

#navbar li:hover .dropdown {
  visibility: visible;
}

#navbar a {
  color: var(--black);
  text-decoration: none;
}

#navbar li:hover {
  font-weight: 400;
}

#logo {
  position: absolute;
  float: right;
  top: 10px;
  right: 20px;
  z-index: 30;
  display: flex;
}

#logo img {
  width: 70px;
  transition: all 0.3s ease;
}

#logo:hover img {
  transform: scale(1.1);
}

#comment-icon, #comment-text {
  cursor: pointer;
}

#menu-close, #menu-icon {
  display: none;
  cursor: pointer;
}

#menu-icon {/*hamburger icon*/
  font-size: 30px;
    z-index: 999;
    position: absolute;
    padding: 30px 0 0 30px;
    background-color: unset;
    color: var(--highlight);
    border: none;
  }

.dropdown {
  visibility: hidden;
  position: absolute;
  align-items: center;
  transition: all 0.1s ease;
}
.one {
  padding-top: 230px;
}
.one li {
  width: 210px;
}
.two {
  padding-top: 270px;
}
.two li {
  width: 160px;
}
.dropdown ul {
  display: block;
}
.dropdown li {
  position: absolute;
  background-color: white;
  margin: -10px;
}
.dropdown li:hover {
  z-index: 20;
}
.dropdown a {
  padding: 8px;
  margin-top: -8px;
}

.dropdown a:hover {
  background-color: var(--highlight);
}

@media (max-width: 960px) {
  #navbar li {
    padding: 15px;
    font-size: 12px;
  }
  #logo img {
    width: 60px;
  }
  .one {
    padding-top: 200px;
  }
  .one li {
    width: 160px;
  }
  .two {
    padding-top: 235px;
  }
  .two li {
    width: 120px;
  }
  .dropdown li {
    margin: -5px;
  }
  .dropdown a {
    padding: 5px;
  }
}
@media (max-width: 760px) {
  #navbar li {
    padding: 10px;
    font-size: 12px;
  }
  #logo img {
    width: 50px;
  }

  .one {
    padding-top: 170px;
  }
  .one li {
    width: 145px;
  }
  .two {
    padding-top: 200px;
  }
  .two li {
    width: 110px;
  }
  .dropdown li {
    margin: -2px;
  }
  .dropdown a {
    padding: 4px;
  }
}
@media (max-width: 670px) {
  #navbar li {
    padding: 8px;
    font-size: 12px;
  }
  #logo img {
    width: 45px;
  }
  .one {
    padding-top: 150px;
  }
  .one li {
    width: 145px;
  }
  .two {
    padding-top: 176px;
  }
}

@media (max-width: 630px) {

  #navbar {
    top: 0 !important;
    display: none;
    padding-left: 20px;
    padding-right: unset;
    height: 100%;
    width: 50%;
    
  }

  #navbar ul {
    vertical-align: unset;
    position: absolute;
    top: 100px;
    -ms-transform: unset;
    transform: unset;
  }
  
  #navbar ul li a {
    position: relative;
    -ms-transform: unset;
    transform: unset;
  }
  #navbar li {
    position: relative;
    display: block;
    padding: 10px;
    font-size: 13px;
  }
  #navbar li:hover .dropdown{
    visibility: visible;
  }
  .dropdown ul li{
   position: absolute;
    top: -200px;
  }
  .dropdown ul {
    visibility: hidden;
  }

  .one {
    padding-top: 0;
  }
  .one li {
    top: -100px;
    width: 160px;
    left: 100px;
  }
  .two {
    padding-top: 0;
  }
  .two li {
    top: -100px;
    width: 130px;
    left: 100px;
  }

  #menu-close { /*close icon*/
    display: block;
    background-color: unset;
    border: none;
    z-index: 999;
    font-size: 30px;
    color: var(--black);
    position: absolute;
    top: 30px;
    left: 30px;
  }
 #menu-icon {/*hamburger icon*/
    display: block;
  }
}

/* FOOTER */

#footer {
  display: flex;
  width: 100%;
  position: fixed;
  right: 0;
  bottom: 0;
  padding: 10px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  align-items: center;
  background-color: var(--highlight-2);
  border: none;
  justify-content: space-between;
  color: var(--black);
  z-index: 10;
  transition: all 1s ease;
}

#linkedin {
  fill: var(--black);
  opacity: 40%;
  transition: all 0.3s ease;
}

#linkedin:hover {
  fill: #0072b1;
  opacity: 100%;
}

#instagram:hover {
  fill: #e4405f;
  opacity: 100%;
}

#facebook:hover {
  fill: #3b5998;
  opacity: 100%;
}

#instagram {
  fill: var(--black);
  opacity: 40%;
  transition: all 0.3s ease;
}

#facebook {
  fill: var(--black);
  opacity: 40%;
  transition: all 0.3s ease;
}

#footer a {
  color: rgb(164, 217, 117);
}

#footer a:link {
  text-decoration: none;
  font-size: 14px;
}

#footer-btn {
  float: right;
  margin-right: 35px;
  justify-content: space-between;
  transition: all 0.5s ease;
}

#footer-btn a:link {
  text-decoration: none;
}

#footer svg {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  background-color: none;
  cursor: pointer;
  margin: 0 10px;
  transition: all 0.5s ease;
}

.host {
  margin-left: 10px;
}
.host img {
  width: 71px;
  filter: grayscale(1);
}

.host:hover img {
  filter: grayscale(0);
}

@media (max-width: 850px) {
  #footer {
    display: block;
    margin: 0;
    text-align: center;
    letter-spacing: 1px;
    font-size: 7 !important;
  }
  .host {
    display: none;
    visibility: hidden;
  }
  #footer-btn {
    float: none;
    margin: 0;
    margin-top: 10px;
  }

  #footer svg {
    width: 30px;
    height: 3%;
  }
}

/* CONTENT */

.container-1 {
  background-color: var(--black);
  padding-top: 90px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  display: flex;
}
.title {
  font-size: 60px;
  font-weight: 200;
}
.content-1 {
  width: 33%;
  height: auto;
  font-size: 20px;
  font-weight: 200;
  line-height: 1.7;
  color: white;
  background-color: var(--black);
}

.content-1 #comment-text {
  width: 200px;
  height: 48px;
  font-size: 20px;
  font-family: "Montserrat";
  font-weight: 200;
  border-radius: 10px;
  cursor: pointer;
  border: solid 1px var(--highlight);
  background-color: unset;
  color: var(--highlight);
  transition: all 0.3s ease;
}
.content-1 #comment-icon {
  border: none;
  color: var(--highlight);
  background-color: unset;
  font-size: 20px;
  width: auto;
  height: 30px;
  display: none;
}

.content-1 #comment-text:hover {
  border: none;
  background-color: var(--highlight);
  color: var(--black);
}

.content-2 {
  padding-top: 20px;
  margin-left: 2px;
  margin-right: 2px;
  width: 33%;
  display: flex;
}

.content-3 {
  margin-top: 20px;
  width: 33%;
  height: 600px;
  display: block;
  overflow: hidden;
  justify-content: space-between;
}

.content-4 { /* for 3 columns: brand page */
  margin-top: 20px;
  margin-left: 40px;
  width: 67%;
  height: auto;
}


/* logos animation */

@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-250px * 10))}
}

.brand {
	height: auto;
	margin: auto;
	overflow:hidden;
	height: 100%;
	width: 100%;
}

.mask {
width: 10%;
height: 220px;
background-image: linear-gradient(to right, rgba(20,0,10, 1), rgba(20,0,10,0));
position: absolute;
 z-index: 3;
}

	.brand-row-1 {
		animation: scroll 20s linear infinite;
		display: flex;
		width: calc(250px * 20); 
	}
	
	.brand-logo {
    margin: 15px;
    width: 250px;
    transition: all 0.3s ease;
	}
  .brand-logo img {
    display: flex;
    width: 80%;
    vertical-align: middle;
    margin-left: auto;
    margin-right: auto;
    
  }
  .brand-logo:hover {
    transform: scale(1.1);
    z-index: 10;
  }

  .brand-pick {
    width: 80%;
    margin: auto;
    padding: 26px 0;
    display: flex;
    justify-content: space-around;
  }

.brand-pick i {
  color: var(--highlight-2);
}

.fa-angles-left {
  animation: pulse-left 2s infinite;
}
.fa-angles-right {
  animation: pulse-right 2s infinite;
}

@keyframes pulse-right {
  0% { transform:translateX(10px);
        opacity: 1; }
  50% { transform:translateX(0);
        opacity: 0.3;}
  100% { transform:translateX(10px);
        opacity: 1; }
}

@keyframes pulse-left {
  0% { transform:translateX(-10px);
    opacity: 1; }
  50% { transform:translateX(0);
    opacity: 0.3;}
  100% { transform:translateX(-10px);
    opacity: 1; }
}

  .round-logo-btn {
    background-color: unset;
    margin: 0;
    width: 40px;
    height: 40px;
    border: solid 1px var(--highlight);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    /*transform: translate(-50%, -50%);*/
  }
  .round-logo-btn i {
    font-size: 25px;
    color: var(--highlight);
    transition: all 0.3s ease;
  }
  .round-logo-btn:hover i{
    color: var(--black);
    }
  .round-logo-btn:focus i{
    color: var(--black);
    }

  .round-logo-btn svg {
    width: 100%;
    height: auto;
    fill: var(--highlight);
    transition: all 0.3s ease;
  }
  .round-logo-btn:hover {
    background-color: var(--highlight);
    box-shadow: 0 0 20px var(--highlight);
  }

  .round-logo-btn:hover svg{
    fill: var(--black);
    }

    .round-logo-btn:focus {
      background-color: var(--highlight);
      box-shadow: 0 0 20px var(--highlight);
    }
  
    .round-logo-btn:focus svg{
      fill: var(--black);
      }

.brand-row-2 {
  /*display: inline-flex;*/
  background-color: white;
  width: 100%;
  height: auto;
  margin: auto;
  margin-bottom: 50px;
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 200;
  line-height: 1.7;
  padding-left: 15px;
  color: var(--black);
  border-radius: 5px;
  display: none;
}
.brand-row-3 {
  /*display: inline-flex;*/
  background-color: white;
  width: 100%;
  height: auto;
  margin: auto;
  margin-bottom: 50px;
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 200;
  line-height: 1.7;
  color: var(--black);
  border-radius: 5px;
  display: none;
}
.logo-display img {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}
.logo-display {
  width: 40%;
}
.logo-details {
  width: 60%;
  transition: all 0.3s ease-in;
}
.logo-details img {
  width: 100%;
  padding: 10px 10px 0 0;
}
.logo-details-2 {
  width: 100%;
  height: auto;
  transition: all 0.3s ease-in;
}
.logo-details-2 img {
  width: 100%;
  padding: 10px 10px 10px 0;
}
.brand-row-2 p {
  padding-right: 20px;
  text-align: left;
  width: 100%;
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 200;
  line-height: 1.2;
}

.brand-topics {
  border-radius: 0 0 5px 0;
  width: 100%;
  text-align: center;
  font-weight: 400;
  background-color: var(--highlight);
}


#brand-row-mailing {
  /*display: inline-flex;*/
  background-color: white;
  width: 100%;
  height: 100%;
  margin: auto;
  margin-bottom: 10px;
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 200;
  line-height: 1.7;
  color: var(--black);
  border-radius: 5px;
  overflow-x: hidden;
}
 #mailing {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease-in;
 }

 #mailing iframe {
  border: none;
  margin: 5px;
  width: 99%;
  height: 99%;
  overflow: hidden;
}
#inbox {
  display: inline;
  padding: 5px;
  width: 110px;
  border-radius: 5px 5px 0 0;
  background-color: var(--highlight-2);
  color: var(--black);
}
#inbox i {
  padding-right: 6px;
}
.inbox {
  display: inline-flex;
  border: none;
  width: 99%;
  padding: 3px;
  margin-left:2px;
  margin-top: 2px;
  border-radius: 3px;
  background-color: white;
  color: var(--black);
  cursor: pointer;
  font-size: 13px;
}
.inbox:hover {
background-color: var(--highlight-2);
}
.inbox:hover .from{
 font-weight: 400;
}
.inbox:hover .subject{
  font-weight: 400;
 }
.from {
  width: 40%;
}
.subject {
  width: 60%;
}
#inbox-container {
  height: 150px;
  border: solid 1px var(--highlight);
  border-radius: 0 5px 5px 5px;
  overflow: scroll;
  overflow-x: hidden;
}
#inbox-container::-webkit-scrollbar {
  background: black;
  width: 10px;
  border-radius: 10px;
}
 #inbox-container::-webkit-scrollbar-thumb {
  background-color: var(--highlight-2);
  border-radius: 10px;
  width: 5px;
  max-height: 8px;
 }
  
  

#ad-1 {
  
  height: 570px;
  width: 93%;
  border-radius: 20px;
  margin: 0;
  overflow: hidden;
  transition: all 1s ease;
}

#about-1, #about-2, #about-3 {
width: 100%;
height: auto;
cursor: pointer;
/* Start the shake animation and make the animation last for 0.5 seconds */
animation: shake 0.5s;
}

#about-1:hover,
#about-2:hover,
#about-3:hover {
  

  /* When the animation is finished, start again */
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

#planner-text {
  margin: 10px;
  position: absolute;
  font-weight: 200;
  text-align: center;
  color: var(--black);
  visibility: hidden;
}

#boom-1, #boom-2{
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}
#spinner-1, #spinner-2 {
  width: 50%;
}

#ad-1:hover video {
  opacity: 0;
}

#ad-1:hover #planner {
  visibility: visible;
  cursor: pointer;
  z-index: 2;
  padding: 120px 60px;
}

#ad-1:hover #planner-text {
  visibility: visible;
}

#planner {
  vertical-align: middle;
  position: absolute;
  align-self: center;
  visibility: hidden;
  transition: all 0.3s ease;
}

#ad-2,
#ad-3 {
  height: 270px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

#ad-1 {
  background-color: var(--highlight);
}

#ad-2 {
  background-color: #00a9b0; /* ws grey */
}
#ad-2:hover {
  background-color: #00a9b0;
}

#ad-3 {
  background-color: #8c2e68;
}
#ad-3:hover {
  background-color: #8c2e68;
}



#ad-2:hover #pineapple {
  margin-top: 10px;
  right: 220px;
  width: 220px;
  height: auto;
  opacity: 1;
}

#ad-2:hover video {
  opacity: 0;
  padding: 60px 0 0 200px;
}

#ad-2:hover #pineapple-text {
  opacity: 1;
}

#pineapple-text {
  position: absolute;
  padding: 20px 0 0 20px;
  font-weight: 200;
  text-align: center;
  color: var(--highlight-2);
  opacity: 0;
  transition: all 0.3s ease;
}

#video-pineapple {
  overflow: hidden;
  width: 100%;
  animation: sliding;
  animation-duration: 10s;
  animation-iteration-count: 1;
  transition: all 0.3s ease;
}

@keyframes sliding {
  0% {
    width: 100%;
  }
  50% {
    width: 200%;
  }
  100% {
    width: 100%;
  }
}

#pineapple {
  opacity: 0;
  position: absolute;
  width: 100px;
  margin-top: 5px;
  right: 40px;
  transition: all 0.3s ease;
}

@keyframes hide-show {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

#p1 {
  animation: hide-show 1s ease infinite;
}
#p2 {
  animation: hide-show 1s 0.1s ease infinite;
}
#p3 {
  animation: hide-show 1s 0.2s ease infinite;
}
#p4 {
  animation: hide-show 1s 0.3s ease infinite;
}
#p5 {
  animation: hide-show 1s 0.4s ease infinite;
}
#p6 {
  animation: hide-show 1s 0.5s ease infinite;
}
#p7 {
  animation: hide-show 3s 0.6s ease infinite;
}
#p8 {
  animation: hide-show 3s 0.7s ease infinite;
}
#p9 {
  animation: hide-show 3s 0.8s ease infinite;
}
#p10 {
  animation: hide-show 3s 0.9s ease infinite;
}
#p11 {
  animation: hide-show 3s 1s ease infinite;
}

#ad-3 {
  margin-top: 30px;
}

#marmaid {
  width: 100%;
  height: auto;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

#ad-3:hover {
  background-color: #8c2e68;
}

#ad-3:hover #marmaid {
  opacity: 0;
}

#ad-3:hover #lecrocheton {
  width: 220px;
  height: auto;
  right: 200px;
  z-index: 20;
}

#ad-3:hover #lecrocheton-text {
  opacity: 1;
}

#lecrocheton-text {
  position: absolute;
  padding: 20px 0 0 20px;
  font-weight: 200;
  text-align: center;
  color: var(--highlight-2);
  opacity: 0;
  transition: all 0.3s ease;
}

#lecrocheton {
  width: 120px;
  position: absolute;
  margin-top: 5px;
  right: 40px;
  transition: all 0.3s ease;
}

.container-2 {
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 100px;
  margin-bottom: 20px;
}

.container-2 .title {
  font-size: 40px;
  background-color: #f2ff78;
  padding: 20px;
  display: flex;
  float: right;
  margin-left: 40px;
}

.container-2 .explanation-1 {
  font-size: 15px;
  font-weight: 200;
  letter-spacing: 1.5;
  line-height: 1.8;
  color: var(--black);
  column-count: 3;
  column-gap: 60px;
}

.container-2 .explanation-1 a {
  color: #8cae3e;
}

.container-2 .explanation-2 {
  font-size: 15px;
  font-weight: 200;
  letter-spacing: 1.5;
  line-height: 1.8;
  color: #8cae3e;
}

#skills {
  padding: 3px;
  font-size: 15px;
  font-weight: 200;
  letter-spacing: 1.5;
  line-height: 1.8;
  color: var(--highlight-2);
  padding-bottom: 80px;
}

#contact-form-container {
  margin: auto;
  width: 70%;
  border-radius: 5px;
  background-color: var(--highlight);
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 100px;
}
#form-left {
  display:inline-table;
  width: 40%;
}
#form-right {
width: 60%;
float:right;
}
#form-center {
  /*display: flex;*/
  width: 100%;
  align-items: center;
  margin: auto;
  justify-content: center;
  display: inline-block;
  text-align: center;
}

#divRecaptcha {
  display: flex;
  justify-content: center;
  align-items: center;
}
#contact-form p {
  color: var(--black);
  text-align: center;
  margin: 10px;
  font-weight: 400;
}

#contact-form input {
  display: table-row;
  vertical-align: middle;
  margin: 8px;
  padding: 12px;
  border: 1px solid #ccc;
  width: 95%;
  height: 50px;
  background-color: white;
  border-radius: 5px;
  font-family: "Montserrat", "Montserrat Alternates", sans-serif;
}
#contact-form textarea {
  float: right;
  margin: 8px;
  padding: 12px;
  border: 1px solid #ccc;
  width: 95%;
  height: 315px;
  background-color: white;
  border-radius: 5px;
  resize: none;
  font-family: "Montserrat", "Montserrat Alternates", sans-serif;
}

#contact-form label {
  display: table-row;
  /*float: left;*/
  vertical-align: middle;
  padding: 12px 12px 12px 0;
  vertical-align: top;
  
  font-size: 15px;
  font-family: "Montserrat", "Montserrat Alternates", sans-serif;
  color: var(--black);
}
#contact-form button {
  margin: 5px;
  width: 180px;
  height: 45px;
  border-radius: 5px;
  border: 0;
  background-color: var(--black);
  text-align: center;
  color: white;
  text-decoration: none;
  cursor: pointer;
}



@media (max-width: 1530px) {
  .brand-row-2 {
    font-size: 15px;
    line-height: 1.5;
  }
  
  #ad-2:hover #pineapple {
    right: 180px;
    width: 180px;
    height: auto;
  }
  #ad-3:hover #lecrocheton {
    width: 180px;
    right: 180px;
    height: auto;
  }
}

@media (max-width: 1380px) {
  .brand-row-2 {
    font-size: 14px;
    line-height: 1.4;
  }
  .title {
    font-size: 50px;
  }
  .content-1 {
    font-size: 15px;
  }
  .content-1 button {
    width: 180px;
    height: 43px;
    font-size: 15px;
  }
  .content-3 {
    height: 570px;
  }
  #ad-1 {
    height: 550px;
  }
  #ad-2,
  #ad-3 {
    height: 260px;
  }
  #ad-3 {
    margin-top: 20px;
  }
  #ad-1:hover #planner {
    width: 300px;
    padding: 120px 0 0 20px !important;
  }
  #ad-2:hover #pineapple {
    right: 180px !important;
    width: 180px;
  }
  #lecrocheton {
    width: 100px;
  }
  #ad-3:hover #lecrocheton {
    right: 140px !important;
    width: 180px;
  }
}
@media (max-width: 1300px) {
  #ad-2:hover #pineapple {
    right: 150px;
    width: 150px;
  }
  #lecrocheton {
    width: 80px !important;
  }
  #ad-3:hover #lecrocheton {
    width: 180px !important;
    right: 80px;
  }
}
@media (max-width: 1200px) {
  #ad-2:hover #pineapple {
    right: 130px;
    width: 130px;
  }
  #lecrocheton {
    width: 70px !important;
  }
  #ad-3:hover #lecrocheton {
    width: 130px !important;
    right: 60px;
  }
}


@media (max-width: 1000px) {
  .brand-row-2 {
    font-size: 12px;
    line-height: 1.2;
  }

/* form */

#contact-form-container {
  width: 100%;
}

/*container 2*/

  .container-2 .explanation-1 {
    column-count: 2;
    column-gap: 40px;
    padding-bottom: 40px;
  }
  
/**/
  .title {
    font-size: 45px;
  }
  .content-1 {
    font-size: 12px;
    height: auto;
  }
  .content-1 button {
    width: 150px;
    height: 40px;
    font-size: 12px;
  }
  .content-3,
  .content-2,
  .container-2 {
    height: 450px !important;
  }
  #ad-1 {
    height: 450px !important;
  }
  #ad-2,
  #ad-3 {
    height: 210px !important;
  }
  #ad-2:hover {
    background-color: unset;
  }
  #ad-3 {
    margin-top: 20px;
  }
  #ad-1:hover #planner {
    width: 250px;
    padding: 100px 0 0 20px;
  }
  .container-1 {
    height: auto !important;
  }
  #ad-2:hover #pineapple {
    right: 100px !important;
    width: 120px !important;
  }
  #lecrocheton {
    width: 80px !important;
  }
  #ad-3:hover #lecrocheton {
    width: 180px !important;
    right: 40px !important;
  }
}
@media (max-width: 900px) {
  .brand-row-2 {
    padding-left: 5px;
  }
  .logo-display img {
    margin-top: 5px;
    margin-bottom: 5px;
    width: 25%;
    height:max-content;
  }
  .brand-row-2 p {
    padding: 5px;
    font-size: 15px;
  }

  #brand-row-mailing {
    height: 700px;
    /*height: auto;*/
  }
  .container-1 {
    display: block;
    height: auto;
  }
  .content-1 #comment-text{
    display: none;
  }
  .content-1 #comment-icon {
    display: block;
  }
  .content-1 {
    display: inline-block;
    justify-content: space-between;
    width: 100%;
  }
  .content-1 p {
    display: inline-block;
    position: relative;
    height: auto;
  }
  .content-2 {
    padding-top: 0;
    margin-top: 0;
    width: 100%;
    height: 300px !important;
  }
  .content-3 {
    width: 100%;
    height: auto !important;
  }

  .content-4 {
    position: relative;
    margin-left: 0;
    width: 100%;
    height: auto;
  }
  #ad-1, #ad-2, #ad-3 {
    width: 100%;
    height: 300px !important;
  }
  .mailing iframe{
    height: 400px;
  }

  #ad-1 {
    margin: 0;
  }
  #ad-2 {
    margin: 0;
  }
}

@media (max-width: 700px) {
 

  .brand-row-2 {
    font-size: 10px;
    line-height: 1.1;
  }
  .brand-logo {
    width: 200px;
    margin: 10px;
	}
  .brand-logo img { 
    width: 60%;
  }
  .brand-pick {
    width: 100%;
  }
  .round-logo-btn {
    width: 30px;
    height: 30px;
  }
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 10))}
  }

  /* form */
  
  #form-left {
    width: 100%;
    float: clear;
  }
  #form-right {
  width: 100%;
  float: clear;
  }
  
  #contact-form textarea {
    width: 100%;
    margin: auto;
    float: clear;
    height: 250px;
  }
  
  #contact-form button {
     width: 100px;
    height: 40px;
  }
}

@media (max-width: 610px) {
  .mask {
    height: 150px;
    }

  /*container 2*/
  
    .container-2 .title {
      font-size: 35px;
    }
    .container-2 .explanation-1 {
      font-size: 13px;
      padding-bottom: 45px;
    }
    
    .container-2 .explanation-2 {
      font-size: 13px;
    }
  }
@media (max-width: 550px) {
  .container-1 {
    display: block;
    height: auto;
  }
  .title {
    line-height: 1;
  }
  .content-1 {
    display: block;
    height: auto !important;
  }

      .container-2 .title {
        font-size: 30px;
        padding: 10px;
        display: block;
        float: unset;
        margin-left: 0;
      }
      
      .container-2 .explanation-1 {
        font-size: 12px;
        column-count: 1;
        padding-bottom: 100px;
      }
      
      .container-2 .explanation-2 {
        font-size: 12px;
      }
      .brand-logo {
        width: 150px;
        margin: 8px;
      }
      @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-150px * 10))}
      }

}