/*
=================================================================
    Universal Section
=================================================================
*/

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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");


/*
=================================================================
  Body Section
=================================================================
*/

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


/*
=================================================================
  Sections
=================================================================
*/

.section-one {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../background/cool-background4.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;       
  height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
}

.section-two {
  min-height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: conic-gradient(from 135deg, rgba(167, 168, 239, 1.0), rgba(197, 249, 249, 1.0));
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  overflow-x: hidden;
  overflow-y: hidden;
}


.section-three {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 50%;
  background: conic-gradient(from 225deg, #676DA8, #A8B9C2);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat; 
  box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 50); /* 10px => 0.625rem, 20px => 1.25rem */
  overflow-x: hidden;
  overflow-y: hidden;
}


.footer-section { 
  font-family: "Montserrat", serif;
  align-items: center;
}

/*
=================================================================
  Slider Section
=================================================================
*/

.card-wrapper {
  max-width: 68.75rem; /* 1100px => 68.75rem */
  margin: 0 3.75rem 2.1875rem; /* 60px => 3.75rem, 35px => 2.1875rem */
  padding: 1.25rem 0.625rem; /* 20px => 1.25rem, 10px => 0.625rem */
  overflow: hidden;
}

.card-list .card-item {
  list-style: none;
}

.card-list .card-item .card-link {
  display: block;
  background: #fff;
  padding: 1.125rem; /* 18px => 1.125rem */
  user-select: none;
  border-radius: 0.75rem; /* 12px => 0.75rem */
  text-decoration: none;
  border: 0.125rem solid transparent; /* 2px => 0.125rem */
  box-shadow: 0 0.625rem 0.625rem rgba(0, 0, 0, 0.05); /* 10px => 0.625rem */
  transition: 0.2s ease;
}

.card-list .card-item .card-link:active {
  cursor: grabbing;
}

.card-list .card-item .card-link:hover {
  border-color: #5372F0;
}

.card-list .card-link .card-image {
  width: 100%;
  border-radius: 0.625rem; /* 10px => 0.625rem */
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.card-list .card-link .badge {
  color: #5372F0;
  width: fit-content;
  padding: 0.5rem 1rem; /* 8px => 0.5rem, 16px => 1rem */
  font-size: 0.95rem;
  border-radius: 3.125rem; /* 50px => 3.125rem */
  font-weight: 500;
  background: #DDE4FF;
  margin: 1rem 0 1.125rem; /* 16px => 1rem, 18px => 1.125rem */
  font-family: "Montserrat", serif;
}

.card-list .card-link .badge-designer {
  color: #B22485;
  background: #F7DFF5;
  font-family: "Montserrat", serif;
}

.card-list .card-link .badge-marketer {
  color: #B25A2B;
  background: #FFE3D2;
  font-family: "Montserrat", serif;
}

.card-list .card-link .badge-gamer {
  color: #205C20;
  background: #D6F8D6;
  font-family: "Montserrat", serif;
}

.card-list .card-link .badge-editor {
  color: #856404;
  background: #fff3cd;
  font-family: "Montserrat", serif;
}

.card-list .card-link .card-title {
  color: #000;
  font-size: 1.125rem; /* 18px => 1.125rem */
  font-weight: 500;
  font-optical-sizing: auto;
  font-family: "Montserrat", serif;
}

.card-list .card-link .card-button {
  height: 2.1875rem; /* 35px => 2.1875rem */
  width: 2.1875rem;  /* 35px => 2.1875rem */
  color: #5372F0;
  margin: 1.875rem 0 0.3125rem; /* 30px => 1.875rem, 5px => 0.3125rem */
  background: none;
  cursor: pointer;
  border-radius: 50%;
  border: 0.125rem solid #5372F0; /* 2px => 0.125rem */
  transform: rotate(-45deg);
  transition: 0.4s ease;
}

.card-list .card-link:hover .card-button {
  color: #fff;
  background: #5372F0;
}

.card-wrapper .swiper-pagination-bullet {
  height: 0.8125rem; /* 13px => 0.8125rem */
  width: 0.8125rem;  /* 13px => 0.8125rem */
  opacity: 0.5;
  background: #ffffff;
}

.card-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

.card-wrapper .swiper-slide-button {
  color: #ffffff;
  margin-top: -2.1875rem; /* 35px => 2.1875rem */
}

/* Responsive media query code for small screens */
@media (max-width: 48rem) { /* 768px => 48rem */
  .card-wrapper {
      margin: 0 0.625rem 1.5625rem; /* 10px => 0.625rem, 25px => 1.5625rem */
  }
  .card-wrapper .swiper-slide-button {
      display: none;
  }
}

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

/*=============== VARIABLES CSS ===============*/
:root {
--header-height: 3.5rem;

/*========== Colors ==========*/
--black-color: hsl(220, 24%, 12%);
--black-color-light: hsl(220, 24%, 15%);
--black-color-lighten: hsl(220, 20%, 18%);
--white-color: #fff;
--body-color: hsl(220, 100%, 97%);
--custom-color: #4F6367;
--custom-color2: #red;

/*========== Font and typography ==========*/
/* .5rem = 8px | 1rem = 16px ... */
--body-font: "Montserrat", sans-serif;
--normal-font-size: .938rem;

/*========== Font weight ==========*/
--font-regular: 500;
--font-semi-bold: 600;

/*========== z index ==========*/
--z-tooltip: 10;
--z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 64rem) { /* 1024px => 64rem */
:root {
  --normal-font-size: 1.2rem;
}
}

/*=============== BASE ===============*/

body {
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: var(--normal-font-size);
background-color: var(--body-color);
}

ul {
list-style: none;
}

a {
text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container-nav1 {
max-width: 3000;
margin-inline: 2rem;
}

/*=============== HEADER ===============*/
.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: var(--custom-color);
box-shadow: 0 0.125rem 1rem hsla(220, 32%, 8%, .3); /* 2px => 0.125rem, 16px => 1rem */
z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
height: var(--header-height);
}

.nav__logo, 
.nav__burger, 
.nav__close {
color: var(--white-color);
}

.nav__data {
height: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}

.nav__logo {
display: inline-flex;
align-items: center;
column-gap: 1rem;
font-weight: var(--font-semi-bold);
}

.nav__logo i {
font-weight: initial;
font-size: 1.25rem;
}


.nav__toggle {
position: relative;
width: 2rem;  /* 32px => 2rem */
height: 2rem; /* 32px => 2rem */
}

.nav__burger, 
.nav__close {
position: absolute;
width: max-content;
height: max-content;
inset: 0;
margin: auto;
font-size: 1.25rem;
cursor: pointer;
transition: opacity .1s, transform .4s;
}

.nav__close {
opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 69.875rem) { /* 1118px => 69.875rem */
.nav__menu {
  position: absolute;
  left: 0;
  top: 2.5rem;
  width: 100%;
  height: calc(100vh - 3.5rem);
  overflow: auto;
  pointer-events: none;
  opacity: 0;
  transition: top .4s, opacity .3s;
}
.nav__menu::-webkit-scrollbar {
  width: 0;
}
.nav__list {
  background-color: var(--custom-color);
  padding-top: 1rem;
}
}

.nav__link {
color: var(--white-color);
background-color: var(--custom-color);
font-weight: var(--font-semi-bold);
padding: 1.25rem 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
transition: background-color .3s;
}

.nav__link:hover {
background-color: var(--black-color-light);
}

/* Show menu */
.show-menu {
opacity: 1;
top: 3.5rem;
pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
opacity: 0;
transform: rotate(90deg);
}
.show-icon .nav__close {
opacity: 1;
transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
cursor: pointer;
}

.dropdown__arrow {
font-size: 1.25rem;
font-weight: initial;
transition: transform .4s;
}

.dropdown__link, 
.dropdown__sublink {
padding: 1.25rem 1.25rem 1.25rem 2.5rem;
color: var(--white-color);
background-color: var(--black-color-light);
display: flex;
align-items: center;
column-gap: .5rem;
font-weight: var(--font-semi-bold);
transition: background-color .3s;
}

.dropdown__link i, 
.dropdown__sublink i {
font-size: 1.25rem;
font-weight: initial;
}

.dropdown__link:hover, 
.dropdown__sublink:hover {
background-color: var(--black-color);
}

.dropdown__menu, 
.dropdown__submenu {
max-height: 0;
overflow: hidden;
transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
max-height: 62.5rem; /* 1000px => 62.5rem */
transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
margin-left: auto;
}

.dropdown__sublink {
background-color: var(--black-color-lighten);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 21.25rem) { /* 340px => 21.25rem */
.container {
  margin-inline: 1rem;
}

.nav__link {
  padding-inline: 1rem;
}
}

/* For large devices */
@media screen and (min-width: 69.875rem) { /* 1118px => 69.875rem */
.container {
  margin-inline: auto;
}

.nav {
  height: calc(var(--header-height) + 2rem);
  display: flex;
  justify-content: space-between;
}
.nav__toggle {
  display: none;
}
.nav__list {
  height: 100%;
  display: flex;
  column-gap: 3rem;
}
.nav__link {
  height: 100%;
  padding: 0;
  justify-content: initial;
  column-gap: .25rem;
}
.nav__link:hover {
  background-color: transparent;
}

.dropdown__item, 
.dropdown__subitem {
  position: relative;
}

.dropdown__menu, 
.dropdown__submenu {
  max-height: initial;
  overflow: initial;
  position: absolute;
  left: 0;
  top: 6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, top .3s;
}

.dropdown__link, 
.dropdown__sublink {
  padding-inline: 1rem 3.5rem;
}

.dropdown__subitem .dropdown__link {
  padding-inline: 1rem;
}

.dropdown__submenu {
  position: absolute;
  left: 100%;
  top: 0.5rem;
}

/* Show dropdown menu */
.dropdown__item:hover .dropdown__menu {
  opacity: 1;
  top: 5.5rem;
  pointer-events: initial;
  transition: top .3s;
}

/* Show dropdown submenu */
.dropdown__subitem:hover > .dropdown__submenu {
  opacity: 1;
  top: 0;
  pointer-events: initial;
  transition: top .3s;
}
}

/*
=================================================================
  Section 3 Cards
=================================================================
*/

.card-container { 
display: flex;
justify-content: center; 
flex-wrap: wrap;
margin-top: 6.25rem; /* 100px => 6.25rem */
max-width: 93.75rem; /* 1500px => 93.75rem */
margin: 0 auto; 
}

.card {
width: 20.3125rem; /* 325px => 20.3125rem */
background-color: #f0f0f0; 
border-radius: 0.5rem; /* 8px => 0.5rem */
overflow: hidden; 
box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.2); /* 2px => 0.125rem, 4px => 0.25rem */
margin: 1.25rem; /* 20px => 1.25rem */
padding: 0.625rem; /* 10px => 0.625rem */
height: 34.375rem; /* 550px => 34.375rem */
border-radius: 1.25rem; /* 20px => 1.25rem */
background: rgba(255, 255, 255, 0.4); 
backdrop-filter: blur(0.625rem); /* 10px => 0.625rem */
-webkit-backdrop-filter: blur(0.625rem); 
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
box-shadow: 0 0.625rem 1.25rem rgba(0,0,0,0.6); /* 10px => 0.625rem, 20px => 1.25rem */
}

.card img {
border-radius: 1.25rem; /* 20px => 1.25rem */
width: 100%; 
height: 12.5rem; /* 200px => 12.5rem */
}

.card-content {
padding: 1.25rem; /* 20px => 1.25rem */
object-fit: contain;
}

.card-content h3 { 
font-size: 1.3125rem; /* 21px => 1.3125rem */
margin-bottom: 0.75rem; /* 12px => 0.75rem */
font-family: "Montserrat", serif;
font-optical-sizing: auto;
font-weight: 600;
font-style: normal;
line-break: normal;
}

.card-content p { 
color:#3d4446;
font-size: 1.25rem; /* 20px => 1.25rem */
line-height: 1.4; 
font-family: serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
text-align: justify;
word-wrap: break-word;
word-spacing: -0.0625rem; /* -1px => -0.0625rem */
hyphens: auto;
line-break: auto;
}

.card-content .btn { 
display: inline-block; 
padding: 0.6875rem 1rem; /* 11px => 0.6875rem, 16px => 1rem */
background-color: #333;
text-decoration: none;
border-radius: 0.25rem; /* 4px => 0.25rem */
margin-top: 1rem; /* 16px => 1rem */
color: #fff;
font-family: "Montserrat", serif;
}

.card-content .btn:hover { 
background-color: #FF4742; 
}

/*
=================================================================
  Section one Advertisements
=================================================================
*/

.content-section-one {
background: rgba(255, 255, 255, 0.4);
padding: 2.1875rem; /* 35px => 2.1875rem */
border-radius: 3.125rem; /* 50px => 3.125rem */
box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.2); /* 10px => 0.625rem, 20px => 1.25rem */
max-width: 43.75rem; /* 700px => 43.75rem */
backdrop-filter: blur(0.625rem); /* 10px => 0.625rem */
-webkit-backdrop-filter: blur(0.625rem); 
border: 0.0625rem solid rgba(255, 255, 255, 0.3); /* 1px => 0.0625rem */
overflow: auto;
font-family: "Montserrat", serif;
transition: transform 0.8s ease-in-out, box-shadow 0.8s ease-in-out;
transform-origin: center;
scrollbar-width: none;
-ms-overflow-style: none;  
}

.content-section-one:hover { 
box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.5); /* 20px => 1.25rem, 40px => 2.5rem */
font-optical-sizing: auto;
}

.container-one { 
width: 80%;
display: grid;
margin-left: auto; 
grid-template-columns: repeat(2, 1fr);
grid-gap: 2.5rem; /* 40px => 2.5rem */
margin: 1.875rem auto; /* 30px => 1.875rem */
align-items: center;
}

.image-section-one img { 
width: 100%;
height: 100%;
border-radius: 1.25rem; /* 20px => 1.25rem */
box-shadow: 0 2.5rem 4.375rem rgba(0, 0, 0, 0.3); /* 40px => 2.5rem, 70px => 4.375rem */
object-fit: contain;
height: auto; 
}

.content-section-one .title-one { 
font-style: normal;
font-optical-sizing: auto;
font-size: 1.25rem; /* 20px => 1.25rem */
font-family: "Montserrat", serif;
color: #262a2b;
}

.content-section-one .content-one h3 {
margin-top: 1.25rem; /* 20px => 1.25rem */
color:#6498c1;
font-family: "Montserrat", serif;
font-size: 1.4375rem; /* 23px => 1.4375rem */
font-optical-sizing: auto;
}   

.content-section-one .content-one p {
margin-top: 0.9375rem; /* 15px => 0.9375rem */
font-family: serif;
font-size: 1.1875rem; /* 19px => 1.1875rem */
line-height: 1.3;             
color:#3d4446;
max-width: 43.75rem; /* 700px => 43.75rem */
font-weight: 500;
font-style: normal;
text-align: justify;          
text-align-last: left;        
word-spacing: 0%;        
overflow-wrap: normal;       
}

.content-section-one .content-one .button1 { 
margin-top: 1.875rem; /* 30px => 1.875rem */
}

.content-section-one .content-one .button1 a { 
background-color: #3d3d3d;
padding: 0.75rem 2.5rem; /* 12px => 0.75rem, 40px => 2.5rem */
text-decoration: none; 
color: #fff; 
font-size: 1.25rem; /* 20px => 1.25rem */
letter-spacing: 1.5;
border-radius: 0.625rem; /* 10px => 0.625rem */
box-shadow: 1rem 1.6rem 1.6rem -0.5625rem hsla(0, 0%, 0%, 0.25);
/* The -0.90rem was approximate; we can keep it as is or recalc if needed. */
font-family: "Montserrat", serif;
}

.content-section-one .content-one .button1 a:hover { 
background-color: #FF4742; 
color:#fff;
}

.container-one .social i { 
color:#256680; 
font-size: 1.25rem; /* 20px => 1.25rem */
padding: 0 0.125rem; /* 0px 2px => 0 0.125rem */
padding-top: 3.125rem; /* 50px => 3.125rem */
}

.container-one .social i:hover { 
color: #FF4742; 
}

/*
=================================================================
  Section two Advertisements
=================================================================
*/

.container-two { 
width: 80%;
display: grid;
margin-left: auto; 
grid-template-columns: repeat(2, 1fr);
grid-gap: 2.5rem; /* 40px => 2.5rem */
margin: 1.875rem auto; /* 30px => 1.875rem */
align-items: center;
}

.image-section-two img { 
width: 100%;
height: 100%;
border-radius: 1.25rem; /* 20px => 1.25rem */
box-shadow: 0 2.5rem 4.375rem rgba(0, 0, 0, 0.3); /* 40px => 2.5rem, 70px => 4.375rem */
object-fit: contain;
height: auto; 
}

.content-section-two {
background: rgba(255, 255, 255, 0.4);
padding: 2.1875rem; /* 35px => 2.1875rem */
border-radius: 3.125rem; /* 50px => 3.125rem */
box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.2); /* 10px => 0.625rem, 20px => 1.25rem */
max-width: 43.75rem; /* 700px => 43.75rem */
backdrop-filter: blur(0.625rem); /* 10px => 0.625rem */
-webkit-backdrop-filter: blur(0.625rem);
border: 0.0625rem solid rgba(255, 255, 255, 0.3); /* 1px => 0.0625rem */
overflow: auto;
font-family: "Montserrat", serif;
transition: transform 0.8s ease-in-out, box-shadow 0.8s ease-in-out;
transform-origin: center;
scrollbar-width: none;
-ms-overflow-style: none;
}

.content-section-two::-webkit-scrollbar {
display: none;
}

.content-section-two:hover { 
box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.5); /* 20px => 1.25rem, 40px => 2.5rem */
font-optical-sizing: auto;
}

.content-section-two .title-two {
font-style: normal;
font-optical-sizing: auto;
font-size: 1.25rem; /* 20px => 1.25rem */
font-family: "Montserrat", serif;
color: #262a2b;
}

.content-section-two .content-two h3 {
margin-top: 1.25rem; /* 20px => 1.25rem */
color:#6498c1;
font-family: "Montserrat", serif;
font-size: 1.4375rem; /* 23px => 1.4375rem */
font-optical-sizing: auto;
}

.content-section-two .content-two p { 
margin-top: 0.9375rem; /* 15px => 0.9375rem */
font-family: serif;
font-size: 1.1875rem; /* 19px => 1.1875rem */
line-height: 1.3;             
color:#3d4446;
max-width: 43.75rem; /* 700px => 43.75rem */
font-weight: 500;
font-style: normal;
text-align: justify;          
text-align-last: left;        
word-spacing: 0%;        
overflow-wrap: normal;
}

.content-section-two .content-two .button2 { 
margin-top: 1.875rem; /* 30px => 1.875rem */
}

.content-section-two .content-two .button2 a { 
background-color: #3d3d3d;
padding: 0.75rem 2.5rem; /* 12px => 0.75rem, 40px => 2.5rem */
text-decoration: none; 
color: #fff; 
font-size: 1.25rem; /* 20px => 1.25rem */
letter-spacing: 1.5;
border-radius: 0.625rem; /* 10px => 0.625rem */
box-shadow: 1rem 1.6rem 1.6rem -0.5625rem hsla(0, 0%, 0%, 0.25);
}

.content-section-two .content-two .button2 a:hover { 
background-color: #FF4742; 
color:#fff;
}

.container-two .social i { 
color:#256680; 
font-size: 1.25rem; /* 20px => 1.25rem */
padding: 0 0.125rem; /* 0px 2px => 0 0.125rem */
padding-top: 3.125rem; /* 50px => 3.125rem */
}

.container-two .social i:hover { 
color: #FF4742; 
}

/*
=================================================================
  Footer Section
=================================================================
*/

.footer-container { 
font-family: sans-serif;
background-color: #212329;
padding: 4rem 0 2rem 0;
}

.footer { 
width: 80%;
height: auto;
background-color: #212329;
color: #fff;
display: flex;
justify-content: center;
flex-wrap: wrap;
margin: 0 auto;
font-family: sans-serif;
font-size: 1.0625rem; /* 17px => ~1.0625rem */
}

.footer-heading { 
display: flex;
flex-direction: column;
margin-right: 4rem;
}

.footer-heading h2 { 
margin-bottom: 2rem;
font-family: serif;
}

.footer-heading a { 
color: #fff;
text-decoration: none;
margin-bottom: 0.5rem;
}

.footer-heading a:hover { 
color: red;
transition: 0.3s ease-out;
}

.footer-email-form h2 { 
margin-bottom: 2rem;
font-family: sans-serif;
}

#footer-email {
width: 15.625rem; /* 250px => 15.625rem */
height: 2.5rem;   /* 40px => 2.5rem */
border-radius: 0.25rem; /* 4px => 0.25rem */
outline: none;
padding-left: 0.5rem;
font-size: 1rem;
margin-bottom: 1rem;
}

#footer-email::placeholder { 
color: #b1b1b1;
}

#footer-email-btn { 
width: 6.25rem;  /* 100px => 6.25rem */
height: 2.5rem;  /* 40px => 2.5rem */
border-radius: 0.25rem; /* 4px => 0.25rem */
outline: none; 
border: none;
color: #000000;
font-size: 1.0625rem; /* 17px => ~1.0625rem */
font-family: sans-serif;
}

#footer-email-btn:hover { 
cursor: pointer;
background-color: red;
transition: all 0.4s ease-out;
}

/*
=================================================================
  @media Queries Footer Section
=================================================================
*/

@media screen and (max-width: 71.875rem) { /* 1150px => 71.875rem */
.footer { 
  height: auto;
  align-items: center;
}
.footer-email-form{ 
  margin-top: 4rem;
}
}

@media screen and (max-width: 71.875rem) { /* 1150px again */
.footer { 
  height: auto;
}   
}

@media screen and (max-width: 51.25rem) { /* 820px => 51.25rem */
.footer { 
  padding-top: 2rem; 
}
}

@media screen and (max-width: 45rem) { /* 720px => 45rem */
.footer2 { 
  display: none;
}
.footer-email-form { 
  margin-top: 4rem;
}

.footer1 { 
  padding-left: 4.75rem; /* 76px => 4.75rem */
}
.footer3 { 
  padding-top: 1.25rem; /* 20px => 1.25rem */
}
}

/*
=================================================================
  @media Queries
=================================================================
*/

@media screen and (max-width: 48rem) { /* 768px => 48rem */
.content-section-two {
  height: 43.75rem; /* 700px => 43.75rem */
  padding: 1.125rem; /* 18px => 1.125rem */
  min-width: auto;
  border-radius: 0.625rem; /* 10px => 0.625rem */
}

.content-section-one .title-one { 
  text-align: center;
  font-size: 0.9375rem; /* 15px => 0.9375rem */
}

.content-section-one .content-one p { 
  line-height: 1.4;
  word-wrap: break-word;
  padding: 1.25rem; /* 20px => 1.25rem */
  font-size: 1.25rem; /* 20px => 1.25rem, but there's also 18px => 1.125rem note in code */
  hyphens: auto;
  font-size: 1.125rem; /* If you specifically wanted 18px => 1.125rem */
}

.content-section-one {
  height: 43.75rem; /* 700px => 43.75rem */
  padding: 1.125rem; /* 18px => 1.125rem */
  min-width: auto;
  border-radius: 0.625rem; /* 10px => 0.625rem */
}

.content-section-one .content-one h3 { 
  text-align: center;
  font-size: 1.1875rem; /* 19px => 1.1875rem */
}

.content-section-two .title-two { 
  text-align: center;
  font-size: 0.9375rem; /* 15px => 0.9375rem */
}

.content-section-two .content-two p { 
  line-height: 1.4;
  word-wrap: break-word;
  padding: 1.25rem; /* 20px => 1.25rem */
  font-size: 1.25rem; /* 20px => 1.25rem */
  hyphens: auto;
  font-size: 1.125rem; /* 18px => 1.125rem (if you choose the smaller) */
}

.content-section-two .content-two h3 { 
  text-align: center;
  font-size: 1.1875rem; /* 19px => 1.1875rem */
}

.content-section-one .content-one .button1 {
  padding-left: 4.6875rem; /* 75px => 4.6875rem */
}

.content-section-two .content-two .button2 {
  padding-left: 4.6875rem; /* 75px => 4.6875rem */
}
}

@media screen and (max-width: 41.6875rem) { /* 667px => 41.6875rem */
.content-two p { 
  font-size: 0.9375rem; /* 15px => 0.9375rem */
}
}

@media screen and (max-width: 56.25rem) { /* 900px => 56.25rem */
.image-section-one img {
    width: 100%;
}
.container-one {
    grid-template-columns: 1fr;
}
}

@media screen and (max-width: 160rem) { /* 2560px => 160rem */
.banner-section { 
  min-height: 80vh;
}
}

/*
=================================================================
    @media 1024 x 768 ipad
=================================================================
*/

/* @media 1024 x 768 iPad */
@media screen and (max-width: 64rem) and (max-height: 48rem) {
  /* Adjust header and navigation */
  .header {
    padding: 0.5rem;
  }
  .nav__logo {
    font-size: 1rem;
  }
  
  .container-one {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  
  .container-two {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}