@charset "UTF-8";

/* A reszponzív szakasz stílusai */
.my-section_google {
  width: 100%;
  height: auto;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 1s ease;
}

.my-section_google.visible {
  opacity: 1;
  transform: translateX(0);
}

.container {
  display: flex;
  height: 100%;
  padding: 0 20px;
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 10px;
	background-color: #e7e7e7;
	margin: 30px;
	text-align: left;
}

.row1 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;

}
.row2 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: left;
	padding-left: 4%;

}
.row3 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: left;
	padding-left: 4%;
	padding-bottom: 4%

}


/* Mobil nézet */
@media (max-width: 768px) {
	
.my-section_google {
  height: auto;
}	
  .container {
    flex-direction: column;
  }

  .column {
    padding: 10px 0;
  }

  .row {
    margin: 10px 0;
  }
}