@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;

  background-image: -webkit-gradient(
    linear,
    left bottom,
    right top,
    from(#fbeaff),
    color-stop(#ffeaf4),
    color-stop(#ffeee7),
    color-stop(#fff5de),
    to(#fefedf)
  );
  background-image: linear-gradient(
    to right top,
    #fbeaff,
    #ffeaf4,
    #ffeee7,
    #fff5de,
    #fefedf
  );
  min-height: 100vh;
  background-attachment: fixed;
  padding-bottom: 20px;
  overflow-x: hidden;
}

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

li {
  list-style-type: none;
}

p {
  line-height: 1.5;
}

.lead {
  font-weight: 600;
}

.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.card {
  background: #fff;
  min-height: 500px;
}

.content {
  padding: 40px;
  position: relative;
}

#header {
  background: #fff;
  z-index: 5;
}

#header .container {
  position: relative;
}

#header h1 {
  text-align: center;
  padding: 10px 0;
}

#nav {
  /* padding: 15px 0; */
  background: #fff;
  -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
}

#nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}

#nav .nav-list .nav-item a {
  padding: 15px 50px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  display: block;
  margin-top: 10px;
}

#nav .nav-list .nav-item a:hover {
  background: red;
  color: #fff;
}

#nav .nav-list .nav-item .active {
  background: red;
  color: #fff;
}

main {
  margin-top: 50px;
}

main .container {
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

#about {
  -webkit-animation: animateAbout 0.5s ease;
  animation: animateAbout 0.5s ease;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}

#about .card {
  position: relative;
}

#about .card .left {
  -webkit-clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
  position: absolute;
  width: 50%;
  height: 100%;
}

#about .card .left img {
  width: 100%;
  height: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

#about .card .left .content {
  max-height: 180px;
  height: 100%;
  margin-right: 50px;
}

#about .card .left .content .user-name {
  background: #fff;
  padding: 10px 25px;
  position: absolute;
  border-radius: 30px;
  font-weight: 600;
  top: -25px;
  left: 50%;
  margin-top:23px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#about .card .left .content p {
  text-align: center;
}

#about .card .left .content .contact-icons {
  width: 90%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#about .card .left .content .contact-icons a {
  font-size: 20px;
  width: 50px;
  height: 50px;
  border: 1.5px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
}

#about .card .left .btns {
  background: red;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 120px;
}

#about .card .left .btns p {
  width: 50%;
  text-align: center;
  color: #fff;
  padding: 25px 0;
  cursor: pointer;
}

#about .card .left .btns p:first-child {
  border-right: 1px dotted white;
}

#about .card .right {
  width: 52%;
  margin-left: auto;
}

#about .card .right h1 {
  padding-bottom: 40px;
}

#about .card .right p {
  text-align: justify;
}

#service {
  display: none;
}

#service .card .content h1 {
  text-align: center;
  padding-bottom: 40px;
}

#service .card .content .types {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
}

#service .card .content .types .type {
  text-align: center;
}

#service .card .content .types .type .lead {
  padding: 10px 0;
}

/* product */
#product {
  display: none;
}
#product .card .content h1 {
  text-align: center;
  padding-bottom: 40px;
}

#product .card .content .types {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
}

#product .card .content .types .type {
  text-align: center;
}

#product .card .content .types .type img {
  width: 100%;

  object-fit: contain;
  padding: 5px;
  border: 1.5px solid #000;
}

#product .card .content .types .type .lead {
  padding: 10px 0;
}
/* product end*/

/* video */
#video {
  display: none;
}
#video .card .content h1 {
  text-align: center;
  padding-bottom: 40px;
}
#video .card .content h2 {
  margin-bottom: 15px;
}
#video .card .content .types {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
}

#video .card .content .types .type {
  text-align: left;
}
#video .card .content .types.video {
  margin-bottom: 30px;
}

#video .card .content .types .type img {
  width: 100%;
  height: 200px;
  padding: 5px;
  object-fit: cover;
  border: 1.5px solid #000;
}
#video .card .content .types .type p {
  font-size: 14px;
}

#video .card .content .types .type .lead {
  padding: 10px 0;
}
/* video end*/
/* Attachment */
#attachment {
  display: none;
}
#attachment .card .content h1 {
  text-align: center;
  padding-bottom: 40px;
}
#attachment .card .content h2 {
  margin-bottom: 15px;
}
/* #attachment .card .content .types {
  display: grid;
} */

#attachment .card .content .types .type {
  text-align: left;
}
#attachment .card .content .types.video {
  margin-bottom: 30px;
}

#attachment .card .content .types .type img {
  width: 100%;
  height: 200px;
  padding: 5px;
  object-fit: cover;
  border: 1.5px solid #000;
}
#attachment .card .content .types .type p {
  margin-bottom: 20px;
}
#attachment .card .content .types .type p a {
  font-size: 16px;
  margin-left: 10px;
  padding: 5px 10px;
  color: #fff;
  background: grey;
}

#attachment .card .content .types .type .lead {
  padding: 10px 0;
}
/* video end*/
#payment {
  display: none;
}

#payment .card .content h1 {
  text-align: center;
  padding-bottom: 40px;
}

#payment .card .content .payment-details {
  width: 40%;
  margin: 0 auto;
}

#payment .card .content .payment-details li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
}

#payment .card .content .payment-details li p {
  width: 50%;
}

#work {
  display: none;
}

#work .card .content h1 {
  text-align: center;
  padding-bottom: 40px;
}

#work .card .content .gallery .carousel-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}

#work .card .content .gallery .carousel-row .carousel-row--img img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#work .card .content .gallery .carousel-row .carousel-row--img img:hover {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

#work .card .content .gallery .modal {
  display: none;
  padding: 20px 0;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

#work .card .content .gallery .modal .modal-content {
  margin: auto;
  width: 50%;
  overflow: hidden;
}

#work .card .content .gallery .modal .modal-content .my-slides {
  display: none;
  height: 65vh;
  -webkit-transition: all 2s;
  transition: all 2s;
  overflow: hidden;
  position: relative;
}

#work .card .content .gallery .modal .modal-content .my-slides img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#work
  .card
  .content
  .gallery
  .modal
  .modal-content
  .my-slides
  .my-slides--number {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  background: red;
}

#work .card .content .gallery .modal .modal-content .column-box {
  white-space: nowrap;
  background-color: transparent;
  width: 100%;
  height: 300px;
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

#work .card .content .gallery .modal .modal-content .column-box .column {
  width: 20%;
  display: inline-block;
  -webkit-transition: all 1s;
  transition: all 1s;
  height: inherit;
}

#work .card .content .gallery .modal .modal-content .column-box .column img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
}

#work .card .content .gallery .modal .modal-content .column-box .column .demo {
  opacity: 0.5;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#work
  .card
  .content
  .gallery
  .modal
  .modal-content
  .column-box
  .column
  .demo:hover {
  opacity: 1;
}

#work
  .card
  .content
  .gallery
  .modal
  .modal-content
  .column-box
  .column
  .demo.active {
  opacity: 1;
}

#work .card .content .gallery .modal .modal-content .caption-container {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 6px 16px;
  color: #fff;
}

#work .card .content .gallery .modal .close {
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 50px;
  width: 50px;
  height: 50px;
  background: rgba(255, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

#work .card .content .gallery .modal .close:hover,
#work .card .content .gallery .modal .close:focus {
  text-decoration: none;
  cursor: pointer;
  background: red;
}

#work .card .content .gallery .modal .prev,
#work .card .content .gallery .modal .next {
  cursor: pointer;
  position: fixed;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 32px;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: rgba(255, 0, 0, 0.5);
}

#work .card .content .gallery .modal .next {
  right: 0;
}

#work .card .content .gallery .modal .next:hover {
  background-color: red;
}

#work .card .content .gallery .modal .prev {
  left: 0;
}

#work .card .content .gallery .modal .prev:hover {
  background-color: red;
}

#contact {
  display: none;
}

#contact .card .content h1 {
  text-align: center;
  padding-bottom: 50px;
}

#contact .card .content .contact-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}

#contact .card .content .contact-details .contact-l {
  width: 40%;
  margin-left: 200px;
}

#contact .card .content .contact-details .contact-l a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#contact .card .content .contact-details .contact-l a i {
  padding-right: 10px;
}

#contact .card .content .contact-details .contact-l a:nth-of-type(2) {
  padding: 10px 0;
}

#contact .card .content .contact-details .contact-form {
  width: 60%;
}

#contact .card .content .contact-details .contact-form form {
  background: red;
  width: 80%;
  padding: 40px 20px;
  border-radius: 10px;
}

#contact .card .content .contact-details .contact-form form .field {
  position: relative;
}

#contact .card .content .contact-details .contact-form form .field label {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#contact .card .content .contact-details .contact-form form .field input,
#contact .card .content .contact-details .contact-form form .field textarea {
  width: 100%;

  padding: 10px;
  margin-bottom: 25px;
  border: none;
  outline: none;
  border-radius: 5px;
}

#contact
  .card
  .content
  .contact-details
  .contact-form
  form
  .field
  input:focus
  + label,
#contact
  .card
  .content
  .contact-details
  .contact-form
  form
  .field
  input:valid
  + label,
#contact
  .card
  .content
  .contact-details
  .contact-form
  form
  .field
  textarea:focus
  + label,
#contact
  .card
  .content
  .contact-details
  .contact-form
  form
  .field
  textarea:valid
  + label {
  width: 99%;
  top: -18px;
  left: 0;
  font-size: 12px;
  color: #fff;
}

#contact .card .content .contact-details .contact-form form button {
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#contact .card .content .contact-details .contact-form form button i {
  padding-left: 10px;
  -webkit-transform: rotateZ(-30deg);
  transform: rotateZ(-30deg);
}

#contact .card .content .contact-details .contact-form form button:hover {
  background-color: red;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1),
    0 5px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.3);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  color: #fff;
  -webkit-animation: animateBtn 0.3s ease;
  animation: animateBtn 0.3s ease;
}

#contact .card .content .own-card {
  text-align: center;
  padding-top: 40px;
}

#contact .card .content .own-card a {
  -webkit-animation: animateAnchor 1s ease-in infinite;
  animation: animateAnchor 1s ease-in infinite;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
}
.types-video {
  width: 100%;
  background: #000;
  overflow: hidden;
  height: 450px !important;
}
.types-video .vjs-tech {
  max-width: 600px;
  margin: 0 auto;
  left: 50% !important;
  height: unset !important;
  transform: translateX(-50%);
  max-height: 600px;
  height: 450px !important;
}

@media (min-width: 320px) and (max-width: 768px) {
  body {
    padding-bottom: 10px;
  }
  #header #nav {
    font-size: 14px;
  }
  #header #nav-indicator {
    display: none;
  }
  #nav .nav-list .nav-item a {
    padding: 15px 8px;
  }
  main {
    margin-top: 10px;
  }
  .content {
    padding: 25px;
  }
  #about .card .left {
    -webkit-clip-path: none;
    clip-path: none;
    position: relative;
    width: 100%;
  }
  #about .card .left .content {
    margin-right: 0;
  }
  #about .card .left .content .user-name {
    width: 200px;
    margin-top:17px;
  }
  #about .card .left .content p {
    padding: 40px 0;
  }
  #about .card .left .content .contact-icons {
    width: 100%;
  }
  #about .card .left .btns {
    margin-right: 0;
  }
  #about .card .right {
    width: 100%;
  }
  #about .card .right .content h1 {
    text-align: center;
    padding-bottom: 20px;
  }
  #service {
    /* display: block; */
    margin-top: 50px;
  }
  #service .card .content .types {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
  #payment {
    /* display: block; */
    margin-top: 50px;
  }
  #payment .card .content .payment-details {
    width: 100%;
  }
  #work {
    /* display: block; */
    margin-top: 50px;
  }
  #work .card .content .gallery .carousel-row {
    -ms-grid-columns: (1fr) [1];
    grid-template-columns: repeat(1, 1fr);
  }
  #work .card .content .gallery .modal {
    padding: 10px 0;
  }
  #work .card .content .gallery .modal .modal-content {
    width: 95%;
  }
  #work .card .content .gallery .modal .close {
    z-index: 2;
  }
  #work .card .content .gallery .modal .prev,
  #work .card .content .gallery .modal .next {
    z-index: 2;
    font-size: 20px;
  }
  #contact {
    /* display: block; */
    margin-top: 50px;
  }
  #contact .card .content .contact-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #contact .card .content .contact-details .contact-l,
  #contact .card .content .contact-details .contact-form {
    width: 100%;
  }
  #contact .card .content .contact-details .contact-l {
    margin: 0;
    padding-bottom: 20px;
  }
  #contact .card .content .contact-details .contact-form form {
    width: 100%;
  }
  #contact .card .content .contact-details .contact-form form .field label {
    width: 92%;
  }
}

#video .card .content .types.video iframe {
  max-width: 100%;
  border: 0;
}
@media (min-width: 375px) and (max-width: 424px) {
  #nav .nav-list .nav-item a {
    padding: 15px 13px;
  }
}

@media (max-width: 599px) {
  #service .card .content .types,
  #video .card .content .types,
  #product .card .content .types {
    display: block;
  }
  #about .card .left img {
    /*max-height: 300px;*/
    }
}

@media (max-width: 768px) {
#about .btns{
position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1;
    }
}
@media (min-width: 425px) and (max-width: 599px) {
  #nav .nav-list .nav-item a {
    padding: 15px 18px;
  }
}

@media (min-width: 600px) and (max-width: 768px) {
  #nav .nav-list .nav-item a {
    padding: 15px 30px;
  }
  #payment .card .content .payment-details {
    width: 60%;
  }
  #work .card .content .gallery .carousel-row {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
  #contact .card .content .contact-details .contact-l,
  #contact .card .content .contact-details .contact-form {
    width: 100%;
  }
  #contact .card .content .contact-details .contact-l {
    width: 50%;
  }
  #contact .card .content .contact-details .contact-form {
    width: 70%;
  }
}

.social-icon {
  position: relative;
}

/* The actual popup */
.social-icon .socialPopup {
  display: none;
  width: 195px;
  background-color: red;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  top: -74px;
  left: 0;
  margin-left: -207px;
}
.social-icon .show {
  display: block;
}
.socialPopup li {
  display: inline-block;
  margin: 0 5px;
}
.socialPopup li a {
  font-size: 25px;
}
@-webkit-keyframes animateAnchor {
  50% {
    color: red;
  }
}

@keyframes animateAnchor {
  50% {
    color: red;
  }
}

.footer-text {
  text-align: center;
  color: #fff;
  margin-top: 10px;
}

.footer-text a {
  text-decoration-line: underline;
}
/* social wrap - new */
.social-links-wrap {
  margin-bottom: 10px;
}

.social-links-wrap a {
  margin-right: 10px;
  font-size: 20px;
}

.mb-btm-10 {
  margin-bottom: 10px;
}

.footer-text {
    color: #fff;
    border-radius: 30px;
    max-width: 320px;
    margin: auto;
    margin-top: 20px;
    padding: 5px 10px;
    animation-name: backgroundColorPalette;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes backgroundColorPalette {
	0% {
		background: #fa5e5e;
	}
	25% {
		background: #733e98;
	}
	50% {
		background: #fa5e5e
	}
	75% {
		background: #733e98;
	}
	100% {
		background: #fa5e5e;
	}
}
