@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Medium.ttf");
}

@font-face {
  font-family: "PoppinsLight";
  src: url("fonts/Poppins-Light.ttf");
}

@font-face {
  font-family: "Bodrum";
  src: url("fonts/BodrumSweetMedium.ttf");
}

@font-face {
  font-family: "BodrumBold";
  src: url("fonts/BodrumSweetBold.ttf");
}

@keyframes bgSlider {
  0% {
    background-image: url("resources/bgSlider1.png");
  }

  20% {
    background-image: url("resources/bgSlider2.png");
  }

  40% {
    background-image: url("resources/bgSlider3.png");
  }

  60% {
    background-image: url("resources/bgSlider4.png");
  }

  80% {
    background-image: url("resources/bgSlider5.png");
  }
}

body {
  background-color: #101010;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

* {
  z-index: 0;
  transition: all 0.2s;
}

/*#region Sec1*/

@keyframes fadeMove {
  to {
    transform: none;
    opacity: 1;
  }
}

.header {
  display: flex;
  flex-direction: row;
  height: 8vh;
  display: flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  opacity: 0;
  animation: fadeMove 2s forwards;
}

.header--logo {
  width: 40%;
  padding-left: 6%;
}

.header--icon {
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: 6%;
  padding: 5px;
  border: solid white 1px;
  border-radius: 5px;
}

.header--overlay {
  background-color: rgba(19, 19, 19, 0.8);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}

.header--mobileLinks {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 30px;
  z-index: 1;
}

.mobileLink {
  width: 100%;
  text-align: center;
  background-color: rgb(25, 25, 25);
  border: 1px solid #0516d8;
  border-radius: 3px;
  padding: 5px;
  margin-top: 4px;
  color: white;
  font-size: 15px;
  z-index: 2;
}

.home--sec1 {
  height: 100vh;
  background-image: url("resources/bgSlider1.png");
  background-position: center;
  background-position-x: -500px;
  background-size: cover;
  background-repeat: no-repeat;
  animation: bgSlider 20s forwards 0s infinite;
}

.sec1--overlay {
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 70%,
    rgba(0, 0, 0, 0.2) 80%,
    rgba(0, 0, 0, 0.7) 90%,
    rgba(0, 0, 0, 0.9) 95%,
    rgba(0, 0, 0, 1) 100%
  );
}

.sec1--row1 {
  height: 89vh;
}

.triLeft {
  height: auto;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  margin-right: 5px;
}

.triRight {
  height: auto;
  margin-left: 5px;
}

.sec1--title1 {
  font-size: 1.2em;
  color: #0516d8;
  font-family: "PoppinsLight";
}

.sec1--title2 {
  margin-top: -15px;
  font-size: 3.5em;
  font-family: "BodrumBold";
  color: #ffffff;
  opacity: 0.9;
}

.title2--2 {
  margin-top: -20px;
}

.header--link {
  color: #ffffff;
  font-family: "Poppins";
  margin-right: 3.8vw;
  display: none;
  font-size: 1em;
}

.header--link:hover {
  cursor: pointer;
  font-size: 1.1em;
  margin-right: 3.3vw;
}

.mlAuto {
  margin-left: auto;
}

.header--btn {
  width: 10%;
  display: none;
  flex-direction: row;
  align-items: center;
  border: #0516d8 1px solid;
  border-radius: 50px;
  padding: 5px;
  background-color: transparent;
}

.header--btntxt1 {
  font-size: 0px;
  opacity: 0;
  font-weight: bold;
  color: #ffffff;
}

.header--btntxt2 {
  font-size: 0.9em;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

.header--btnIconDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 2.5vw;
  height: 2.5vw;
  background-color: #0516d8;
  justify-self: flex-start;
}

.header--btn:hover {
  cursor: pointer;
  background-color: rgba(10, 10, 10, 0.7);
}

.header--btn:hover .header--btntxt2 {
  opacity: 0;
  font-size: 0em;
  margin: 0px;
}

.header--btn:hover .header--btntxt1 {
  font-size: 0.9em;
  opacity: 1;
  margin-left: auto;
  margin-right: auto;
}

.header--linkSelected {
  border: #0516d8 2px solid;
  border-right: none;
  border-top: none;
  border-left: none;
}

.fadeDownLate1 {
  transform: translate(0px, -20px);
  opacity: 0;
  animation: fadeMove 1.5s forwards 2s;
}

.fadeLeft {
  transform: translate(-50px, 0px);
  opacity: 0;
  animation: fadeMove 1.5s forwards 1s;
}

/*Tablet View*/

@media screen and (min-width: 760px) and (max-width: 950px) {
  .header {
    height: 9vh;
  }

  .header--logo {
    width: 30%;
    padding-left: 6%;
  }

  .header--icon {
    display: none;
  }

  .header--link {
    display: block;
  }

  .home--sec1 {
    background-position-x: -240px;
  }

  .sec1--row1 {
    padding-left: 30px;
  }

  .header--btn {
    display: flex;
  }
}

/*Desktop View*/

@media screen and (min-width: 950px) {
  .header {
    height: 10vh;
  }

  .header--logo {
    width: 19%;
    padding-left: 6%;
  }

  .header--icon {
    display: none;
  }

  .header--link {
    display: block;
  }

  .home--sec1 {
    background-position-x: 0px;
  }

  .sec1--row1 {
    padding-left: 80px;
    padding-bottom: 30px;
  }

  .sec1--title1 {
    font-size: 1.5em;
  }

  .sec1--title2 {
    font-size: 5em;
    margin-top: -30px;
  }

  .header--btn {
    display: flex;
  }
}

/*#endregion*/

/*#region Sec2*/

.home--sec2 {
  text-align: center;
  margin-bottom: 40px;
}

.sec2--title1 {
  color: #0516d8;
  font-family: "PoppinsLight";
}

.sec2--title2 {
  color: #ffffff;
  font-family: "Bodrum";
  font-size: 1.5em;
}

.sec2--txt1 {
  color: #ffffff;
  font-family: "PoppinsLight";
  opacity: 0.7;
}

.crd--image {
  width: 70%;
}

.crd--title {
  color: #ffffff;
  font-size: 1.5em;
  margin-top: 20px;
}

.crd-title-2 {
  margin-top: -10px;
  margin-bottom: 20px;
}

.crd--txt {
  font-size: 1em;
  font-family: "PoppinsLight";
  color: #ffffff;
}

p {
  line-height: 1.1;
}

.leftArrow {
  width: 5%;
  transform: scaleX(-1);
}

.rightArrow {
  width: 5%;
}

@media screen and (min-width: 540px) and (max-width: 950px) {
}

/*#endregion*/

/*#region Sec3*/

.text-justify {
  text-align: center;
}

.imgCards {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.imgCard {
  border-radius: 5px;
  width: 95%;
  height: 20vh;
  margin-top: 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: -20px;
}

.crdRow {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.crd {
  margin-top: 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: -20px;
}

.imgCard-1 {
  background-image: url("resources/a.jpg");
}

.imgCardInner {
  background-image: linear-gradient(
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 0.7) 80%,
    rgba(0, 0, 0, 1) 95%,
    rgba(0, 0, 0, 1) 100%
  );
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding-bottom: 10px;
  padding-left: 15px;
  padding: 20px;
}

.imgCardText {
  font-size: 1.5em;
  color: #ffffff;
  font-family: "Bodrum";
}

.seeMore {
  font-family: "PoppinsLight";
  color: #0516d8;
  margin-top: 20px;
}

.imgCardDesc {
  display: none;
  line-height: 1;
  color: #ffffff;
  font-weight: "PoppinsLight";
  font-size: 0.7em;
  margin-top: 5px;
}

.imgCardArrow {
  height: 4em;
}

.imgCardsRows {
  display: none;
}

.crdRows {
  display: none;
}

.pno {
  color: #ffffff;
  margin-left: 20px;
}

.mail {
  color: #ffffff;
  margin-left: 20px;
}

/*Tablet View*/

@media screen and (min-width: 684px) and (max-width: 950px) {
  .imgCards {
    flex-direction: row;
  }

  .seeMore {
    display: none;
  }

  .imgCard {
    border-radius: 0px;
    width: 30vw;
    height: 30vw;
  }

  .imgCardText {
    font-size: 1em;
  }

  .imgCardDesc {
    display: flex;
  }

  .imgCardsRows {
    display: flex;
    margin-top: -0.8em;
  }

  .text-justify {
    text-align: center;
  }

  .crdRow {
    flex-direction: row;
  }
  .mob {
    margin-right: 150px;
    width: 50%;
  }

  .pno {
    color: #ffffff;
    margin-left: 80px;
    margin-top: -42px;
  }

  .email {
    margin-right: 150px;
  }

  .mail {
    color: #ffffff;
    margin-left: 106px;
    margin-top: -42px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .crd {
    height: 455px;
  }
}

/*Desktop View*/

@media screen and (min-width: 950px) {
  .imgCards {
    flex-direction: row;
  }

  .seeMore {
    display: none;
  }

  .imgCard {
    border-radius: 0px;
    width: 30vw;
    height: 30vw;
  }

  .imgCardText {
    font-size: 1em;
  }

  .imgCardDesc {
    display: flex;
  }

  .imgCardsRows {
    display: flex;
    margin-top: -0.8em;
  }

  .text-justify {
    text-align: center;
  }

  .crdRow {
    flex-direction: row;
  }

  .mob {
    margin-right: 150px;
    width: 50%;
  }

  .pno {
    color: #ffffff;
    margin-left: 80px;
    margin-top: -42px;
  }

  .email {
    margin-right: 150px;
  }

  .mail {
    color: #ffffff;
    margin-left: 106px;
    margin-top: -42px;
  }
}

/*#endregion*/

/*#region Sec4*/

.home--sec4 {
  margin-top: 50px;
  max-height: 100vh;
}

.sec4--content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sec4--imgDiv {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec4--desc {
  text-align: justify;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 40px;
  opacity: 0.7;
  color: #ffffff;
  font-family: "PoppinsLight";
  font-size: 0.8em;
}

.sec4--img {
  width: 100%;
}

.downArrow {
  width: 3%;
  margin-left: 5px;
}

/*Tablet View*/

@media screen and (min-width: 540px) and (max-width: 950px) {
  .sec4--imgDiv {
    width: 40%;
    margin-top: -20px;
  }

  .sec4--desc {
    padding-top: 10px;
  }
}

/*Desktop View*/

@media screen and (min-width: 950px) {
  .sec4--content {
    flex-direction: row;
    justify-content: center;
  }

  .sec4--imgDiv {
    width: 50%;
    margin-top: -20px;
  }

  .sec4--img {
    width: 80%;
    margin-left: auto;
  }

  .sec4--desc {
    width: 60%;
    font-size: 1em;
  }
}

/*#endregion*/

/*#region Sec5*/

.home--sec5 {
  width: 100%;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 20px;
}

.logoRow {
  padding-top: 10%;
  padding-bottom: 10%;
}

.logoDiv {
  width: auto;
}

.clientLogo {
  width: 50%;
}

.logoLvl2 {
  width: 40%;
}

.logoLvl3 {
  display: none;
}

/*Tablet View*/

@media screen and (min-width: 540px) and (max-width: 950px) {
  .logoLvl2 {
    display: flex;
  }

  .logoDiv {
    width: 20%;
  }
}

/*Desktop View*/

@media screen and (min-width: 950px) {
  .logoDiv {
    width: 18%;
  }

  .logoLvl2 {
    display: flex;
  }

  .logoLvl3 {
    display: flex;
  }
}

/*#endregion*/

/*#region Sec6*/

.home--sec6 {
  margin-top: 5%;
}

.sec6--content {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}

.sec6--locationDiv {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 80%;
  height: 20%;
  margin-top: 2%;
  padding: 5px;
}

.sec6--location {
  margin-top: 2%;
  width: 100%;
  height: 15vh;
  border: 1px solid #0516d8;
  border-radius: 0.3em;
}

.sec6--formDiv {
  display: flex;
  flex-direction: column;
  width: 90%;
  text-align: left;
}

.sec6--formTitle {
  color: #ffffff;
  font-family: "Poppins";
  font-size: 1.5em;
  margin-bottom: 1vh;
}

.formSec1 {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 50%;
}

.formText {
  color: #ffffff;
  font-family: "PoppinsLight";
  opacity: 0.7;
  font-size: 0.7em;
  margin-top: 0.5vh;
}

.formInput {
  background-color: transparent;
  border: 1px solid #d9d9d9;
  border-radius: 0.3em;
  color: #d9d9d9;
}

.formTextAr {
  width: 100%;
  margin-bottom: 5%;
  background-color: transparent;
  border: 1px solid #d9d9d9;
  border-radius: 0.4em;
  color: #ffffff;
}

.form--btn {
  width: 80%;
  background-color: transparent;
  border: 1px solid #0516d8;
  color: #0516d8;
  font-family: "Poppins";
  border-radius: 0.3em;
  align-self: center;
}

/*Tablet View*/

@media screen and (min-width: 540px) and (max-width: 950px) {
  .sec6--content {
    flex-direction: row;
  }

  .sec6--location {
    height: 250px;
    max-width: 250px;
    margin-left: auto;
  }

  .form--btn {
    width: 50%;
    align-self: flex-start;
  }
}

/*Desktop View*/

@media screen and (min-width: 950px) {
  .sec6--content {
    flex-direction: row;
  }

  /* 
      .sec6--locationDiv{
          width: 30%;
          height: 100%;
      } */

  .sec6--location {
    height: 320px;
    width: 320px;
  }

  .form--btn {
    width: 50%;
    align-self: flex-start;
  }

  .sec6--formDiv {
    width: 30%;
  }
}

/*#endregion*/

/*#region Footer*/

.footer {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer--logo {
  margin-bottom: 30px;
}

.footer--content {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 10%;
  padding-right: 10%;
}

.footer--sec p {
  text-align: justify;
  color: #ffffff;
  font-family: "PoppinsLight";
  opacity: 0.7;
}

.footer--title {
  font-family: "Poppins";
  color: #ffffff;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.footer--sec {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 10px;
}

.footer--iconDiv {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: #0516d8 1px solid;
  border-radius: 50%;
  margin-left: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.footer--icon {
  width: 100%;
}

.footer--bodyText {
  font-family: "PoppinsLight";
  color: #ffffff;
  opacity: 0.7;
}

.footer--link {
  margin-right: 10px;
  color: #ffffff;
  opacity: 0.7;
}

.footer--linksDiv {
  display: flex;
  flex-direction: column;
}

.footer--line {
  border: 1px solid #d9d9d9;
  opacity: 0.8;
  width: 90%;
  margin-top: 20px;
}

.footer--copyright {
  color: #ffffff;
  opacity: 0.5;
  font-family: "PoppinsLight";
  margin-top: 15px;
}

@media screen and (min-width: 950px) {
  .footer--content {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 3%;
    padding-right: 3%;
  }

  .footer--sec {
    width: 33%;
  }

  .ql {
    width: 20%;
  }
}

@media screen and (min-width: 1025px) {
  .footer--content {
    width: 90%;
  }
}

/*#endregion*/

/* About */

.about--sec {
  margin-top: 50px;
}

.about--content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about--imgDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about--desc {
  text-align: justify;

  padding-top: 40px;
  opacity: 0.7;
  color: #ffffff;
  font-family: "PoppinsLight";
  font-size: 0.8em;
}

.about--img {
  width: 100%;
}

.about-title {
  font-family: "PoppinsLight";
  font-size: 1rem;
}

.about-text {
  line-height: normal;
}

.about-txt1 {
  color: #ffffff;
}

.about-txt2 {
  color: #ffffff;
  line-height: normal;
  opacity: 0.7;
}

/*Tablet View*/

@media screen and (min-width: 540px) and (max-width: 950px) {
  .about--imgDiv {
    margin-top: 20px;
  }

  .about--desc {
    padding-top: 10px;
    padding-left: 5%;
  }
}

/*Desktop View*/

@media screen and (min-width: 950px) {
  .about--content {
    flex-direction: row;
    justify-content: center;
  }

  .about--imgDiv {
    width: 50%;
    margin-top: -20px;
  }

  .about--img {
    margin-left: auto;
    border: 2px solid red;
    border-radius: 5px;
  }

  .about--desc {
    width: 60%;
    font-size: 1em;
    padding-left: 5%;
  }

  .about-title {
    font-family: "PoppinsLight";
    font-size: 1.7rem;
  }

  .about-text {
    line-height: normal;
    font-size: 1.2rem;
  }

  .about-txt1 {
    font-size: 1.2rem;
    color: #ffffff;
  }

  .about-txt2 {
    color: #ffffff;
    line-height: normal;
    opacity: 0.7;
  }

  .about--sec {
    padding-left: 5%;
    padding-right: 5%;
  }
}

/*#region Contact us*/

.home--sec6-C {
  margin-top: 5%;
}

.sec2--title1-C {
  color: #0516d8;
  font-family: "PoppinsLight";
}

.sec2--title2-C {
  color: #ffffff;
  font-family: "Bodrum";
  font-size: 1.5em;
}

.sec2--txt1-C {
  color: #ffffff;
  font-family: "PoppinsLight";
  opacity: 0.7;
}

.contact--iconDiv {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: #0516d8 1px solid;
  border-radius: 50%;
  margin-left: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.contact--icon {
  width: 100%;
}

.sec6--content-C {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}

.sec6--locationDiv-C {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 80%;
  height: 20%;
  margin-top: 2%;
  padding: 5px;
}

.sec6--location-C {
  margin-top: 2%;
  width: 100%;
  height: 15vh;
  border: 1px solid #0516d8;
  border-radius: 0.3em;
}

.sec6--formDiv-C {
  display: flex;
  flex-direction: column;
  width: 90%;
  text-align: left;
}

.sec6--formTitle-C {
  color: #ffffff;
  font-family: "Poppins";
  font-size: 1.5em;
  margin-bottom: 1vh;
  align-self: center;
}

.formSec1-C {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 50%;
}

.formText-C {
  color: #ffffff;
  font-family: "PoppinsLight";
  opacity: 0.7;
  font-size: 0.7em;
  margin-top: 0.5vh;
}

.formInput-C {
  background-color: transparent;
  border: 1px solid #d9d9d9;
  border-radius: 0.3em;
  color: #d9d9d9;
}

.formTextAr-C {
  width: 100%;
  margin-bottom: 5%;
  background-color: transparent;
  border: 1px solid #d9d9d9;
  border-radius: 0.4em;
  color: #ffffff;
}

.form--btn-C {
  width: 80%;
  background-color: transparent;
  border: 1px solid #0516d8;
  color: #0516d8;
  font-family: "Poppins";
  border-radius: 0.3em;
  align-self: center;
}

/*Tablet View*/

@media screen and (min-width: 540px) and (max-width: 950px) {
  .sec6--content-C {
    flex-direction: row;
  }

  .sec6--location-C {
    height: 250px;
    max-width: 250px;
    margin-left: auto;
  }

  .form--btn-C {
    width: 50%;
    align-self: flex-start;
  }
}

/*Desktop View*/

@media screen and (min-width: 950px) {
  .sec6--content-C {
    flex-direction: row;
  }

  /* 
    .sec6--locationDiv-C{
        width: 30%;
        height: 100%;
    } */

  .sec6--location-C {
    height: 200px;
    width: 100%;
  }

  .form--btn-C {
    width: 70%;
    align-self: center;
  }

  .sec6--formDiv-C {
    width: 80%;
  }
}

/*#endregion*/

.crdRow {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.crd {
  border: 1px solid #0516d8;
  border-radius: 8px;
  background-color: #1a1a1a;
  /* display: flex; */
  /* flex-direction: column; */
  /* align-items: center; */
  width: 100%;
  height: auto;
  /* padding: 15px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 20px; */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: -20px;
}

.imgCards {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.imgCard {
  border-radius: 5px;
  width: 95%;
  height: 20vh;
  margin-top: 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: -20px;
}

.crd--txt{
  display: none;
}

.imgCard-1 {
  background-image: url("portfolio/br3.jpg");
}

.imgCard-2 {
  background-image: url("portfolio/burgerking8.jpg");
}

.imgCard-3 {
  background-image: url("portfolio/cottoncollection1.jpg");
}

.imgCard-4 {
  background-image: url("portfolio/kevilton4.jpg");
}

.imgCard-5 {
  background-image: url("portfolio/odel2.jpg");
}

.imgCard-6 {
  background-image: url("portfolio/popeyes6.jpg");
}

.imgCard-7 {
  background-image: url("portfolio/softlogic15.jpeg");
}

.imgCard-8 {
  background-image: url("portfolio/spar1.jpg");
}

.imgCard-9 {
  background-image: url("portfolio/suzuki3.jpg");
}

.imgCard-10 {
  background-image: url("portfolio/wapp1.jpeg");
}

/* .imgCard-11 {
  background-image: url("portfolio/cottoncollection2.jpg");
}

.imgCard-12 {
  background-image: url("portfolio/cottoncollectionex.jpg");
}

.imgCard-13 {
  background-image: url("portfolio/cottoncollectionex1.jpg");
}

.imgCard-14 {
  background-image: url("portfolio/cottoncollectioninterior.jpg");
}

.imgCard-15 {
  background-image: url("portfolio/sparexpress.jpg");
} */

.imgCardInner {
  background-image: linear-gradient(
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 0.7) 80%,
    rgba(0, 0, 0, 1) 95%,
    rgba(0, 0, 0, 1) 100%
  );
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding-bottom: 10px;
  padding-left: 15px;
  padding: 20px;
}

.imgCardText {
  font-size: 1.5em;
  color: #ffffff;
  font-family: "Bodrum";
}

.seeMore {
  /* font-family: "PoppinsLight";
  color: #0516d8;
  margin-top: 20px; */

  display: none;
}

.imgCardDesc {
  display: none;
  line-height: 1;
  color: #ffffff;
  font-weight: "PoppinsLight";
  font-size: 0.7em;
  margin-top: 5px;
}

.imgCardArrow {
  height: 4em;
}

.imgCardsRows {
  display: none;
}

/*Tablet View*/

@media screen and (min-width: 684px) and (max-width: 950px) {
  .imgCards {
    flex-direction: row;
  }

  .seeMore {
    display: none;
  }

  .imgCard {
    border-radius: 0px;
    width: 30vw;
    height: 30vw;
  }

  .imgCardText {
    font-size: 1em;
  }

  .imgCardDesc {
    display: flex;
  }

  .imgCardsRows {
    display: flex;
    margin-top: -0.8em;
  }

  .crdRow{
    flex-direction: row;
  }

  .crd{
    flex-direction: row;
    margin-right: 10px;
    width: 300px;
    height: 430px;
  }

  .crd--txt{
    display: flex;
  }

}

/*Desktop View*/

@media screen and (min-width: 950px) {
  .imgCards {
    flex-direction: row;
  }

  .seeMore {
    display: none;
  }

  .imgCard {
    border-radius: 0px;
    width: 30vw;
    height: 30vw;
  }

  .imgCardText {
    font-size: 1em;
  }

  .imgCardDesc {
    display: flex;
  }

  .imgCardsRows {
    display: flex;
    margin-top: -0.8em;
  }

  .crdRow{
    flex-direction: row;
  }

  .crd{
    flex-direction: row;
    margin-right: 10px;
    width: 300px;
    height: 430px;
  }

  .crd--txt{
    display: flex;
  }

}

/*#endregion*/

.text-justify {
  text-align: justify;
}

