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

body {
  font-family: "Wix Madefor Text";
}

.freeze {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 999999;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  background-color: white;
}
.brand {
  font-size: 37px;
}

.headicons i {
  font-size: 23px !important;
}

.circle {
  width: 20px;
  height: 20px;
  background-color: black;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.iconscont {
  display: flex;
  gap: 25px;
  align-items: center;
}

.headicons a {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

a {
  text-decoration: none;
}
a:visited {
  color: black;
}

nav {
  background-color: #e8e8e8;
  padding: 15px 20px;
}

ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 23px;
  font-size: 13px;
}

.movimg {
  width: 100%;
  height: 500px;
  background-image: url(img/01.01.avif);
  background-size: cover;
  position: relative;

  animation: changeBg 15s infinite;
}

@keyframes changeBg {
  0% {
    background-image: url(img/01.01.avif);
    background-position: center;
  }
  33% {
    background-image: url(img/01.02.avif);
    background-position: center top;
  }
  66% {
    background-image: url(img/01.03.avif);
    background-position: bottom;
  }
  100% {
    background-image: url(img/01.01.avif);
    background-position: center;
  }
}

.movingtext {
  width: 50%;
  height: 80%;
  padding: 30px 100px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  position: absolute;
  justify-content: space-between;
  left: 5%;
  top: 5%;
}

p {
  font-size: 18px;
}

h1 {
  font-size: 50px;
}

.price {
  background-color: #d72d2d;
  width: fit-content;
  color: white;
  padding: 0 10px;
}

.movingtext button {
  width: 200px;
  padding: 15px 50px;
  font-size: 16px;
  border: none;
  background-color: #751fff;
  border-radius: 25px;
}

.movingtext button a {
  color: white;
}

.colorimg {
  display: flex;
  background-color: #e8e8e8;
  width: 100%;
  height: 550px;
  flex-direction: row;
  padding: 40px;
  gap: 40px;
  color: white;
}

.redimg {
  width: 50%;
  background-image: url(img/02\ red\ pircture.avif);
  background-position: center;
  background-size: cover;
  position: relative;
}

.purpleimg {
  width: 50%;
  background-image: url(img/03\ purple\ picter.avif);
  background-position: center;
  background-size: cover;
  position: relative;
}

.movingtext p {
  font-size: 18px;
}

.movingtext h1 {
  font-size: 50px;
}

.colortext {
  width: 50%;
  height: 80%;
  padding: 50px 35px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  position: absolute;
  justify-content: space-between;
  left: 5%;
  top: 5%;
}

.colorimg button {
  width: 150px;
  padding: 15px 50px;
  font-size: 16px;
  border: none;
  background-color: white;
  border-radius: 25px;
}
