@import url(https://fonts.googleapis.com/css?family=Lato);

body{
    overflow-x: hidden;
    font-family: 'Bahnschrift'; 
    font-weight: normal; 
    font-style: normal;
}

/*stiky whatsapp  */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-image: url(gajananmange.jpg);
    background-size:100px 100px;
    background-repeat: no-repeat;
    color: white;
    padding: 50px 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    z-index: 2;
}

/* navbar code */
.navbar-nav .nav-link {
    color: black;
}

.navbar {
    /* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
    background:
        radial-gradient(circle at 55% 92%, #0766ad 0 12%, transparent 70.2%),
        radial-gradient(circle at 94% 72%, #8ea7e9 0 10%, transparent 90.2%),
        radial-gradient(circle at 20% max(78%, 350px), #8ea7e9 0 7%, transparent 90.2%),
        radial-gradient(circle at 0% 0%, #0766ad 0 40%, transparent 90.2%),#fff2f2;
}

.navbar-nav .nav-link:hover {
    color: #ffffff;
}

.nav-image {
    width: 7%;
    height: 2%;
}

li {
    font-size: 17px;
    margin-right: 10px;
}

.navbar-nav {
    margin-left: auto;
}

@media only screen and (max-width: 600px) {
    .nav-image {
        width: 40px;
        height:40px;
    }
}




/* slider page */
/* slider */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slider-overflow{
    overflow: hidden;
}

.container-slider{
    /* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
    position: relative;
    top: 50%;
    left: 0%;
/*     transform: translate(-50%, -50%); */
    width: 100%;
    height: 600px;
    /* background: #f5f5f5; */
    box-shadow: 0 30px 50px #dbdbdb;

}
@media only screen and (max-width: 700px) {
  .container-slider{
    position: relative;
    top: 50%;
    left: -40%;
    text-align:left;
    width: 1000px;
}
}

.container-slider .slide-slider .item-slider{
    /* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
    width: 200px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 20px 30px #fff;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    text-align:center;
    transition: 0.5s;
}

.slide-slider .item-slider:nth-child(1),
.slide-slider .item-slider:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    text-align:center;
    height: 100%;
}


.slide-slider .item-slider:nth-child(3){
    left: 50%;
}
.slide-slider .item-slider:nth-child(4){
    left: calc(50% + 220px);
}
.slide-slider .item-slider:nth-child(5){
    left: calc(50% + 440px);
}

/* here n = 0, 1, 2, 3,... */
.slide-slider .item-slider:nth-child(n + 6){
    left: calc(50% + 660px);
    opacity: 0;
}



.item-slider .content-slider{
    /* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
    position: absolute;
    top: 50%;
    left: 150px;
    width: 300px;
    text-align:center;
    text-shadow: 0px 10px 20px #e5e0ff;
    color: #fff2f2;
    transform: translate(0, -50%);
    font-family: system-ui;
    display: none;
}

.des{
    color:#fff2f2;
    font-weight: bold;
    text-shadow: 0px 5px 5px #0766ad;
}


.slide-slider .item-slider:nth-child(2) .content-slider{
    display: block;
}


.content-slider .name{
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
}

.content-slider .des{
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.4s 1 forwards;
}

.content-slider button{
    padding: 10px 20px;
    border: none;
    cursor: text;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}


@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}


.button-slider{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
    margin-left: -10%;
}

.button-slider button{
    /* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
    width: 40px;
    height: 35px;
    border-radius: 8px;
    /* border: none; */
    cursor: pointer;
    color:#0766ad;
    background-color: #e5e0ff;
    margin: 0 5px;
    border: 1px solid #fff2f2;
    transition: 0.3s;
}

.button-slider button:hover{
    background: #fff2f2;
    color: #8ea7e9;
}








/* servies section */

.cta {
    
  text-decoration: none;
  margin: 1rem 0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8125rem;
  letter-spacing: 1px;
}

.serviestext {
  font-size: 0.9rem;
  margin: 1rem 0;
  line-height: 1.5;
}

.servicessection {
    /* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 30px;
    background-color: #e5e0ff;
}

.section-lead {
  max-width: 600px;
  margin: 1rem auto 1.5rem;
}

.service a {
    /* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
  color: #0766ad;
  display: block;
}

.service h4 {
    /* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
  font-weight: 600;
  color: #0766ad;
  font-size: 1.3rem;
  margin: 1rem 0 0.6rem;
}

.services-grid {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.service {
    /* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
  background: #c9c1f0;
  margin: 20px;
  padding: 50px;
  border-radius: 4px;
  text-align: center;
  -webkit-box-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  border: 2px solid #e7e7e7;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service:hover {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

.service i {
    /* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
  font-size: 3.45rem;
  margin: 1rem 0;
    color:#0766ad;
}

/* .service1 i,
.service1 h4,
.service1 .cta {
  color: #42b7ca;
} */

/* .service1:hover {
  border: 2px solid #42b7ca;
} */

/* .service2 i,
.service2 h4,
.service2 .cta {
  color: #425fca;
} */

/* .service2:hover {
  border: 2px solid #425fca;
} */

/* .service3 i,
.service3 h4,
.service3 .cta {
  color: #9c42ca;
} */

/* .service3:hover {
  border: 2px solid #9c42ca;
} */

.service .cta span {
  font-size: 0.6rem;
}

.service > * {
  flex: 1 1 100%;
}

.service .cta {
  align-self: flex-end;
}

@media all and (max-width:900px) {
  .services-grid {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}






/* about page */

.text-blk {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  line-height: 20px;
  color: #e5e0ff;
  font-size: 14px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 40px;
  margin-left: 0px;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.responsive-container-block.bigContainer {
    /* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: #8ea7e9;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin: 0 0 0 0;
}

.responsive-container-block.Container {
  max-width: 1320px;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 0px;
}

.responsive-container-block.leftSide {
  width: auto;
  align-items: flex-start;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 0px;
  flex-direction: column;
  position: static;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  max-width: 420px;
}

.text-blk.heading {
    /* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
  font-size: 40px;
  line-height: 64px; 
  font-weight: 900;
  color: #0766ad;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 40px;
  margin-left: 0px;
}

/* .text-blk .btn {
    
  color: #fff2f2;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(160, 121, 0, 0.2) 0px 12px 35px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  padding-top: 20px;
  padding-right: 50px;
  padding-bottom: 20px;
  padding-left: 50px;
  cursor: pointer;
} */

.responsive-container-block.rightSide {
  width: 675px;
  position: relative;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  display: flex;
  height: 700px;
  min-height: auto;
}

.number1img {
  margin-top: 39%;
  margin-right: 80%;
  margin-bottom: 29%;
  margin-left: 0px;
  height: 32%;
  width: 20%;
  position: absolute;
}

.number2img {
  margin-top: 19%;
  margin-right: 42%;
  margin-bottom: 42%;
  margin-left: 23%;
  width: 35%;
  height: 39%;
  position: absolute;
}

.number3img {
  width: 13%;
  height: 21%;
  position: absolute;
  margin-top: 62%;
  margin-right: 64%;
  margin-bottom: 30%;
  margin-left: 23%;
}

.number4vid {
  width: 34%;
  height: 33%;
  position: absolute;
  margin-top: 62%;
  margin-right: 27%;
  margin-bottom: 0px;
  margin-left: 39%;
}

.number5img {
  position: absolute;
  width: 13%;
  height: 21%;
  margin-top: 38%;
  margin-right: 27%;
  margin-bottom: 41%;
  margin-left: 60%;
}

.number6img {
  position: absolute;
  margin-top: 0px;
  margin-right: 3%;
  margin-bottom: 67%;
  margin-left: 62%;
  width: 35%;
  height: 33%;
}

.number7img {
  position: absolute;
  width: 25%;
  margin-top: 40%;
  margin-right: 0px;
  margin-bottom: 18%;
  margin-left: 75%;
  height: 42%;
}

.text-blk.subHeading {
  font-size: 14px;
  line-height: 25px;
}

@media (max-width: 1024px) {
  .responsive-container-block.Container {
    flex-direction: column-reverse;
  }

  .text-blk.heading {
    text-align: center;
    max-width: 400px;
  }

  .text-blk.subHeading {
    text-align: center;
  }

  .responsive-container-block.leftSide {
    align-items: center;
    max-width: 480px;
  }

  .responsive-container-block.rightSide {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 100px;
    margin-left: auto;
  }

  .responsive-container-block.rightSide {
    margin: 0 auto 70px auto;
  }
}

@media (max-width: 768px) {
  .responsive-container-block.rightSide {
    width: 450px;
    height: 450px;
  }

  .responsive-container-block.leftSide {
    max-width: 450px;
  }
}

@media (max-width: 500px) {
  .number1img {
    display: none;
  }

  .number2img {
    display: none;
  }

  .number3img {
    display: none;
  }

  .number5img {
    display: none;
  }

  .number6img {
    display: none;
  }

  .number7img {
    display: none;
  }

  .responsive-container-block.rightSide {
    width: 100%;
    height: 250px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 100px;
    margin-left: 0px;
  }

  .number4vid {
    position: static;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    width: 100%;
    height: 100%;
  }

  .text-blk.heading {
    font-size: 25px;
    line-height: 40px;
    max-width: 370px;
    width: auto;
  }

  .text-blk.subHeading {
    font-size: 14px;
    line-height: 25px;
  }

  .responsive-container-block.leftSide {
    width: 100%;
  }
}



/* gallery section */
.gallery{
    /* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
    padding: 5px 5px;
    width: 100%;
    background-color: #e5e0ff;
}

.gallery .heading{
    /* font-weight: 200px; */
    /* color:#0766ad; */
    font-size: 40px;
      line-height: 64px; 
      font-weight: 900;
      color: #0766ad;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: -40px;
      margin-left: 0px;
    text-align: center;
}
.main {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
}

.galleryimg {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}
#gallery {
    position: relative;
    left: calc(-1 * var(--adjust-size));
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 100vw;
    padding: 20px;
    -webkit-perspective: 0;
    perspective: 0;
}
#gallery figure:nth-child(7n) {
    --duration: 1s;
    --pin-color: crimson;
}
#gallery figure:nth-child(7n + 1) {
    --duration: 1.8s;
    --pin-color: hotpink;
}
#gallery figure:nth-child(7n + 2) {
    --duration: 1.3s;
    --pin-color: magenta;
}
 #gallery figure:nth-child(7n + 3) {
    --duration: 1.5s;
    --pin-color: orangered;
}
/* #gallery figure:nth-child(7n + 4) {
    --duration: 1.1s;
    --pin-color: darkorchid;
}
#gallery figure:nth-child(7n + 5) {
    --duration: 1.6s;
    --pin-color: deeppink;
}
#gallery figure:nth-child(7n + 6) {
    --duration: 1.2s;
    --pin-color: mediumvioletred;
} */
#gallery figure:nth-child(3n) {
    --angle: 3deg;
}
#gallery figure:nth-child(3n + 1) {
    --angle: -3.3deg;
}
#gallery figure:nth-child(3n + 2) {
    --angle: 2.4deg;
}
#gallery figure:nth-child(odd) {
    --direction: alternate;
}
#gallery figure:nth-child(even) {
    --direction: alternate-reverse;
}
#gallery figure {
    /* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
    --angle: 3deg;
    --count: 5;
    --duration: 1s;
    --delay: calc(-0.5 * var(--duration));
    --direction: alternate;
    --pin-color: red;

    position: relative;
    display: inline-block;
    margin: var(--adjust-size);
    padding: 0.5rem;
    border-radius: 5px;
    box-shadow: 0 7px 8px rgba(0, 0, 0, 0.4);
    width: 100%;
    height: auto;
    text-align: center;
    background-color: #e5e0ff;
    background-position: center;
    background-blend-mode: multiply;

    transform-origin: center 0.22rem;
    will-change: transform;
    break-inside: avoid;
    overflow: hidden;
    outline: 1px solid transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
#gallery.active figure {
    animation-duration: var(--duration), 1.5s;
    animation-delay: var(--delay),
        calc(var(--delay) + var(--duration) * var(--count));
    animation-timing-function: ease-in-out;
    animation-iteration-count: var(--count), 1;
    animation-direction: var(--direction), normal;
    animation-fill-mode: both;
    animation-name: swing, swingEnd;
}
#gallery figure:after {
    position: absolute;
    top: 0.22rem;
    left: 50%;
    width: 0.7rem;
    height: 0.7rem;
    content: "";
    background: var(--pin-color);
    border-radius: 50%;
    box-shadow: -0.1rem -0.1rem 0.3rem 0.02rem rgba(0, 0, 0, 0.5) inset;
    filter: drop-shadow(0.3rem 0.15rem 0.2rem rgba(0, 0, 0, 0.5));
    transform: translateZ(0);
    z-index: 2;
}
figure img {
    aspect-ratio: 1 /1;
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px;
    margin-bottom: 10px;
    z-index: 1;
}
figure figcaption {
    font-size: 14px;
    font-weight: 400;
    z-index: 1;
}

figure > div {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes swing {
    0% {
        transform: rotate3d(0, 0, 1, calc(-1 * var(--angle)));
    }
    100% {
        transform: rotate3d(0, 0, 1, var(--angle));
    }
}
@keyframes swingEnd {
    to {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@media (min-width: 800px) {
    #gallery {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}



/* contact section */
 /* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
button, input {
  font-weight: 700;
  letter-spacing: 1.4px;
}

.background {
    padding: 20px 20px;
  min-height: 60vh;
    background-color: #0766ad;
}

.container2 {
  flex: 0 1 20px;
  margin: auto;
  width:50%;
  padding: 10px;
}

.screen {
    /* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
  position: relative;
  background: #8ea7e9;
  border-radius: 15px;
}

.screen:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  bottom: 0;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
  z-index: -1;
}

.screen-header {
    /* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: #fff2f2;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.screen-header-left {
  margin-right: auto;
}

.screen-header-button {
    
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 3px;
  border-radius: 8px;
  background: white;
}

.screen-header-button.close {
  background: #ed1c6f;
}

.screen-header-button.maximize {
  background: #e8e925;
}

.screen-header-button.minimize {
  background: #74c54f;
}

.screen-header-right {
  display: flex;
}

.screen-header-ellipsis {
  width: 3px;
  height: 3px;
  margin-left: 2px;
  border-radius: 8px;
  background: #999;
}

.screen-body {
  display: flex;
}

.screen-body-item {
  flex: 1;
  padding: 50px;
}

.screen-body-item.left {
  display: flex;
  flex-direction: column;
}

.app-title {
    /* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
  display: flex;
  flex-direction: column;
  position: relative;
    font-weight: 200px;
  color: #0766ad;
  font-size: 26px;
}

.app-title:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 25px;
  height: 4px;
  background: #e5e0ff;
}

.app-contact {
    /* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
  margin-top: auto;
  font-size: 15px;
  color: #e5e0ff;
}

.app-form-group {
  margin-bottom: 15px;
}

.app-form-group.message {
  margin-top: 40px;
}

.app-form-group.buttons {
  margin-bottom: 0;
  text-align: right;
}

.app-form-control {
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #666;
  color: #ddd;
  font-size: 14px;
  text-transform: uppercase;
  outline: none;
  transition: border-color .2s;
}

.app-form-control::placeholder {
  color: #666;
}

.app-form-control:focus {
  border-bottom-color: #ddd;
}

.app-form-button {
     /* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
    width: 60px;
    height: 35px;
    border-radius: 8px;
    /* border: none; */
    cursor: pointer;
    color:#0766ad;
    background-color: #e5e0ff;
    margin: 0 5px;
    border: 1px solid #fff2f2;
    transition: 0.3s;
}


.app-form-button:hover {
    background: #fff2f2;
    color: #8ea7e9;
}

.credits {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  color: #ffa4bd;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  font-weight: normal;
}

.credits-link {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.dribbble {
  width: 20px;
  height: 20px;
  margin: 0 5px;
}

@media screen and (max-width: 900px) {
  .container2 {
  width:90%;
}
  .background {
    width:100%;
  }

}

@media screen and (max-width: 520px) {
  /* .container2 {
  width:70%;
}
  .background {
    width:94%;
  } */
  .screen-body {
    flex-direction: column;
  }

  .screen-body-item.left {
    margin-bottom: 30px;
  }

  .app-title {
    flex-direction: row;
  }

  .app-title span {
    margin-right: 12px;
  }

  .app-title:after {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  /* .container2 {
  width:100%;
}
  .background {
    width:90%;
  } */
  .screen-body {
    padding: 40px;
  }

  .screen-body-item {
    padding: 0;
  }
}



/* footer */
/* color code #0766ad #8ea7e9 #e5e0ff #fff2f2 */
.site-footer{
    background: linear-gradient(217deg, #0766ad, #8ea7e9 70.71%),
    linear-gradient(127deg, #8ea7e9, #0766ad 70.71%),
    linear-gradient(336deg, #0766ad, #8ea7e9 70.71%);
  padding:45px 0 20px;
  font-size:15px;
  line-height:24px;
  color:black;
}
.site-footer hr
{
  border-top-color:#bbb;
  opacity:0.5
}
.site-footer hr.small
{
  margin:20px 0
}
.site-footer h6
{
  color:#fff;
  font-size:16px;
  text-transform:uppercase;
  margin-top:5px;
  letter-spacing:2px
}
.site-footer a
{
  color:gray;
    font-size: 17px;
}
.site-footer a:hover
{
  color:white;
  text-decoration:none;
}
.footer-links
{
  padding-left:0;
  list-style:none
}
.footer-links li
{
  display:block
}
.footer-links a
{
  color:black;
    font-weight: 200px;
}
.footer-links a:active,.footer-links a:focus,.footer-links a:hover
{
  color:white;
  text-decoration:none;
}
.footer-links.inline li
{
  display:inline-block
}
.site-footer .social-icons
{
  text-align:right
}
.site-footer .social-icons a
{
  width:40px;
  height:40px;
  line-height:40px;
  margin-left:6px;
  margin-right:0;
  border-radius:100%;
  background-color:#33353d
}
.copyright-text
{
  margin:0
}
@media (max-width:991px)
{
  .site-footer [class^=col-]
  {
    margin-bottom:30px
  }
}
@media (max-width:767px)
{
  .site-footer
  {
    padding-bottom:0
  }
  .site-footer .copyright-text,.site-footer .social-icons
  {
    text-align:center
  }
}
.social-icons
{
  padding-left:0;
  margin-bottom:0;
  list-style:none
}
.social-icons li
{
  display:inline-block;
  margin-bottom:4px
}
.social-icons li.title
{
  margin-right:15px;
  text-transform:uppercase;
  color:#96a2b2;
  font-weight:700;
  font-size:13px
}
.social-icons a{
  background-color:#eceeef;
  color:#818a91;
  font-size:16px;
  display:inline-block;
  line-height:44px;
  width:44px;
  height:44px;
  text-align:center;
  margin-right:8px;
  border-radius:100%;
  -webkit-transition:all .2s linear;
  -o-transition:all .2s linear;
  transition:all .2s linear
}
.social-icons a:active,.social-icons a:focus,.social-icons a:hover
{
  color:#fff;
  background-color:#29aafe
}
.social-icons.size-sm a
{
  line-height:34px;
  height:34px;
  width:34px;
  font-size:14px
}
.social-icons a.whatsapp:hover
{
  background-color: #25d366
}
.social-icons a.phone:hover
{
  background-color:gray
}
.social-icons a.linkedin:hover
{
  background-color:red
}
.social-icons a.dribbble:hover
{
  background-color:#ea4c89
}
@media (max-width:767px)
{
  .social-icons li.title
  {
    display:block;
    margin-right:0;
    font-weight:600
  }
}