* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}

.main {
  font-family: Montserrat;
  background-color: #e9e8e8;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 25% 25% 50%;
  grid-template-rows: 30% 55% 15%;
}

.left-top-left {
  background-color: black;
  grid-column: 1/2;
  grid-row: 1/2;
  height: 20px;
  width: 20px;
  transform: rotate(45deg);
  margin: 50px;
}

.left-top-right {
  /* background-color: forestgreen; */
  grid-column: 2/3;
  grid-row: 1/2;
  justify-self: end;
  padding: 50px;
  text-align: right;
}

.menu-icon {
  display: none;
}

.left-top-right h5 {
  margin-bottom: 50px;
  font-size: 1.1rem;
  font-weight: 600;
}

.left-top-right h6 {
  color: #454545;
  font-size: 0.8rem;
  font-weight: 600;
}

.left-center {
  /* background-color: darkorchid; */
  grid-row: 2/3;
  grid-column: 1/3;
  padding: 35px;
}

.left-center h1 {
  font-size: 6rem;
  font-weight: 400;
  line-height: 6vw;
}

.left-center h1:nth-child(2n) {
  text-align: center;
}

.left-bottom {
  grid-column: 1/3;
  grid-row: 3/4;
  padding: 35px;
}

.left-bottom p {
  color: #454545;
  width: 48%;
  font-size: 0.9rem;
}

.icon {
  background-color: orangered;
  height: 55px;
  width: 55px;
  padding: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.icon i {
  font-size: 2rem;
  font-weight: 100;
  color: white;
}

.right {
  /* background-color: aqua; */
  grid-column: 3/4;
  grid-row: 1/4;
  padding: 40px 0px;
  padding-right: 8vw;
}

.right video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.right i {
  color: black;
  font-size: 16px;
  position: absolute;
  right: 1.5rem;
  padding: 6px;
  font-weight: 600;
  transform: rotate(90deg);
  cursor: pointer;
}

@media (max-width: 1024px) {
  .main {
    grid-template-columns: 25% 25% 50%;
    grid-template-rows: 30% 50% 20%;
  }

  .left-top-left {
    height: 18px;
    width: 18px;
    margin: 40px;
  }

  .left-top-right {
    justify-self: end;
    padding: 40px;
  }

  .left-top-right h5 {
    margin-bottom: 35px;
  }

  .left-top-right h6 {
    font-size: 0.7rem;
  }

  .left-center {
    padding: 20px;
    align-self: center;
  }

  .left-center h1 {
    font-size: 4.5rem;
    line-height: 6vw;
  }

  .left-bottom {
    padding-left: 40px;
  }

  .left-bottom p {
    color: #454545;
    width: 65%;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .main {
    grid-template-columns: 25% 25% 50%;
    grid-template-rows: 30% 50% 20%;
  }

  .left-top-left {
    height: 18px;
    width: 18px;
    margin: 40px;
  }

  .left-top-right {
    justify-self: end;
    padding: 40px 40px 0px 0px;
  }

  .left-top-right h5 {
    margin-bottom: 30px;
  }

  .left-top-right h6 {
    font-size: 0.7rem;
  }

  .left-center {
    padding: 0px;
    margin-left: 30px;
    align-self: center;
  }

  .left-center h1 {
    font-size: 3.6rem;
    line-height: 6.8vw;
  }

  .left-bottom {
    padding-left: 30px;
  }

  .left-bottom p {
    color: #454545;
    width: 86%;
    font-size: 0.8rem;
  }

  .icon {
    height: 45px;
    width: 45px;
    padding: 30px;
  }

  .icon i {
    font-size: 1.6rem;
    font-weight: 100;
    color: white;
  }
  .right i {
    font-size: 14px;
    right: 1rem;
  }
}

@media (max-width: 376px) {
  .main {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 10% 40% 10% 40%;
  }

  .left-top-left {
    background-color: black;
    height: 20px;
    width: 20px;
    transform: rotate(45deg);
    margin: 25px;
    grid-row: 1/2;
  }

  .left-top-right {
    display: none;
  }

  .left-center {
    margin: 0 30px;
    grid-row: 2/3;
  }

  .left-center h1 {
    font-size: 3.4rem;
    font-weight: 400;
    line-height: 15vw;
  }

  .left-center h1:nth-child(2n) {
    text-align: right;
  }

  .left-bottom {
    grid-column: 1/3;
    grid-row: 3/4;
    padding: 10px;
  }

  .left-bottom p {
    text-align: center;
    color: #454545;
    font-size: 0.7rem;
    margin: 0 auto;
  }

  .icon {
    height: 30px;
    width: 30px;
    padding: 25px;
    top: 63%;
  }

  .icon i {
    font-size: 1.6rem;
    font-weight: 100;
    color: white;
    transform: rotate(90deg);
  }

  .right {
    padding: 0px;
    grid-column: 1/2;
    grid-row: 4/5;
  }

  .right video {
    height: 150%;
    width: 100%;
    object-fit: cover;
    border-radius: 0px;
    margin-top: 20px;
  }

  .right i {
    display: none;
  }
}

@media (max-width: 426px) {
  .main {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 10% 40% 10% 40%;
    position: relative;
  }

  .left-top-left {
    background-color: black;
    height: 20px;
    width: 20px;
    transform: rotate(45deg);
    margin: 25px;
    grid-row: 1/2;
  }

  .left-top-right {
    display: none;
  }

  .menu-icon {
    display: initial;
    position: absolute;
    padding: 30px;
    top: 0%;
    right: 0%;
  }

  .menu-icon i {
    color: black;
    font-size: 20px;
    font-weight: 700;
  }

  .left-center {
    margin: 0 30px;
    grid-row: 2/3;
  }

  .left-center h1 {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 12vw;
  }

  .left-center h1:nth-child(2n) {
    text-align: right;
  }

  .left-bottom {
    grid-column: 1/3;
    grid-row: 3/4;
    padding: 14px;
  }

  .left-bottom p {
    text-align: center;
    color: #454545;
    width: 80%;
    font-size: 0.8rem;
    margin: 0 auto;
  }

  .icon {
    height: 30px;
    width: 30px;
    padding: 25px;
    top: 65%;
  }

  .icon i {
    font-size: 1.6rem;
    font-weight: 100;
    color: white;
    transform: rotate(90deg);
  }

  .right {
    padding: 0px;
    grid-column: 1/2;
    grid-row: 4/5;
  }

  .right video {
    height: 150%;
    width: 100%;
    object-fit: cover;
    border-radius: 0px;
    margin-top: 30px;
  }

  .right i {
    display: none;
  }
}
