/*----------------------------public settings----------------------------*/
html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow-x: hidden !important;
}

img{
    max-width: 100%;
}

h1,h2,h3,h4,h5,p{
    margin: 0;
    letter-spacing: 0.5px;
}

ul{
    margin: 0;
}

.btn:focus,
button{
    box-shadow: none;
    outline: none !important;
}

:focus{
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}
.h1{
  color: #2f323a;
}
p{
  color: #161616;
}
header nav .sidenav a,
header nav .sidenav .menu-social a,
.nav-pure,
.feature .my-card,
footer .social-copyright .social ul li,
.contact-us .contact-form-box .contact-form button,
.blog .content .btn,
.testimonials .info span,  
.testimonials .info img,
.our-work .row .frame img,
.our-team .person .head .social ul li a,
.our-team .person .head .social ul li,
.our-team .person .head h4,
.our-team .person .head .sub-heading,
.our-team .person .person-img img,
.our-team .person,
.about-us .counters .content-box .icon,
.feature .my-card .text,
.feature .my-card .feature-icon,
.our-work .row .frame .overlay,
.testimonials .testi-card,
.testimonials .testi-card h4,
.testimonials .testi-card p,
.testimonials .testi-card .qoutes {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
/*---loading---*/
.box-loader{
    position: fixed;
    background-color: #fff;
    height: 100%;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}
@-webkit-keyframes enter {
  0% {
      opacity: 0;
      top: -10px;
  }
  5% {
      opacity: 1;
      top: 0px;
  }
  50.9% {
      opacity: 1;
      top: 0px;
  }
  55.9% {
      opacity: 0;
      top:  -10px;
  }
}
@keyframes enter {
  0% {
      opacity: 0;
      top: -10px;
  }
  5% {
      opacity: 1;
      top: 0px;
  }
  50.9% {
      opacity: 1;
      top: 0px;
  }
  55.9% {
      opacity: 0;
      top:  -10px;
  }
}
@-moz-keyframes enter {
  0% {
      opacity: 0;
      top: -10px;
  }
  5% {
      opacity: 1;
      top: 0px;
  }
  50.9% {
      opacity: 1;
      top: 0px;
  }
  55.9% {
      opacity: 0;
      top:  -10px;
  }
}

.square {
  background-image: linear-gradient(45deg, #7327ff 50%, #5900ff 65%);
  width: 30px;
  height: 30px;
  float: left;
  top: -10px;
  margin-right: 5px;
  margin-top: 5px;
  position: relative;
  opacity: 0;
  -webkit-animation: enter 6s infinite;
  animation: enter 6s infinite;
}
.enter {
  top: 0px;
  opacity: 1;
}
.square:nth-child(1) {
  -webkit-animation-delay: 1.8s;
  -moz-animation-delay: 1.8s;
  animation-delay: 1.8s;
}
.square:nth-child(2) {
  -webkit-animation-delay: 2.1s;
  -moz-animation-delay: 2.1s;
  animation-delay: 2.1s;
}
.square:nth-child(3) {
  -webkit-animation-delay: 2.4s;
  -moz-animation-delay: 2.4s;
  animation-delay: 2.4s;
  background: #fdc96f;
}
.square:nth-child(4) {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.square:nth-child(5) {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.square:nth-child(6) {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.square:nth-child(8) {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.square:nth-child(9) {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.clear {
  clear: both;
}
.last {
  margin-right: 0;
}


/*----header----*/
header{
    overflow: hidden;
    position: relative;
}
header .navbar{
    z-index: 10;
}

header .navbar .navbar-brand img{
    max-height: 80px;
}

header .navbar .navbar-menu{
    font-size: 15px;
    font-weight: 600;
    list-style: none;
    margin: auto;
}

header .navbar .navbar-menu li a{
    color: #161616;
    padding: 15px;
    font-weight: 400;
}
header .navbar .navbar-menu li a:hover,
header .navbar .navbar-menu li a.active
{
  color: #5900ff;
}

/* Underline From Center */
header .navbar .navbar-menu li .hvr-underline-from-center {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
  }

  header .navbar .navbar-menu li .hvr-underline-from-center:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: 0;
    background: #5900ff;
    border-radius: 10px !important;
    height: 2px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    -ms-border-radius: 10px !important;
    -o-border-radius: 10px !important;
}

  header .navbar .navbar-menu li .hvr-underline-from-center:hover:before,
  header .navbar .navbar-menu li .hvr-underline-from-center:focus:before,
  header .navbar .navbar-menu li .hvr-underline-from-center.active:before{
    left: 0;
    right: 0;
  }

header .navbar .search-icon{
    cursor: pointer;
    font-size: 20px;
    color: #5900ff;
}

header .navbar form{
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
}

header .navbar form .form-control{
    max-width: 500px;
    width: 350px;
    height: 50px;
    border: 1px solid #5900ff !important;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

header .navbar form .form-content{
    position: relative;
}

header .navbar form .form-content .btn{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #5900ff;
}

header .navbar form .form-content .btn:hover{
    background-color: transparent;
}

header nav .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(89,0,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}

header nav .navbar-toggler{
    border: none;
    margin-left: 20px;
    padding: 0;
}

header nav .navbar-toggler:focus{
    outline: none;
}

header .container,
header .intro .intro-content{
    height: 100%;
}
header .intro .intro-content{
    display: flex;
    align-items: center;
}

header .intro .intro-content .intro-text{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header .intro .intro-content .intro-text h1{
    font-weight: 600;
    margin-bottom: 40px;
    font-size: 60px;
    color: #5900ff;
    background-image: linear-gradient(45deg, #7327ff 50%, #5900ff 65%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

header .intro .intro-content .intro-text p{
    padding-right: 100px;
    margin-bottom: 70px;
    color: #161616;
}

header .intro .intro-content .intro-text .order{
    color: #FFF;
    text-decoration: none;
    padding: 12px 25px;
    background: linear-gradient(45deg, #7327ff 20%, #5900ff 65%);
    border-radius: 5px;
    text-align: center;
}

/* The side navigation menu */
header nav .sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 150; /* Stay on top */
    top: 0; /* Stay at the top */
    right: 0;
    background: linear-gradient(45deg, #7327ff 15%, #5900ff 65%);; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  
  /* The navigation menu links */
header nav .sidenav a {
    padding: 15px 0 15px 100px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    display: block;
}

header nav .sidenav .menu-social{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 100px;
    padding-top: 100px;
}

header nav .sidenav .menu-social a{
    padding: 0;
    font-size: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header nav .sidenav .menu-social a:hover{
    background-color: #000;
}

header nav .sidenav .menu-social a:not(:last-of-type){
    margin-right: 15px;
}

header nav .side-overlay{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(0,0,0, 0.5);
    display: none;
    z-index: 149;
}
  
  /* When you mouse over the navigation links, change their color */
  header nav .sidenav a:hover {
    color: #f1f1f1;
  }
  
  /* Position and style the close button (top right corner) */
  header nav .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
  }
  
  /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
  header nav #main {
    transition: margin-left .5s;
    padding: 20px;
  }
  
  /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
  @media screen and (max-height: 450px) {
    header nav .sidenav {padding-top: 15px;}
    header nav .sidenav a {font-size: 18px;}
  }

/*nav-position-scrolling*/
.is-hidden {
    opacity: 0;
    transition: opacity 1s;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    visibility: hidden;
}

.is-visible{
    background-color: #d9d9d9;
    padding: 10px 30px !important;
    opacity: 1;
    visibility: visible;
    transition: opacity 1s;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    box-shadow: 0px -6px 15px rgb(255 255 255 / 0.3);
}

.fixed-top{
    z-index: 100;
}
/*-----button-hover-----*/
.button-container-2 {
    position: relative;
    width: 150px;
    display: flex;
}
.button-container-2 a,
.button-container-2 button {
    width: 100%;
    -webkit-mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
    mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
    -webkit-mask-size: 3000% 100%;
    mask-size: 3000% 100%;
    -webkit-animation: ani2 0.7s steps(29) forwards;
    animation: ani2 0.7s steps(29) forwards;
}
.button-container-2 a:hover,
.button-container-2 button:hover {
    -webkit-animation: ani 0.7s steps(29) forwards;
    animation: ani 0.7s steps(29) forwards;
}

.mas {
    position: absolute;
    color: #5900ff;
    border-radius: 5px;
    top: 1px;
    bottom: 1px;
    left: 1px;
    right: 1px;
    border: 1px solid #5900ff;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

@-webkit-keyframes ani {
    from {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
    to {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }
}
@keyframes ani {
    from {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
    to {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }
}
@-webkit-keyframes ani2 {
    from {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }
    to {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
}
@keyframes ani2 {
    from {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }
    to {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
}
/*Animation-bg*/
header .animated-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.circles{
    width: 100%;
    height: 100%;
    position: absolute;
}

#animated-circle {
    background-image: url('../../imgs/circle-1.png');
    background-repeat: no-repeat;
    background-size: 100%;
    height: 65px;
    margin: 0;
    width: 65px;
    position: absolute;
    top: 50px;
    left: 50px;
}
 
.circles .animated-circle { 
     animation-duration: 10s; 
     animation-fill-mode: both; 
     animation-iteration-count:infinite; 
}

.circles .animated-circle-1{ 
    animation-duration: 100s; 
    animation-fill-mode: both; 
    animation-iteration-count:infinite; 
}
 
@keyframes rollIn { 
    0% { opacity: 0.7; transform: scale(0.7);}
    50% { opacity: 0.7; transform: scale(1);}
    100% { opacity: 0.7; transform: scale(0.7);}
} 

.circles .rollIn { 
     animation-name: rollIn; 
}

header .dots{
    position: absolute;
    bottom: 120px;
    right: 50px;
}

#animated-dots-1{
    background: #5900ff;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    opacity: 0.7;
}

.animated-dot-1{
    animation-duration: 50s; 
     animation-fill-mode: both; 
     animation-timing-function: ease-in-out; 
     animation-iteration-count:infinite;
 }

 @keyframes move { 
    0% {
        transform: translate3d(0,-50px,0);
    }
    25% {
        transform: translate3d(0,-200px,0);
    }
    50% {
        transform: translate3d(-50px,-350px,0);
    }
    75% {
        transform: translate3d(0,-200px,0);
    }
    100% {
        transform: translate3d(0,-50px,0);
    }
}

.move { 
    animation-name: move; 
}
header .dots-2{
    position: absolute;
    bottom: 120px;
    left: 30%;
}

@keyframes move-2 { 
    0% {
        transform: translate3d(0,-50px,0);
    }
    25% {
        transform: translate3d(100px,-200px,0);
    }
    50% {
        transform: translate3d(500px,50px,0);
    }
    100% {
        transform: translate3d(0,-50px,0);
    }
}
.move-2 { 
    animation-name: move-2;
    position: absolute;
    left: 40%; 
}
header .dots-3{
  position: absolute;
  top: 120px;
  left: 30%;
}
@keyframes move-3 { 
  0% {
      transform: translate3d(0,-50px,0);
  }
  25% {
      transform: translate3d(100px,-200px,0);
  }
  50% {
      transform: translate3d(500px,50px,0);
  }
  100% {
      transform: translate3d(0,-50px,0);
  }
}
.move-3 { 
  animation-name: move-3;
  position: absolute;
  left: 40%; 
}


header .lines{
    position: absolute;
    bottom: 40px;
    right: 70px;
}

#animated-example-1{
    background: #5900ff;
    width: 60px;
    height: 5px;
    margin: 10px auto;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    opacity: 0.7;
}

.animated-1,
.animated-3{
    animation-duration: 5s; 
     animation-fill-mode: both; 
     animation-timing-function: ease-in-out; 
     animation-iteration-count:infinite;
 }

 @keyframes slideInRight { 
    0% {
        transform: translate3d(50%, 0, 0);
        visibility: visible;
        -webkit-transform: translate3d(50%, 0, 0);
        -moz-transform: translate3d(50%, 0, 0);
        -ms-transform: translate3d(50%, 0, 0);
        -o-transform: translate3d(50%, 0, 0);
} 
    50% { 
        transform: translate3d(0, 0, 0); 
    }
    100% {
        transform: translate3d(50%, 0, 0);
        visibility: visible;
        -webkit-transform: translate3d(50%, 0, 0);
        -moz-transform: translate3d(50%, 0, 0);
        -ms-transform: translate3d(50%, 0, 0);
        -o-transform: translate3d(50%, 0, 0);
}  
} 
.slideInRight { 
    animation-name: slideInRight; 
}


.rec{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.rec #animated-example { 
    background-image: url('../../imgs/rectangle.png');
    background-repeat: no-repeat;
    background-size: contain;
    height: 200px; 
    width: 50px; 
    position: absolute;
 }
 
.rec .animated { 
     animation-duration: 20s; 
     animation-fill-mode: both; 
     animation-iteration-count:infinite; 
 }  

@keyframes bounceIn-1 { 
    0% {
        opacity: 0.7;
        transform: scale(.3);
        -webkit-transform: scale(.3);
        -moz-transform: scale(.3);
        -ms-transform: scale(.3);
        -o-transform: scale(.3);
    } 

    50% {
        opacity: 0.7;
        transform: scale(0.7);
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        -o-transform: scale(0.7);
    }

    100% {
        opacity: 0.7;
        transform: scale(.3);
        -webkit-transform: scale(.3);
        -moz-transform: scale(.3);
        -ms-transform: scale(.3);
        -o-transform: scale(.3);
    } 
} 
 

 @keyframes bounceIn-3 { 
    0% {
        opacity: 0.2;
        transform: scale(.3);
        -webkit-transform: scale(.3);
        -moz-transform: scale(.3);
        -ms-transform: scale(.3);
        -o-transform: scale(.3);
} 

    50% {
        opacity: 0.7;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
}

    100% {
        opacity: 0.2;
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        -moz-transform: scale(0.3);
        -ms-transform: scale(0.3);
        -o-transform: scale(0.3);
} 
 }
 
 @keyframes rollIn-2 { 
    0% { opacity: 0.7; transform: translateX(0) rotate(45deg); -webkit-transform: translateX(0) rotate(45deg); -moz-transform: translateX(0) rotate(45deg); -ms-transform: translateX(0) rotate(45deg); -o-transform: translateX(0) rotate(45deg); } 
    50% { opacity: 0.7; transform: translateX(150px) rotate(45deg); -webkit-transform: translateX(150px) rotate(45deg); -moz-transform: translateX(150px) rotate(45deg); -ms-transform: translateX(150px) rotate(45deg); -o-transform: translateX(150px) rotate(45deg)} 
    100% { opacity: 0.7; transform: translateX(0) rotate(45deg); -webkit-transform: translateX(0) rotate(45deg); -moz-transform: translateX(0) rotate(45deg); -ms-transform: translateX(0) rotate(45deg); -o-transform: translateX(0) rotate(45deg); } 
} 
 
.rec .bounceIn{ 
     animation-name: bounceIn; 
 }

 .rec .bounceIn-1{
    animation-name: rollIn-2;
 }
 .rec .bounceIn-2{
    animation-name: bounceIn-2;
 }
 .rec .bounceIn-3{
    animation-name: bounceIn-3;
}
.rec .rec-2{
    left: 100px;
    top: 590px;
}
.rec .rec-4{
    top: 100px;
    right: 100px;
}
/*----about-us----*/
.feature,
.our-team{
    padding: 100px 0;
    background: #eee;
}
.feature .intro .text{
    margin: 50px 250px 75px;
}

.feature .my-card{
    padding: 60px 0 30px;
}

.feature .my-card:hover{
  background: linear-gradient(45deg, #7327ff 40%, #5900ff 65%);
  color: #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
} 
.feature .my-card .feature-icon{
    margin-bottom: 20px;
    color: #5900ff;
}

.feature .my-card:hover .feature-icon{
    transform: translateY(-32px);
    -webkit-transform: translateY(-32px);
    -moz-transform: translateY(-32px);
    -ms-transform: translateY(-32px);
    -o-transform: translateY(-32px);
    color: #fff;
}
.feature .my-card .text{
    font-size: 22px;
    padding: 0 40px;
}
.feature .my-card:hover .text{
  color: #fff;
}

.about-us{
    padding: 100px 0;
}

.about-us .frame img{
    max-width: 70%;
}

.about-us .about-content{
    height: 100%;
    width: 80%;
}
.about-us .about-content h1{
    line-height: 1.5;
    margin-bottom: 50px;
    font-weight: 700;
}

.about-us .about-content .text{
    line-height: 1.8;
}

.about-us .counters{
    padding: 50px 0;
}

.about-us .counters .content-box{
    display: flex;
}

.about-us .counters .content-box:hover .icon{
    transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
}
.about-us .counters .content-box .icon{
    margin: auto 0;
    color: #5900ff;
}

.about-us .counter{
    margin-left: 20px;
}

.about-us .number{
    display: flex;
    color: #5900ff;
    font-size: 40px;
    font-weight: 500;

}
.about-us  .counter h5{
    margin: 15px 0 5px;
}

.our-team .intro h2{
    margin-bottom: 50px;
}
.our-team .person{
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    padding-bottom: 20px;
}
.our-team .person .person-img{
    overflow: hidden;
    margin: 10px;
    border-radius: 5px;
}
.our-team .person:hover .person-img img{
    transform: scale(1.2);
}

.our-team .person .head h4{
    color: #5900ff;
    margin: 20px 0;
    font-weight: 400;
}
.our-team .person:hover .head h4,
.our-team .person:hover .head .sub-heading,
.our-team .person:hover .head .social ul li a{
  color: #fff;
}

.our-team .person .head .social ul{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.our-team .person .head .social ul li{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.our-team .person .head .social ul li a{
    color: #000;
}

.our-team .person .head .social ul li:hover a{
    color: #fff;
}

.our-team .person .head .social ul li:nth-of-type(1):hover{
    background-color: #3b5999;
}

.our-team .person .head .social ul li:nth-of-type(2):hover{
    background-color: #55acee;
}
.our-team .person .head .social ul li:nth-of-type(3):hover{
    background-color: #e4405f;
}
.our-team .person .head .social ul li:last-of-type{
    margin-right: 0;
}
/* Sweep To Bottom */
.hvr-sweep-to-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-bottom .head:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #7327ff 40%, #5900ff 65%);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-bottom:hover .head:before{
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.hvr-sweep-to-bottom:hover .frame img{
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

@media (max-width: 376px){
    .about-us .number {
        font-size: 1.6rem;
    }
}
@media (min-width:501px) and (max-width: 767px){
    .feature .my-card .text {
        padding: 0 90px;
    }
}
@media (max-width: 767px){
    .feature .intro .text {
        margin: 50px 0 75px;
    }
    .feature .my-card{
        margin-bottom: 40px;
    }
    .about-us .about-content{
        width: 100%;
    }
    .about-us .counters .content-box {
        width: 40%;
        margin: 0 auto 20px;
    }
    .our-team .person .head .frame-img {
        width: 45%;
    }
}

@media (min-width: 768px) and (max-width: 991px){
    .feature .intro .text {
        margin: 50px 100px 75px;
    }
    .feature .my-card .text {
        padding: 0 10px;
    }
    .our-team .person .head .frame-img h4 {
        top: 25px;
        left: 10px;
        font-size: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1200px){
    .our-team .person .head .frame-img {
        width: 70%;
    }
    .our-team .person .head .frame-img h4 {
        left: 35px;
        font-size: 22px;
    }
}

/*----our-work----*/
.our-work{
    padding: 75px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
    right: 40px;
    top: 40px;
    position: fixed;
    width: 50px;
    height: 50px;
    border: 1px solid #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer !important;
}

.mfp-arrow-left:after{
    content: "\f053";
    font-family: 'FontAwesome';
    font-weight: 100;
    font-size: 20px;
    width: 50px;
    height: 50px;
    color: #FFF;
    border: 1px solid #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-left: 30px;
}

.mfp-arrow-left:before,
.mfp-arrow-right:before{
    margin: 0;
    border: none;
}

.mfp-figure small{
    display: none;
}

.mfp-arrow-right:after{
    content: "\f054";
    font-family: 'FontAwesome';
    font-size: 20px;
    width: 50px;
    height: 50px;
    color: #FFF;
    border: 1px solid #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-right: 30px;
}

.our-work .row{
    margin: 0;
}

.our-work .row .frame{
    height: 200px;
    position: relative;
    overflow: hidden;
}

.our-work .row .frame:hover .overlay{
  opacity: 1;
}

.our-work .row .frame .overlay{
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: linear-gradient(45deg, #7327ff96 40%, #5900ffc9 65%);
  justify-content: center;
  align-items: center;
  display: flex;
  opacity: 0;
}
.our-work .row .frame .overlay p{
  color: #fff;
}

.our-work .row .frame.first{
    height: 400px;
}
.our-work .row .frame img{
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.our-work .row .col-md-3,
.our-work .row .col-md-6,
.our-work .row .col-md-12{
    padding: 0;
}

.our-work .frame:hover img {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}
/*----Testimonials----*/
.testimonials{
  padding: 50px 0;
  background: #eee;
}
.testimonials .details{
  width: 60%;
  margin:0 auto 50px
}
.testimonials .details h2{
  margin-bottom: 30px;
}
.testimonials .details p{
  margin-bottom: 30px;
}
.testimonials .testi-card{
  background: #fff;
  padding: 30px 0;
  border-radius: 5px;
}
.testimonials .testi-card:hover{
  background: linear-gradient(45deg, #7327ff 15%, #5900ff 65%);
  transform: translateY(-10px);
}
.testimonials .testi-card .frame{
  border-radius: 50%;
  width: 100px;
  margin: auto;
  height: 100px;
  overflow: hidden;
  margin-bottom: 15px;
}
.testimonials .testi-card:hover h4,
.testimonials .testi-card:hover p,
.testimonials .testi-card:hover .qoutes{
  color: #fff;
}
.testimonials .testi-card h4{
  margin-top: 10px;
  font-size: 18px;
  color: #161616;
}
.testimonials .testi-card p{
  font-size: 15px;
  width: 80%;
  margin: 30px auto;
  color: #6f6f6f;
}

.testimonials .testi-card .qoutes{
  color: #5900ff;
  font-size: 15px;
}
.testimonials .swiper-container {
  width: 100%;
  height: 100%;
  padding-bottom: 45px;
  padding-top: 10px;
  overflow: hidden;
  position: relative;
}

.testimonials .swiper-slide {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.testimonials .swiper-pagination-bullet {
  width: 30px;
  height: 5px;
  border-radius: 0;
}
.testimonials .swiper-pagination-bullet-active{
  background: linear-gradient(45deg, #7327ff 15%, #5900ff 65%);
}

@media(max-width:991px){
  .testimonials .details {
      width: 100%;
  }
}
/*-------blog-------*/
.blog{
    padding: 100px 0;
}

.blog .spacer{
    margin-top: 50px;
}

.blog .frame{
    overflow: hidden;
}

.blog .content h2{
    font-size: 40px;
    color: #5900ff;
}

.blog .content .text{
    margin: 50px 0;
}
.blog .content .btn{
    color: #fff;
    border: 1px solid #5900ff;
    background: linear-gradient(45deg, #7327ff 20%, #5900ff 65%);
    border-radius: 5px;
    padding: 12px 25px;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.blog .content .mas {
    background-color: transparent;
    border: 1px solid #5900ff;
}
.blog img,
.blog h2,
.blog h3,
.blog a{
    cursor: pointer;
}

#content-blog1,
#content-blog2,
#content-blog3{
    display: none;
    right: 20%;
    left: 20% !important;
    background-color: #fff;
}

#content-blog1 .box,
#content-blog2 .box,
#content-blog3 .box{ 
    padding: 20px;
}
#content-blog1 ul,
#content-blog2 ul,
#content-blog3 ul{
    display: flex;
    margin: 15px 0;
}
#content-blog1 ul li,
#content-blog2 ul li,
#content-blog3 ul li{
    color: #505050;
    margin-right: 20px;
}

@media(max-width: 767px){
    .blog .content h2 {
        margin-top: 20px;
        font-size: 30px;
    }
    .blog .content .button-container-2{
        margin-bottom: 20px;
    }
    .contact-us .h1{
        margin-bottom: 40px !important;
    }
    footer p{
        font-size: 12px;
    }    
}

/*-------contac-us-------*/
.contact-us{
    padding: 50px 0;
    /* background: url('../../imgs/contact-us-bg.jpg') no-repeat;
    background-size: cover; */
    background: #eee;
}

.contact-us .h1{
    margin-bottom: 75px;
}
.contact-us .address h3{
    margin-bottom: 30px;
    color: #5900ff;
}

.contact-us .address p{
    margin-bottom: 30px;
    line-height: 1.8;
    padding-right: 25%;
}

.contact-us .address a{
    margin-left: 20px;
    text-decoration: none;
}

.contact-us .address ul li{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.contact-us .address ul li .icon{
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us .address ul li .icon i{
    font-size: 25px;
    color: #5900ff;
}

.contact-us .address ul li a{
    color: #161616;
}

.contact-us .contact-form-box .item{
    margin-bottom: 30px;
}

.contact-us .contact-form-box .item .form-control{
    border-radius: 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #e2e2e2;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding-left: 0;
    padding-right: 0;
}

.contact-us .contact-form-box .item .form-control:focus{
    border-bottom: 1px solid #495057 !important;
}

.contact-us .contact-form-box .item textarea{
    resize: none;
    height: 100px;
}

.contact-us .contact-form-box .item .form-control::placeholder{
    color: rgb(182, 182, 182);
}

.contact-us .contact-form-box .contact-form button{
    color: #fff;
    border-radius: 5px;
    padding: 12px 25px;
    background: linear-gradient(45deg, #7327ff 20%, #5900ff 65%);
}
.contact-us .contact-form-box .contact-form .mas {
    color: #5900ff;
    border: 1px solid #5900ff;
    background-color: transparent;
}


.contact-us .map-frame{
    margin-top: 100px;
}
/*----footer-----*/
footer{
    padding: 15px 0;
    background-color: #d9d9d9;
    color: #fff;
}

footer .social-copyright{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .social-copyright .social ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .social-copyright .social ul li{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

footer .social-copyright .social ul li a{
    color: #161616;;
}
footer .social-copyright .social ul li:hover a{
  color: #fff;;
}

footer .social-copyright .social ul li:nth-of-type(1):hover{
    background-color: #3b5999;
}

footer .social-copyright .social ul li:nth-of-type(2):hover{
    background-color: #55acee;
}

footer .social-copyright .social ul li:nth-of-type(3):hover{
    background-color: #dd4b39;
}

footer .social-copyright .social ul li:nth-of-type(4):hover{
    background-color: #0077B5;
}

footer .social-copyright .social ul li:nth-of-type(5):hover{
    background-color: #e4405f;
}

footer .social-copyright .social ul li:nth-of-type(6):hover{
    background-color: #bd081c;
}

footer .social-copyright .social ul li:last-of-type{
    margin-right: 0;
}
@media (max-width: 500px){
    .feature .my-card .text {
        padding: 0 30px;
    }
}
@media (max-width: 767px){
    header .intro .intro-content .intro-text {
        align-items: center;
        text-align: center;
    }
    header .intro .intro-content .intro-text h1,
    header .intro .intro-content .intro-text p {
        padding-right: 0;
    }
    header .intro .intro-content .intro-text h1,
    .h1{
        font-size: 30px;
    }
    header .intro .intro-content .intro-text p {
        font-size: 18px;
        margin-bottom: 30px !important;
    }
    header .intro .intro-content .image-intro img{
        margin-top: 30px;
    }
    .about-us .about-content {
        margin: 0 auto 50px;
        text-align: center;
    }
    .about-us .frame img {
        max-width: 70%;
        margin: 0 auto;
        display: block;
    }
    .our-team .person{
        margin-top: 50px;
    }

    footer .social-copyright {
        flex-direction: column;
    }
}

@media (max-width: 991px){
    header .navbar .navbar-menu {
        display: none !important;
    }
    header .navbar .search-icon{
        margin-left: auto;
    }
}