* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: large;
}
body {
  width: 100%;
  height: 100%;
  background: linear-gradient(100deg, rgb(95, 67, 2), rgb(135, 95, 1));
}
header {
  background-color: linear-gradient(100deg, rgb(95, 67, 2), rgb(135, 95, 1));
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #fff;
}
.navbar {
  min-height: 80px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 56px;
  font-family: "Merriweather", serif;
  font-weight: 500;
}
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.nav-branding {
  font-size: 0px;
  width: 10px;
}
.nav-link {
  transition: 0.8s ease;
}
.nav-link:hover {
  color: black;
}

.hamburger {
  display: none;
  cursor: pointer;
}
.bar {
  display: block;
  width: 30px;
  height: 5px;
  background-color: #fff;
  -webkit-transition: all 0.5 ease-in-out;
  margin: 5px auto;
  transition: all 0.5 ease-in-out;
}
/* Media Query Navbar */
@media screen and (min-width: 1280px) and (max-width: 1536px) {
  .navbar {
    min-height: 120px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 56px;
    font-family: "Merriweather", serif;
    font-weight: 500;
  }
  .nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
  .nav-branding {
    font-size: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-link {
    transition: 0.8s ease;
  }
  .nav-link:hover {
    color: black;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(3) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(2) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 175px;
    gap: 0;
    flex-direction: column;
    background: linear-gradient(100deg, rgb(95, 67, 2), rgb(135, 95, 1));
    width: 100%;
    text-align: center;
    transition: 0.7s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-item {
    margin: 16px 0;
  }

  .nav-menu.active {
    left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(3) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(2) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 175px;
    gap: 0;
    flex-direction: column;
    background: linear-gradient(100deg, rgb(95, 67, 2), rgb(135, 95, 1));
    width: 100%;
    text-align: center;
    transition: 0.7s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-item {
    margin: 16px 0;
  }

  .nav-menu.active {
    left: 0;
  }
}
@media screen and (min-width: 640px) and (max-width: 768px) {
  .hamburger {
    display: block;
    padding-left: 100px;
  }
  .navbar a {
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .hamburger.active .bar:nth-child(3) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(2) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 130px;
    gap: 1rem;
    flex-direction: column;
    background: linear-gradient(100deg, rgb(95, 67, 2), rgb(135, 95, 1));
    width: 100%;
    text-align: center;
    transition: 0.7s ease;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-item {
    margin: 16px 0;
  }

  .nav-menu.active {
    left: 0;
  }
}
@media screen and (min-width: 475px) and (max-width: 640px) {
  .hamburger {
    display: block;
    padding-left: 100px;
  }
  .navbar a {
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .hamburger.active .bar:nth-child(3) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(2) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 100px;
    gap: 1rem;
    flex-direction: column;
    background: linear-gradient(100deg, rgb(95, 67, 2), rgb(135, 95, 1));
    width: 100%;
    text-align: center;
    transition: 0.7s ease;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-item {
    margin: 16px 0;
  }

  .nav-menu.active {
    left: 0;
  }
}
@media screen and (min-width: 320px) and (max-width: 475px) {
  .hamburger {
    display: block;
    padding-left: 70px;
  }
  .hamburger.active .bar:nth-child(3) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(2) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 100px;
    gap: 1rem;
    flex-direction: column;
    background: linear-gradient(100deg, rgb(95, 67, 2), rgb(135, 95, 1));
    width: 100%;
    text-align: center;
    transition: 0.7s ease;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 1s ease-in-out;
  }
  .navbar a {
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-item {
    margin: 16px 0;
  }

  .nav-menu.active {
    left: 0;
  }
}
/* Media Query Navbar End */

.section {
  width: 100%;
  height: 100%;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
}
.section-title {
  width: 400px;
  height: 100%;
}
.section-title h2 {
  font-size: 110px;
  width: 70px;
}
.img-sect img {
  width: 390px;
  border-radius: 10px;
}
.page-sect p {
  color: #fcfcfc;
  padding: 10px 20px;
  width: 100%;
  height: inherit;
  font-family: "Merriweather", serif;
  font-weight: 500;
  font-size: 14px;
}
.section-btn {
  display: flex;
  align-items: start;
  justify-content: start;
  margin-top: 10px;
  gap: 3rem;
  padding: 10px 10px;
}
.btn {
  background: white;
  padding: 10px 40px;
  color: #000;
  font-size: 20px;
  outline: none;
  line-height: 30px;
  border-radius: 10px;
  transition: 1s ease-in-out;
}
.btn:nth-last-child(1) {
  background: transparent;
  background-color: rgb(135, 95, 1);
}
.btn:nth-last-child(1):hover {
  color: #fff;
  transition: all 1s ease-in-out;
  font-size: 18px;
}
/* Media Query For Content start */
@media screen and (min-width: 1280px) and (max-width: 1536px) {
  .section {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 4rem;
  }
  .section-title {
    width: 400px;
    height: 100%;
  }
  .section-title h2 {
    font-size: 110px;
    width: 70px;
  }
  .img-sect img {
    width: 400px;
    border-radius: 10px;
  }
  .btn:nth-last-child(1) {
    background: transparent;
    background-color: rgb(135, 95, 1);
  }
  .btn:nth-last-child(1):hover {
    color: #fff;
    transition: all 1s ease-in-out;
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .section {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 3rem;
  }
  .section-title {
    width: 400px;
    height: 100%;
  }
  .section-title h2 {
    font-size: 110px;
    width: 70px;
  }
  .img-sect img {
    width: 400px;
    border-radius: 10px;
  }
  .btn:nth-last-child(1) {
    background: transparent;
    background-color: rgb(135, 95, 1);
  }
  .btn:nth-last-child(1):hover {
    color: #fff;
    transition: all 1s ease-in-out;
    font-size: 18px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
  .section-title {
    width: 400px;
    height: 100%;
  }
  .section-title h2 {
    font-size: 110px;
    width: 70px;
  }
  .img-sect img {
    width: 400px;
    border-radius: 10px;
  }
  .btn:nth-last-child(1) {
    background: transparent;
    background-color: rgb(135, 95, 1);
  }
  .btn:nth-last-child(1):hover {
    color: #fff;
    transition: all 1s ease-in-out;
    font-size: 18px;
  }
  .page-sect p {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    padding-left: 0;
    width: auto;
    height: auto;
  }
}

@media screen and (min-width: 640px) and (max-width: 768px) {
  .section {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
  .section-title {
    width: 100%;
    height: 100%;
    padding-left: 20px;
  }
  .section-title h2 {
    font-size: 70px;
    width: 70px;
    padding-left: 70px;
  }
  .section-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .img-sect img {
    width: 400px;
    border-radius: 10px;
  }
  .btn {
    background: white;
    padding: 10px 20px;
    color: #000;
    font-size: 20px;
    outline: none;
    line-height: 30px;
    border-radius: 10px;
    transition: 1s ease-in-out;
  }
  .btn:nth-last-child(1) {
    background: transparent;
    background-color: rgb(135, 95, 1);
  }
  .btn:nth-last-child(1):hover {
    color: #fff;
    transition: all 1s ease-in-out;
    font-size: 18px;
  }
  .page-sect p {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    padding-left: 70px;
    width: auto;
    height: auto;
  }
}

@media screen and (min-width: 475px) and (max-width: 640px) {
  .section {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
  .section-title {
    width: 100%;
    height: 100%;
  }
  .section-title h2 {
    font-size: 50px;
    width: 70px;
    padding-left: 50px;
  }
  .section-btn {
    padding-left: 50px;
  }
  .img-sect img {
    width: 300px;
    border-radius: 10px;
  }
  .btn {
    background: white;
    padding: 10px 20px;
    color: #000;
    font-size: 20px;
    outline: none;
    line-height: 30px;
    border-radius: 10px;
    transition: 1s ease-in-out;
  }
  .btn:nth-last-child(1) {
    background: transparent;
    background-color: rgb(135, 95, 1);
  }
  .btn:nth-last-child(1):hover {
    color: #fff;
    transition: all 1s ease-in-out;
    font-size: 18px;
  }
  .page-sect p {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: justify;
    padding-left: 40px;
    width: auto;
  }
}

@media screen and (min-width: 320px) and (max-width: 475px) {
  .section {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
  .section-title {
    width: 100%;
    height: 100%;
  }
  .section-title h2 {
    font-size: 50px;
    width: 70px;
    padding-left: 50px;
  }
  .section-btn {
    padding-left: 20px;
    width: 400px;
    height: 50px;
  }
  .img-sect img {
    width: 270px;
    border-radius: 10px;
  }
  .btn {
    background: white;
    padding: 10px 20px;
    color: #000;
    font-size: 20px;
    outline: none;
    line-height: 30px;
    border-radius: 10px;
    transition: 1s ease-in-out;
  }
  .btn:nth-last-child(1) {
    background: transparent;
    background-color: rgb(135, 95, 1);
  }
  .btn:nth-last-child(1):hover {
    color: #fff;
    transition: all 1s ease-in-out;
    font-size: 18px;
  }
  .page-sect p {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: justify;
    padding-left: 40px;
    width: auto;
  }
}
/* Media Query For Content End */

/* About Style */
.about-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px;
  padding-left: 150px;
  width: 100%;
  background-color: #fcfcfc;
}
.about-title h1 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 40px 0;
  padding: 20px;
  font-size: 40px;
  border-bottom: 3px solid black;
  text-transform: uppercase;
}
.about-sect {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 10px;
}
.abouttag > img {
  width: 480px;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}
.abouttag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 10px thick #fff;
  width: 100%;
  height: 100%;
}
.abtpage {
  width: 100%;
  height: 100%;
}
.abtpage h2 {
  font-size: 40px;
  border-bottom: 2px solid #000;
  width: 120px;
  margin: 20px 0;
}
.abtpage p {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Merriweather", serif;
  font-weight: 500;
  font-size: 15px;
}
/* Media Quiers Luxuary Start */
@media screen and (min-width: 1280px) and (max-width: 1536px) {
  .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    width: 100%;
  }
  .about-title h1 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    font-size: 40px;
    border-bottom: 3px solid black;
    text-transform: uppercase;
    font-family: "Merriweather", serif;
    font-weight: 500;
  }
  .abouttag > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    min-width: 300px;
  }
  .abtpage h2 {
    font-size: 45px;
    border-bottom: 2px solid #000;
    width: 150px;
    margin: 20px 0;
    font-family: "Merriweather", serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .abtpage {
    padding-bottom: 20px;
    margin-bottom: 70px;
  }
  .about-sect {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    padding: 0 auto;
    margin: 0 auto;
  }
  .abtpage p {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Merriweather", serif;
    font-weight: 500;
    font-size: 14px;
    text-align: justify;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    width: 100%;
  }
  .about-title h1 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    font-size: 40px;
    border-bottom: 3px solid black;
    text-transform: uppercase;
    font-family: "Merriweather", serif;
    font-weight: 500;
  }
  .abouttag > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
  }
  .abtpage h2 {
    font-size: 45px;
    border-bottom: 2px solid #000;
    width: 150px;
    margin: 20px 0;
    font-family: "Merriweather", serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .abtpage {
    padding-bottom: 20px;
    margin-bottom: 70px;
  }
  .about-sect {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    padding: 0 auto;
  }
  .abtpage p {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Merriweather", serif;
    font-weight: 500;
    font-size: 14px;
    text-align: justify;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    width: 100%;
  }
  .about-title h1 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    font-size: 40px;
    border-bottom: 3px solid black;
    text-transform: uppercase;
    font-family: "Merriweather", serif;
    font-weight: 500;
  }
  .abouttag > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
  }
  .abtpage h2 {
    font-size: 45px;
    border-bottom: 2px solid #000;
    width: 150px;
    margin: 20px 0;
    font-family: "Merriweather", serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-sect {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    padding: 0 auto;
  }
  .abtpage p {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Merriweather", serif;
    font-weight: 500;
    font-size: 14px;
    text-align: justify;
  }
}

@media screen and (min-width: 640px) and (max-width: 768px) {
  .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    width: 100%;
  }
  .about-title h1 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    font-size: 40px;
    border-bottom: 3px solid black;
    text-transform: uppercase;
    font-family: "Merriweather", serif;
    font-weight: 500;
  }
  .abouttag > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
  }
  .abtpage h2 {
    font-size: 45px;
    border-bottom: 2px solid #000;
    width: 150px;
    margin: 20px 0;
    font-family: "Merriweather", serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-sect {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    padding: 0 auto;
  }
  .abtpage p {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Merriweather", serif;
    font-weight: 500;
    font-size: 20px;
    text-align: justify;
  }
}

@media screen and (min-width: 475px) and (max-width: 640px) {
  .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    width: 100%;
  }
  .about-title h1 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    font-size: 40px;
    border-bottom: 3px solid black;
    text-transform: uppercase;
    font-family: "Merriweather", serif;
    font-weight: 500;
  }
  .abouttag > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
  }
  .abtpage h2 {
    font-size: 45px;
    border-bottom: 2px solid #000;
    width: 150px;
    margin: 20px 0;
    font-family: "Merriweather", serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-sect {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    padding: 0 auto;
  }
  .abtpage p {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Merriweather", serif;
    font-weight: 500;
    font-size: 15px;
    text-align: justify;
  }
}

@media screen and (min-width: 320px) and (max-width: 475px) {
  .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    width: 100%;
  }
  .about-title h1 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    font-size: 40px;
    border-bottom: 3px solid black;
    text-transform: uppercase;
    font-family: "Merriweather", serif;
    font-weight: 500;
  }
  .abouttag > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    padding: 10px;
  }
  .abtpage h2 {
    font-size: 45px;
    border-bottom: 2px solid #000;
    width: 120px;
    margin: 20px 0;
    font-family: "Merriweather", serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-sect {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    padding: 0 auto;
  }
  .abtpage p {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Merriweather", serif;
    font-weight: 500;
    font-size: 12px;
    text-align: justify;
  }
}
/* Media Quiers Luxuary End */

/* About second section */
.second-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background-color: #fcfcfc;
  padding-left: 180px;
  width: 100%;
  height: 100%;
}
.col-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  margin: 70px;
}
.col-title {
  display: block;
  align-items: start;
  justify-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
.col-title h2 {
  width: 110px;
  height: 100%;
  display: flex;
  align-items: start;
  text-align: center;
  font-size: 35px;
  border-bottom: 2px solid black;
  text-transform: capitalize;
}
.col-title p {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Merriweather", serif;
  font-weight: 500;
  font-size: 15px;
  text-align: justify;
}

@media screen and (min-width: 1280px) and (max-width: 1536px) {
  .second-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-color: #fcfcfc;
    padding-left: 180px;
    width: 100%;
    height: 100%;
  }
  .col-img > img {
    width: 500px;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    margin: 70px;
  }
  .col-title {
    display: block;
    align-items: center;
    justify-items: center;
    width: 100%;
    height: 100%;
    padding: 70px;
  }
  .col-title p {
    max-width: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Merriweather", serif;
    font-weight: 500;
    font-size: 15px;
    text-align: justify;
  }
  .col-title h2 {
    width: 110px;
    height: 100%;
    display: flex;
    align-items: start;
    text-align: center;
    font-size: 35px;
    border-bottom: 2px solid black;
    text-transform: capitalize;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .second-col {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fcfcfc;
    width: 100%;
    height: 100%;
    padding: 40px;
  }
  .col-img > img {
    width: 430px;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
  }
  .col-title {
    display: block;
    align-items: center;
    justify-items: center;
    width: 100%;
    height: 100%;
  }
  .col-title p {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Merriweather", serif;
    font-weight: 500;
    font-size: 12px;
    text-align: justify;
  }
  .col-title h2 {
    width: 110px;
    height: 100%;
    display: flex;
    align-items: start;
    text-align: center;
    font-size: 35px;
    border-bottom: 2px solid black;
    text-transform: capitalize;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .second-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fcfcfc;
    width: 100%;
    height: 100%;
    padding-right: 170px;
    overflow: hidden;
  }
  .col-img > img {
    width: 520px;
    height: 100%;
    border-radius: 10px;
  }
  .col-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    width: 100px;
    height: 100%;
  }
  .col-title p {
    width: 740px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Merriweather", serif;
    font-weight: 500;
    font-size: 14px;
    text-align: justify;
  }
  .col-title h2 {
    width: 120px;
    height: 100%;
    display: flex;
    align-items: start;
    text-align: start;
    font-size: 35px;
    border-bottom: 2px solid black;
    text-transform: capitalize;
    margin: 20px;
  }
}

@media screen and (min-width: 640px) and (max-width: 768px) {
  .second-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fcfcfc;
    width: 100%;
    height: 100%;
    padding-right: 170px;
    overflow: hidden;
  }
  .col-img > img {
    width: 520px;
    height: 100%;
    border-radius: 10px;
  }
  .col-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    width: 100px;
    height: 100%;
  }
  .col-title p {
    width: 550px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Merriweather", serif;
    font-weight: 500;
    font-size: 22px;
    text-align: justify;
  }
  .col-title h2 {
    width: 120px;
    height: 100%;
    display: flex;
    align-items: start;
    text-align: start;
    font-size: 35px;
    border-bottom: 2px solid black;
    text-transform: capitalize;
    margin: 20px;
  }
}
@media screen and (min-width: 475px) and (max-width: 640px) {
  .second-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fcfcfc;
    width: 100%;
    height: 100%;
    padding-right: 170px;
    overflow: hidden;
  }
  .col-img > img {
    width: 450px;
    height: 100%;
    border-radius: 10px;
  }
  .col-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    width: 100px;
    height: 100%;
  }
  .col-title p {
    width: 430px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Merriweather", serif;
    font-weight: 500;
    font-size: 15px;
    text-align: justify;
  }
  .col-title h2 {
    width: 120px;
    height: 100%;
    display: flex;
    align-items: start;
    text-align: start;
    font-size: 35px;
    border-bottom: 2px solid black;
    text-transform: capitalize;
    margin: 20px;
  }
}
@media screen and (min-width: 320px) and (max-width: 475px) {
  .second-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fcfcfc;
    width: 100%;
    height: 100%;
    padding-right: 150px;
    overflow: hidden;
  }
  .col-img > img {
    width: 250px;
    height: 100%;
    border-radius: 10px;
  }
  .col-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    width: 100px;
    height: 100%;
  }
  .col-title p {
    width: 250px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Merriweather", serif;
    font-weight: 500;
    font-size: 12px;
    text-align: justify;
    line-height: 20px;
  }
  .col-title h2 {
    width: 120px;
    height: 100%;
    display: flex;
    align-items: start;
    text-align: start;
    font-size: 35px;
    border-bottom: 2px solid black;
    text-transform: capitalize;
    margin: 20px;
  }
}

/* Contact */
.about-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  margin: 30px 0;
}
.about_title_main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  height: 100%;
  padding: 30px;
}
.about_imgTag > img {
  width: 500px;
  padding: 20px;
}
.about_Tagp > p {
  width: 550px;
  font-size: 18px;
  padding: 20px;
  letter-spacing: 1px;
  text-align: justify;
}
/* Media Qurery About Start */
@media screen and (min-width: 1280px) and (max-width: 1536px) {
  .about-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 100%;
    margin: 30px 0;
  }
  .about_title_main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
    padding: 30px;
  }
  .about_imgTag > img {
    width: 500px;
    padding: 20px;
  }
  .about_Tagp > p {
    width: 550px;
    font-size: 18px;
    padding: 20px;
    letter-spacing: 1px;
    text-align: start;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .about-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 100%;
    margin: 30px 0;
  }
  .about_title_main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    height: 100%;
    padding: 30px;
  }
  .about_imgTag > img {
    width: 500px;
    padding: 20px;
  }
  .about_Tagp > p {
    width: 100%;
    font-size: 14px;
    padding: 15px;
    letter-spacing: 1px;
    text-align: justify;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about-us {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 30px 0;
  }
  .about_title_main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
    padding: 30px;
  }
  .about_Tagp p {
    width: 100%;
    height: 100%;
    text-align: justify;
    font-size: 20px;
  }
  .about_imgTag img {
    width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 640px) and (max-width: 768px) {
  .about-us {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 30px 0;
  }
  .about_title_main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
    padding: 30px;
  }
  .about_Tagp p {
    width: 100%;
    height: 100%;
    text-align: justify;
    font-size: 20px;
  }
  .about_imgTag img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 475px) and (max-width: 640px) {
  .about-us {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 30px 0;
  }
  .about_title_main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
    padding: 30px;
  }
  .about_Tagp p {
    width: 100%;
    height: 100%;
    text-align: justify;
    font-size: 20px;
  }
  .about_imgTag img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 320px) and (max-width: 475px) {
  .about-us {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 30px 0;
  }
  .about_title_main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
    padding: 30px;
  }
  .about_Tagp p {
    width: 100%;
    height: 100%;
    text-align: justify;
    font-size: 20px;
  }
  .about_imgTag img {
    width: 100%;
    height: 100%;
  }
}

.country_section {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: #fcfcfc;
}
.countryMain {
  display: grid;
  grid-template-columns: repeat(3, 3fr);
  gap: 1.1rem;
  align-items: center;
  justify-content: center;
  width: 900px;
  height: 100%;
  padding: 40px 0;
  padding-left: 50px;
}
.countryTag > img {
  width: 100%;
  height: 70%;
  border-radius: 3.5px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.countryTitle {
  font-size: 20px;
  text-transform: uppercase;
  border-bottom: 2px solid #000;
}
.countryTag > p {
  width: 100%;
  height: 100%;
  font-size: 20px;
  margin: 25px;
}
.countryTag {
  width: 100%;
  height: 300px;
  background: #f1eeee;
  border-radius: 10px;
}
.countryTag .countrytitle {
  width: 250px;
  font-size: 20px;
  text-align: justify;
}
/* Media Query Supply start */
@media screen and (min-width: 1280px) and (max-width: 1536px) {
  .country_section {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: #fcfcfc;
  }
  .countryMain {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    gap: 1.1rem;
    align-items: center;
    justify-content: center;
    width: 900px;
    height: 100%;
    padding: 40px 0;
    padding-left: 10px;
  }
  .countryMain > img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .countryTitle h2 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .countryTag > p {
    font-size: 20px;
    font-family: "Merriweather", serif;
    font-weight: 500;
  }
  .countrytitle__usa {
    width: 10px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .country_section {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: #fcfcfc;
  }
  .countryMain {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-right: 70px;
  }
  .countryMain > img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .countryTitle h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Merriweather", serif;
    font-weight: 500;
  }
  .countryTag > p {
    font-size: 20px;
    font-family: "Merriweather", serif;
    font-weight: 500;
  }
  .countrytitle__usa {
    width: 10px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .country_section {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: #fcfcfc;
  }
  .countryMain {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-right: 70px;
  }
  .countryMain > img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .countryTitle h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Merriweather", serif;
    font-weight: 500;
  }
  .countryTag > p {
    font-size: 20px;
    font-family: "Merriweather", serif;
    font-weight: 500;
  }
  .countrytitle__usa {
    width: 10px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 640px) and (max-width: 768px) {
  .country_section {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: #fcfcfc;
  }
  .countryMain {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-right: 70px;
  }
  .countryMain > img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .countryTitle h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Merriweather", serif;
    font-weight: 500;
  }
  .countryTag > p {
    font-size: 20px;
    font-family: "Merriweather", serif;
    font-weight: 500;
  }
  .countrytitle__usa {
    width: 10px;
    padding-right: 40px;
  }
}

@media screen and (min-width: 475px) and (max-width: 640px) {
  .country_section {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: #fcfcfc;
  }
  .countryMain {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-right: 40px;
  }
  .countryMain > img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .countryTitle h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Merriweather", serif;
    font-weight: 500;
  }
  .countryTag > p {
    font-size: 20px;
    font-family: "Merriweather", serif;
    font-weight: 500;
  }
  .countrytitle__usa {
    width: 10px;
    padding-right: 40px;
  }
}

@media screen and (min-width: 320px) and (max-width: 475px) {
  .country_section {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: #fcfcfc;
  }
  .countryMain {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-right: 40px;
  }
  .countryMain > img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .countryTitle h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Merriweather", serif;
    font-weight: 500;
  }
  .countryTag > p {
    font-size: 20px;
    font-family: "Merriweather", serif;
    font-weight: 500;
  }
  .countrytitle__usa {
    width: 10px;
    padding-right: 40px;
  }
}
/* Media Query Supply end */

.contact-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 40px;
  padding: 30px;
}
.containContainer {
  background: #ffff;
  width: 40%;
  height: 500px;
  display: none;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 20px;
  gap: 3rem;
  border-radius: 10px;
}
.address {
  display: flex;
  justify-content: center;
  font-size: 0.45rem;
  gap: 1rem;
}
.tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.45rem;
}
.email {
  display: flex;
  align-content: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.45rem;
}
span {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map {
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 5px;
  background-color: #fff;
}
.form {
  background-color: #ffff;
  width: 40%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 20px;
  gap: 3rem;
  border-radius: 10px;
}
.row {
  display: flex;
  align-content: center;
  justify-content: center;
  margin: 0 auto;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  height: 100%;
}
.colum input {
  width: 500px;
  height: 40px;
  border-radius: 5px;
  background: transparent;
  border: none;
  color: #000;
  border-bottom: 1px solid #000;
}
.colum textarea {
  width: 400px;
  height: 150px;
  border-radius: 3px;
}
input[type="submit"] {
  display: block;
  margin: 0 auto;
  width: 250px;
  height: 40px;
}

@media screen and (min-width: 1280px) and (max-width: 1536px) {
  .contact-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 40px;
    padding: 30px;
  }
  .containContainer {
    background-color: #ffff;
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 20px;
    gap: 2rem;
    border-radius: 10px;
  }
  .form {
    width: 50%;
    height: 100%;
    margin-right: 100px;
  }
  .colum input {
    width: 520px;
    height: 40px;
    border-radius: 5px;
    background: transparent;
    border: none;
    color: #000;
    border-bottom: 1px solid #000;
  }
  .colum textarea {
    width: 520px;
    height: 150px;
    border-radius: 3px;
  }
  input[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 200px;
    height: 40px;
  }
  .row {
    display: flex;
    align-content: center;
    justify-content: center;
    margin: 0 auto;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .contact-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    height: 100%;
    margin-right: 100px;
  }
  .containContainer {
    display: flex;
    width: 100%;
    height: 100%;
    margin-right: 100px;
  }
  .form {
    width: 50%;
    height: 100%;
    margin-right: 100px;
  }
  .colum input {
    width: 520px;
    height: 40px;
    border-radius: 5px;
    background: transparent;
    border: none;
    color: #000;
    border-bottom: 1px solid #000;
  }
  .colum textarea {
    width: 520px;
    height: 150px;
    border-radius: 3px;
  }
  input[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    height: 100%;
  }
  .row {
    display: flex;
    align-content: center;
    justify-content: center;
    margin: 0 auto;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
  }
  .containContainer {
    display: flex;
    width: 100%;
    height: 100%;
    margin-right: 100px;
  }
  .form {
    width: 100%;
    height: 100%;
    margin-right: 100px;
  }
  .colum input {
    width: 620px;
    height: 40px;
    border-radius: 5px;
    background: transparent;
    border: none;
    color: #000;
    border-bottom: 1px solid #000;
  }
  .colum textarea {
    width: 620px;
    height: 150px;
    border-radius: 3px;
  }
  input[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    height: 100%;
  }
  .row {
    display: flex;
    align-content: center;
    justify-content: center;
    margin: 0 auto;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 640px) and (max-width: 768px) {
  .contact-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
  }
  .containContainer {
    display: flex;
    width: 100%;
    height: 100%;
    margin-right: 100px;
  }
  .form {
    width: 100%;
    height: 100%;
    margin-right: 100px;
  }
  .colum input {
    width: 520px;
    height: 40px;
    border-radius: 5px;
    background: transparent;
    border: none;
    color: #000;
    border-bottom: 1px solid #000;
  }
  .colum textarea {
    width: 520px;
    height: 150px;
    border-radius: 3px;
  }
  input[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 200px;
    height: 40px;
  }
  .row {
    display: flex;
    align-content: center;
    justify-content: center;
    margin: 0 auto;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 475px) and (max-width: 640px) {
  .contact-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
  }
  .containContainer {
    display: flex;
    width: 100%;
    height: 100%;
    margin-right: 100px;
  }
  .form {
    width: 100%;
    height: 100%;
    margin-right: 100px;
  }
  .colum input {
    width: 370px;
    height: 40px;
    border-radius: 5px;
    background: transparent;
    border: none;
    color: #000;
    border-bottom: 1px solid #000;
  }
  .colum textarea {
    width: 370px;
    height: 150px;
    border-radius: 3px;
  }
  input[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 200px;
    height: 40px;
  }
  .row {
    display: flex;
    align-content: center;
    justify-content: center;
    margin: 0 auto;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 320px) and (max-width: 475px) {
  .contact-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
  }
  .containContainer {
    display: flex;
    width: 100%;
    height: 100%;
    margin-right: 100px;
  }
  .form {
    width: 100%;
    height: 100%;
    margin-right: 100px;
  }
  .colum input {
    width: 230px;
    height: 40px;
    border-radius: 5px;
    background: transparent;
    border: none;
    color: #000;
    border-bottom: 1px solid #000;
  }
  .colum textarea {
    width: 230px;
    height: 150px;
    border-radius: 3px;
  }
  input[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 190px;
    height: 40px;
  }
  .row {
    display: flex;
    align-content: center;
    justify-content: center;
    margin: 0 auto;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    height: 100%;
  }
}
