@import url("https://fonts.googleapis.com/css2?family=Cabin&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap");
body {
  margin: 0;
  padding: 0;
}

div {
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.padding-section {
  padding: 0 20vw;
}

.button {
  padding: 14px 40px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  overflow: hidden;
  background-color: #000;
  color: #fff;
  border-radius: 50px;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  position: relative;
  z-index: 1;
  cursor: pointer;
  margin-top: 30px;
  margin-right: 10px;
}

.button:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.button::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  background-color: #e60a80;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0.2, 1);
  transform: scale(0.2, 1);
  z-index: -1;
}

#title-section {
  width: 100%;
  padding-top: 265px;
  padding-bottom: 265px;
  background-image: url("../img/pattern-15.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  z-index: -2;
}

#title-section .title {
  font-family: "Quicksand", sans-serif;
  font-size: 48px;
  color: #ffffff;
  line-height: 1.3em;
  font-weight: 700;
  margin: 0;
}

#title-section .overlay {
  width: 60%;
  height: 100%;
  position: absolute;
  margin: 0 20%;
  top: 0;
  left: 0;
  z-index: -1;
}

#title-section .overlay .icon-one {
  position: absolute;
  left: 6%;
  top: 35%;
  width: 58px;
  height: 67px;
  background-repeat: no-repeat;
  -webkit-animation: 3s zoom-fade linear infinite;
          animation: 3s zoom-fade linear infinite;
}

#title-section .overlay .icon-two {
  position: absolute;
  left: 6%;
  top: 65%;
  width: 91px;
  height: 99px;
  background-repeat: no-repeat;
  -webkit-animation: 3s left-right linear infinite;
          animation: 3s left-right linear infinite;
}

#title-section .overlay .icon-three {
  position: absolute;
  left: 26%;
  top: 35%;
  width: 58px;
  height: 67px;
  background-repeat: no-repeat;
}

#title-section .overlay .icon-four {
  position: absolute;
  left: 48%;
  top: 35%;
  width: 101px;
  height: 101px;
  background-repeat: no-repeat;
  -webkit-animation: 3s zoom-fade linear infinite;
          animation: 3s zoom-fade linear infinite;
}

#title-section .overlay .icon-five {
  position: absolute;
  left: 48%;
  top: 65%;
  width: 64px;
  height: 60px;
  background-repeat: no-repeat;
  -webkit-animation: 15s rotate linear infinite;
          animation: 15s rotate linear infinite;
}

#title-section .overlay .icon-six {
  position: absolute;
  right: 3%;
  top: 25%;
  width: 58px;
  height: 67px;
  background-repeat: no-repeat;
  -webkit-animation: 3s left-right linear infinite;
          animation: 3s left-right linear infinite;
}

#gallery-section {
  width: 100%;
}

#gallery-section .left {
  width: 67%;
  padding: 0 15px;
  position: relative;
}

#gallery-section .left .owl-nav {
  display: none;
}

#gallery-section .left img {
  width: 100%;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#gallery-section .left .slider {
  width: 100%;
  overflow: hidden;
}

#gallery-section .left .fa-chevron-left, #gallery-section .left .fa-chevron-right {
  padding: 25px 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  left: 15px;
  top: calc(50% - 33px);
}

#gallery-section .left .fa-chevron-left:hover, #gallery-section .left .fa-chevron-right:hover {
  color: #e60a80;
  background-color: #fff;
}

#gallery-section .left .fa-chevron-right {
  right: 15px;
  left: inherit;
}

#gallery-section .right {
  width: 33%;
  padding: 0 15px;
}

#gallery-section .right a {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  padding: 17px 25px;
  text-decoration: none;
  color: #222;
  font-family: "Cabin", sans-serif;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  border: 1px solid #ccc;
  margin-bottom: 18px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#gallery-section .right a:hover {
  color: #fff;
  background-color: #e60a80;
  border-color: #e60a80;
}

#gallery-section .right a i {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(-15px, -50%);
          transform: translate(-15px, -50%);
}

#gallery-section .right a.active {
  background-color: #e60a80;
  color: #fff;
  border-color: #e60a80;
}

#information-section {
  width: 100%;
  margin-top: 35px;
}

#information-section .description {
  width: 100%;
  padding: 0 10px;
}

#information-section .description h2 {
  position: relative;
  color: #e60a80;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3em;
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: "Quicksand", sans-serif;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

#information-section .description h2.title {
  color: #777;
  font-size: 24px;
}

#information-section .description h3 {
  text-align: center;
}

#information-section .description h3 > a {
  position: relative;
  display: inline-block;
  color: #777777;
  padding: 0px 12px 8px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  margin: 0px 10px 8px;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  font-family: "Quicksand", sans-serif;
  text-decoration: none;
}

#information-section .description h3 > a:hover {
  color: #222;
}

#information-section .description h3 > a:hover::before {
  width: 100%;
}

#information-section .description h3 > a::before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: -4px;
  height: 2px;
  width: 0px;
  background-color: #e60a80;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

#information-section .description h3 > a::after {
  position: absolute;
  content: "/";
  right: -14px;
  top: 1px;
  font-size: 14px;
  color: #222222;
}

#information-section .description .text {
  color: #777777;
  font-size: 16px;
  line-height: 1.7em;
  font-family: "Cabin", sans-serif;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  margin-top: 0;
}

#information-section .description .verify {
  color: #777777;
  font-size: 16px;
  font-weight: 400;
  padding-left: 22px;
  margin-bottom: 18px;
  position: relative;
  font-family: "Cabin", sans-serif;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

#information-section .description .verify i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  font-size: 14px;
  color: #e60a80;
}

#information-section .description .verify a {
  color: #e60a80;
  text-decoration: none;
}

#information-section .description h4 {
  font-size: 24px;
  line-height: 1.6em;
  font-family: "Quicksand", sans-serif;
  color: #777777;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 0;
}

#information-section .description h3.category {
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  font-weight: 700;
  font-family: "Cibin", sans-serif;
  font-size: 24px;
  margin: 0;
  margin-bottom: 10px;
  display: none;
}

#information-section .description > img {
  width: 50%;
  margin-right: 50%;
  margin-top: 20px;
  margin-bottom: 20px;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#information-section .description h5 {
  position: relative;
  font-size: 18px;
  color: #2200bd;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: capitalize;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  text-align: center;
  font-family: "Cabin", sans-serif;
  padding-top: 100px;
  margin-top: 80px;
}

#information-section .description h5::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

#information-section .description h5 .sperataor {
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 10px;
  height: 5px;
  margin-left: -5px;
  background-color: #2200bd;
}

#information-section .description h5 .sperataor::after {
  position: absolute;
  content: "";
  left: -20px;
  top: 50%;
  width: 10px;
  height: 2px;
  background-color: #e60a80;
}

#information-section .description h5 .sperataor::before {
  position: absolute;
  content: "";
  right: -20px;
  top: 50%;
  width: 10px;
  height: 2px;
  background-color: #e60a80;
}

#information-section .description a.category {
  width: 30%;
  float: left;
  margin: 0 1.6%;
  font-family: "Quicksand", sans-serif;
  font-size: 24px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 30px;
}

#information-section .description img.category {
  width: 100%;
}

#information-section .description .image-slider {
  width: 67%;
  margin-right: 33%;
  overflow: hidden;
  position: relative;
}

#information-section .description .image-slider .slider {
  width: 100%;
}

#information-section .description .image-slider .slider img {
  width: 100%;
}

#information-section .description .image-slider .fa-chevron-left, #information-section .description .image-slider .fa-chevron-right {
  padding: 25px 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  left: 0;
  top: calc(50% - 33px);
}

#information-section .description .image-slider .fa-chevron-left:hover, #information-section .description .image-slider .fa-chevron-right:hover {
  color: #e60a80;
  background-color: #fff;
}

#information-section .description .image-slider .fa-chevron-right {
  right: 0;
  left: inherit;
}

#information-section .description .image-slider .owl-nav {
  display: none;
}

#information-section .verify-list {
  width: 100%;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  list-style: none;
}

#information-section .verify-list li {
  width: 100%;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#information-section .verify-list li a {
  text-decoration: none;
}

#information-section .verify-list li .verify {
  color: #777777;
  font-size: 16px;
  font-weight: 400;
  padding-left: 22px;
  margin-bottom: 18px;
  position: relative;
  font-family: "Cabin", sans-serif;
  color: #e60a80;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#information-section .verify-list li .verify:hover {
  color: #0056b3;
}

#information-section .verify-list li .verify i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  font-size: 14px;
  color: #e60a80;
}

#information-section .verify-list li .verify a {
  text-decoration: none;
  color: #e60a80;
}

#information-section > a:nth-child(3) {
  margin-right: 50px;
}

#information-section > a {
  margin-top: 50px;
}

@-webkit-keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@-webkit-keyframes left-right {
  0% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 1;
  }
}

@keyframes left-right {
  0% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    opacity: 1;
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: rotate(180deg);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: rotate(360deg);
    opacity: 1;
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: rotate(180deg);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: rotate(360deg);
    opacity: 1;
  }
}

@media (max-width: 1450px) {
  .padding-section {
    padding: 0 10vw;
  }
  #title-section .overlay {
    width: 80%;
    margin: 0 10%;
  }
}

@media (max-width: 1000px) {
  .padding-section {
    padding: 0 3vw;
  }
  #title-section .overlay {
    width: 94%;
    margin: 0 3%;
  }
  #gallery-section .left,
  #gallery-section .right {
    width: 100%;
  }
  #gallery-section .left {
    margin-bottom: 20px;
  }
  #information-section .description {
    width: 100%;
  }
}

@media (max-width: 900px) {
  #title-section {
    padding: 140px 0px 225px;
  }
  #title-section .title {
    font-size: 28px;
  }
  #information-section .description > img, #information-section .description .image-slider {
    width: 70%;
    margin-right: 30%;
  }
}

@media (max-width: 850px) {
  #information-section .verify-list li {
    width: 50%;
    float: left;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media (max-width: 650px) {
  #information-section .description a.category {
    width: 48%;
    margin: 0 1%;
    margin-bottom: 20px;
    font-size: 18px;
  }
}

@media (max-width: 450px) {
  #information-section .verify-list li {
    width: 100%;
    float: left;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #information-section > a:nth-child(3) {
    margin-right: 0;
  }
  #information-section .description > img, #information-section .description .image-slider {
    width: 100%;
    margin: 0;
  }
}
/*# sourceMappingURL=artwork.css.map */