.content1 {
  margin-bottom: 25px;
}

.websitedesign h3 .web_name {
  margin-top: 5px;
  text-align: center;
  color: rgb(5, 104, 197);
}


.hovereffect1 .social li a {
  border-radius: 50%;
  font-size: 20px;
  color: #fff
}

.hovereffect .social li a {
  border-radius: 50%;
  font-size: 20px;
  color: #fff
}

.social li a:hover {
  background: #fff;
  color: rgb(57, 137, 228);
}

.social li {
  display: inline-block
}

.social {
  list-style: none;
  padding: 0 0 5px;
  margin: 35px 43px;
  opacity: 0;
  position: relative;
  transform: perspective(500px) rotateX(-90deg) rotateY(0) rotateZ(0);
  transition: all .6s cubic-bezier(0, 0, .58, 1) 0s
}

:hover .social {
  opacity: 1;
  transform: perspective(500px) rotateX(0) rotateY(0) rotateZ(0)
}

.social:before {
  content: "";
  width: 50px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0
}

.social li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: rgb(57, 137, 228);
  border: #fff;
  margin-right: 10px;
  transition: all .3s ease 0s
}


.img_hover:hover {
  transition: 0.3s;
  box-shadow: 3px 3px 5px 3px #888888;
}

.para {
  height: 0px !important;
  margin-top: 0px !important;
}


/* Logo-portfolio */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 30px;
  margin: 3%;
  align-items: stretch;

}


.gallery-img {
  width: 100%;
  height: auto;
  /* margin: 5%; */
  box-shadow: 0px 2px 6px 2px rgba(56, 56, 56, 0.75);
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.5s;
}

.gallery-img:hover {
  opacity: 1;
  transform: scale(1.1);
  transition: transform .5s ease;
  box-shadow: 1px 1px 3px 1px rgba(56, 56, 56, 0.75);

}


.modal-img,
.model-vid {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: table
}

.modal-body {
  padding: 0px;
}

.modal-dialog {
  height: 100%;
  position: relative;
  margin: auto;
  display: flex;
  align-items: center;
  /* justify-content: center; */
}

.modal-content {
  border: none;
}

.protfolio_fluid .row .col-md-12 .col-md-8 .col-md-4 {
  padding: 0 !important;
}

/* banner */
.protfolio_fluid {
  background-image: url('../images/Home/header-bg.png');
  height: 400px;
}

.protfolio_img {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.webcreate_logos {
  width: auto;
  height: 50px;
  overflow: hidden;
  margin-left: 30px;
  /* padding: 10px; */
}

/* banner image on */

.protfolio_banner_text h2 {
  color: #2756ae;
  font-size: 40px;
  font-weight: bold;
  margin-top: 30px;
}

/* text on baneer */

.sliding p {
  margin-top: 20px;
  text-align: center;
  width: auto;
  height: 10px;
  line-height: 20px;
  font-family: roboto;
  font-weight: bold;
  font-size: 27px;
  padding: 0;
  margin: 0 auto;
  color: #098bb4;
  animation: slidedown 3s forwards;
  position: relative;
  visibility: hidden;

}

.sliding p:nth-child(1) {
  animation-delay: 1s;
  z-index: 7;
}

.sliding p:nth-child(2) {
  animation-delay: 2s;
  z-index: 6;

}

.sliding p:nth-child(3) {
  animation-delay: 3s;
  z-index: 5;
}

.sliding p:nth-child(4) {
  animation-delay: 4s;
  z-index: 4;
}

.sliding p:nth-child(5) {
  animation-delay: 5s;
  z-index: 3;
}

.sliding p:nth-child(6) {
  animation-delay: 6s;
  z-index: 2;
}

.sliding p:nth-child(7) {
  animation-delay: 7s;
  z-index: 1;
}

@keyframes slidedown {
  0% {
    visibility: hidden;
    bottom: 50px;
    opacity: 0;
  }

  75% {
    visibility: visible;
    bottom: 0;
    opacity: 1;
  }

  100% {
    margin: 20px auto;
    visibility: visible;
  }
}

.box {
  text-align: center;
  box-shadow: 0 0 9px #c2bdbd;
  position: relative;
  margin-bottom: 20px;
}

.box img {
  width: 100%;
  height: auto;
}

.box .box-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(47, 47, 46, 0.9);
  padding: 45px 20px;
  transform: scale(0);
  transition: all 0.6s ease 0s;
}

.box:hover .box-content {
  transform: scale(1);
}

.box .icon {
  padding: 0;
  margin: 0;
  list-style: none;
}

.box .icon li {
  display: inline-block;
}

.box .icon li a {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  border: 2px solid #18baf9;
  margin-right: 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease 0s;
}

.box .icon li a:hover {
  background: #18baf9;
  text-decoration: none;
}

.box .title {
  display: block;
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.box .post {
  font-size: 15px;
  color: #fff;
  text-transform: capitalize;
}

@media only screen and (max-width:990px) {
  .box {
    margin-bottom: 30px;
  }
}

/* .sliding:after {
   content: "";
   display: block;
   text-align: center;
   animation: slidedown-content 7s 1s linear forwards;
   margin-top: -370px;
}
   @keyframes slidedown-content {
       0% {
           margin-top: -370px;
       }
       100% {
           margin-top: 0;
       }
   } */
@media screen and (max-width: 767px) {
  .gallery {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }

  .gallery div {
    margin: 0;
    width: 200px;
  }

  .modal-dialog {
    margin: 0 8vw;
  }

  /* banner */
  .protfolio_fluid {
    background-image: url('../images/Home/header-bg.png');
    height: auto;
  }

  .protfolio_img {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
}

@media screen and (max-width: 479px) {
  .gallery {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }

  .gallery div {
    margin: 0;
    width: 200px;
  }
}

@media only screen and (max-width:990px) {
  .sliding p {
    font-size: 20px;
  }
}

@media only screen and (min-width:320px) {
  .webcreate_logos {
    margin-left: 0px;
    padding: 4px;
    width: 50px;
    height: 50px;
  }
}

@media only screen and (min-width:375px) {
  .webcreate_logos {
    margin-left: 10px;
    padding: 2px;
  }
  
}

@media screen and (min-width:376px) and (max-width:480px) {
  .webcreate_logos {
    margin-left: 29px;
    padding: 2px;
  }
  .web-logos{
    padding-right: 20px !important;
  }
}


.themes-inner {
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.themes-inner .themes-overlay {
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  padding: 10px;
  position: absolute;
  top: 0;
  transition: all 0.3s ease 0s;
  width: 100%;
}

.themes-inner .themes-overlay {
  opacity: 0;
}

.themes-inner .themes-overlay:hover {
  opacity: 1;
  background: #00000059;
}

.themes-inner .themes-overlay .border {
  border: 2px solid #fff;
  height: 100%;
  width: 100%;
}

.themes-inner .content-group {
  position: relative;
  top: 30%;
}

.themes-inner .content-group {
  color: #fff;
  display: inline-block;
  text-align: center;
}

.themes-inner .content-group i {
  background-color: #ffea01;
  padding: 10px;
  border-radius: 3px;
  text-align: center;
}

.themes-inner .content-group h6 {
  color: #fff;
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
}

/* Shutter In Vertical */
.hvr-shutter-in-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;

}

.hvr-shutter-in-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffea01;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-shutter-in-vertical:hover,
.hvr-shutter-in-vertical:focus,
.hvr-shutter-in-vertical:active {
  color: white;
}

.hvr-shutter-in-vertical:hover:before,
.hvr-shutter-in-vertical:focus:before,
.hvr-shutter-in-vertical:active:before {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

/* Shutter Out Vertical */
.hvr-shutter-out-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #ffea01;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.hvr-shutter-out-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2098d1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-shutter-out-vertical:hover,
.hvr-shutter-out-vertical:focus,
.hvr-shutter-out-vertical:active {
  color: white;
}

.hvr-shutter-out-vertical:hover:before,
.hvr-shutter-out-vertical:focus:before,
.hvr-shutter-out-vertical:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.spark-606 {
  border: 2px solid #e87737;
  border-radius: 10px;
}

.spark-607 {
  border: 2px solid #2c81ec;
  border-radius: 10px;
}

.spark-608 {
  border: 3px solid #2e68ad;
  border-radius: 10px;
}

.topvm {
  margin-top: -8px;
  height: 40px;
  width: 100%;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  .what-do .d-flex {
    display: block;
  }

  .what-do .w-50 {
    width: 100% !important;
  }
  
}