@charset "UTF-8";
/* ========== Google Fonts =========== */

@import url('https://fonts.cdnfonts.com/css/arial-2');

/* ========== CSS Variables =========== */
:root {
  --primary-color: #8A241B;
  --default-color: #4f5665;
  --black-color: #000;
  --grey-color: #f0f0f0;
  --white-color: #fff;
  --lightpink: #fff;
  --blue: #1a1aff;
  --custom: #8A241B;
  --color: #4d4d4d;
  --lightblue: #ccccff;
  --box-shadow-1: 0 5px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-2: 0 5px 15px rgba(255, 94, 58, 0.2);
  --gradient: linear-gradient(to bottom, #fccb90, #ff9a9e);
  --btn-gradient: linear-gradient(to bottom, #8A241B 50%, #8A241B);
}

*,
*::after,
*::before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--black-color);
  background-color: var(--white-color);
}

h1,
h2,
h3,
h4 {
  color: var(--black-color);
  line-height: 1.2;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style-type: none;
}

section {
  padding: 5rem 0 5rem;
  overflow: hidden;
}

p {
  line-height: 3rem;
  font-size: 1.6rem;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========== Custom Classes =========== */
.container {
  max-width: 120rem;
  padding: 0 3rem;
  margin: auto;
}

@media (min-width: 1600px) {
  .container {
    max-width: 160rem;
  }
}

@media (max-width: 567px) {
  .container {
    padding: 0 1rem;
  }
}

.d-flex {
  display: flex;
  align-items: center;
}

/* ========== Header =========== */
.header {
  margin-bottom: 4rem;
}

.header .navbar {
  padding: 2.5rem 0;
  position: relative;
  z-index: 1;
}

.header .navbar .row {
  justify-content: space-between;

}

.header .navbar .row .nav-list a {
  display: inline-block;
  padding: 1rem;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--black-color);

}

.header .navbar .row .nav-list a.user-link {
  display: none;
}

.header .navbar .row .nav-list a:not(:last-child) {
  margin-right: 0.5rem;
}

.header .navbar .row .nav-list a:hover {
  color: var(--primary-color);
}

.header .navbar .row .icons .icon {
  font-size: 2.2rem;
  padding: 0.5rem;
  color: var(--black-color);
  cursor: pointer;
  justify-content: center;
  position: relative;
}

.header .navbar .row .icons .icon:not(:last-child) {
  margin-right: 3rem;
}

.header .navbar .row .icons .icon span {
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: var(--primary-color);
  border: 1px solid var(--black-color);
  position: absolute;
  top: 0.3rem;
  right: 0.4rem;
  border-radius: 50%;
}

.header .navbar .row .icons .icon:hover {
  background-color: #f4f4f4;
}

.header .hamburger,
.header .close {
  display: none;
}

@media (min-width: 1600px) {
  .header .header .navbar {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .header .navbar .row .icons {
    display: none;
  }

  .custom-col {
    display: inline-table !important;
    border-radius: 2rem;

  }

  .header .navbar .row .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 35rem;
    height: 100%;
    background-color: var(--white-color);
    z-index: 1000;
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 1rem;
    transition: 0.5s;
  }

  .header .navbar .row .nav-list a {
    font-size: 1.6rem;
  }

  .header .navbar .row .nav-list a:not(:last-child) {
    margin: 0 0 1rem 0;
  }

  .header .navbar .row .nav-list .close {
    display: block;
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    color: var(--black-color);
    font-size: 3rem;
  }

  .header .navbar .row .nav-list.show {
    right: 0;
  }

  .header .navbar .row .hamburger {
    display: block;
    font-size: 3rem;
    color: var(--black-color);
  }
}

/* ========== Hero Area =========== */
.header .hero {
  height: 80vh;
  margin: 0 3rem;
}

.header .hero .row {
  margin-top: 10px;
  height: 100%;
  background-color: #F5F5F6;
  border-radius: 2rem;
  position: relative;
}

.header .hero .row .col {
  margin-left: 5rem;
}

.header .hero .row .col .subtitle {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 4rem;
}

.header .hero .row .col h1 {
  font-family: 'Arial', sans-serif;
  font-size: 10rem;
  line-height: 1;
}

.header .hero .row .col h1 .i {
  color: var(--primary-color);
  position: relative;
}

.header .hero .row .col h1 .i:before {
  content: "ı";
  position: absolute;
  color: var(--black-color);
}

.header .hero .row .col p {
  font-size: 2rem;
  margin-bottom: 6rem;
}

.header .hero .row .col .btn {
  display: inline-block;
  padding: 1.5rem 6rem;
  border-radius: 1rem;
  color: var(--white-color);
  font-weight: 500;
  font-size: 1.6rem;
  background-color: #8A241B;
  box-shadow: var(--box-shadow-1);
}

.header .hero .row img {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1600px) {
  .header .hero .row img {
    width: 40rem;
  }
}

@media (max-width: 1200px) {
  .header .hero .row .col h1 {
    font-size: 8rem;
  }
}

@media (max-width: 768px) {
  .header .hero .row .col {
    position: absolute;
    top: 10%;
    margin-left: 0;
  }

  .header .hero .row .col .subtitle {
    font-size: 1.6rem;
  }

  .header .hero .row .col h1 {
    font-size: 7rem;
  }

  .header .hero .row .col p {
    font-size: 1.6rem;
  }

  .header .hero .row .col .btn {
    padding: 1.2rem 4rem;
  }

  .header .hero .row img {
    width: 40rem;
  }
}

@media (max-width: 567px) {

  .custom-col {
    display: inline-table;
    border-radius: 2rem;
  }

  .offers {
    font-size: 18px !important;
    line-height: normal;
    line-height: 3rem;
  }

  .header .hero {
    height: 80vh;
    margin: 0 1rem;
  }

  .header .hero .row .col .subtitle {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .header .hero .row .col h1 {
    font-size: 5rem;
    line-height: 1.15em;
  }

  .header .hero .row .col p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .header .hero .row .col .btn {
    padding: 1.2rem 4rem;
  }

  .header .hero .row img {
    width: 25rem;
    left: 0;
  }
}

/* ========== Collection =========== */
.section .title {
  text-align: center;
  margin-bottom: 5rem;
  font-family: 'Arial', sans-serif;
}

.section .title span {
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  position: relative;
}

/* .section .title span::before {
  content: "";
  position: absolute;
  bottom: -0.7rem;
  right: 2rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--primary-color);
} */

.section .title h2 {
  font-size: 2.4rem;
}

.collection .filters {
  justify-content: center;
  margin-bottom: 7rem;
}

.collection .filters div {
  padding: 1.7rem 4rem;
  color: var(--default-color);
  font-size: 1.7rem;
  border-radius: 0.8rem;
  box-shadow: var(--box-shadow-1);
  cursor: pointer;
}

.collection .filters div:not(:last-child) {
  margin-right: 4rem;
}

.collection .filters div:hover,
.collection .filters div.active {
  background: var(--gradient);
  color: var(--white-color);
  box-shadow: var(--box-shadow-2);
}

.collection .products .swiper-wrapper {
  padding: 0 0 1.5rem;
}

.collection .products .product {
  border-radius: 2.5rem;
  box-shadow: var(--box-shadow-1);
  overflow: hidden;
}

.collection .products .product .top {
  background: var(--gradient);
  height: 30rem;
  justify-content: center;
  position: relative;
}

.collection .products .product .top img {
  height: 25rem;
}

.collection .products .product .top .icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  font-size: 2.5rem;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.collection .products .product .top:hover .icon {
  opacity: 1;
  visibility: visible;
}

.collection .products .product .bottom {
  padding: 2.5rem 2rem;
}

.collection .products .product .bottom h4 {
  font-size: 1.8rem;
  width: 85%;
  height: 5rem;
  margin-bottom: 1.5rem;
}

.collection .products .product .bottom .d-flex {
  justify-content: space-between;
}

.collection .products .product .bottom .price {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-radius: 1rem;
  padding: 0.5rem 2rem;
}

.collection .products .product .bottom .rating {
  color: var(--primary-color);
}

.collection .products .product .bottom .rating i:not(:last-child) {
  margin-right: 0.3rem;
}

.collection .products .pagination {
  text-align: center;
  margin-top: 3rem;
}

.collection .products .pagination .swiper-pagination-bullet {
  background-color: var(--primary-color);
  height: 1rem;
  width: 1rem;
}

.collection .products .pagination .swiper-pagination-bullet-active {
  width: 3rem;
  border-radius: 1.5rem;
}

@media (min-width: 1600px) {
  .collection .products .product .top {
    height: 35rem;
  }
}

@media (max-width: 768px) {
  .collection .filters {
    margin-bottom: 7rem;
  }

  .collection .filters div {
    padding: 1.2rem 2.5rem;
    font-size: 1.6rem;
  }

  .collection .filters div:not(:last-child) {
    margin-right: 2rem;
  }
}

@media (max-width: 567px) {
  .collection .filters {
    flex-wrap: wrap;
  }

  .collection .filters div {
    padding: 0.7rem 1rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .collection .filters div:not(:last-child) {
    margin-right: 1rem;
  }
}

/* ========== Arrivals =========== */
.new-arrival .row {
  display: grid;
}

.new-arrival .row .col {
  position: relative;
  padding: 1rem;
}

.new-arrival .row .col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}

.new-arrival .row .col-1,
.new-arrival .row .col-2 {
  grid-column: 1;
}

.new-arrival .row .col-3 {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.new-arrival .row .col h3 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  color: var(--white-color);
  font-size: 2rem;
  line-height: 3.5rem;
}

.new-arrival .row .col h3 span {
  display: block;
  margin-top: 3rem;
}

@media (max-width: 967px) {
  .new-arrival .row .col h3 {
    font-size: 1.6rem;
    line-height: 2.5rem;
  }
}

@media (max-width: 768px) {
  .new-arrival .row {
    display: block;
  }

  .new-arrival .row .col h3 {
    bottom: 15%;
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

/* ========== Categories Product =========== */
.categories .products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 7rem 4rem;
  padding-top: 4rem;
}

.categories .product {
  border-radius: 2.5rem;
  border: 1px solid rgba(144, 144, 144, 0.25);
  overflow: hidden;
  transition: 0.3s;
}

.categories .product .top {
  background: var(--grey-color);
  height: 24rem;
  justify-content: center;
  position: relative;
  transition: 0.3s;
}

.categories .product .top img {
  height: 24rem;
}

.categories .product .top .icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  font-size: 2.5rem;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.categories .product .bottom {
  padding: 2.5rem 2rem;
  background-color: var(--white-color);
}

.categories .product .bottom h4 {
  font-size: 1.35rem;
  height: 5rem;
  transition: 0.3s;
}

.categories .product .bottom .d-flex {
  justify-content: space-between;
}

.categories .product .bottom .d-flex:first-child {
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.categories .product .bottom .cart-btn {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-radius: 1rem;
  padding: 0.8rem 1rem;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.categories .product .bottom .price {
  color: #909090;
  font-weight: 500;
}

.categories .product .bottom .rating {
  color: var(--primary-color);
}

.categories .product .bottom .rating i:not(:last-child) {
  margin-right: 0.3rem;
}

.categories .product:hover {
  border: none;
  transform: scale(1.1);
  box-shadow: var(--box-shadow-1);
}

.categories .product:hover .top {
  background: var(--gradient);
}

.categories .product:hover .top .icon {
  opacity: 1;
  visibility: visible;
}

.categories .product:hover .cart-btn {
  visibility: visible;
  opacity: 1;
}

.categories .button {
  justify-content: center;
  margin-top: 8rem;
}

.categories .button .btn {
  display: inline-block;
  padding: 1.5rem 6rem;
  border-radius: 1rem;
  color: var(--white-color);
  font-weight: 500;
  font-size: 1.8rem;
  background: var(--btn-gradient);
  box-shadow: var(--box-shadow-1);
  cursor: pointer;
}

/* ========== Statistics =========== */
.statistics {
  padding: 10rem 0 10rem;
  background: linear-gradient(to bottom,
      rgba(252, 203, 144, 0.15),
      rgba(255, 185, 188, 0.1));
}

.statistics .title {
  margin-bottom: 10rem;
}

.statistics .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

.statistics .row .col {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.statistics .row .col .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11rem;
  height: 11rem;
  font-size: 4rem;
  background: var(--white-color);
  border-radius: 1rem;
  box-shadow: var(--box-shadow-1);
  color: var(--primary-color);
  margin-bottom: 6rem;
}

.statistics .row .col .icon:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: var(--box-shadow-2);
}

.statistics .row .col h3 {
  margin-bottom: 1.2rem;
}

.statistics .row .col p {
  color: var(--default-color);
}

@media (max-width: 768px) {
  .statistics .row .col .icon {
    width: 8rem;
    height: 8rem;
    font-size: 3rem;
  }

  .statistics .row .col p {
    width: 80%;
    margin: 0 auto;
  }
}

/* ========== Blog =========== */
.blog .title {
  margin-bottom: 7rem;
}

.blog .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 4rem;
}

.blog .row .col {
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: var(--box-shadow-1);
}

.blog .row .col .top {
  height: 20rem;
}

.blog .row .col .top img {
  height: 100%;
  object-fit: cover;
}

.blog .row .col .bottom {
  text-align: center;
  padding: 3rem 0;
}

.blog .row .col .bottom h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.blog .row .col .bottom h4 {
  max-width: 50%;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  line-height: 1.5;
}

.blog .row .col .bottom span {
  color: #909090;
  font-size: 1.5rem;
}

@media (max-width: 1600px) {
  .blog .row .col .top {
    height: 30rem;
  }

  .blog .row .col .bottom h4 {
    max-width: 85%;
  }
}

/* ========== Footer =========== */
.footer {
  background-color: #F5F5F6;
  padding: 10rem 3rem 10rem;
  margin-top: 7rem;
}

.footer .row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.footer .row .col .logo {
  margin-bottom: 2.5rem;
}

.footer .row .col:first-child p {
  margin-bottom: 2rem;
  color: #4f5665;
  font-size: 1.6rem;
}

.footer .row .col .icons {
  margin-bottom: 2rem;
}

.footer .row .col .icon {
  color: var(--white-color);
  justify-content: center;
  height: 4rem;
  width: 4rem;
  font-size: 2.5rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  cursor: pointer;
}

.footer .row .col .icon:not(:last-child) {
  margin-right: 1rem;
}

.footer .row .col:first-child .color {
  color: var(--primary-color);
}

.footer .row .col:last-child {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.footer .row .col:last-child div {
  display: flex;
  flex-direction: column;
}

.footer .row .col:last-child div a {
  font-size: 1.7rem;
  padding: 0.5rem;
  margin-bottom: 1rem;
  color: #4f5665;
}

.footer .row .col:last-child h4 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.footer .row .col:last-child .d-flex {
  flex-direction: row;
  margin-bottom: 2rem;
}

.footer .row .col:last-child .d-flex .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  width: auto;
  height: auto;
  padding: 0.7rem;
}

.footer .row .col:last-child .d-flex span {
  font-size: 1.8rem;
  color: #4f5665;
}

@media (max-width: 1200px) {
  .footer .col:first-child {
    display: none;
  }

  .footer .row {
    display: block;
  }
}

@media (max-width: 768px) {
  .footer .row .col:last-child {
    grid-template-columns: 1fr;
    gap: 3rem 0;
  }
}

/* ========== User Form =========== */
.icon img {
  width: 20px;
}

.user-form {
  margin: 4rem auto;
  top: 50%;
  left: 50%;
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;


}

.user-form.active {
  background-color: var(--lightpink);
}

.user-form.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

.user-form .close-form {
  position: absolute;
  top: 10%;
  right: 10%;
  background-color: var(--white-color);
  color: var(--custom);
  justify-content: center;
  border-radius: 50%;
  padding: 1rem;
  font-size: 2.3rem;
  cursor: pointer;
}

.user-form .container {
  position: relative;
  width: 900px;
  height: 580px;
  /* height: 80vh; */
  background-color: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.user-form .user {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}

.user-form .img-box {
  position: relative;
  width: 0%;
  height: 100%;
  transition: all 500ms ease-in-out;
}

.user-form .img-box img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.user-form .form-box {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: white;
  transition: 500ms ease-in-out;
}

.user-form .form-box .top {
  position: absolute;
  top: 14px;
  right: 14px;
}

.user-form .form-box .top p {
  font-size: 13px;
}

.user-form .form-box .top span {
  color: var(--custom);
  cursor: pointer;
}

.user-form form {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 100%;
  max-width: 300px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.user-form form .form-control:first-child {
  text-align: center;
}

.user-form form .form-control:first-child input {
  font-family: 'Arial', sans-serif;
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 10px 0;
  margin-bottom: 10px;
  text-indent: 16px;
  width: 100%;
  color: var(--color);
  outline: none;
}

.user-form form .form-control:first-child input[type="submit"] {
  display: block;
  text-align: center;
  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #8A241B;
  color: white;
  transition: 0.5s;
}

.user-form form .form-control:first-child input[type="submit"]:hover {
  background-color: var(--lightblue);
}

.user-form form .form-control:first-child h2 {
  width: 100%;
  font-weight: 400;
  font-size: 26px;
}

.user-form form .form-control:first-child p {
  font-size: 16px;
  margin-bottom: 20px;
}

.user-form form .form-control:first-child span {
  font-size: 13px;
  display: block;
  text-align: right;
  margin-bottom: 20px;
}

.user-form form .form-control:first-child div {
  position: relative;
}

.user-form form .form-control:first-child .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  cursor: pointer;
}

.user-form form .form-control:last-child {
  text-align: center;
}

.user-form form .form-control:last-child p {
  position: relative;
  display: inline-block;
  font-size: 14px;
}

.user-form form .form-control:last-child p::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background-color: #ddd;
}

.user-form form .form-control:last-child p::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background-color: #ddd;
}

.user-form form .form-control:last-child .icons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.user-form form .form-control:last-child .icons .icon {
  cursor: pointer;
}

.user-form form .form-control:last-child .icons .icon:not(:last-child) {
  margin-right: 15px;
}

.user-form .container .signup {
  pointer-events: visible;
}

.user-form .container .signup a {
  pointer-events: visible;
}

.user-form .container .signup .form-box {
  top: 0%;
}

.user-form .container .signup .img-box {
  top: 0%;
}

.user-form .container.active .signup {
  pointer-events: initial;
}

.user-form .container.active .signup .form-box {
  top: 0;
}

.user-form .container.active .signup .img-box {
  top: 0;
}

.user-form .container .login .form-box {
  top: 0;
}

.user-form .container .login .img-box {
  top: 0;
}

.user-form .container.active .login .form-box {
  top: 100%;
}

.user-form .container.active .login .img-box {
  top: -100%;
}

@media (max-width: 996px) {
  .user-form .container {
    max-width: 400px;
  }

  .user-form .container .img-box {
    display: none;
  }

  .user-form .container .form-box {
    width: 100%;
  }

  .user-form .container.active .login .form-box {
    top: -100%;
  }
}

@media (max-width: 567px) {
  .header .navbar .row .nav-list a.user-link {
    display: block;
  }

  .user-form {
    padding: 0;
  }

  .user-form .close-form {
    top: 10px;
    right: 10px;
    padding: 0.7rem;
    font-size: 2.3rem;
  }
}

.btn-font {
  font-family: 'Arial', sans-serif;
}

.copyright {
  text-align: center;
  color: #ffffff;
  background-color: #8A241B;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  padding: 8px;
}





.custom-col {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: 2fr 4fr 4fr;
  padding: 25px;
  gap: 3rem;
  background-color: #8A241B;
  align-items: center !important;
  line-height: 5.5rem;
  border-radius: 2rem;
}

.offers {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  display: flex;

}

.linkcolor {
  color: #8A241B;
  ;
}

.about {

  padding: 6rem;
  margin: 4rem;
  text-align: justify;
  line-height: 1.2em;
  background-color: #F5F5F6;
  justify-content: center;
  font-size: 2rem;
  max-width: 1600px;

}

.about img {

  border-radius: 2rem;
}


@media (max-width: 768px) {
  .about {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7rem 4rem;
    padding-top: 4rem;

  }
}

@media (min-width: 768px) {
  .about {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 2rem 2rem;
    padding-top: 2rem;

  }
}

.itemaline {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F5F5F6;
}



.mytop {
  justify-content: center;
  padding: 2rem;
}


body {
  background-color: #Fff;
}