/*
==================
DESIGN GHG ENGLISH
==================
*/


:root {
  --primary-color: rgba(239, 82, 100, 1);
  --overlay-color: rgba(114, 190, 68, 0.95);
  --third-color: rgba(189, 64, 150);
  --menu-speed: 0.75s;
}

* {
  box-sizing: border-box;
}

/*
==============
Custom Styles
==============
*/


html {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
}

canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(#FFFFFF 10%, #F3F3 50%, #f8f8f8 100%);
  z-index: 0;
}

h1 {
  font-size: 50px;
  font-family: "kallisto", Helvetica, Arial, sans-serif;
  color: #EF5264;
  text-align: center;
  margin: 40px;
  letter-spacing: 3px;
}


h2 {
  font-size: 15px;
  font-family: "kallisto", Helvetica, Arial, sans-serif;
  color: var(--primary-color);
  text-align: center;
  margin: 40px;
  letter-spacing: 3px;
}

h3 {
  font-family: "Noto Sans", Arial, sans-serif;
  font-size: 18px;
}

h4 {
  display: flex;
  font-family: "Noto Sans", Arial, sans-serif;
  justify-content: flex-end;
  color: white;
  font-size: 20px;
  font-weight: normal;
  text-align: left;
  padding: 0px;
}

code {
  font-family: "kallisto", Helvetica, Arial, sans-serif;
}

a {
 text-decoration: none !important;
}

/*
==============
Navigation
==============
*/

/* Hamburger Menu */


.menu-wrap {
  position: fixed;
  top: 25px;
  right: 20px;
  z-index: 15;
}

.menu-wrap .toggler {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 15;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 15;
  width: 40px;
  height: 40px;
  padding: 7px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger Line */
.menu-wrap .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom */
.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
  content: '';
  position: absolute;
  z-index: 15;
  top: -10px;
  width: 100%;
  height: 2px;
  background: inherit;
}

/* Moves Line Down */
.menu-wrap .hamburger > div::after {
  top: 10px;
}

/* Toggler Animation */
.menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(135deg);
}

/* Turns Lines Into X */
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}

/* Rotate On Hover When Checked */
.menu-wrap .toggler:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}

/* Show Menu */
.menu-wrap .toggler:checked ~ .menu {
  visibility: visible;
}

.menu-wrap .toggler:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;
  transition:  opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
  position: fixed;
  font-family: "kallisto", Helvetica, Arial, sans-serif;
  letter-spacing: 2px;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-wrap .menu > div {
  background: var(--overlay-color);
  border-radius: 50%;
  width: 200vw;
  height: 200vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.4s ease;
}

.menu-wrap .menu > div > div {
  text-align: center;
  max-width: 100vh;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu > div > div > ul > li {
  list-style: none;
  color: #fff;
  font-size: 25px;
  padding: 6px;
}

.menu-wrap .menu > div > div > ul > li > a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
}

.menu-wrap .menu > div > div > ul > li > a:hover{
  color: var(--primary-color);
}


/* Landing Page */

#banner {
  height: 100vh;
  display: flex;
  font-family: "Noto Sans", Arial, sans-serif;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-repeat:no-repeat;
  background-attachment: fixed;
  background-blend-mode: overlay;
  color: white;
  letter-spacing: 3px;
}

#bannerh3 {
  font-size: 22px;
  padding: 20px 25px 18px 25px;
  text-align: center;
  background-color: var(--overlay-color);
  color: #fff;
  text-decoration: none;
  letter-spacing: .5px;
  z-index: 1;
}

#bannerh3:hover {
  background-color: var(--primary-color);
  color: #fff;
  transition: all .4s ease-in-out;
}

.gaby-name {
  font-size: 38px;
  font-family: "kallisto", Helvetica, Arial, sans-serif;
  font-style: medium;
  color: #EF5264;
  /*text-shadow: 2px 2px 2px #BD4096;*/
  text-align: center;
  letter-spacing: 2px;
  z-index: 1;
}

.web-new {
  font-family: "kallisto", Helvetica, Arial, sans-serif;
  font-style: medium;
  font-size: 100px;
  color: #A8387B;
  text-align: center;
  /*text-shadow: 2px 2px 2px #BD4096;*/
  z-index: 1;
}

.web-business {
  font-family: "Noto Sans", Arial, sans-serif;
  font-style: medium;
  font-size: 30px;
  color: #BD4096;
  text-align: center;
  z-index: 1;  
}

.languages {
  position:absolute;
  top: 94%;
  right: 64px;
  z-index: 1;
}

.languages a {
  font-family: "kallisto", Helvetica, Arial, sans-serif;
  font-size: 10px;
  color: #fff;
  text-align: center;
  text-decoration: none;  
}

.languages a:hover {
  color: rgba(114, 190, 68);  
}

#scroll-mouse {
  opacity: 0.5;
  z-index: 1;
}

#scroll-mouse img {
  position:absolute;
  top: 80%;
  right: 48%; 
}

.wobble-hor-bottom {
	-webkit-animation: wobble-hor-bottom 3.9s both;
          animation: wobble-hor-bottom 3.9s both;
          
    -webkit-animation-iteration-count: infinite;
        	animation-iteration-count: infinite;
}

@-webkit-keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
            transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
            transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
            transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
            transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
            transform: translateX(-6px) rotate(-1.2deg);
  }
}
@keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
            transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
            transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
            transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
            transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
            transform: translateX(-6px) rotate(-1.2deg);
  }
}



#scroll-mouse h5 {
  position: absolute;
  top: 82.5%;
  right: 47.7%;
  font-size: 12px;
  color: #fff;
}


/* Geometric Icons */

.rotate-center {
	-webkit-animation: rotate-center 3.9s ease-in-out both;
          animation: rotate-center 3.9s ease-in-out both;

  -webkit-animation-iteration-count: infinite;
        	animation-iteration-count: infinite;
	
}

@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.heartbeat {
	-webkit-animation: heartbeat 1.5s ease-in-out infinite both;
	        animation: heartbeat 1.5s ease-in-out infinite both;
}

@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}


.container1 {
  position:absolute;
  top:68%;
  right:85%;
  z-index: 1;
}

.container3 {
  position:absolute;
  top:18%;
  right:80%;
  z-index: 1;
}

.container7 {
  position:absolute;
  top:85%;
  right:60%;
  z-index: 1;
}

.container15 {
  position:absolute;
  top:35%;
  right:80%;
  z-index: 1;
}

.container17 {
  position:absolute;
  top:15%;
  right:20%;
  transform: rotate(40deg);
  z-index: 1;
}

.container18 {
  position:absolute;
  top:28%;
  right:69%;
  transform: rotate(45deg);
  z-index: 1;
}

.container-square1 {
  position:absolute;
  top:15%;
  right:50%;
  transform: rotate(60deg);
  z-index: 1;
}

.container-square4 {
  position:absolute;
  top:40%;
  right:23%;
  transform: rotate(95deg);
  z-index: 1;
}

.container-square7 {
  position:absolute;
  top:70%;
  right:70%;
  transform: rotate(15deg);
  z-index: 1;
}

.container-square9 {
  position:absolute;
  top:88%;
  right:80%;
  z-index: 1;
}

.container-square10 {
  position:absolute;
  top:20%;
  right:30%;
  transform: rotate(45deg);
  z-index: 1;
}

.container-square11 {
  position:absolute;
  top:75%;
  right:32%;
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  transform: rotate(20deg);
  z-index: 1;
}

.container-square12 {
  position:absolute;
  top:55%;
  right:18%;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  transform: rotate(20deg);
  z-index: 1;
}



/***************************my work************************************************/
/* Bento Grid Styles */
.bento-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
}

.bento-item {
    position: relative;
    background: #f8f8f8;
    /*border-radius: 12px;*/
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: left;
    transition: transform 0.3s ease;
}

.bento-item:hover {
    transform: translateY(-5px);
}

/* Clickable full-area link */
.bento-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3; /* Ensures link is above the image */
}

/* Ensure the image fills the entire bento-item */
.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Translucent overlay */
.bento-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease-in-out;
    z-index: 2; /* Ensures overlay is above the image */
}

.bento-item:hover::before {
    opacity: 0; /* Removes overlay on hover */
}

/* Text content styling */
.bento-content {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 4; /* Above overlay */
    text-align: left;
}

.bento-content h3,
.bento-content p {
    margin: 5px 0;
    color: white;
    transition: opacity 0.3s ease;
    filter: drop-shadow(1px 1px 3px #5B1F47);
}

/* Hide text & arrow on hover */
.bento-item:hover .bento-content h3,
.bento-item:hover .bento-content p,
.bento-item:hover .bento-content .arrow {
    opacity: 0;
}

/* Text styles */
.bento-content h3 {
    font-family: "Noto Sans", Arial, sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
}

.bento-content p {
    font-family: "Noto Sans", Arial, sans-serif;
    font-size: 12px;
}

/* Arrow styling */
.arrow {
    position: absolute;
    top: 10px;
    right: -20px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    z-index: 4;
}

/* Bento Box Sizes */
.large {
    grid-column: span 2;
    grid-row: span 2;
}

.medium {
    grid-column: span 2;
}

.small {
    grid-column: span 1;
}

#my-work {
    padding: 40px;
}

#my-work h4 {
    display: flex;
    font-family: "Noto Sans", Arial, sans-serif;
    justify-content: center;
    color: #292929;
    font-size: 35px;
    text-align: center;
    padding: 10px 300px;
}


/************************** Services *************************/

#services {
  height: 100%;
  width: 100%;
  padding: 50px 50px 150px 50px;
  background: #FAF0F6;
} 

#services h4 {
  display: flex;
  font-family: "Noto Sans", Arial, sans-serif;
  justify-content: center;
  color: #292929;
  font-size: 35px;
  text-align: center;
  padding: 10px 300px;
}

#services h3 {
  font-size: 35px;
  font-family: "kallisto", Helvetica, Arial, sans-serif;
  color: var(--primary-color);
  letter-spacing: 1px;
}

#services h2 {
  font-family: "kallisto", Helvetica, Arial, sans-serif;
  margin-top: 70px;
  color: var(--primary-color);
}

#services p {
  display: flex;
  font-family: "Noto Sans", Arial, sans-serif;
  justify-content: center;
  color: #fff;
  font-size: 25px;
  font-weight: normal;
  text-align: left;
  padding: 0px 30px 40px 30px;
}

.row-services{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 25px;
  justify-content: center;
  font-family: "Noto Sans", Arial, sans-serif;
  color: #292929;
  line-height: 30px;
  padding: 0px
}


.icon-interactive,
.icon-campaigns,
.icon-graphics,
.icon-motion {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle {
 -webkit-animation: rotate-center 95.9s ease-in-out both;
    animation: rotate-center 95.9s ease-in-out both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}


.interactive-services {
  display: flex;
  flex-direction: column;
  height: 550px;
  width: 400px;
  padding: 45px 25px;
  margin: 10px;
  align-items: center;
  background-color: #f8f8f8;
  border-style: solid;
  border-width: 2px;
  border-color: var(--primary-color);
}

.interactive-text {
  align-items: flex-start;  
}

.campaigns-services {
  display: flex;
  flex-direction: column;
  height: 550px;
  width: 400px;
  padding: 45px 36px 65px 36px;
  margin: 10px;
  align-items: center;
  background-color: #f8f8f8;
  border-style: solid;
  border-width: 2px;
  border-color: var(--primary-color);
}

.graphics-services {
  display: flex;
  flex-direction: column;
  height: 550px;
  width: 400px;
  padding: 45px 46px 65px 46px;
  margin: 10px;
  align-items: center;
  background-color: #f8f8f8;
  border-style: solid;
  border-width: 2px;
  border-color: var(--primary-color);
}

.motion-services {
  display: flex;
  flex-direction: column;
  height: 550px;
  width: 400px;
  padding: 45px 36px;
  margin: 10px;
  align-items: center;
  background-color: #f8f8f8;
  border-style: solid;
  border-width: 2px;
  border-color: var(--primary-color);
}

.interactive-services-wrap,
.campaigns-services-wrap,
.graphic-services-wrap,
.motion-services-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.learn {
  font-family: "Noto Sans", Arial, sans-serif;
  margin: 20px 0px 14px 0px;
  text-decoration: none;
  color: var(--overlay-color);
  font-size: 14px;
  padding: 8px 20px;
}

.learn2 {
  font-family: "Noto Sans", Arial, sans-serif;
  margin-top: 20px;
  text-decoration: none;
  color: var(--overlay-color);
  font-size: 14px;
  padding: 8px 20px;
}

a.learn2 {
  font-size: 14px;
}

.learn2:hover {
  color: var(--third-color);
  transition: all .4s ease-in-out;
}

a.learn {
  font-size: 14px;
}

.learn:hover {
  color: var(--third-color);
  transition: all .4s ease-in-out;
}


/*********************** Contact **********************************/

#contact {
  height: 100%;
  width: 100%;
  text-align: left;
  background-color: #fff;
}

.contacto1 h3 {
  font-family: "Noto Sans", Roboto, Arial, sans-serif;
  font-size: 55px;
  color: var(--third-color);
  margin: 0px;
  line-height: 60px;
  width: 80%;
}

#click a {
  font-family: "Noto Sans", Roboto, Arial, sans-serif;
  font-size: 20px;
  color:#fff;
  text-decoration: none;
  width: 30%;
  padding: 15px 32px;
  text-align: center;
  font-weight: bolder;
  background-color: #EF5264;
  border-radius: 40px;
}

#click a:hover {
  background-color: var(--overlay-color);
  color: #fff;
}

.envelope {
  padding: 10px;
}

.row {
  font-size: 25px;
  font-weight: normal;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  padding: 35px 110px 5px 110px;
}

.row p {
  font-family: "Noto Sans", Arial, sans-serif;
  color: var(--third-color);
  margin: 0px;
  font-size: 25px;
  padding: 5px;
}

.contacto1 {
  display: block;
  width: 45%;
  padding: 0px 40px 0px 25px;
}

.info-contacto1 p {
  font-size: 35px;
  margin-top: 20px;
  color: #292929;
}

.contacto2 {
  width: 50%; 
}

/********************* contact form **************************/

.contact-form {
  display: block;
  width: 40%;
  padding: 30px;
  border-width: thick;
  border-style: solid;
  border-color: var(--third-color);
  background-color:#f8f8f8;
}

#contact h2 {
  font-size: 15px;
  font-family: "kallisto", Helvetica, Arial, sans-serif;
  color: #EF5264;
  text-align: left;
  padding: 50px 0px 0px 27px;
  letter-spacing: 3px;
  width: 45%;
}

input[type=firstname] {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--third-color);
  color: #1c1c1c;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  font-size: 15px;
}

input[type=lastname]{
  width: 100%;
  padding: 12px;
  border: 2px solid var(--third-color);
  color: #1c1c1c;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  font-size: 15px;
}

input[type=tel]{
  width: 100%;
  padding: 12px;
  border: 2px solid var(--third-color);
  color: #1c1c1c;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  font-size: 20px;
}

input[type=email]{
  width: 100%;
  padding: 12px;
  border: 2px solid var(--third-color);
  color: #1c1c1c;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  font-size: 20px;
}

input[type=text], select, textarea{
  width: 100%;
  padding: 12px;
  border: 2px solid var(--third-color);
  font-family: "Noto Sans", Arial, sans-serif;
  color: #1c1c1c;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  font-size: 20px;
}

input[type=submit] {
  background-color: var(--overlay-color);
  color: #fff;
  padding: 15px 40px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
}

input[type=submit]:hover {
  background-color: var(--primary-color);
  transition: all .4s ease-in-out;
}

textarea {
  font-size: 1.25rem;
  text-decoration: none;
}

button {
  background-color: var(--primary-color);
  color: #fff;
  padding: 15px 40px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 15px;
  text-align: center;
}

button:hover {
  background-color: var(--third-color);
  transition: all .4s ease-in-out;
}


/************************* About **********************************************/

#about {
  height: 100%;
  width: 100%;
  padding: 50px;
  background-image: url("../images/back-geo.png");
  background-repeat: no-repeat;
  background-position: flex-end;
  background-size: 100%;
  background-color: #892F6B;
}

.about { 
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: none; 
}

#about h2 {
    font-family: "kallisto", Helvetica, Arial, sans-serif;
    color: #ffff;
    text-align: left;
    padding: 50px 0px 0px 74px;
    letter-spacing: 3px;
    width: 45%;
}

.about-paragraph {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 35px;
  width: 58%;
  font-family: "Noto Sans", Arial, sans-serif;
  color: #fff;
  line-height: 45px;
  margin: 50px 0px 0px 110px;
  font-weight: normal;
  align-items: center;
}

.about-paragraph img {
    width: 200px; /* Adjust size as needed */
    height: auto;
}

.quote {
  font-size: 25px;
  font-style: italic;
  color:var(--primary-color) ;
  line-height: 45px;
  width:80%;
  font-weight: normal;
}

.quote h4 {
  font-size: 25px;
  font-weight: normal;
  text-align: left;
  color:var(--primary-color) ;
}

.about .button {
  border: none;
  width: 20%;
  color: #fff;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  margin: 3px 0px 55px 0px;
  cursor: pointer;
  background-color: var(--overlay-color);
}

.button:hover {
  background-color: var(--primary-color);
  color: #fff;
  transition: all .4s ease-in-out;
}


/******************************** Footer ***********************************************/

footer {
  background: var(--primary-color);
  margin:0;
  color: #eee;
  display: flex;
  padding: 20px;
}

footer a {
  font-family: "Noto Sans", Arial, sans-serif;
  text-decoration: none;
  color:#fff;
}

footer a:hover {
  color:#72BE44;
}

footer #left-footer {
  flex: 1;
  border-right: 1px var(--primary-color);
  padding-left: 250px;
}

footer #left-footer h3 {
  font-family: "kallisto", Helvetica, Arial, sans-serif;
  color: white;
  letter-spacing: 2px;
}

footer #right-footer h3 {
  font-family: "kallisto", Helvetica, Arial, sans-serif;
  color: white;
  letter-spacing: 2px;
}

footer #left-footer ul {
  padding: 0;
  list-style: none;
  line-height: 1.5;
}

footer #right-footer {
  flex: 2;
  padding: 10px;
  text-align: center;
  font-size: 15px;
}

footer #social-media-footer a .fa-facebook,
footer #social-media-footer a .fa-instagram,
footer #social-media-footer a .fa-twitter,
footer #social-media-footer a .fa-linkedin {
  color: white;
  transition: 0.4s;
}

footer #social-media-footer ul {
  display: flex;
  list-style: none;
  justify-content: center;
  padding: 0;
}

footer #social-media-footer ul li {
  font-size: 25px;
  padding: 16px;
  transition:0.4s;
}

footer #social-media-footer ul li:hover a .fa-facebook{
  color: #3b5998;
}
  
footer #social-media-footer ul li:hover a .fa-instagram{
  color: #e4405f;
}

footer #social-media-footer ul li:hover a .fa-twitter{
  color: #00aced;
}
  
footer #social-media-footer ul li:hover a .fa-linkedin{
  color: #2867B2;
}

.bottom-footer{
font-family: "Noto Sans", Arial, sans-serif;
background-color: var(--primary-color); 
height: 20%;
width: 100%;
padding: 5px;
text-align: center;
color: #fff;
letter-spacing: 1px;
}

/******** Privacy Policy *********/

.policy {
  font-family: "Noto Sans", Arial, sans-serif;
  color: #000000;
  font-size: 20px; 
  padding: 0px 100px 60px 100px;
  font-weight: normal;
}

.policy h2 {
  font-size: 25px;
  text-align: left;
  margin-left: 0px;
  color: var(--third-color);
  margin-bottom: 0px;
}

.privacy {
   text-decoration: underline;
   color: #fff;
   font-weight: bold;
}

.privacy:hover {
  color: #892F6B;
  font-weight: bold;
}



/***********************************************************************************/


/*======================================
                 Media Query
=========================================*/


/* ============== Mobile ============== */


@media screen and (max-width: 320px) {
     h1{
        margin:40px 0px 40px 0px;
    }
    
         .header {
    height: 23%;
    }
    
   .web-new {
      font-size: 40px;
      line-height: 35px;
    }
    
      .web-business {
        font-size:15px; 
        margin: 10px 0px 70px 0px;
    }
    
    .gaby-name {
      font-size: 20px;   
    }
    
    .languages {
        display: none;
    }
    
    #bannerh3 {
    font-size: 12px;
    padding: 15px 15px 15px 15px
    }
    
    .container1 {
         top:78%;
         right:63%; 
    }
    
    .container3 {
         top:20%;
         right:63%; 
    }
    
    .container3 img {
        height: 12px;
        width: 12px;
    }
    
    .container-square12 {
        display: none;  
    }
    
      .container15 {
        display: none;  
    }
    
      .container17 {
         top:20%;
         right:23%; 
    }
    
    .container17 img {
        height: 8px;
        width: 8px;
    }

      .container18 {
        display: none;  
    }
    
         .container-square1 {
        display: none;  
    }
    
        .container-square7 {
        display: none;  
    }
    
         .container-square10 {
        display: none;  
    }
    
         .container-square11 {
       top: 90%; 
    }
    
    .container-square4 {
          top:25%;
          right:32%;
    }
    
    .container-square4 img {
        height: 10px;
        width: 10px;
    }
   
  #about {
    height: 100%;
    padding: 50px 30px;
    background-attachment: local;
  }
  
  #about h2 {
    margin: 70px 0px 40px;
  }

  .about-paragraph {
    font-size: 20px;
    width: 100%;
    line-height: 25px;
    margin: 20px 0px 0px 0px;
    justify-content: center;
  }
  
   .about .button{
        width:75%;
        margin: 35px 2px 15px 0px;
        font-size: 15px;
    }
  
  .quote {
    font-size: 25px;
    width: 100%;
    line-height: 27px;
  }
  
  .quote h4 {
    font-size: 18px;
  }
  
  .about {
     width: 100%;  
  }

  #services {
    height: 100%;
    padding: 17px 0px;
  }

   #contact {
    height: 100%;
   }
   
    #contact h2{
       margin-top: 70px;
       padding: 50px 0px 0px 0px;
   }
   
     .flex-container{
            margin: 0px;
        }
   
    .flipbox-inner{
           height: 300px;
           width: 300px;
        }    
        
        
    .flex-items1,
    .flex-items2,
    .flex-items3,
    .flex-items4,
    .flex-items5,
    .flex-items6,
    .flex-items7,
    .flex-items8{
        height: 300px;
        width: 300px;
        margin: 5px;
    }
    
    
    .flex-items1-back,
    .flex-items2-back,
    .flex-items3-back,
    .flex-items4-back,
    .flex-items5-back,
    .flex-items6-back,
    .flex-items7-back,
    .flex-items8-back{
        height: 300px;
        width: 300px;
    }
    
    .flex-items1 img, 
    .flex-items3 img, 
    .flex-items6 img, 
    .flex-items8 img {
        border-radius: 0%;
    }
    
    #services h3 {
    font-size: 35px;
    margin: 30px 0px 8px 0px;
    }
    
    #services h4 {
        font-size: 20px;
        text-align: center;
        padding: 10px 10px;
    }
    
    .row-services {
        font-size: 18px;
        padding: 0px 0px 60px 0px
    }
    
    .graphics-services,
    .interactive-services,
    .campaigns-services,
    .motion-services {
        height: 430px;
        width: 300px;
    }
    
    .contact-form {
        width: 100%;
        padding: 13px;
    }
    
    .contacto1 {
        width: 90%;
        padding: 0px;
    }
    
    .contacto1 h3 {
        font-size: 30px;
        line-height: 30px;
        width: 100%;
    }
    
    input[type=firstname],
    input[type=lastname],
    input[type=tel],
    input[type=email],
    input[type=submit],
    input[type=text], select, textarea {
        font-size: 15px;
  }
    
    .info-contacto1 p {
      font-size: 20px;   
    }
    
    .row p {
     font-size: 20px;    
    }
    
     .row {
       padding: 30px 10px 70px 10px;
       flex-wrap: wrap;
    }
    
    /*footer*/
  footer {
      flex-direction: column;
      text-align: center;
      padding: 0px;
  }

  footer #left-footer {
      flex: 1;
      border-right: 0;
      padding-left: 0;
  }
  
    footer #left-footer h3 {
      margin-top: 40px;
  }

  footer #right-footer {
      background: #EF5264;
      color: white;
  }

  footer #right-footer a{
      color: white;
  }

  footer #social-media-footer a .fa-facebook,
  footer #social-media-footer a .fa-instagram {
      color: white;
      transition:0.4s;
  }
  
     #scroll-mouse h5 {
       top: 90%;
       right: 40%;
   }
   
   #scroll-mouse img {
       top: 86%;
       right: 40%;
   }
   
}


@media screen and (min-width: 321px) and (max-width: 767px) {
       .header {
    height: 15.5%;
    }
    
    
    h1{
        margin:40px 0px 40px 0px;
    }

    
    .web-new {
      font-size: 50px;
      line-height: 50px;
    }
    
    .web-business {
        font-size:15px; 
        margin: 10px 0px 70px 0px;
    }
    
    .gaby-name {
      font-size: 27px;   
    }
    
    .languages {
        display: none;
    }
    
    #bannerh3 {
    font-size: 18px;
    padding: 20px 25px 18px 25px
    }
    
    .container1 {
         top:90%;
         right:65%; 
    }
    
    .container-square1 {
        display: none;  
    }
    
    .container3 {
         top:20%;
         right:63%; 
    }
    
    .container3 img {
        height: 15px;
        width: 15px;
    }
    
    .container-square4 {
          top:22%;
          right:32%;
    }
    
    .container-square4 img {
        height: 10px;
        width: 10px;
    }
    
    .container-square7 {
        display: none;  
    }
    
     .container-square11 {
        top:88%;
        right:32%;  
    }
    
    .container-square10 {
        display: none;  
    }
    
    .container-square12 {
        display: none;  
    }
    
    .container15 {
        display: none;  
    }

    .container18 {
        display: none;  
    }
    
  #about {
    height: 100%;
    padding: 50px 30px 40px 30px;
    background-attachment: local;
  }
  
  #about h2 {
    margin: 100px 40px 40px 0px;
    padding: 50px 0px 0px 0px;
  }

  .about-paragraph {
    font-size: 20px;
    width: 100%;
    line-height: 25px;
    margin: 0px;
    justify-content: center;
  }
  
    .about .button{
        width:55%;
        margin: 35px 2px 15px 0px;
        font-size: 15px;
    }
  
  .quote {
    margin: 20px 0px 0px 0px;
    font-size: 25px;
    width: 100%;
    line-height: 27px;
  }
  
  .quote h4 {
    font-size: 18px;
  }
  
  .about {
     width: 100%;  
  }

/*  #my-work {
    height: 100%;
    padding: 24px;
  }
  
  #my-work p{
      font-size: 20px;
  }
  
  #my-work h2{
      font-size: 15px;
      margin-top: 70px;
  } }*/
  
  
   #my-work h4 {
        font-size: 20px;
        text-align: center;
        padding: 10px 10px;
   }
  
  .work-description{
  display: flex;
  flex-direction: column;
  margin: 0px 0px;
}

 .work-description h2 {
       font-size: 1.5rem; 
    }
  
  #services {
    height: 100%;
    padding: 17px 0px;
  }

   #contact {
    height: 100%;
 
   }
   
   #contact h2{
       margin-top: 70px;
       padding: 50px 0px 0px 3px;
   }
   
     .flex-container{
            margin: 0px;
        }
   
    .flipbox-inner{
           height: 300px;
           width: 300px;
        }    
        
        
    .flex-items1,
    .flex-items2,
    .flex-items3,
    .flex-items4,
    .flex-items5,
    .flex-items6,
    .flex-items7,
    .flex-items8{
        height: 360px;
        width: 400px;
        margin: 5px;
    }
    
    
    .flex-items1-back,
    .flex-items2-back,
    .flex-items3-back,
    .flex-items4-back,
    .flex-items5-back,
    .flex-items6-back,
    .flex-items7-back,
    .flex-items8-back{
        height: 300px;
        width: 300px;
    }
    
     .flex-items1 img, 
    .flex-items3 img, 
    .flex-items6 img, 
    .flex-items8 img {
        border-radius: 0%;
    }
    
     #services h3 {
    font-size: 35px;
    margin: 30px 0px 8px 0px;
    }
    
    #services h4 {
        font-size: 20px;
        text-align: center;
        padding: 10px 10px;
    }
    
    .row-services {
        font-size: 18px;
        padding: 0px 0px 60px 0px
    }
    
    .graphics-services,
    .interactive-services,
    .campaigns-services,
    .motion-services {
        height: 430px;
        width: 320px;
    }
    
    .contact-form {
        width: 100%;
        padding: 13px;
    }
    
    .contacto1 {
        width: 90%;
        padding: 0px;
    }
    
    .contacto1 h3 {
        font-size: 30px;
        line-height: 30px;
        width: 100%;
    }
    
    
    input[type=firstname],
    input[type=lastname],
    input[type=tel],
    input[type=email],
    input[type=submit],
    input[type=text], select, textarea {
        font-size: 15px;
  }
    
    .info-contacto1 p {
      font-size: 20px;   
    }
    
    .row p {
     font-size: 20px;    
    }
    
     .row {
       padding: 30px 10px 70px 10px;
       flex-wrap: wrap;
    }
    
    /*footer*/
  footer {
      flex-direction: column;
      text-align: center;
      padding: 0px;
  }

  footer #left-footer {
      flex: 1;
      border-right: 0;
      padding-left: 0;
  }
  
    footer #left-footer h3 {
      margin-top: 40px;
  }

  footer #right-footer {
      background: #EF5264;
      color: white;
  }

  footer #right-footer a{
      color: white;
  }

  footer #social-media-footer a .fa-facebook,
  footer #social-media-footer a .fa-instagram {
      color: white;
      transition:0.4s;
  }
  
     #scroll-mouse h5 {
       top: 90%;
       right: 40%;
   }
   
   #scroll-mouse img {
       top: 86%;
       right: 40%;
   }
   
   .column {
    flex: 50%;
    max-width: 100%;
  }
  
  .envelope{
      margin: 0px 0px 0px 90px;
  }
   
}


/* ============== Tablet ============== */

@media screen and (min-width: 768px) and (max-width: 1023px) {
    
    .header {
    height: 14%;
    }
    
   
    .web-new {
      font-size: 90px;
      line-height: 90px;
    }
    
      .web-business {
        font-size:25px; 
        margin: 15px 0px 70px 0px;
    }
    
    .gaby-name {
      font-size: 35px;   
    }
    
    #bannerh3 {
    font-size: 20px;
    padding: 20px 30px 20px 30px
    } 
    
    
    .container-square4{
        display: none;
    }


  #about {
    height: 100%;
    padding: 22px;
  }
  
  #about h2{
    margin: 0px 40px 40px 28px;
    padding: 50px 0px 0px 0px;
  }

  .about-paragraph {
    font-size: 25px;
    width: 100%;
    line-height: 30px;
    margin: 58px 0px 0px 25px;
  }
  
  .quote {
    font-size: 30px; 
    width: 60%;
    line-height: 35px;
  }

  .about .button{
        width:35%;
        margin: 4px 2px 55px 0px;
        font-size: 15px;
    }
  
  .about {
     width: 90%;  
  }

/*  #my-work {
    height: 100%;
  }
  
  #my-work p {
    font-size: 20px;
  }
  
  #my-work h2 {
    font-size: 15px;
    margin: 20px 15px 5px 10px;
  }}*/
  
  #my-work h4 {
        font-size: 25px;
        text-align: center;
        padding: 50px 135px;
  }  
  
  .work-description {
      margin: 0px;
  }
  
  
  #services {
    height: 100%;
  }

   #contact {
    height: 100%;
 
   }
   

     .flex-container{
            margin: 26px;
        }
   
    .flipbox-inner{
           height: 300px;
           width: 300px;
        }    
        
        
    .flex-items1,
    .flex-items2,
    .flex-items3,
    .flex-items4,
    .flex-items5,
    .flex-items6,
    .flex-items7,
    .flex-items8{
        height: 300px;
        width: 300px;
        margin: 5px;
    }
    
    
    .flex-items1-back,
    .flex-items2-back,
    .flex-items3-back,
    .flex-items4-back,
    .flex-items5-back,
    .flex-items6-back,
    .flex-items7-back,
    .flex-items8-back{
        height: 300px;
        width: 300px;
    }
    
     #services h3 {
    font-size: 35px;
    margin: 30px 0px 8px 0px;
    }
    
    #services h4 {
        font-size: 25px;
        text-align: center;
        padding: 50px 135px;
    }
    
    .row-services {
        font-size: 18px;
        padding: 0px 0px 60px 0px
    }
    
    .graphics-services,
    .interactive-services,
    .campaigns-services,
    .motion-services {
        height: 430px;
        width: 320px;
    }
    
    .contact-form {
        width: 60%;
    }
    
    .contacto1 h3 {
        font-size: 30px; 
        line-height: 30px;  
    }
    
    input[type=firstname],
    input[type=lastname],
    input[type=tel],
    input[type=email],
    input[type=submit],
    input[type=text], select, textarea {
        font-size: 15px;
  }
    
    .info-contacto1 p {
      font-size: 20px;   
    }
    
    .row p {
     font-size: 22px;    
    }
    
     .row {
       padding: 40px 40px 45px 40px;
    }
    
    
    /*footer*/
  footer {
      flex-direction: column;
      text-align: center;
      padding: 0px;
  }

  footer #left-footer {
      flex: 1;
      border-right: 0;
      padding-left: 0;
  }
  
    footer #left-footer h3 {
      margin-top: 40px;
  }

  footer #right-footer {
      background: #EF5264;
      color: white;
  }

  footer #right-footer a{
      color: white;
  }

  footer #social-media-footer a .fa-facebook,
  footer #social-media-footer a .fa-instagram {
      color: white;
      transition:0.4s;
  }
  
        .circle-description{
        width:20%;
        height: auto;
        margin-bottom: 15px;
    }
    
    .squarecircle-description{
        width:15%;
        height: auto;
        margin-bottom: 15px;
    }
    
    .square-description {
        margin-bottom: 15px; 
    }
  
}


@media screen and (min-width: 1024px) and (max-width: 1366px)  {
    
    .header {
      height: 14%;
    }
    
   
    .web-new {
      font-size: 100px;
      line-height: 100px;
    }
    
      .web-business {
        font-size:25px; 
        margin: 15px 0px 70px 0px;
    }
    
    .gaby-name {
      font-size: 35px;   
    }
    
    #bannerh3 {
    font-size: 20px;
    padding: 20px 30px 20px 30px
    } 
    
    
    .container-square4{
        display: none;
    }
    
    .container18{
        display: none;
    }


  #about {
    height: 100%;
    padding: 22px 4px 22px 112px;
  }
  
  #about h2{
    margin: 0px 40px 40px 40px;
    padding: 50px 0px 0px 0px;
  }

  .about-paragraph {
    font-size: 20px;
    width: 100%;
    line-height: 25px;
    margin: 120px 0px 0px 25px;
  }
  
  .quote {
    font-size: 25px;
    width: 55%;
    line-height: 30px;
  }

  .about .button{
        width:20%;
        margin: 4px 2px 10px 0px;
        font-size: 15px;
    }
  
  .about {
     width: 90%;  
  }

/*  #my-work {
    height: 100%;
    padding: 40px;
  }
  
  #my-work p {
    font-size: 20px;
  }
  
  .work-description {
      margin: 0px;
  } }*/
  
   #my-work h4 {
        font-size: 35px;
        text-align: center;
        padding: 50px 135px;
   }  
  
  
  #services {
    height: 100%;
    padding: 50px 2px 50px 0px;
  }

   #contact {
    height: 100%;
 
   }
   

     .flex-container{
            margin: 26px 0px 26px 0px;
        }
   
    .flipbox-inner{
           height: 300px;
           width: 300px;
        }    
        
        
    .flex-items1,
    .flex-items2,
    .flex-items3,
    .flex-items4,
    .flex-items5,
    .flex-items6,
    .flex-items7,
    .flex-items8{
        height: 300px;
        width: 300px;
        margin: 5px;
    }
    
    
    .flex-items1-back,
    .flex-items2-back,
    .flex-items3-back,
    .flex-items4-back,
    .flex-items5-back,
    .flex-items6-back,
    .flex-items7-back,
    .flex-items8-back{
        height: 300px;
        width: 300px;
    }
    
    #services h3 {
    font-size: 35px;
    margin: 30px 0px 8px 0px;
    }
    
    #services h4 {
        font-size: 35px;
        text-align: center;
        padding: 50px 135px;
    }
    
    .row-services {
        font-size: 18px;
        padding: 0px 0px 60px 0px
    }
    
    .graphics-services,
    .interactive-services,
    .campaigns-services,
    .motion-services {
        height: 441px;
        width: 282px;
        padding: 45px 2px
    }
    
    .contact-form {
        width: 60%;
    }
    
    .contacto1 h3 {
        font-size: 30px; 
        line-height: 30px;  
    }
    
    input[type=firstname],
    input[type=lastname],
    input[type=tel],
    input[type=email],
    input[type=submit],
    input[type=text], select, textarea {
        font-size: 15px;
  }
    
    .info-contacto1 p {
      font-size: 20px;   
    }
    
    .row p {
     font-size: 22px;    
    }
    
     .row {
       padding: 40px 40px 45px 40px;
    }
    
    
   footer #left-footer {
    padding-left: 122px;
   }
   
  
          .circle-description{
        width:20%;
        height: auto;
        margin-bottom: 15px;
    }
    
    .squarecircle-description{
        width:15%;
        height: auto;
        margin-bottom: 15px;
    }
    
    .square-description {
        margin-bottom: 15px; 
    }
  
}


/*============== Laptop ==============*/

@media screen and (min-width: 1367px) and (max-width: 1400px)  {
    
        .header {
    height: 12.5%;
    }
        .web-new {
      font-size: 120px;
      line-height: 120px;
    }
    
      .web-business {
        font-size:30px; 
        margin: 20px 0px 70px 0px;
    }
    
    .gaby-name {
      font-size: 30px;   
    }
    
    #bannerh3 {
    font-size: 20px;
    padding: 20px 25px 18px 25px
    }
    
    .flex-container{
            margin: 50px 0px;
        }
        
        .flipbox-inner{
           height: 300px;
           width: 300px;
        }    
        
        
    .flex-items1,
    .flex-items2,
    .flex-items3,
    .flex-items4,
    .flex-items5,
    .flex-items6,
    .flex-items7,
    .flex-items8{
        height: 300px;
        width: 300px;
        margin: 5px;
    }
    
    
    .flex-items1-back,
    .flex-items2-back,
    .flex-items3-back,
    .flex-items4-back,
    .flex-items5-back,
    .flex-items6-back,
    .flex-items7-back,
    .flex-items8-back{
        height: 300px;
        width: 300px;
    }
    
    #services {
      padding: 40px;  
    }
    
     #services h3 {
    font-size: 35px;
    margin: 30px 0px 8px 0px;
    }
    
    #services h4 {
        font-size: 35px;
        text-align: center;
        padding: 50px 135px;
    }
    
    .row-services {
        font-size: 15px;
        padding: 80px 0px;
    }
    
    .graphics-services,
    .interactive-services,
    .campaigns-services,
    .motion-services {
        height: 430px;
        width: 275px;
    }
    
    .contact-form {
        width: 60%;
    }
    
    .contacto1 h3 {
        font-size: 40px; 
        line-height: 40px;  
    }
    
    .info-contacto1 p {
      font-size: 30px;   
    }
    
    .row p {
     font-size: 30px;    
    }
    
    .row {
       padding: 60px 50px 60px 50px
    }
    
    
    .about-paragraph {
        font-size: 25px;  
        line-height: 30px;
        margin: 320px 0px 0px 25px;
        width: 100%;
    }
    
    .about .button{
        width: 20%;
        margin: 4px 2px 55px 0px;
        font-size: 18px;
    }
    
    #about h2 {
        padding: 50px 0px 0px 0px;
    }
    
    .quote {
       font-size: 30px;
       line-height: 35px;
       width: 50%;
    }
    
     .container-square4{
      display: none;  
    }
    
    .container-square12 {
        top: 85%;
        right: 28%;
    }
    
    .container15 {
        display: none;
    }
    
      h2 {
     font-size: 15px;
    }
    
    #contact h2{
         font-size: 15px;
    }
    
    .column {
    flex: 40%;
    flex-wrap: wrap;
    max-width: 50%;
  }
  
/*  #my-work {
      padding: 27px;
  }
  
  #my-work p {
      font-size: 20px;
  }*/
  
   #my-work h4 {
        font-size: 35px;
        text-align: center;
        padding: 50px 135px;
    }
  
          .circle-description{
        width:20%;
        height: auto;
        margin-bottom: 15px;
    }
    
    .squarecircle-description{
        width:15%;
        height: auto;
        margin-bottom: 15px;
    }
    
    .square-description {
        margin-bottom: 15px; 
    }

}

@media screen and (min-width: 1401px) and (max-width: 1656px) {
    
    .web-new {
      font-size: 110px;
      line-height: 110px;
    }
    
    .web-business {
        font-size:30px; 
        margin: 20px 0px 70px 0px;
    }
    
     .gaby-name {
      font-size: 30px;   
    }
    
    #bannerh3 {
    font-size: 18px;
    padding: 20px 25px 18px 25px
    }
    
    #scroll-mouse h5 {
        top: 83.5%;
    }
    
    
    .flex-container{
        margin: 50px 0px;
    }
    
    .flipbox-inner{
       height: 300px;
       width: 300px;
    }
        
    .flex-items1,
    .flex-items2,
    .flex-items3,
    .flex-items4,
    .flex-items5,
    .flex-items6,
    .flex-items7,
    .flex-items8{
        height: 300px;
        width: 300px;
        margin: 5px;
    }
    
    
    .flex-items1-back,
    .flex-items2-back,
    .flex-items3-back,
    .flex-items4-back,
    .flex-items5-back,
    .flex-items6-back,
    .flex-items7-back,
    .flex-items8-back{
        height: 300px;
        width: 300px;
    }
   
    
    #services h3 {
    font-size: 35px;
    margin: 30px 0px 8px 0px;
    }
    
    #services h4 {
        font-size: 35px;
        text-align: center;
        padding: 15px 135px;
    }
    
    .row-services {
        font-size: 15px;
        padding: 40px 0px 80px 0px;
    }
    
    .graphics-services,
    .interactive-services,
    .campaigns-services,
    .motion-services {
        height: 430px;
        width: 250px;
        padding: 45px 2px;
    }
    
    
    .contact-form {
        width: 45%;
        padding: 18px;
    }
    
    .contacto1 h3 {
        font-size: 40px; 
        line-height: 38px;  
    }
    
    #contact h1 {
        margin-bottom: 15px;
    }
    
    input[type=firstname],
    input[type=lastname],
    input[type=tel],
    input[type=email],
    input[type=submit],
    input[type=text], select, textarea {
        font-size: 15px;
        margin-bottom: 1px;
  }
    
    .info-contacto1 p {
      font-size: 30px;   
    }
    
    .row p {
     font-size: 35px;    
    }
    
    .row {
        padding: 30px 100px 35px 100px;
    }
    
    
    .about-paragraph {
       font-size: 20px;
        line-height: 25px;
        margin-top: 60px;
    }
    
    .about .button{
        width:30%;
        font-size: 15px;
        padding: 18px;
        margin: 1px 2px 55px 0px;
    }
    
    .quote {
      font-size: 25px;
      line-height: 28px;
      width: 90%;
    }
    
    
    .container-square1{
     display: none;   
    }
    
    .container-square4{
      display: none;  
    }
    
    .container-square12 {
        top: 85%;
        right: 28%;
    }
    
     .container15 {
        display: none;
    }
    
    
     h2 {
     font-size: 15px;
    }
    
    
    #contact h2{
         font-size: 15px;
         padding: 50px 0px 0px 119px;
    }
    
        .circle-description{
        width:20%;
        height: auto;
        margin-bottom: 15px;
    }
    
    .squarecircle-description{
        width:15%;
        height: auto;
        margin-bottom: 15px;
    }
    
    .square-description {
        margin-bottom: 15px; 
    }
    
     footer #left-footer{
        padding-left: 140px;
    }
    
}


@media (max-height: 600px){
    .container-square1 {
        display: none;
    }
}

/*============== Desktop ==============*/

@media screen and (min-width: 1657px) and (max-width: 2143px) {

    .web-new {
      font-size: 150px;
      line-height: 140px;
    }
    
      .web-business {
        font-size:30px; 
        margin: 20px 0px 70px 0px;
    }
    

    .flex-container{
        margin: 65px 30px;
    }
    
    .flipbox-inner{
       height:400px;
       width: 400px;
    }
        
    .flex-items1,
    .flex-items2,
    .flex-items3,
    .flex-items4,
    .flex-items5,
    .flex-items6,
    .flex-items7,
    .flex-items8{
        height:400px;
        width: 400px;
        margin: 5px;
    }
    
    
    .flex-items1-back,
    .flex-items2-back,
    .flex-items3-back,
    .flex-items4-back,
    .flex-items5-back,
    .flex-items6-back,
    .flex-items7-back,
    .flex-items8-back{
        height:400px;
        width: 400px;
    }
    
    .interactive-services,
    .campaigns-services,
    .graphics-services,
    .motion-services {
     height: 450px;
     width: 300px;
    }
    
    #services h3 {
    font-size: 35px;
    margin: 30px 0px 8px 0px;
    }
    
    .row-services {
        font-size: 18px;
    }
    
    .contact-form {
        width: 50%;
    }
    
    .about-paragraph {
        font-size: 30px;
        line-height: 35px;
      
    }
    
    .about .button{
        width:25%;
    }
   
         .container-square4{
      display: none;  
    }
    
    .container-square12 {
        top: 85%;
        right: 28%;
    }
    
     .container15 {
        display: none;
    }
    
    .container18{
      top: 22%;  
    }
    
     h2 {
     font-size: 15px;
    }
    
    
    #contact h2{
         font-size: 15px;
         padding: 54px 0px 0px 121px;
    }
    
    
    footer #left-footer{
        padding-left: 150px;
    }
    
        .circle-description{
        width:20%;
        height: auto;
        margin-bottom: 15px;
    }
    
    .squarecircle-description{
        width:15%;
        height: auto;
        margin-bottom: 15px;
    }
    
    .square-description {
        margin-bottom: 15px; 
    }
    
}

@media screen and (min-width: 2144px){
    
    .header {
    height: 15%;
    }

    .web-new {
      font-size: 180px;
      line-height: 160px;
    }
    
     .web-business {
        font-size:30px; 
        margin: 20px 0px 70px 0px;
    }
    
      .flex-container{
        margin: 50px;
    }
    
    .flipbox-inner{
       height:500px;
       width: 500px;
    }
        
    .flex-items1,
    .flex-items2,
    .flex-items3,
    .flex-items4,
    .flex-items5,
    .flex-items6,
    .flex-items7,
    .flex-items8{
        height:500px;
        width: 500px;
        margin: 5px;
    }
    
    
    .flex-items1-back,
    .flex-items2-back,
    .flex-items3-back,
    .flex-items4-back,
    .flex-items5-back,
    .flex-items6-back,
    .flex-items7-back,
    .flex-items8-back{
        height:500px;
        width: 500px;
    }
    
    .container18{
      top: 22%;  
    }
    
    
    h2 {
     font-size: 15px;
    }
    
    
    #contact h2{
         font-size: 15px;
         padding: 50px 0px 0px 236px;
    }
    
    .work-description{
     margin: 0px 230px;
    }
    
/*    #my-work p{
      padding: 0px 80px 0px 30px;  
    }*/
    
    .row {
     padding: 35px 200px 70px 180px;
    }
    
    .about-paragraph {
     margin: 50px 0px 0px 220px;
     width: 55%;
    }
    
    .circle-description{
        width:20%;
        height: auto;
        margin-bottom: 15px;
    }
    
    .squarecircle-description{
        width:15%;
        height: auto;
        margin-bottom: 15px;
    }
    
    .square-description {
        margin-bottom: 15px; 
    }
    
    #about h2 {
        padding: 50px 0px 0px 184px;
    }

}


/***********************************************************************************/

