@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/*top header Glassmorphism Effect */

:root {
    --main-font: "Montserrat", sans-serif;
  }
  :root {
    --second-font: "Roboto", sans-serif;
  }
  
  *{
    margin: 0;
    padding: 0;
   
  }

 

  :root {
    --primary-blue: #4f46e5;
    --blue-1: #7c7bff;
    --blue-2: #6a65f5;
    --blue-3: #5b55f0;
    --blue-4: #453cce;
    --blue-5: #3a33b8;
    --blue-6: #302ba1;
    --blue-hover-inset: #a7a5ff;
  }
  
  .btn-main {
    position: relative;
    font-size: 18px;
    padding: 8px 20px;
    font-family: var(--second-font);
    border: none;
    cursor: pointer;
    transition: all 250ms ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: capitalize; /* Capitalize text */
    text-decoration: none;
  }
  
  .btn-blue {
    background-color: var(--primary-blue);
    color: #ffffff;
    font-weight: 600;
    border-radius: 0.5rem;
    box-shadow:
      inset 0 1px 0 0 var(--blue-1),
      0 1px 0 0 var(--blue-2),
      0 2px 0 0 var(--blue-3),
      0 4px 0 0 var(--primary-blue),
      0 5px 0 0 var(--blue-4),
      0 6px 0 0 var(--blue-5),
      0 7px 0 0 var(--blue-6),
      0 7px 8px 0 rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }
  
  .btn-blue:hover {
    background-color: #ffffff; /* White background */
    color: #000000; /* Black text */
    transform: translateY(-3px);
    box-shadow:
      inset 0 1px 0 0 var(--blue-hover-inset),
      0 2px 4px rgba(79, 70, 229, 0.4);
  }
  

.social-container.glassmorphism-style .social-icons {
    list-style: none;
    margin: 6px 10px 0 0;
    padding: 0;
  }
  
  .social-container.glassmorphism-style .social-icons li {
    position: relative;
    display: inline-block;
    margin: 15px 6px;;
  }
  
  .social-container.glassmorphism-style .social-icons li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.25s;
    perspective: 800px;
  }
 
  
  
  .social-container.glassmorphism-style .social-icons li a:hover .ic-front {
    transform: translateZ(80px) translateY(-5px) rotateX(15deg) rotateY(15deg);
  }
  
  .social-container.glassmorphism-style .social-icons li a:hover .ic-back {
    transform: translateZ(20px) rotateZ(15deg) rotateX(-20deg) rotateY(-20deg);
  }
  
  .social-container.glassmorphism-style .social-icons li a .ic-front {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: inherit;
    height: inherit;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transition: 0.25s;
    transform-style: preserve-3d;
    transform-origin: top left;
    overflow: hidden;
    box-shadow: 0 0 0 1px hsla(0, 0%, 100%, 0.3) inset;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .social-container.glassmorphism-style .social-icons li a .ic-front i {
    font-size: 23px;
    color: #fff;
  }
  
  .social-container.glassmorphism-style .social-icons li a .ic-back {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: inherit;
    height: inherit;
    border-radius: 20px;
    transition: 0.25s;
    transform-style: preserve-3d;
    transform-origin: bottom right;
    transform: rotateZ(15deg);
    will-change: transform;
    box-shadow: 16px 0 40px #e4e4e4;
  }
  
  /* Specific Social Colors */
  .social-container.glassmorphism-style .social-icons li a.ic-facebook .ic-back {
    background-color: #006FFF;
  }
  
  .social-container.glassmorphism-style .social-icons li a.ic-instagram .ic-back {
    background-color: #ff5f40;
  }
  
  .social-container.glassmorphism-style .social-icons li a.ic-twitter .ic-back {
    background-color: #00C6FB;
  }
  
  .social-container.glassmorphism-style .social-icons li a.ic-tiktok .ic-back {
    background-color: #006FFF;
  }
  
  .social-container.glassmorphism-style .social-icons li a.ic-youtube .ic-back {
    background-color: #60e011;
  }
  
  .social-container.glassmorphism-style .copyright {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #888;
  }
  
  .social-container.glassmorphism-style .copyright a {
    color: inherit;
    text-decoration: underline;
  }
  
.main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black;
    height: 50px;
    position: relative;
    z-index: 9999;
}

.num-sec a{
    text-decoration: none;
    margin: 0px 9px;
}

.num-sec a span{
    color:  #fff;
    font-family: var(--main-font);
    font-size: 15px;
}
.num-sec a span i{
    margin-right: 10px;
    font-size: 19px;
}

/*phone */
.num-sec {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .num-sec a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    color: #fff; /* Black header ke liye white text better hai */
    transition: 0.3s ease;
    padding: 10px 20px;
    border-radius: 10px;
  
    /* Stronger shadow for black header */
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    background: #67625b21;
  }
  
  .num-sec a:hover {
    transform: translateY(-4px);
    color: #fff; /* SAME — no color change */
  }
  
  .num-sec a span i {
    margin-right: 8px;
    font-size: 20px;
    color: #ff9800; /* Your original icon color */
    transition: 0.3s ease;
  }
  
  .num-sec a:hover span i {
    color: #ff9800; /* SAME — no color change */
  }
  
  .mynav{
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .nav-item .nav-link{
    color: #000;
    font-family: var(--second-font);
    font-weight: 400;
    font-size: 18px;
    margin: 0px 22px;
    text-transform: capitalize;
    padding: 23px 0px;
  }

  /* Classic Squishy
  .squishy {
    position: relative;
    font-size: 20px;
    font-size: 18px;
    padding: 8px 20px;
    font-family: var(--second-font);
    border: none;
    cursor: pointer;
    transition: all 250ms;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    text-decoration: none;
  }
.squishy-classic {
    background-color: #f0f0f0;
    color: #242424;
    border-radius: 0.5rem;
    box-shadow: 
      inset 0 1px 0 0 #f4f4f4,
      0 1px 0 0 #efefef,
      0 2px 0 0 #ececec,
      0 4px 0 0 #e0e0e0,
      0 5px 0 0 #dedede,
      0 6px 0 0 #dcdcdc,
      0 7px 0 0 #cacaca,
      0 7px 8px 0 #cecece;
      transition: 0.4s;
  } */

  .squishy {
    position: relative;
    font-size: 18px;
    padding: 8px 20px;
    font-family: var(--second-font);
    border: none;
    cursor: pointer;
    transition: all 250ms ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    text-decoration: none;
  }
  
  .squishy-classic {
    background-color: #f9a44d;
    color: #ffff;
    font-weight: 600;
    border-radius: 0.5rem;
    box-shadow: 
      inset 0 1px 0 0 #ffd8a8,
      0 1px 0 0 #f5a54d,
      0 2px 0 0 #f0933c,
      0 4px 0 0 #e3882f,
      0 5px 0 0 #da7d24,
      0 6px 0 0 #d0751f,
      0 7px 0 0 #ba6516,
      0 7px 8px 0 rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }
  
  /* Hover effect */
  .squishy-classic:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow:
      inset 0 1px 0 0 #fff3e0,
      0 3px 6px rgba(0, 0, 0, 0.15),
      0 8px 16px rgba(0, 0, 0, 0.1);
    background-color: #ffae57;
    color: #000;
  }
  
  /* Active (press down) effect */
  .squishy-classic:active {
    transform: scale(0.98) translateY(1px);
    box-shadow:
      inset 0 2px 4px rgba(0, 0, 0, 0.2),
      0 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  .squishy-classic:hover{
    background-color: transparent;
  }
/*end*/
.dropdown-toggle::after{
    display: none !important;
}
.logo-img img{
  height: 210px;
}

.navbar{
  padding: 0 !important;
  height: 100px;
}
.navbar-brand{
  overflow: hidden;
}
.logo-txt {
  position: relative;
  top: 4px;
  right: 9px;
  color: #002d53;
  font-family: var(--second-font);
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 3px;
  font-style: italic;
}
.iws {
  position: relative;
    top: 29px;
    right: 152px;
    font-size: 23px;
    color: #002d53;
    letter-spacing: 1px;
    font-family: var(--second-font);
    font-weight: 300;
    font-style: italic;
}
.navbar-toggler-icon i{
  color: #000;
  font-size:30px;
}
.navbar-toggler{
  border: 0 !important;
  outline: none !important;
}
.navbar-toggler:focus{
  box-shadow: unset !important;
}
.dropdown-menu{
  border: 0 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  background-color: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.dropdown-item{
  text-align: center;
  padding: 7px 1rem;
  margin-top: 4px;
  position: relative;
  z-index: 1;
  color: #000;
  font-weight:400;
  font-family: var(--main-font);
  font-style: normal;
  transition: 0.3s linear;
  transition: 0.4s;
  background-color: #f0f0f0 !important;
}

.dropdown:hover > .dropdown-menu li{
  perspective: 1000px;
} 
.dropdown:hover > .dropdown-menu li{
  transform-origin: top center;
  opacity: 0;
  display: block;
}
.dropdown:hover > .dropdown-menu li:nth-child(1){
  animation: animate 500ms ease-in-out forwards;
  animation-delay: 0ms;
}
.dropdown:hover > .dropdown-menu li:nth-child(2){
  animation: animate 500ms ease-in-out forwards;
  animation-delay:150ms;
}
.dropdown:hover > .dropdown-menu li:nth-child(3){
  animation: animate 500ms ease-in-out forwards;
  animation-delay:300ms ;
}
.dropdown:hover > .dropdown-menu li:nth-child(4){
  animation: animate 500ms ease-in-out forwards;
  animation-delay:450ms ;
}
.dropdown:hover > .dropdown-menu li:nth-child(5){
  animation: animate 500ms ease-in-out forwards;
  animation-delay: 600ms;
}
.dropdown:hover > .dropdown-menu li:nth-child(6){
  animation: animate 500ms ease-in-out forwards;
  animation-delay: 750ms;
}
.dropdown:hover > .dropdown-menu li:nth-child(7){
  animation: animate 500ms ease-in-out forwards;
  animation-delay: 850ms;
}
@keyframes animate{
  0%{
      opacity: 0;
      transform: scale(0);
  }
  50%{
      opacity: 1;
  }
  90%{
      transform: scale(1.2);
  }
  100%{
      transform: scale(1.1);
      opacity: 1;
  }
}
.dropdown-item::before{
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  background-color: #ff9800;
  top:0px;
  left:0px;
  z-index: -1;
  transition: 0.3s linear;
}
.dropdown-item:hover{
  color: #fff;
}
.dropdown-item:hover::before{
  width: 100%;
}
.dropdown-menu{
  border: 0 !important;
}
.dropdown-toggle::after{
  display: none;
}
.dropdown:hover .dropdown-menu{
  animation: silde 0.4s;
}
@keyframes silde{
 from{
  transform : translatey(10%);
 }
 to{
  transform : translatey(0%);
 }
}

/*top header end */

.top-bg-try{
  width: 100%;
  height:500px;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  
}


.text-top h1 {
  text-transform: capitalize;
  font-family: var(--main-font);
  /* Gradient text */
  /* background: linear-gradient(90deg, #ffeb3b, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  font-weight: 600;
  color: #fff;
}
.text-top h1 span{
  background: linear-gradient(90deg, #ffeb3b, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-top h3{
  text-transform: capitalize;
  font-family: var(--main-font);
  color: #fff;
  font-weight: 400;
}
#typed{
  text-transform: capitalize;
  font-family: var(--main-font);
  font-size: 25px;
  background: linear-gradient(90deg, #ffeb3b, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  margin-top: 10px;

}
.text-top p{
  text-transform: capitalize;
  font-family: var(--main-font);
  color: grey;
  font-weight: 500;
}
.typed-cursor{
  background: linear-gradient(90deg, #ffeb3b, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
}

@media screen and (max-width: 580px) {
  .text-top h1{
    font-size: 22px;
    line-height: 30px;
  }
  #typed{
    font-size: 22px;
  }

}

/* New button style */
.squishy-modern {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, #ff9800, #ff5722); /* Orange gradient */
  transition: all 0.3s ease;
}

.squishy-modern:hover {
  background: linear-gradient(90deg, #ff5722, #ff9800);
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 152, 0, 0.7);
  color: #fff;
}
.circle-one{
  display: inline-block;
    width: 20px;
    height: 20px;
    background: linear-gradient(90deg, #ffeb3b, #ff9800);
    -webkit-text-fill-color: transparent;
    border-radius: 50%;
    position: absolute;
    left: 50px;
    animation: floatGlow 3s ease-in-out infinite;
}
.circle-two{
  display: inline-block;
    width: 20px;
    height: 20px;
    background: linear-gradient(90deg, #ffeb3b, #ff9800);
    -webkit-text-fill-color: transparent;
    border-radius: 50%;
    position: absolute;
    bottom: 30px;
    left: 20px;
    animation: floatGlow 3s ease-in-out infinite;
}
.circle-three{
  display: inline-block;
    width: 20px;
    height: 20px;
    background: linear-gradient(90deg, #ffeb3b, #ff9800);
    -webkit-text-fill-color: transparent;
    border-radius: 50%;
    position: absolute;
    bottom: 30px;
    right: 20px;
    animation: floatGlow 3s ease-in-out infinite;
}
.circle-five{
  display: inline-block;
    width: 20px;
    height: 20px;
    background: linear-gradient(90deg, #ffeb3b, #ff9800);
    -webkit-text-fill-color: transparent;
    border-radius: 50%;
    position: absolute;
    right: 50px;
    animation: floatGlow 3s ease-in-out infinite;
}
.circle-six{
  display: inline-block;
    width: 20px;
    height: 20px;
    background: linear-gradient(90deg, #ffeb3b, #ff9800);
    -webkit-text-fill-color: transparent;
    border-radius: 50%;
    position: absolute;
   top: 50px;
    left: 100px;
    animation: floatGlow 3s ease-in-out infinite;
}
.circle-seven{
  display: inline-block;
    width: 20px;
    height: 20px;
    background: linear-gradient(90deg, #ffeb3b, #ff9800);
    -webkit-text-fill-color: transparent;
    border-radius: 50%;
    position: absolute;
    bottom: 130px;
    left: 320px;
    animation: floatGlow 3s ease-in-out infinite;
}

.circle-eight{
  display: inline-block;
    width: 20px;
    height: 20px;
    background: linear-gradient(90deg, #ffeb3b, #ff9800);
    -webkit-text-fill-color: transparent;
    border-radius: 50%;
    position: absolute;
    bottom: 130px;
    right: 320px;
    animation: floatGlow 3s ease-in-out infinite;
}

/* Keyframes for smooth floating & opacity */
@keyframes floatGlow {
  0% {
    transform: translateY(0);
    opacity: 0.6;
    box-shadow: 0 0 5px rgba(255, 235, 59, 0.7),
                0 0 10px rgba(255, 152, 0, 0.6);
  }
  50% {
    transform: translateY(-20px);
    opacity: 0.5;
    box-shadow: 0 0 15px rgba(255, 235, 59, 1),
                0 0 30px rgba(255, 152, 0, 0.9);
  }
  100% {
    transform: translateY(0);
    opacity: 0.6;
    box-shadow: 0 0 5px rgba(255, 235, 59, 0.7),
                0 0 10px rgba(255, 152, 0, 0.6);
  }
}
.type-txt-span{
  display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
@media screen and (max-width:1024px){
  .my-email{
    display: none !important;
  }
}

@media screen and (max-width:992px) {

  .top-bg-try{
  height: auto;
  padding: 43px 11px 14px 12px;
}
.type-txt-span{
  display: block;
}
  .circle-seven{
    display: none;
  }  
  .circle-one{
    display: none;
  }
  .circle-eight{
    display: none;
  }

  .circle-five{
    right: 31px;
    top: 47px;
  }

  .circle-six{
    top: 30px;
  }
}


@media screen and (max-width:580px) {
  .circle-five{
    top: 25px;
  }
}

/*about-sec*/
.about-img{
  position: relative;
  z-index: 1;
}
.about-img::before{
  position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #ccc;
    top: 32px;
    left: 0;
    z-index: -1;
    border-radius: 47% 53% 79% 21% / 30% 18% 82% 70%;
    animation: mover 1s infinite  alternate;
}
.about-txt h1{
  font-family: var(--second-font);
  font-size: 18px;
}
.about-txt h1 span{
  color: #ff9800;
}
.about-txt h3{
  font-family: var(--second-font);
  font-weight: 300;
}
.about-txt p{
  font-family: var(--second-font);
    font-weight: 400;
    color: grey;
    font-size: 18px;
    line-height: 30px;
}
/*end about sec*/

/*leading section */
.leading-h{
  font-family: var(--second-font);
  text-transform: capitalize;
  font-weight: 500;
  line-height: 39px;
}
.leading-h span{
  background: linear-gradient(90deg, #ff8c07, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.leading-txt p{
  font-family: var(--second-font);
    font-weight: 400;
    color: grey;
    font-size: 18px;
    line-height: 30px;
}
.leading-img img{
  animation: mover 1s infinite  alternate;
}

@keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}


.gif-sect{
  position: relative;
}
.gif-sect img{
  height: 150px;
  position: absolute;
  right: 76px;
  top: 11px;
}
/*end leading section*/


/*service page*/
.s-h h2{
  font-family: var(--second-font);
  font-weight: 500;
}
.s-h h2 span{
  color:#3730a3 ;
  text-transform: capitalize;
}
.s-h p{
  font-family: var(--second-font);
  font-weight: 400;
  color: grey;
  line-height: 30px;
  font-style: italic;
  font-size: 17px;
}
.s-txt {
  background-color: #efefef;
  box-shadow: 4px 4px 10px rgb(0 0 0 / 10%);
  text-align: center;
  padding: 35px 11px;
  border-top-left-radius: 78px;
  border-bottom-right-radius: 78px;
  border-bottom: 2px solid #3730a3;
  border-top: 2px solid #3730a3;
  transition: 0.4s linear;
}
.s-txt:hover {
  transform: translatey(-15px);
}
.s-txt h5{
  font-weight: 400;
}
.s-txt h3 {
  text-transform: capitalize;
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 20px;
}
.s-txt p {
  text-align: center;
  text-transform: capitalize;
  color: grey;
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 16px;
}
.more a {
  text-transform: capitalize;
  font-family: var(--second-font);
  font-weight: 400;
  text-decoration: none;
  transition: 0.4s;
  color:#3730a3 ;
}
.s-txt:hover  .more a{
  color: #ba6516;
}
.more span i {
  margin-left: 20px;
  transform: translatex(40px);
  visibility: hidden;
  transition: 0.3s linear;
  opacity: 0;
}
.s-txt:hover  .more span i{
  visibility: visible;
  transform: translatex(0px);
  opacity: 1;
}
/*end*/

/*banner section*/
.banner-gif{
  background-image: url(../img/code.jpeg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 350px;
}
.gif-overlay{
  background-color: #000000a8;
  width: 100%;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.trust-txt span{
  color: #fff;
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 23px;
  font-style: italic;
}
/*banner section end*/

/*choose section start*/
.s-h h2{
  font-family: var(--second-font); 
  font-weight: 400;
}
.s-h h2 span{
  color: #3730a3
}
.choose-para-txt h3{
 font-family: var(--second-font); 
 font-weight: 400;
 font-size: 20px;
}
.choose-para-txt p{
  font-family: var(--second-font); 
  color: grey;
 }
 .img-choose-icon img{
  height: 64px;
 }

/*choose section end */

/*digital world*/
.bus-h span{
  background:#3730a3 ;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.d-h p{
  color: #000;
}
.d-h p i{
  color: #3730a3;
  margin-right: 10px;
}
/*end section*/

/*blog section*/
.blog-img{
  position: relative;
  overflow: hidden;
}
.blog-img img{
  transition: 0.4s linear;
}
.card:hover .blog-img img{
  transform: scale(1.2);
}
.blog-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  top: 50%;
  left: 0;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(50, 50, 50, 0.4));
  transition: all 0.5s ease;
  z-index: 2;
  transform: translateY(-50%);
}

.card:hover .blog-img::before {
  height: 100%;
  top: 0;
  transform: translateY(0);
}
.card-title span{
  font-family: var(--second-font);
  font-weight: 500;
}
.card-text{
  font-family: var(--second-font);
  color: grey;
}
.list-group-item{
  font-family: var(--second-font);
  font-weight: 400;
}
.list-group-item i{
  margin-right: 10px;
  color: #3730a3;
}
.card-link {
  background-color: #4f46e5; /* Primary Blue */
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-transform: capitalize;
}

.card-link:hover {
  background-color: #3730a3; /* Slightly darker blue */
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(79, 70, 229, 0.3);
}

/*end blog section*/

/*footer*/
.footer-logo h4{
  color: #fff;
  font-family: var(--second-font);
  text-transform: capitalize;
}
.footer-logo h4 span{
  background: linear-gradient(90deg, #ffeb3b, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
ul {
  margin: 0px;
  padding: 0px;
}
.footer-section {
background: #151414;
position: relative;
}
.footer-cta {
border-bottom: 1px solid #373636;
}
.single-cta i {
/* color: #f9a44d; */
background: linear-gradient(90deg, #ffeb3b, #ff9800);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 30px;
float: left;
margin-top: 8px;
}
.cta-text {
padding-left: 15px;
display: inline-block;
}
.cta-text h4 {
color: #fff;
font-size: 20px;
font-weight: 600;
margin-bottom: 2px;
}
.cta-text span {
color: #757575;
font-size: 15px;
}
.footer-content {
position: relative;
z-index: 2;
}
.footer-pattern img {
position: absolute;
top: 0;
left: 0;
height: 330px;
background-size: cover;
background-position: 100% 100%;
}
.footer-logo {
margin-bottom: 30px;
}
.footer-logo img {
  max-width: 200px;
}
.footer-text p {
margin-bottom: 14px;
font-size: 14px;
    color: #7e7e7e;
line-height: 28px;
}
.footer-social-icon span {
color: #fff;
display: block;
font-size: 20px;
font-weight: 700;
font-family: 'Poppins', sans-serif;
margin-bottom: 20px;
}
.footer-social-icon a {
color: #fff;
font-size: 16px;
margin-right: 15px;
}
.footer-social-icon i {
height: 40px;
width: 40px;
text-align: center;
line-height: 38px;
border-radius: 50%;
}
.facebook-bg{
background: #3B5998;
}
.twitter-bg{
background: #55ACEE;
}
.google-bg{
background: #DD4B39;
}
.footer-widget-heading h3 {
color: #fff;
font-size: 20px;
font-weight: 600;
margin-bottom: 40px;
position: relative;
}
.footer-widget-heading h3::before {
content: "";
position: absolute;
left: 0;
bottom: -15px;
height: 2px;
width: 50px;
background: #ff9800;
}
.footer-widget ul li {
display: inline-block;
float: left;
width: 50%;
margin-bottom: 12px;
}
.footer-widget ul li a:hover{
color: #ff5e14;
}
.footer-widget ul li a {
color: #878787;
text-transform: capitalize;
}
.subscribe-form {
position: relative;
overflow: hidden;
}
.subscribe-form input {
width: 100%;
padding: 14px 28px;
background: #2E2E2E;
border: 1px solid #2E2E2E;
color: #fff;
}
.subscribe-form button {
  position: absolute;
  right: 0;
  background:#f9a44d;
  padding: 13px 20px;
  border: 1px solid #f9a44d;
  top: 0;
}
.subscribe-form button i {
color: #fff;
font-size: 22px;
transform: rotate(-6deg);
}
.copyright-area{
background: #202020;
padding: 25px 0;
}
.copyright-text p {
margin: 0;
font-size: 14px;
color: #878787;
}
.copyright-text p a{
color: #ff5e14;
}
.footer-menu li {
display: inline-block;
margin-left: 20px;
}
.footer-menu li:hover a{
color: #ff5e14;
}
.footer-menu li a {
font-size: 14px;
color: #878787;
}
.st li a{
  font-family: var(--second-font);
  text-decoration: none;
}

@media screen and (max-width:992px){
  .single-cta i{
    font-size: 20px;
  }
  .cta-text h4{
    font-size: 18px;
  }
  .cta-text a{
    font-size: 14px;
  }
  
}
/*footer*/


@media screen and (max-width:1024px){
  .card-link{
    padding: 10px 15px;
  }
}

@media screen and (max-width:992px) {
  .navbar-collapse{
    background-color: #000 !important;
    position: relative;
    bottom: 68px;
  }
  .nav-item .nav-link{
    padding: 10px 0px;
    color: #ffff;
  }
  .dropdown-menu{
    overflow: hidden;
  }
 .mybtn-first{
  text-align: center;
  display: inline-block;
  width: 100%;
  padding-bottom: 10px;
  margin-top: -58px;
 }
 .about-txt p{
  font-size: 17px;
 }
 .about-txt h3{
  font-size: 20px;
 }
 .gif-sect img{
  right: 91px;
    top: -63px;
    z-index: -1;
 }
 .leading-txt p{
  font-size: 17px;
 }
 .banner-gif{
  height: auto;
 }
 .gif-overlay{
  height: auto;
 }
 .trust-txt span{
  font-size: 20px;
 }
 .get-in-touch{
  padding-bottom: 20px;
 }
 .img-choose-icon{
  text-align: center;
 }
 .leading-i{
  padding-bottom: 20px;
 }
 .bh-t{
  line-height: 30px;
 }
 .list-group-item {
  font-size: 17px;
 }
 .card-link{
  padding: 10px 10px;
 }
 .card-title span{
  font-size: 14px;
 }
}

/*about page*/
.about-page-banner{
  background-image: url(../img/about-page-banner.jpg);
  width: 100%;
  height: 350px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.get-in-touch img{
  text-align: right;
}
.mission-txt h3{
  font-family: var(--second-font);
  line-height: 41px;
  font-weight: 400;
}
.mission-txt h3 span{
  background: linear-gradient(90deg, #ff8c07, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mission-para p{
  font-family: var(--second-font);
  color: grey;
  font-size: 17px;
  line-height: 29px;
}
.bluet-point p{
  line-height: 19px !important;
  color: #000;
}
.mission-img-sec img{
  position: relative;
  z-index: 1;
  animation: mover 1s infinite alternate;
}
.mission-img-sec{
  position: relative;
  z-index: 1;
}
.mission-img-sec::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #f9a44da3;
  top: 32px;
  left: 0;
  border-radius: 47% 53% 79% 21% / 30% 18% 82% 70%;
  animation: mover 1s infinite alternate;
}
.bluet-point p i{
  margin-right: 10px;
  color:  #ff9402;
}
.my-vision span{
  color: var(--primary-blue);
}


@media screen and (max-width:992px) {
  .about-page-banner{
    height:207px;
  }
}
/*end about page*/

/*contact page */
.contact-page-banner{
  background-image: url(../img/contact.jpg);
  width: 100%;
  height: 320px;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-info {
display: inline-block;
width: 100%;
text-align: center;
margin-bottom: 10px;
}
.contact-info-icon {
margin-bottom: 15px;
}
.contact-info-item {
background: #071c34;
padding: 30px 0px;
font-family: var(--second-font);
}
.contact-page-sec .contact-page-form h2 {
color: #071c34;
text-transform: capitalize;
font-size: 22px;
font-weight: 400;
font-family: var(--second-font);
}
.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
padding-left: 0;
}  
.contact-page-form.contact-form input {
margin-bottom: 5px;
}  
.contact-page-form.contact-form textarea {
height: 110px;
}
.contact-page-form.contact-form input[type="submit"] {
background: #071c34;
width: 150px;
border-color: #071c34;
}
.contact-info-icon i {
font-size: 48px;
color: #fda40b;
}
.contact-info-text p{margin-bottom:0px;}
.contact-info-text h2 {
color: #fff;
font-size: 22px;
text-transform: capitalize;
font-weight: 600;
margin-bottom: 10px;
}
.contact-info-text span {
color: #999999;
font-size: 16px;

display: inline-block;
width: 100%;
}

.contact-page-form input {
background: #f9f9f9 none repeat scroll 0 0;
border: 1px solid #f9f9f9;
margin-bottom: 20px;
padding: 12px 16px;
width: 100%;
border-radius: 4px;
}

.contact-page-form .message-input {
display: inline-block;
width: 100%;
padding-left: 0;
}
.single-input-field textarea {
background: #f9f9f9 none repeat scroll 0 0;
border: 1px solid #f9f9f9;
width: 100%;
height: 120px;
padding: 12px 16px;
border-radius: 4px;
}
.single-input-fieldsbtn input[type="submit"] {
background: #fda40b none repeat scroll 0 0;
color: #fff;
display: inline-block;
font-weight: 600;
padding: 10px 0;
text-transform: capitalize;
width: 150px;
margin-top: 20px;
font-size: 16px;
}
.single-input-fieldsbtn input[type="submit"]:hover{background:#071c34;transition: all 0.4s ease-in-out 0s;border-color:#071c34}
.single-input-field  h4 {
color: #464646;
text-transform: capitalize;
font-size: 14px;
}
.contact-page-form {
display: inline-block;
width: 100%;
margin-top: 30px;
}

.contact-page-map {
margin-top: 36px;
}
.contact-page-form form {
padding: 20px 15px 0;
}

@media screen and (max-width:992px) {
  .contact-page-banner{
    height: 217px;
  }
}
@media screen and (max-width:580px) {
  .contact-page-banner{
    height: 130px;
  }
}
/*end*/

/*custom website design*/
.custom-website{
  background-image: url(../img/coding.jpg );
  width: 100%;
  height: 350px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.custom-overlay{
  background-color: #000000cf;
  height: 350px;
  width:100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cutom-overlay-txt h1{
  font-family: var(--second-font);
  text-transform: capitalize;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.landing-page-sub-h h2{
  font-family: var(--second-font);
  text-transform: capitalize;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.custom-h h2{
  font-family: var(--second-font);
  text-transform: capitalize;
  line-height: 44px;
  font-weight: 400;
  font-size: 28px;
}
.custom-h h2 span{
  background: linear-gradient(90deg, #ff8c07, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width : 993px) {
  .custom-h h2{
    font-size: 21px;
  }
}
.text-custom .custom-para{
  font-family: var(--second-font);
  color: grey;
  font-size: 17px;
  text-transform: capitalize;
}

.cp{
  font-family: var(--second-font);
  color: #000 !important;
  font-weight: 400;
}
.cp i{
  margin-right: 10px;
  color: #ff9402;;
}
@media screen and (max-width:992px) {
  .custom-website{
    height: 217px;
  }
  .custom-overlay{
    height: 217px;
  }
}
/*end*/

/*eccomerce page */
.ec-bg{
  background-image: url(../img/ec-page.png );
  width: 100%;
  height: 350px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.ec-bg-overlay{
  background-color: #000000cf;
  height: 350px;
  width:100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ec-txt h2{
  font-family: var(--second-font);
  text-transform: capitalize;
  line-height: 51px;
  font-weight: 400;
  font-size: 31px;
}
.ec-txt h2 span{
  background: linear-gradient(90deg, #ff8c07, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 993px) {
  .ec-txt h2{
    font-size: 21px;
    line-height: 30px;
  }
}
.ec-txt p{
  font-family: var(--second-font);
  color: grey;
  text-transform: capitalize;
  font-style: italic;
}
.ec-content h3{
  text-transform: capitalize;
  font-family: var(--second-font);
  font-weight: 400;
}
.ec-content p{
  text-transform: capitalize;
  font-family: var(--second-font);
  font-weight: 400;
  color: grey;
  line-height: 30px;
}
.ec-img{
  position: relative;
  z-index: 1;
  animation: mover 1s infinite  alternate;
}
@media screen and (max-width:580px) {
  .ec-img{
    margin-bottom: 50px;
  }
  .ec-sub-h h2{
    font-size: 22px;
    line-height: 31px;
  }
}
.ec-img::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #ccc;
  top: 32px;
  left: 0;
  z-index: -1;
  border-radius: 47% 53% 79% 21% / 30% 18% 82% 70%;
  animation: mover 1s infinite  alternate;
}
@keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}
.ec-txt{
  position: relative;
}
.cartoon-sec-img img{
  position: absolute;
  height: 100px;
  height: 140px;
  right: 2px;
  top: 0;
  animation: mover 1s infinite  alternate;
}

@media screen and (max-width:992px) {
  .ec-bg{
    height: 217px;
  }
  .ec-bg-overlay{
    height: 217px;
  }
  .cartoon-sec-img img{
    height: 100px;
    top: -81px;
  }
  .ec-txt h1{
    line-height: 40px;
    font-size: 22px;
  }
  .ec-content h4{
    margin-top: 26px;
  }
  .s-h h1{
    font-size: 20px;
    line-height: 31px;
  }
  .accordion-button h6{
    line-height: 27px;
  }
}
/*end*/

/*custom ecommerce*/
.text-of-custom h2{
  font-family: var(--second-font);
  text-transform: capitalize;
  font-weight: 400;
}
.text-of-custom h2 span{
  color: #3730a3;
}
.content-fo-custom-design{
  text-align: left !important;
}
.card{
  margin-top: 10px;
  transition: 0.3s linear;
}
.card:hover{
  transform: translatey(-10px);
}
.faq-h h2{
  text-transform: uppercase;
  font-family: var(--second-font);
  font-weight: 400;
}
.sec-faq h3{
  text-transform: capitalize;
    font-family: var(--second-font);
    font-weight: 400;
    font-size: 18px !important;
}
.accordion-button h6{
  text-transform: capitalize;
  font-family: var(--second-font);
  font-weight: 400;
}
.accordion-body p{
  text-transform: capitalize;
  font-family: var(--second-font);
  font-weight: 400;
  color: grey;
}
.accordion-button:not(.collapsed){
  background: transparent !important;
  border: 0 !important;
  outline: none !important;
}
button:focus:not(:focus-visible){
  border: 0 !important;
  outline: none !important;
}
.accordion-button:focus{
  box-shadow: unset !important;
  color: #000 !important;
}
/*end*/

/*dynamic page*/
.dynamic-bg{
  background-image: url(../img/dy.jpg );
  width: 100%;
  height: 350px;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
.dy-h h1{
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 35px;
}
.dy-h h1 span{
  background: linear-gradient(90deg, #ff8c07, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dynamic-choose-h h2{
  font-family: var(--second-font);
  line-height: 45px;
  font-size: 37px;
  font-weight: 400;
}
.dynamic-choose-h h2 span{
  background: linear-gradient(90deg, #ff8c07, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 993px) {
  .dy-h h1{
    font-size: 28px;
  }
  .dynamic-choose-h h2{
    font-size: 26px;
  }
}
.dy-h h1 span{
  background: linear-gradient(90deg, #ff8c07, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dynamic-img img{
  animation:  mover 1s infinite  alternate;
}
@media screen and (max-width:992px) {
  .dynamic-bg{
    height: 217px;
  }
}
@media screen and (max-width:580px) {
  .dynamic-bg{
    height: 130px;
  }
  .d-sub-one h2{
    font-size: 19px !important;
  }
}
/*end*/

/*landing page*/
.landing-bg{
  background-image: url(../img/code.jpeg );
  width: 100%;
  height: 350px;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
.landing-page-h h2{
  font-family: var(--second-font);
  font-weight: 400;
}
.landing-page-h h2 span{
  background: linear-gradient(90deg, #ff8c07, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sub-h-landing h3{
  font-family: var(--second-font);
  font-weight: 400;
}
@media screen and (max-width:992px) {
  .landing-bg{
    height: 217px;
  }
}
/*end*/

/*maintance page*/
.maintance-bg{
  background-image: url(../img/mt1.png );
  width: 100%;
  height: 350px;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
.main-img img{
  animation:  mover 1s infinite  alternate;
}
.main-h-one h1{
  font-family: var(--second-font);
}
.main-h-one h1 span{
  background: linear-gradient(90deg, #ff8c07, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-sub h2{
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 25px;
}
@media screen and (max-width:992px) {
  .maintance-bg{
    height: 217px;
  }
}
@media screen and (max-width:580px) {
  .maintance-bg{
    height: 130px;
  }
  .main-sub h2{
    font-size: 21px;
  }
}
/*end*/

/*seo page*/
.seo-banner{
  background-image: url(../img/seo1.jpg );
  width: 100%;
  height: 350px;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
.seo-h h1{
  font-family: var(--second-font);
}
.seo-h h1 span{
  background: linear-gradient(90deg, #ff8c07, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width:992px) {
  .seo-banner{
    height:217px;
  }
}
@media screen and (max-width:580px) {
  .seo-banner{
    height:130px;
  }
}
/*end*/

/*redesign website*/
.re-bg{
  background-image: url(../img/update.jpg );
  width: 100%;
  height: 350px;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
.re-content h2{
  font-family: var(--second-font);
  font-size: 27px;
  line-height: 41px;
  font-weight: 400;
}
.re-sub-h h1 span{
  background: linear-gradient(90deg, #ff8c07, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width:992px) {
  .re-bg{
    height:217px;
  }
  .re-content h2{
    font-size: 18px;
  }
}
@media screen and (max-width:580px) {
  .re-bg{
    height:130px;
  }
}
/*end*/

/*blog page*/
.blog-bg{
  background-image: url(../img/blog1.png );
  width: 100%;
  height: 350px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
/*end*/

/* Main Content Styling */
#main-content{
  padding: 30px 0;
  min-height: 750px;
}

#main-content .post-container{
  background-color: #fff;
  padding: 25px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
}

#main-content .post-content{
  border-bottom: 1px solid #d1d1d1;
  padding: 0 0 30px;
  margin-bottom:30px;
}

#main-content .post-content img{
width: 100%;
}

#main-content .post-content .post-img{
border: 3px solid #e7e7e7;
display: block;
height: 145px;
overflow: hidden;
transition: border .3s;
}
#main-content .post-content .post-img:hover{
border: 3px solid #1e90ff;
}
#main-content .post-content .inner-content{
  /* border: 1px solid #000; */
}

#main-content .post-content h3{
  font-size: 21px;
  line-height: 28px;
  font-weight: 600;
  margin: 0 0 7px;

}
#main-content .post-content h3 a{
  color: #1e90ff;
  transition:all 0.3s;
}
#main-content .post-content h3 a:hover{
  color:#333;
}

#main-content .post-content .post-information span{
  color: #606060;
  font-size: 12px;
  text-transform: capitalize;
  margin: 0 5px 5px 0;
  display: inline-block;
}

#main-content .post-content .post-information i{
  color: #1e90ff;
  margin-right: 1px;
}

#main-content .post-content .post-information a{
  color: #606060;
  text-decoration: none;
}

#main-content .post-content .post-information a:hover{
  color: #333;
  text-decoration: none;
}

#main-content .post-content p,
#main-content .single-post p{
  color: #666;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin:0 0 10px;
}

#main-content .post-content a.read-more{
  color: #fff;
  background-color: #1E90FF;
  font-size: 12px;
  text-transform: capitalize;
  padding: 3px 8px;
  border-radius: 2px;
  transition: all 0.3s;
}

#main-content .post-content a.read-more:hover{
  color: #fff;
  background-color: #333;
}

#main-content .single-post{
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

#main-content .single-post h3{
  color: #1e90ff;
}

#main-content .single-post .post-information{
  margin: 0 0 10px;
}
#main-content .single-post p{
  text-align: justify;
}

#main-content .single-post img.single-feature-image{
  width: 70%;
  margin: 0 auto 20px;
  display: block;
  border: 3px solid #e7e7e7;
}

/* Pagination  Styling */
.pagination {
  display: block;
  text-align: center;
  margin: 0;
}

.pagination li {
  display:inline-block;
  margin: 0 5px 0 0;
}

.pagination li a{
  border: none;
  background: #1e90ff;
  color: #fff;
}

.pagination li a:hover,
.pagination > li > a:focus{
  color:#fff;
  background:#333;
}

.page_links {
  background-color: #ccc;
  font-family: arial, verdana;
  font-size: 12px;
  text-decoration: none;
  border:1px solid #000;
  padding: 6px;
  margin: 3px;
}

#page_a_link{
  font-size: 12px;
  border:1px #000000 solid;
  color:#000;
  background-color: #cccccc;
  padding: 6px;
  margin: 3px;
  text-decoration: none;
}



/* Sidebar Styling */
#sidebar h4{
  color: #1A1A1A;
  font-size: 17px;
  line-height: 27px;
  font-weight:600;
  text-transform: uppercase;
  padding: 0 0 0 5px;
  margin: 0 0 21px;
  border-left: 3px solid #1e90ff;
}

#sidebar .search-box-container{
  background-color: #fff;
  padding: 20px;
  margin: 0 0 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
}

#sidebar .search-post{
  padding: 0;
}
#sidebar .search-post input{
  color: #606060;
}
#sidebar .search-post input:focus{
  box-shadow: none;
  border-color: #999;
}

#sidebar .search-post .btn{
  font-weight: 600;
  text-transform: uppercase;
  padding: 6px 8px;
  background-color: #1E90FF;
  border-color: #1E90FF;
  outline: none;
}

#sidebar .search-post .btn:hover,
#sidebar .search-post .btn:focus{
  text-shadow: 0 0 3px #333;
}

#sidebar .search-post i.fa{
  font-size: 16px;
  color: #999999;
  line-height: 40px;
  float:right;
}

#sidebar .recent-post-container{
  padding: 20px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
}

#sidebar .recent-post{
  border-bottom: 1px solid #e7e7e7;
  padding: 0 0 15px;
  margin: 0 0 15px;
}

#sidebar .recent-post:last-child{
  margin: 0;
  padding: 0;
  border: none;
}

#sidebar .recent-post .post-img{
display: inline-block;
width: 33%;
border: 3px solid rgba(0,0,0,0.3);
vertical-align: top;
transition: border .3s;
}

#sidebar .recent-post .post-img:hover{
border: 3px solid #1e90ff;
}

#sidebar .recent-post .post-img img{
  width: 100%;
}

#sidebar .recent-post .post-content{
  width: 65%;
  display: inline-block;
  border: none;
  padding: 0 0 0 7px;
  margin: 0;
}

#sidebar .recent-post h5{
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 5px;
}
#sidebar .recent-post h5 a{
  color: #1E90FF;
}

#sidebar .recent-post span{
  color: #666;
  font-size: 11px;
  display: inline-block;
  margin: 0 5px 10px 0;
}

#sidebar .recent-post span a{
  color: #666;
}
#sidebar .recent-post span i{
  color: #1E90FF;
}

#sidebar .recent-post a.read-more{
  color: #666;
  background-color: rgba(0,0,0,0.09);
  width: 65px;
  font-size: 11px;
  text-align: center;
  padding: 0;
  display: block;
  transition: all 0.3s;
}

#sidebar .recent-post a.read-more:hover{
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}


