/* HEADER */
body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  color: #000;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

header {
  overflow: hidden;
  position: relative;
}

.header {
  height: 90vh;
  background-image: linear-gradient(to right bottom, rgba(139, 110, 141, 0.8), rgba(76, 59, 77, 0.8)), url("images/holdingHands.jpg");
  background-size: cover;
  background-position: top;
  position: relative;
  margin-bottom: 0.5rem;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 70vh, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 70vh, 0 100%);
}

.header-stripe {
  background-color: rgb(101, 78, 102);
  transform: skew(30deg);
  height: 90vh;
  position: absolute;
  width: 10vw;
  z-index: 1;
  left: 15%;
  box-shadow: 0.5rem 0.2rem 0.5rem rgba(56, 56, 56, 0.4);
  animation: 1s ease-out 0s 1 slideInFromLeft;
}

.brand-box {
  position: absolute;
  top: 40px;
  left: 40px;
  color: #eee;
  z-index: 2;
}

.brand {
  font-size: 20px;
}

.text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  animation: 1.5s ease-out 0s 1 slideInFromBottom;
}

#portfolio-header .text-box {
  position: static;
  top: 0;
  left: 0;
  transform: none;
  background-color: rgb(101, 78, 102);
  padding: 1rem;
}
#portfolio-header .text-box .heading-primary-main {
  font-size: 2rem;
}
#portfolio-header .text-box .heading-primary-sub {
  font-size: 1rem;
}
#portfolio-header .heading-primary {
  width: 60%;
  margin: 0 auto;
}

.heading-primary {
  padding: 1vw 2vw;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  backface-visibility: hidden;
  margin-bottom: 1vw;
  background: linear-gradient(to right, white 8px, transparent 8px) 0 0, linear-gradient(to right, white 8px, transparent 8px) 0 100%, linear-gradient(to left, white 8px, transparent 8px) 100% 0, linear-gradient(to left, white 8px, transparent 8px) 100% 100%, linear-gradient(to bottom, white 8px, transparent 8px) 0 0, linear-gradient(to bottom, white 8px, transparent 8px) 100% 0, linear-gradient(to top, white 8px, transparent 8px) 0 100%, linear-gradient(to top, white 8px, transparent 8px) 100% 100%;
  background-repeat: no-repeat;
  background-size: 30px 30px;
}

.heading-primary-main {
  display: block;
  font-size: 3vw;
  font-weight: 400;
  letter-spacing: 0.2vw;
  font-weight: bold;
}

.heading-primary-sub {
  display: block;
  font-size: 1vw;
  font-weight: 700;
  letter-spacing: 0.6vw;
}

.btn:link,
.btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 100px;
  transition: all 0.2s;
}

header btn:link, header btn:visited {
  position: relative;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-white {
  background-color: #fff;
  color: #777;
  font-size: 14px;
}

/* ------------------------Main----------------------------*/
h2 {
  border-bottom: 3px solid #d9d9d9;
  text-transform: uppercase;
  font-weight: 700;
  font-weight: bold;
  letter-spacing: 7.4px;
  font-size: 2.5rem;
  text-align: center;
}

main {
  animation: 1.5s ease-out 0s 1 Apear;
}

.categories {
  text-align: center;
  padding: 0 2rem;
}
.categories a {
  text-decoration: none;
}
.categories ul {
  list-style: none;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0;
  padding: 0;
}
.categories ul a {
  background-color: rgb(67, 124, 144);
  display: block;
  width: 23%;
  height: 10rem;
  padding: 1rem 0;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 5px 5px 10px #AAA;
  margin: 0 0 1rem 0;
}
.categories ul a img {
  height: 5rem;
}
.categories ul a li {
  color: white;
}
.categories ul a:hover {
  box-shadow: 5px 8px 10px #AAA;
  background-color: rgb(78, 141, 164);
}

/*------------------------------carousel--------------------------------*/
#portifolio {
  align-items: center;
  background: #E3E3E3;
  display: flex;
  height: 100%;
  justify-content: center;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-180vh);
  }
}
.slider {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 40vh;
  margin: 2rem auto auto auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  color: #000;
  text-align: center;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  border-bottom: 0.5rem solid #d76a03;
  border-top: 5px solid #d76a03;
}
.slider::before, .slider::after {
  height: 40vh;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider p {
  font-size: min(15vw, 30vh);
  line-height: min(15vw, 30vh);
  position: absolute;
  z-index: 5;
  text-align: center;
  mix-blend-mode: screen;
  width: 100%;
  background-color: rgb(67, 124, 144);
  height: 40vh;
  margin: 0;
  padding: calc(20vh - min(15vw, 30vh) / 2) 0;
}
.slider a {
  position: absolute;
  z-index: 6;
  bottom: 1rem;
  margin: 0 auto;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.slider a:link {
  position: absolute;
}
.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: 180vh;
}
.slider .slide {
  height: 40vh;
  width: 60vh;
}
.slider img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 40vh;
  width: 60vh;
}

/*-----------------------------------articles-------------------------------------*/
.index-articles article#intimacy .cat-right {
  background-image: url(images/IntimacySet.jpg);
}
.index-articles article#acting .cat-right {
  background-image: url(images/ActingCoach.jpg);
}
.index-articles article {
  width: 100%;
  margin-top: 5rem;
}
.index-articles article .title-banner {
  border-bottom: 0.5rem solid #d76a03;
  border-top: 5px solid #d76a03;
  width: 100%;
  display: flex;
  height: 50vh;
  background-color: #255957;
}
.index-articles article .title-banner .cat-left {
  display: flex;
  width: 50%;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  color: white;
}
.index-articles article .title-banner .cat-left h3 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 7.4px;
  padding: 1rem;
  max-width: 80%;
  background: linear-gradient(to right, white 4px, transparent 4px) 0 0, linear-gradient(to right, white 4px, transparent 4px) 0 100%, linear-gradient(to left, white 4px, transparent 4px) 100% 0, linear-gradient(to left, white 4px, transparent 4px) 100% 100%, linear-gradient(to bottom, white 4px, transparent 4px) 0 0, linear-gradient(to bottom, white 4px, transparent 4px) 100% 0, linear-gradient(to top, white 4px, transparent 4px) 0 100%, linear-gradient(to top, white 4px, transparent 4px) 100% 100%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.index-articles article .title-banner .cat-right {
  width: 50%;
  background-image: url(images/Film+Set.jpeg);
  background-size: cover;
  background-position: center;
}
.index-articles article .explanation {
  margin-top: 1rem;
  padding: 1rem 1rem 0 1rem;
  width: 70%;
  margin: 2rem auto;
  background: linear-gradient(to right, #d76a03 4px, transparent 4px) 0 0, linear-gradient(to right, #d76a03 4px, transparent 4px) 0 100%, linear-gradient(to left, #d76a03 4px, transparent 4px) 100% 0, linear-gradient(to left, #d76a03 4px, transparent 4px) 100% 100%, linear-gradient(to bottom, #d76a03 4px, transparent 4px) 0 0, linear-gradient(to bottom, #d76a03 4px, transparent 4px) 100% 0, linear-gradient(to top, #d76a03 4px, transparent 4px) 0 100%, linear-gradient(to top, #d76a03 4px, transparent 4px) 100% 100%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.index-articles article .explanation .not-show {
  display: none;
}
.index-articles article .explanation .short {
  font-weight: 700;
  padding-bottom: 1.5rem;
}
.index-articles article .explanation .more {
  transition: height 0.5s ease-in-out;
  overflow: hidden;
  padding-left: 1rem;
  -webkit-mask-image: linear-gradient(0deg, transparent 0%, rgb(0, 0, 0) 2rem, rgb(0, 0, 0) 100%);
}
.index-articles article .explanation .more:not(.active) {
  display: none;
}
.index-articles article .explanation .readmore {
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -2rem);
  width: 8rem;
  cursor: pointer;
  background-color: #d76a03;
  margin: 0 auto;
  color: white;
  text-align: center;
  padding: 0.5rem;
  border-radius: 0.2rem;
}

.orange-border {
  padding: 1rem;
  background: linear-gradient(to right, #d76a03 4px, transparent 4px) 0 0, linear-gradient(to right, #d76a03 4px, transparent 4px) 0 100%, linear-gradient(to left, #d76a03 4px, transparent 4px) 100% 0, linear-gradient(to left, #d76a03 4px, transparent 4px) 100% 100%, linear-gradient(to bottom, #d76a03 4px, transparent 4px) 0 0, linear-gradient(to bottom, #d76a03 4px, transparent 4px) 100% 0, linear-gradient(to top, #d76a03 4px, transparent 4px) 0 100%, linear-gradient(to top, #d76a03 4px, transparent 4px) 100% 100%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

.white-border {
  padding: 1rem;
  background: linear-gradient(to right, white 4px, transparent 4px) 0 0, linear-gradient(to right, white 4px, transparent 4px) 0 100%, linear-gradient(to left, white 4px, transparent 4px) 100% 0, linear-gradient(to left, white 4px, transparent 4px) 100% 100%, linear-gradient(to bottom, white 4px, transparent 4px) 0 0, linear-gradient(to bottom, white 4px, transparent 4px) 100% 0, linear-gradient(to top, white 4px, transparent 4px) 0 100%, linear-gradient(to top, white 4px, transparent 4px) 100% 100%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

@keyframes expandRead {
  0% {
    grid-template-rows: 0fr;
  }
  100% {
    grid-template-rows: 1fr;
  }
}
@keyframes contractRead {
  0% {
    grid-template-rows: 1fr;
  }
  100% {
    grid-template-rows: 0fr;
  }
}
.read-expand {
  animation: expandRead 2s ease-in forwards;
}

.read-contract {
  animation: contractRead 2s ease-out forwards;
}

#portfolio-main {
  width: 80%;
  margin: 0 auto;
  min-height: 100vh;
}
#portfolio-main section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 1rem auto;
  max-width: 112rem;
}
#portfolio-main article {
  width: 20rem;
  padding: 1em;
  box-shadow: 0 0 0.5rem rgb(129, 129, 129);
  margin: 1rem 1rem;
  height: 25rem;
  border-radius: 0.3rem;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: 49% 51%;
  grid-template-areas: "image" "text";
}
#portfolio-main article .portfolio-images {
  width: 100%;
  grid-area: image;
  background-size: cover;
  background-position: center;
  grid-area: image;
}
#portfolio-main article .inner-text {
  grid-area: text;
  margin-top: 1rem;
  overflow: hidden;
}
#portfolio-main article .inner-text h4 {
  margin: 0;
  text-align: center;
  font-size: 1rem;
}
#portfolio-main article .inner-text p {
  margin: 0;
}
#portfolio-main article .inner-text span {
  color: #333;
  text-align: right;
  background-color: whitesmoke;
  border-radius: 0.3rem;
  padding: 0.2rem 0.5rem;
  margin: 0.5rem auto 1rem auto;
  display: inherit;
  width: -moz-fit-content;
  width: fit-content;
}

/*------------------------footer---------------------------------*/
footer {
  width: 100;
  background-color: rgb(101, 78, 102);
  color: #CCCCCC;
  padding: 0.3rem;
  display: flex;
  gap: 0 5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
footer p {
  text-transform: uppercase;
  font-size: 1.7rem;
  color: white;
}
footer ul {
  list-style-type: none;
  padding: 0;
}
footer .mail-icon {
  background-image: url(images/icons/email.svg);
  background-repeat: no-repeat;
  background-size: 1.3rem;
  background-position: left center;
  padding-left: 1.7rem;
}
footer .phone-icon {
  background-image: url(images/icons/phone.svg);
  background-repeat: no-repeat;
  background-size: 1.3rem;
  background-position: left center;
  padding-left: 1.7rem;
}

@keyframes slideInFromBottom {
  0% {
    top: 100%;
    opacity: 0;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    top: 50%;
    opacity: 1;
  }
}
@keyframes slideInFromLeft {
  0% {
    left: 130%;
    opacity: 0.5;
  }
  100% {
    left: 15%;
    opacity: 1;
  }
}
@keyframes Apear {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (orientation: portrait) { /* smartphones, Android phones, landscape iPhone */
  .explanation {
    font-size: 1rem;
  }
  .header {
    height: 30vh;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 25vh, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 25vh, 0 100%);
  }
  .brand-box {
    top: 5px;
    left: 5px;
  }
  h3 {
    font-size: 1.5rem;
  }
  .text-box {
    top: 50%;
  }
  .text-box a {
    max-height: 5vh;
  }
  .heading-primary {
    margin-bottom: 30px;
    padding: 0.5rem 1rem;
  }
  .header-stripe {
    height: 30vh;
    width: 10vw;
  }
  .categories h2 {
    margin-top: 0;
  }
  .categories ul a {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  .categories ul a li {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 10rem;
  }
  .categories ul a img {
    height: 5rem;
    margin: 1.5rem 0 0 0;
  }
  .categories ul a p {
    font-size: 1rem;
    line-height: 1.2rem;
    margin: 0;
  }
}
@media (max-width: 600px) { /* smartphones, Android phones, landscape iPhone */
  .header {
    height: 30vh;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 25vh, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 25vh, 0 100%);
  }
  .brand-box {
    top: 5px;
    left: 5px;
  }
  h3 {
    font-size: 0.7rem;
  }
  .brand {
    font-size: 1rem;
  }
  .heading-primary {
    margin-bottom: 30px;
    padding: 0.5rem 1rem;
  }
  .heading-primary-main {
    font-size: 0.7rem;
    letter-spacing: 5px;
  }
  .heading-primary-sub {
    font-size: 0.5rem;
    letter-spacing: 3px;
  }
  .btn:link,
  .btn:visited {
    padding: 5px 10px;
    border-radius: 100px;
  }
  .btn-white {
    font-size: 0.5rem;
  }
  .header-stripe {
    height: 30vh;
    width: 10vw;
    left: 15%;
  }
  .explanation {
    font-size: 0.7rem;
  }
  .categories ul a {
    width: 100%;
    margin-bottom: 1rem;
    height: 6rem;
  }
  .categories ul a li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 6rem;
  }
  .categories ul a img {
    height: 3rem;
    margin: 0;
  }
  .categories ul a p {
    font-size: 1rem;
    line-height: 1.1rem;
    margin: 0 0 0.2rem 0;
  }
}/*# sourceMappingURL=style.css.map */