/*----------------------slider-----------------*/
      .jssorl-004-double-tail-spin img {
            animation-name: jssorl-004-double-tail-spin;
            animation-duration: 1.6s;
            animation-iteration-count: infinite;
            animation-timing-function: linear;
        }

        @keyframes jssorl-004-double-tail-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /*jssor slider bullet skin 102 css*/
        .jssorb102 .i {position:absolute;cursor:pointer;}
        .jssorb102 .i .ci {fill:#fff;}
        .jssorb102 .i .co {fill:#000;opacity:.2;}
        .jssorb102 .i:hover .co {fill:#ff9933;opacity: 1;}
        .jssorb101 .i:hover .ci {fill:#000;}
        .jssorb102 .iav .ci {fill:#000;stroke-width:0;}
        .jssorb102 .iav .co {fill:#ffba04;opacity: 1;}
        .jssorb102 .i.idn {opacity:.3;}

        /*jssor slider arrow skin 051 css*/
        .jssora051 {display:block;position:absolute;cursor:pointer;}
        .jssora051 .a {fill:none;stroke:#fff;stroke-width:360;stroke-miterlimit:10;}
        .jssora051:hover {opacity:.8;}
        .jssora051.jssora051dn {opacity:.5;}
        .jssora051.jssora051ds {opacity:.3;pointer-events:none;}
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
    display: none;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 20px;
    height: 20px;
	padding: 0px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    color: #000;
    font-size: 17px;
    font-weight: 700;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color:#06A3DA;
}

.navbar-dark .navbar-brand h1 {
    color: #fff;
	font-size: 24px;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background-color:#61d13e;
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #171D59;
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}



.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}
/*-------------------- portfolios-------------------*/
html,
body {
  height:100%;
}

div.header ul.nav li {
  float:left;
  margin:0 10px;
}
div.header ul.nav li:first-child {
  margin-left:125px;
}
div.header ul.nav li a {
  display:block;
  padding:0 10px;
  font-size:2em;
  letter-spacing:0.05em;
  line-height: 2.5em;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow:1px 2px 2px #000000;
  color: #E5E5E5;
}

/* 3D scene */
.scene {
  overflow: hidden;
  margin:0 auto;
  width:100%;
  height:100%;
  perspective: 1000px;
  perspective-origin: 50% 25%;
  backface-visibility:  hidden;
  transform-style:  preserve-3d;
}

@-webkit-keyframes zoom-roll-top {
  50% {
    transform: rotateX(-10deg) translateZ(-200px);
  }
  100% {
    transform: rotateX(0) translateZ(0);
  }
}
@-webkit-keyframes zoom-roll-middle {
  50% {
    transform: rotateX(-10deg) translateZ(-200px);
  }
  100% {
    transform: rotateX(0) translateZ(0);
  }
}
@-webkit-keyframes zoom-roll-bottom {
  50% {
    transform: rotateX(-10deg) translateZ(-200px);
  }
  100% {
    transform: rotateX(0) translateZ(0);
  }
}
@-moz-keyframes zoom-roll-top {
  50% {
    transform: rotateX(-10deg) translateZ(-200px);
  }
  100% {
    transform: rotateX(0) translateZ(0);
  }
}
@-moz-keyframes zoom-roll-middle {
  50% {
    transform: rotateX(-10deg) translateZ(-200px);
  }
  100% {
    transform: rotateX(0) translateZ(0);
  }
}
@-moz-keyframes zoom-roll-bottom {
  50% {
    transform: rotateX(-10deg) translateZ(-200px);
  }
  100% {
    transform: rotateX(0) translateZ(0);
  }
}

.roll-camera {
  transform-style: preserve-3d;
}
.roll-camera .move-camera {
  transform-style: preserve-3d;
  transform: translateY(0px);
  transition: all 3s ease-in-out;
}

body.view-top-shelf .roll-camera {
  animation: zoom-roll-top 3s ease-in-out;
}
body.view-top-shelf .roll-camera .move-camera {
  transform: translateY(0px);
}

body.view-middle-shelf .roll-camera {
  animation: zoom-roll-middle 3s ease-in-out;
}
body.view-middle-shelf .roll-camera .move-camera {
  transform: translateY(-200px);
}

body.view-bottom-shelf .roll-camera {
  animation: zoom-roll-bottom 3s ease-in-out;
}
body.view-bottom-shelf .roll-camera .move-camera {
  transform: translateY(-400px);
}

.wallpaper:before {
  content:"";
  display:block;
  width:100%;
  height:100%;
}
.shelf {
  position: absolute;
  left:50%;
  margin-left:-325px;
  transform-style:  preserve-3d;
  backface-visibility:  hidden;
  transform: rotateY(90deg) rotateX(90deg) translateX(199px);
}
.shelf.top {
  top: 450px;
}
.shelf.middle {
  top: 650px;
}
.shelf.bottom {
  top: 850px;
}
.shelf .face {
  position: absolute;
  top:0;
  left:0;
  background-color: #06A3DA;
  box-shadow: inset 0 0 75px 1.5px rgba(0, 0, 0, .1);
}
.shelf .front {
  width: 100px;
  height: 700px;
  transform-style: preserve-3d;
  transform: translateX(35px) translateY(-350px) translateZ(10px);
}
.shelf .back {
  width: 100px;
  height: 700px;
  transform: translateX(35px) translateY(-350px) translateZ(-10px);
}
.shelf .left {
  width: 20px;
  height: 700px;
  transform: translateX(25px) translateY(-350px) rotateY(-90deg) translateZ(0);
}
.shelf .top {
  width: 20px;
  height: 100px;
  transform: translateX(75px) translateY(300px) rotateX(90deg) rotateZ(90deg);
}
.shelf .bottom {
  width: 20px;
  height: 100px;
  transform: translateX(75px) translateY(-400px) rotateX(90deg) rotateZ(90deg);
}

/* lighting */
.shelf:before {
  content:"";
  display:block;
  width: 670px;
  height:20px;
  box-shadow: 0 -30px 40px 10px rgba(0, 0, 0, 0.5);
  transform:  rotateX(90deg)
              rotateY(90deg)
              translateX(-20px)
              translateZ(-200px)
              skew(-45deg);
}
.shelf .back:before {
  content:"";
  position: absolute;
  display:block;
  width: 100%;
  height:100%;
  background: rgba(0, 0, 0, 0.65);
}
.shelf .top:before,
.shelf .bottom:before,
.shelf .left:before,
.shelf .right:before {
  content:"";
  position: absolute;
  display:block;
  width: 100%;
  height:100%;
  background: rgba(0, 0, 0, 0.25);
}


/* photo cards */
.shelf .photocard {
  position: relative;
  display:block;
  width: 150px;
  height:100px;
  transform-style:  preserve-3d;
  transform:        rotateX(-90deg)
                    rotateY(270deg)
                    translateY(-50px)
                    translateZ(25px);
}
.shelf .photocard:after {
  content:"";
  position: absolute;
  bottom:0px;
  right:0;
  display:block;
  width: 100px;
  height:1px;
  box-shadow: 0 30px 30px 20px rgba(0, 0, 0, 0.5);
  transform:  rotateX(90deg)
              rotateZ(180deg)
              translateX(25px)
              translateY(-15px)
              skew(-45deg);
  
  /* don't apply box-shadow to FF (render bug) */
  -moz-transform: scale(0);
}
.shelf .photocard:nth-child(1n) {
  top:75px;
}
.shelf .photocard:nth-child(2n){
  top:200px;
}
.shelf .photocard:nth-child(3n){
  top: 325px;
}
.shelf .photocard img {
  display:block;
  width:150px;
  height: 100px;
  outline: 1px solid transparent; /* triggers anti-anliasing in FF */
}
/*----------------------------------our services page design----------------*/


.card {
    cursor: pointer;
	    font-family: 'Nunito', sans-serif;

}

.hd {
    font-size: 25px;
    font-weight: 550
}

.card.hover,
.card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2)
}

.img {
    margin-bottom: 35px;
    -webkit-filter: drop-shadow(5px 5px 5px #222);
    filter: drop-shadow(5px 5px 5px #222)
}

.card-title {
    font-weight: 600
}

button.focus,
button:focus {
    outline: 0;
    box-shadow: none !important
}

.ft {
    margin-top: 25px
}

.chk {
    margin-bottom: 5px
}

.rck {
    margin-top: 20px;
    padding-bottom: 15px
}
.services-detail h4
{
	color: #06A3DA;
	margin-top:20px;
}
.services-detail p
{
	font-size: 15px;
	line-height: 1.8;
	text-align: justify;
}
.services-detail ul li
{
	padding-top: 10px;
}

.types-tech ul
{
}
.types-tech .list-group-item
{
            float: left;
            width: 20%;
            background-color: #f2f2f2;
            border: 1px solid #fff;
            text-align: center;
            font-size: 18px;
            font-weight: 600;
            padding-top:90px;
            padding-bottom: 50px;
            color: #fff;
            text-align: center;
}

.types-tech .list-group-item a
{
    font-size:16px;
	color: #fff;
}
.types-tech .list-group-item a:hover
{
   font-size:17px;
}
.our-idea 
{
background-color:#f2f2f2;
}
.our-idea .row
{
    padding: 50px;
}
.our-idea img
{
    box-shadow: 15px 5px 30px 5px lightgray;
    
}
.our-idea .ml
{
    margin-left: 55px;
}
.dev-details i
{
    font-size: 16px;
    color:  #1a75ff;
}
.dev-details p
{
    text-justify: auto;
    padding-top: 12px;
    font-size: 16px;
}
@media (max-width:989px)
{
    .our-idea .ml
    {
        margin-left: 0;
    }
}

        @media (max-width:770px)
        {
            .types-tech .list-group-item
            {
                width: 50%;
            }
            #full-width
            {
                width: 100%;
            }
        
        
        }
        @media (max-width:554px)
        {

            .types-tech .list-group-item
            {
                width: 100%;
            }
          
        }

/*---------------------------web designing page---------------------*/
.top-banner-design
{
	background-color: #06A3DA;
	padding: 180px;
}
#design-head
        {
            text-align: center;
    }
   
.techs li
{
	display: inline;
	border: none;
	
}
.techs li img
{
	width: 54px;
	height: 54px;
}
.creative-design-div i
{
	text-align: center;
	font-size: 14px;
	color: #06A3DA;
}
.creative-design-div p
{
	text-align: center;
}
.design-detail
{
	
}
.design-detail .titile
{
	color: #06A3DA;
}
.design-detail .inner-row
{
	box-shadow: 0 0 50px rgb(0 0 0 / 9%);
    border-radius: 10px;
	position: relative;
	margin-top:100px;
	padding-right: 130px;
	padding-top: 40px;
	padding-bottom: 40px;
	padding-left: 40px;
}
.design-detail .inner-row .img-div 
{
	position:absolute;
	width: 150px;
	height: 130px;
	right: 0;
	top: -60px;
	margin-right:-30px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 50px rgb(0 0 0 / 9%);
	padding: 15px;
	text-align: center;
}
.design-detail .inner-row img
{
   height: 100px;
}
.design-detail .inner-row2
{
	box-shadow: 0 0 50px rgb(0 0 0 / 9%);
    border-radius: 10px;
	position: relative;
	margin-top:100px;
	padding-left: 130px;
	padding-top: 40px;
	padding-bottom: 40px;
	padding-right: 40px;
}
.design-detail .inner-row2 .img-div2
{
	position:absolute;
	width: 150px;
	height: 130px;
	left: 0;
	top: -60px;
	margin-left:-30px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 50px rgb(0 0 0 / 9%);
	padding: 15px;
	text-align: center;
}
.design-detail .inner-row2 img
{
   height: 100px;
}
.col-half
{
	width:90%;
	box-shadow: 2px 2px 10px 0px #999999;
	padding: 20px;
	position: relative;
	padding: 40px 120px 40px 40px;
}
.col-half p
{
	line-height: 2;
}
.col-half2
{
	width: 50%;
	position: absolute;
	box-shadow: 2px 2px 10px 0px #999999;
	left: 0;
	margin-left:38%;
	background-color: #fff;
	padding: 60px;
	margin-top:15%;
}

.col-half2 ul li
{
	display: inline;
	padding: 10px;
}
@media(max-width:991px)
{
	.top-banner-design
{
	padding: 60px;
}
	.col-half2
	{
		width: 100%;
		position: static;
		margin-left: 0%;
		margin-top: 1%;
	}
	.col-half
	{
		width: 100%;
		
	}
}

@media(max-width:767px)
{
		.col-half
	{
		width: 100%;
		padding: 20px;
		
	}
	.col-half p
	{
		line-height: 1.5;
	}
	
}
/* mobile app development css*/
.apps-type ul
{
	margin-left: 0px;
	padding: 0px;
}
        .apps-type .list-group-item
        {
            float: left;
            width: 20%;
            background-color: #f2f2f2;
            border: 1px solid #fff;
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            padding-top: 30px;
        }
        .apps-type .list-group-item img
        {
            height: 50px;
        }
        .apps-type .list-group-item:hover
        {
            background-image: linear-gradient(to right,#ff595b 0,#f44 50%,#ff8f57 100%);
            color: #fff;

        }
        .apps-intro
        {
            margin-top: 250px;
        }
        .apps-intro  ul
        {
            background-color: #f2f2f2;
            padding: 15px;  
          
            
        }
        .apps-intro .item
        {
            margin: 0;
            background-color: #f2f2f2;
            font-size: 16px;
            list-style-type: none;
            
        }
.apps-intro .item p
{
	color: #000;
}
        .apps-intro .item i
        {
            font-size: 22px;
            color:#06A3DA;
        }
        .row-blue
        {
            padding-left: 40px;
        }
        @media (max-width:770px)
        {
            .apps-type .list-group-item
            {
                width: 50%;
            }
            #full-width
            {
                width: 100%;
            }
            .apps-intro .left
            {
                margin-left: 0;
            }
             .row-blue
        {
            padding-left: 16px;
        }
        }
        @media (max-width:554px)
        {
      .app-banner
        {
            height: 180px;
        }
            .apps-type .list-group-item
            {
                width: 100%;
            }
            .apps-intro .h2
            {
                font-size: 20px;
                margin-top: 20px;
                font-weight: 700;
            }
        }

.blue-box
{
	width:100%;
	height: 49%;
	padding:18%;
	text-align: center;
}
.why-us-app .inner-img
{
	position: relative;
}
.why-us-app .overlay
{
  position: absolute; 
  bottom: 0; 
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.6); /* Black see-through */
  color: #f1f1f1; 
  width: 94.1%;
  height:100%;
  transition: .5s ease;
  opacity:1;
  color: white;
  font-size: 20px;
  text-align: center;
   cursor:pointer;
	text-align: center;
	padding:20% 10%;

}
.why-us-app .overlay:hover
{
	background-image: 
              linear-gradient( rgba(
                0, 0,0, 0.62), rgba(
                  6, 163, 218, 0.58));
}
@media(max-width:991px)
{
	.blue-box
	{
     padding: 3%;	
	 padding-top: 8%;	
	}
}
@media(max-width:767px)
{
	.blue-box
	{
     padding: 3%;	
	 padding-top: 3%;	
	}
}

/* reputation management css */

.reputation .inner
{
	text-align: center;
	padding: 20px;
	border: 1px solid #ECECEC;
}
.reputation .inner i
{
	font-size: 40px;
	padding: 15px;
	border: 3px solid #06A3DA ;
	border-radius: 50%;
	margin-top: -50px;
	background-color: #fff;
	color: #06A3DA ;
}
.reputation .inner:hover  i
{
	
	border: 3px solid #fff;
	border-radius: 50%;
	margin-top: -50px;
	background-color: #06A3DA;
	color: #fff ;
	z-index: 3;
}
.reputation .inner:hover
{
	box-shadow: rgb(0 0 0 / 7.5%) 0px 1px 5px 0px;
}

.reputation .inner:hover img
{
	z-index: 0;
}
.repo-ul
{
	margin: 0;
	padding: 0;
}
.remove-complaints
{
	margin: 0;
	padding: 0;
}
.remove-complaints li
{
	list-style-type: none;
}
.remove-complaints li i
{
	color: #06A3DA;
}
/*------------------ SEO----------------------*/
.seo-specialization .inner-info
{
	background-color: #06A3DA; 
	padding: 20px;
	box-shadow: 0px 0px 15px rgb(0 0 0 / 5%);
}
.seo-specialization .inner-info p
{
	color: #fff;
	line-height: 1.8;
	font-weight: 100;
	font-size: 16px;
}
.seo-specialization .inner-info .title
{
	font-size: 20px;
}
.seo-specialization .inner-white
{
	background-color: #fff; 
	padding: 20px;
	box-shadow: 0px 0px 15px rgb(0 0 0 / 5%);
}
.seo-specialization .inner-white p
{
	color: #000;
	line-height: 1.8;
	font-weight: 100;
	font-size: 16px;
}
.seo-specialization .inner-white .title
{
	font-size: 20px;
	color: #000;
}
.free-audit 
{
  	padding: 25px;
}
.free-audit p
{
	color:#fff;
	font-size: 30px;
	padding: 0;
	margin: 0;
}
.set-us-apart li
{
	list-style-type: none;
	padding-top: 10px;
}
.set-us-apart li i
{
	color: #06A3DA;
	font-size: 45px;
	padding-right: 10px;
}
.accordion a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  padding: 1rem 3rem 1rem 1rem;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border-bottom: 1px solid #e5e5e5;
}
.accordion a:hover,
.accordion a:hover::after {
  cursor: pointer;
  color: #06A3DA;
}
.accordion a:hover::after {
  border: 1px solid #06A3DA;
}
.accordion a.active {
  color: #06A3DA;
  border-bottom: 1px solid #06A3DA;
}
.accordion a::after {
  font-family: 'Ionicons';
  content: '\f218';
  position: absolute;
  float: right;
  right: 1rem;
  font-size: 1rem;
  color: #06A3DA;
  padding: 2px;
  width: 30px;
  height: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #06A3DA;
  text-align: center;
}
.accordion a.active::after {
  font-family: 'Ionicons';
  content: '\f209';
  color: #06A3DA;
  border: 1px solid #06A3DA;
}
.accordion .content {
  opacity: 0;
  padding: 0 1rem;
  max-height: 0;
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden;
  clear: both;
  -webkit-transition: all 0.2s ease 0.15s;
  -o-transition: all 0.2s ease 0.15s;
  transition: all 0.2s ease 0.15s;
}
.accordion .content p {
  font-size: 1rem;
  font-weight: 300;
}
.accordion .content.active {
  opacity: 1;
  padding: 1rem;
  max-height: 100%;
  -webkit-transition: all 0.35s ease 0.15s;
  -o-transition: all 0.35s ease 0.15s;
  transition: all 0.35s ease 0.15s;
}
.benifits .inner img
{
	width:170px;
}
.benifits .inner
{
   box-shadow: 0px 0px 15px rgb(0 0 0 / 5%);
   padding:20px;
 }
.header-seo
{
background-image: url(img/seo-bg4.jpg);
background-position:top;
background-size:cover;
background-repeat: no-repeat;
padding: 100px;
 }
@media(max-width:767px)
{
  .header-seo
  {
    padding:30px;
   }
   .header-seo h2
   {
     font-size:26px;
    }
    .header-seo form
    {
      display:none;
     }
 }

@media(max-width:991px)
{
  .footer-about
  {
     margin-bottom:20px;
   }
 }
/*-------------- ppc-----------*/
.header-ppc
{
	margin-top:70px;
}
.professional-help .inner
{
	padding: 40px;
	 box-shadow: 0px 0px 15px rgb(0 0 0 / 20%);
	background-color: #fff;
}
.professional-help
{
	margin-top:-150px;
}
.benifits-ppc
{
	margin: 0;
	padding: 0;
	text-align: left;
}
.ppc-benifits .inner p
{
   margin-top:20px;
   font-size:18px;
 }
.benifits-ppc li
{
	list-style-type: none;
	padding: 15px;
	border-bottom: 1px solid #E8E8E8;
}
.ppc-benifits .border-right
{
	border-right:1px solid lightgray;
    padding:0;
}
.ppc-benifits img
{
	width: 250px;
    height:270px;
}









@media(max-width:991px)
{
	.professional-help
{
	margin-top:0px;
}
	.header-ppc
{
	margin-top:0px;
}
.ppc-benifits .border-right
{
border:none;
 }
}
/*---------- wordpress development-----------*/

.header-wordpess
{
background-image: url(img/seo-bg4.jpg);
background-position:top;
background-size:cover;
background-repeat: no-repeat;
padding: 130px;
 }
@media(max-width:767px)
{
  .header-wordpess
  {
    padding:30px;
   }
   .header-wordpess h2
   {
     font-size:26px;
    }
    .header-wordpess form
    {
      display:none;
     }
 }
body
{
    margin:0px;
    padding: 0px;
}
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}



.back-to-top i:hover {
  opacity: .9;
  color: #fff;
}
/*----------------------slider----------------------------------*/
.carousel-item
{
    background-size: cover;
    background-position: center top;
    width:100%;
}
.carousel-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
    
}

.inner-text .h1
{
    opacity: 1;
    color: #fff;
    text-align: left;
}
.inner-text .h4
{
    color:#fdc716;
    font-weight: 600;
    margin-top:10px;
    text-align: left;
}
.glyphicon-chevron-left
{
  color: red;
}
@media(max-width:991px)
{
    .inner-text .h1
    {
        font-size:20px;
    }
    .inner-text .h4
    {
        font-size: 16px;
    }
    
}
@media(max-width:767px)
{
    .inner-text
    {
        display: none;
    }
    .carousel-item
    {
        background-position: bottom;
    }

    
}

/*------------------------ about us ----------------------------------*/
.about-us
{
}
.about-us-inner
{
   background-color: #025f93;
    padding: 13px;
    color: #fff;
    height: 220px;
     position: relative;
    top: 0;
    transition: top ease 0.5s;
    margin-top: 10px;
   }


.about-us-inner:hover ,.about-us-inner2:hover{
  top: -20px;
  -webkit-box-shadow: 0 8px 6px -6px #686767;
  -moz-box-shadow: 0 8px 6px -6px #686767;
  box-shadow: 0 8px 6px -2px #686767;
}

.about-us-inner2
{
   background-color:#017CC0;
    padding: 10px;
    color: #fff;
    height: 220px;
     position: relative;
    top: 0;
    transition: top ease 0.5s;
    margin-top: 10px;
   }
.about-us-inner .title , .about-us-inner2 .title
{
    color: #f9f9f9;
    font-size: 13px;
    font-weight: 599;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "raleway", sans-serif;
    line-height: 40px;
    letter-spacing: 0.6px;
}
.about-us-inner p , .about-us-inner2 p
{
    color: #f9f9f9;
    font-size: 11px;
    font-family: "raleway", sans-serif;
    line-height: 2;
    padding-left: 17px;
    
    }
.about-us-inner i ,.about-us-inner2 i
{
    font-size: 44px;
}
@media(max-width:767px)
{
    .about-us-inner-row
  {
    padding: 20px;
   }
		.about-us
{
    margin-top:0px;
}
    
}


/*---------------------leading-contractor-----------------------*/
.leading-contractor p
{
    font-size:15.5px;
    line-height: 1.8;
}
.weight
{
    font-weight: 600;
}
/* ----------------------------Progress bar---------------*/
.progress-title{
    font-size: 14px;
    color: #888888;
    text-transform: uppercase;
    margin: 0 0 30px;
    font-family:'raleway',sans-serif;
}
.progress{
    height: 7px;
    background: #fff;
    border-radius: 0;
    margin-bottom: 30px;
    overflow: visible;
    box-shadow: none;
    margin-top:-10px;
    border:1px solid gray;
    
}
.progress .progress-bar{
    background: #BDBDBD;
    box-shadow: none;
    border-radius: 0;
    -webkit-animation: animate-positive 2s;
    animation: animate-positive 2s;
    align-content: center;
    text-align: center;
    align-self: center;
    padding-top:5px;
}

.progress-value{
    font-size: 12.5px;
    font-weight: 700;
    right: 0;
    margin-right: 20px;
    top:0;
    float: right;
    align-self: flex-end;
    text-align: right;
    background-color: #171D59 !important;
    color: #fff;
    padding: 1px;
    width:40px;
    text-align: center;
    
}
.progress.yellow .progress-bar,
.progress.yellow .progress-bar:before{ border-bottom-color: #3A3A3A; }
.progress.purple .progress-bar,
.progress.purple .progress-bar:before{ border-bottom-color: #3A3A3A; }
.progress.green .progress-bar,
.progress.green .progress-bar:before{ border-bottom-color: #3A3A3A; }
@-webkit-keyframes animate-positive{
    0%{ width: 0; }
}
@keyframes animate-positive{
    0%{ width: 0; }
}
.box13{
             position:relative;
             transition:all .2s ease-out 0s;
            }
          .box13 .box-content,.box13:after{
              position:absolute;
              left:20px;
              right:20px;
              border-radius:5px;
              box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
            }
        .box13:after{
            content:"";
            display:block;
            background-color:#020B4E;
            top:7px;
            bottom:7px;
            opacity:0;
            transform:rotate3d(-1,1,0,100deg);
            transition:all .4s ease-in-out 0s;
          }
        .box13:hover:after{
            opacity:.9;
            transform:rotate3d(0,0,0,0deg);
            }
       
        .box13 .box-content{
            top:55%;
            padding:20px;
            opacity:0;
            z-index:1;
            -webkit-transform:translate(10%,-30%);
            transform:translate(10%,-30%);
            transition:all .2s ease-out 0s;
            }
        .box13:hover .box-content{
            opacity:9;
            transform:translate(0,-50%);
            transition-delay:.2s;
            }
        @media only screen and (max-width:990px){.box13{margin-bottom:30px}
        }

/*------------------services ---------------------*/
.inner-services
{
    padding: 15px;
}
.services-title
{
    color: #053636;
    font-size: 14px;
    font-weight:600;
    font-family: 'raleway',sans-serif;
    text-transform: capitalize;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.inner-services i
{
  color: #06A3DA;  
}
.hover-me
{
     transition: 1s all;
    height:140px;
}
.services-text
{
    font-size: 12.5px;
    color: #666666;
    line-height: 2;
}
.hover-me:hover{
    background-color: #06A3DA;
    transition: 1s all;
}
.hover-me:hover .services-title
{
    color: #fff;
}
.hover-me:hover .services-text
{
    color: #fff;
}
.hover-me:hover i
{
    color: #fff;
}

/*--------------------------- customer feedback----------------------------*/
.slide-text
{
    position: relative;
    font-size: 13px;
    color: #FFF;
    line-height: 1.8em;
    background: #017CC0;
    padding: 30px 40px 20px;
    margin-bottom: 30px;
    border-radius: 4px;
    height: 200px;
}

.slide-text:after {
    content: '';
    position: absolute;
    left: 20px;
    bottom: -18px;
    border: 10px solid transparent;
    border-top: 10px solid #017CC0;
}
.feedback-inner
{
   padding: 8px 10px;
}
.feedback-inner img
{
    border-radius: 50px;
    width: 70px;
    height: 70px;
    border:1px solid #000;
}
.info-text
{
	
}
.info-text .h3
{
    color:#fff;
    align-self: flex-start;
    font-size: 16px;
    font-weight: 600;
	z-index: 3;
	
	

}
.info-text .designation
{
    color: #06A3DA;
    font-size: 14px;
}

.feedback-section{
 
    background: rgba(0,0,0,1);
   
}
.multi-item-carousel .carousel-inner > .item {
  transition: 500ms ease-in-out left;
}
.multi-item-carousel .carousel-inner .active.left {
  left: -33%;
}
.multi-item-carousel .carousel-inner .active.right {
  left: 33%;
}
.multi-item-carousel .carousel-inner .next {
  left: 33%;
}
.multi-item-carousel .carousel-inner .prev {
  left: -33%;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .multi-item-carousel .carousel-inner > .item {
    transition: 500ms ease-in-out left;
    transition: 500ms ease-in-out all;
    -webkit-backface-visibility: visible;
            backface-visibility: visible;
    -webkit-transform: none!important;
            transform: none!important;
  }
}
.multi-item-carousel .carouse-control.left,
.multi-item-carousel .carouse-control.right {
  background-image: none;
}

.col-inner2
    {
        padding: 20px;
        float: left;
        margin-top:20px;
    }
   .col-inner2 img
    {
      
    }
 .col-inner2 p
    {
        margin-top:5px;
    }
    .reviews2
    {
        font-size:16px;
        color: #5F5E5E;
    }
   
   
    .carousel-control.right , .carousel-control.left
    {
        background-image: none;
        width: 0;
    }
 .glyphicon-chevron-left , .glyphicon-chevron-right
{
    color: #000;
}
@media(max-width:991px)
{
    
     .carousel-inner
    {
      height:400px;
    }
}
@media(max-width:767px)
{
    .col-inner2
    {
        width:100%;
        
    }
    .col-inner2 p
    {
        font-size:14px;
    }
    .carousel-inner
    {
      height:410px;
    }
      
}
@media(max-width:555px)
{
    .col-inner2
    {
        width:100%;
        
    }
    .col-inner2 p
    {
        font-size:14px;
    }
    .carousel-inner
    {
      height:410px;
    }
      
}
/*------------ our mission------*/
.mission-btn
{
    background: #053636 none repeat scroll 0 0;
    border: 2px solid #053636;
    border-radius: 0px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    padding: 10px 30px;
    position: relative;
    text-transform: uppercase;
}
.mission-btn:hover{
    color: #053636;
    background-color: #fff;
}
.mission-text
{
    color:  #053636;
    font-size: 16px;
    font-weight: 600;
}

@media(max-width:1200px)
{
    .half
    {
        width: 50%;
    }
}

.left-to-right {
  width: 100%;
}

.left-to-right {
  animation: right_to_left 2s ease;
}

.left-to-right {
  animation: left_to_right 2s ease;
}

@keyframes right_to_left {
  from {
    margin-left: 100%;
  }
  to {
    margin-left: 0;
  }
}

@keyframes left_to_right {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0;
  }
}
.test  {
   
    animation: fadein 2s;
   -moz-animation: fadein 2s; /* Firefox */
    -webkit-animation: fadein 2s; /* Safari and Chrome */
    -o-animation: fadein 2s; /* Opera */
}
@keyframes fadein {
    from {
        opacity:0;
        margin-left:-100px;
        
    }
    to {
        opacity:1;
         
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}


.fade1  {
   
    animation: fadein 1.5s;
   -moz-animation: fadein 1.5s; /* Firefox */
    -webkit-animation: fadein 1.5s; /* Safari and Chrome */
    -o-animation: fadein 1.5s; /* Opera */
}
@keyframes fadein {
    from {
        opacity:0;
        
    }
    to {
        opacity:1;
         
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}

/*-------------------------------footer----------------------------*/
.footer{
    width:100%;
    background-color:#343434;
}
.main-footer{
	position:relative;
	color:#c9c9c9;
	/*background-color:#343434;*/
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center center;
	font-family:calibri;	
}

.main-footer:before{
	left:0px;
	top:0px;
	width:100%;
}

.main-footer p{
	line-height:1.8em;
	margin-bottom:20px;
}
.main-footer .footer-upper{
	position:relative;
	padding:70px 0px 0px;
	z-index:1;
}

.main-footer .footer-upper .column{
	position:relative;
	margin-bottom:30px;	
}

.main-footer .footer-upper .column .news-widget {
	left: -30px ;
	position: relative;
}

.footer-upper .column h2{
	position:relative;
	font-size:13px;
	line-height:1.4em;
	margin-bottom:30px;
	font-weight:690;
	text-transform:UPPERCASE;
	letter-spacing:1px;
	color:#fdc716;
}

.main-footer .footer-upper a{
	transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.main-footer .footer-upper a:hover{
	color:#ffffff;	
}

.footer-upper .links-widget li{
	position:relative;
	margin-bottom:5px;
}

.footer-upper .links-widget li a{
	position:relative;
	display:block;
	font-size:14px;
	color:#c9c9c9;
	line-height:24px;
}

.footer-upper .links-widget li a:hover,
.footer-upper .news-widget .news-post a:hover{
	color:#fdc716;	
}

.main-footer .social-links a{
	position:relative;
	display:inline-block;
	font-size:15px;
	width:32px;
	height:32px;
	line-height:30px;
	border:1px solid rgba(255,255,255,0.20);
	text-align:center;
	background:none;
	margin-right:10px;
	color:#f1f1f1;
	border-radius:50%;
	transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.main-footer .social-links a:hover{
	color:#ffffff;
	background:#fdc716;	
}

.main-footer .contact-info{
	position:relative;
	margin-bottom:20px;
}

.main-footer .contact-info li{
	position:relative;
	padding-left:30px;
	margin:0px 0px 7px;
	line-height:30px;	
}

.main-footer .contact-info li .icon{
	position:absolute;
	font-weight:700;
	font-size:16px;
	color:#fdc716;
	left:0px;
	top:0px;
	line-height:30px;
}

.social-links-two{
	position:relative;
    margin-left: -10%;
}

.social-links-two a{
	position:relative;
	display:block;
	float:left;
	text-align:center;
	width:28px;
	height:28px;
	line-height:26px;
	border:1px solid #bcbcbc;
	border-radius:50%;
	font-size:12px;
	margin-left:10px;
	color:#bcbcbc ;
	transition:all 500ms ease;
	}


.blog-news-section .social-links-two{
	background:#ffffff;
	color:#ffffff;
	font-size:13px;
	height:32px;
	line-height:32px;
	border:none;	
}

.social-links-two.alt a{
	font-size:12px;
	border:1px solid #cccccc;
	color:#cccccc ;
}

.social-links-two a:hover{
	background:#fdc716;
	border-color:#fdc716;
	color: #053636;
}


.social-links-two.alt a:hover{
	background:#fdc716 ;
	border-color:#fdc716;	
	color:#ffffff ;
}


.popular-tags li {
	float: left;
	margin-bottom: 7px;
	margin-right: 7px;
}

.popular-tags a {
	border: 1px solid #e2e6e7;
	color: #999;
	display: block;
	font-family: "Raleway";
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0px;
	line-height: 16px;
	padding: 10px 7px;
	text-align: left;
}

.popular-tags a:hover {
	background: #fdc716 none repeat scroll 0 0;
	border-color: #fdc716;
	color: #053636;
	text-decoration: none;
}
.nav-right
{
	float: right;
}

li{
    list-style-type: none;
}
.b-nav li a
{
    text-decoration: none;
    margin-left: -25%;
}
.services li{
    margin-left: -32%;
}
.b-copy a{
    text-decoration: none;
}
.tech a{
    text-decoration: none;
}
.text{
    margin-left: -7%;
}
.main{
    margin-left: -19%;
}
.nav-wordpress li a
{
	color: #000;
	font-size: 18px;
	font-weight: 500;
	font-family: 'raleway',sans-serif;
}
@media only screen and (max-width:767px) {
    .text{
        margin-left: 0%;
    }
    .main{
        margin-left: -6%;
        
    }
    .social-links-two{
        margin-left: 0%;
    }
    h2{
       margin-left: 0%;
    }
    .services li{
        margin-left: 0%;
        margin-left: -8%;
        
    }
    .b-nav li a{
        margin-left: 0%;
        margin-left: -8%;
        
    }
    .strength{
       margin-left: 8%; 
    }
    p{
        margin-left: 8%;
    }
	.navbar-nav
	{
	float: left;
	}
}

/*--------------------------------------------about us-------------------------*/

 .top-banner-about-us
{
  margin-top:70px;
	padding: 70px;
}

.inner-main
{
}
.li-overlap
{
	float: left;
	width: 50%;
}
  .overlap{
        width: 100%;
        height: 500px;
        position: relative;
        margin-top: 80px;
	   margin-bottom: 50px;
    }
    .box{
        width: 100%;
        height: 100%;            
        position: absolute;
        top: 0;
        left: 0;
    }
    .stack-top{
        margin-left: 40%; /* for demo purpose  */
		margin-top: 10%;
		background: linear-gradient(to bottom,#397bf9,#0042bf);
		width: 280px;
		height: 350px;
		padding: 40px;
		border-radius: 10px;
    }
.info-app li
{
	list-style-type: square;
	padding: 10px;
	border-bottom: 1px solid lightgray;
}
.inner-shadow{
	box-shadow:  rgb(0 0 0 / 20%) 0px 3px 15px 0px;
	padding: 20px;
}
.why-us li
{
	list-style-type: square;
	padding: 6px;
	color: #fff;
}
@media(max-width:991px)
{
	.overlap{
      margin-top: 10px;
	   margin-bottom: 10px;
       
    }
	
 .top-banner-about-us
{
  margin-top:0px;
	padding: 20px;
}
	
}

/*-----------blog-----*/

.form-control::-webkit-input-placeholder { color: #999; }  
.form-control:-ms-input-placeholder { color: #999; }  
.form-control::placeholder { color: #999; }

.tm-header {
    background-color: #0CC;
    color: white;
    
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    width: 400px;
    overflow-y: visible;     
}

.tm-header-wrapper {
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 30px;
    width: 100%;
    height: 100%; 
}

.tm-header-wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.tm-site-header {
    margin-top: 50px;
    margin-bottom: 115px;
}

.tm-site-logo {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: white;    
    display: flex;
    align-items: center;
    justify-content: center;
}

.tm-site-logo i { color: #0CC; }

.tm-main {
    margin-left: 400px;
    padding: 50px 100px 25px;
}

.tm-post { max-width: 470px; }

.tm-row {
    max-width: 980px;
    justify-content: space-between;
}

.tm-nav { margin-bottom: 100px; }

.tm-nav-item {
    list-style: none;
    margin-bottom: 30px;
}

.tm-nav-link {
    color: white;
    background-color: transparent;
    height: 75px;
    width: 100%;
    max-width: 300px;    
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    padding: 30px;
}

.tm-nav-item:hover .tm-nav-link,
.tm-nav-item.active .tm-nav-link
 {
    color: #0CC;
    background-color: white;
    text-decoration: none;
}

.tm-nav ul { position: relative; }

.tm-nav-item:hover:after,
.tm-nav-item.active:after {
    content: '';
    width: 100%;
    max-width: 300px;    
    height: 75px;
    display: block;
    border: 1px solid white;
    margin-left: 10px;
    margin-top: -65px;
    position: absolute;
    z-index: -1000;
}

.tm-nav-link i { margin-right: 37px; }

ul { 
    margin: 0; 
    padding: 0;
}

.tm-nav { margin-left: -30px; }

.tm-social-link {
    display: inline-block;
    background-color: white;    
    font-size: 1.4rem;
    width: 50px;
    height: 50px;
    text-align: center;
    padding-top: 8px; 
    margin-right: 15px;   
    margin-bottom: 15px;
}

.tm-social-icon { 
    color: #0CC;    
    transition: all 0.3s ease;
}

.tm-social-link:hover .tm-social-icon.fa-facebook { color: #3b5998; }
.tm-social-link:hover .tm-social-icon.fa-twitter { color: #00acee; }
.tm-social-link:hover .tm-social-icon.fa-instagram { color: #3f729b; }
.tm-social-link:hover .tm-social-icon.fa-linkedin { color: #0e76a8; }
.navbar-toggler { display: none; }

.tm-search-form {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.form-inline .form-control.tm-search-input {
    display: block;
    height: 60px;
    width: 480px;
    margin-right: 30px;
    border-radius: 0;
    font-size: 1.2rem;
}

.tm-search-button {
    width: 60px;
    height: 60px;
    border: none;
    background-color: #0CC;
    transition: all 0.3s ease;
}

.tm-search-button:hover { background-color: #09b6b6; }

.tm-search-icon {
    color: white;
    font-size: 1.3rem;
}

.tm-post-link {
    display: block;
    position: relative;
	cursor: pointer;
}

.tm-post-link-inner {
    overflow: hidden;
    background: #3085a3;
}

.tm-post-link img {
    position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}

.effect-lily img {
	max-width: none;
	width: -webkit-calc(100% + 50px);
	width: calc(100% + 50px);
	opacity: 0.7;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-40px,0, 0);
	transform: translate3d(-40px,0,0);
}

.effect-lily:hover img { opacity: 1; }

.effect-lily:hover img {
    -webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.tm-post { margin-bottom: 75px; }

.tm-new-badge {
    top: 35px;
    right: -10px;
    background-color: #0CC;
    color: white;
    padding: 5px 20px;
}

.tm-post-title {
    font-size: 1.7rem;
    transition: all 0.3s ease;
}

.tm-h3 {
    font-size: 1.3rem;
    color: #999;
}

.tm-post-link:hover .tm-post-title { color: #0CC; }

.tm-btn {
    display: inline-block;
    border-radius: 5px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.tm-btn-primary {    
    background-color: #0CC;
    color: white;  
    padding: 8px 43px;
    border: none;
}

.tm-btn-small { padding: 8px 33px; }

.tm-btn-primary:hover {
    background-color: #09b6b6;
    color: white;
}

.tm-paging-nav ul li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
}

.tm-paging-nav ul li:last-child { margin-right: 0; }

.tm-paging-link {
    background-color: #F0F0F0;
    color: #999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;    
}

.tm-paging-item .tm-paging-link:hover,
.tm-paging-item.active .tm-paging-link {
    background-color: #0CC;
    color: white;
}

.tm-btn.disabled {
    background-color: #F0F0F0;
    color: #999;
    cursor: not-allowed;
}

.tm-external-link { color: #0CC; }
.tm-external-link:hover { color: #09b6b6; }

.tm-paging-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.tm-prev-next-wrapper,
.tm-paging-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}

.tm-copyright { text-align: right; }

/* Single Post page */
hr.tm-hr-primary { border-top: 5px solid #0CC; }

video {
    width: 100%;
    height: auto;
}

.tm-comment {
    display: flex;
    align-items: flex-start;
}

.tm-comment-figure {
    margin-top: 10px;
    margin-right: 30px;
}

.tm-comment-reply { padding-left: 37px; }

.form-control {
    height: 45px;
    border-radius: 0;
}

.tm-comment-form { max-width: 360px; }
.tm-category-list { list-style-type: none; }
figure { margin: 0; }
figcaption { line-height: 1.4; }

.tm-post-full { max-width: 600px; }

.tm-post-sidebar {
    max-width: 280px;
    margin-left: auto;
    margin-right: 0;
}

.tm-pt-20 { padding-top: 20px; }
.tm-pt-30 { padding-top: 30px; }
.tm-pt-45 { padding-top: 45px; }
.tm-pt-60 { padding-top: 60px; }
.tm-mb-40 { margin-bottom: 40px; }
.tm-mb-45 { margin-bottom: 45px; }
.tm-mb-55 { margin-bottom: 55px; }
.tm-mb-60 { margin-bottom: 60px; }
.tm-mb-65 { margin-bottom: 65px; }
.tm-mb-75 { margin-bottom: 75px; }
.tm-mb-80 { margin-bottom: 80px; }
.tm-mb-120 { margin-bottom: 120px; }
.tm-mt-40 { margin-top: 40px; }
.tm-mt-100 { margin-top: 100px; }
.tm-mr-20 { margin-right: 20px; }
.tm-color-primary, span.tm-color-primary { color: #099; }
a.tm-color-gray, .tm-color-gray { color: #999; }
a.tm-color-gray:hover { color: #099; }
.tm-bg-gray { background-color: #F3F4F5; }
button:focus { outline: none; }
a:hover { 
    text-decoration: none; 
    color: #048c8c;
}

a:hover figcaption { color: #056767; }
.img-thumbnail { max-width: none; }
.tm-about-pad { padding: 40px 35px; }
.tm-person { max-width: 430px; }
.tm-line-height-short { line-height: 1.8; }

.gmap_canvas {
    overflow:hidden;
    background:none!important;
    height:477px;
    width:100%;
}

.tm-social-links li { 
    list-style: none; 
    display: inline-block;
}

.tm-social-links li a {
    display: block;
    color: white;
    background-color: #0CC;
    width: 45px;
    height: 45px;    
    margin-right: 15px;    
}

.tm-social-links li a i { transition: all 0.3s ease; }
.tm-social-links li a:hover i.fa-facebook { color: #3b5998; }
.tm-social-links li a:hover i.fa-twitter { color: #00acee; }
.tm-social-links li a:hover i.fa-youtube { color: #c4302b; }
.tm-social-links li a:hover i.fa-instagram { color: #3f729b; }

.tm-contact-right { padding-left: 55px; }
.tm-contact-form { max-width: 488px; }

.tm-contact-form input,
.tm-contact-form textarea {
    max-width: 360px;
}

.tm-contact-form label { font-size: 1.4rem; }
.tm-contact-form .form-group { display: flex; }

@media (max-width: 1540px) {
    .tm-header { width: 320px; }

    .tm-main {
        margin-left: 320px;
        width: calc(100% - 320px);
    }
}

@media (max-width: 1300px) {
    .tm-about-col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 1288px) {
    .tm-social-link { margin-right: 10px; }
}

@media (max-width: 1199px) {
    .tm-post-sidebar { max-width: 440px; }
    .form-inline .form-control.tm-search-input { width: 420px; }
}

@media (max-width: 1086px) {
    .form-inline .form-control.tm-search-input {
        width: 80%;
        margin-right: 15px;
    }
}

/* Hide sidebar */
@media (max-width: 991px) {
    .tm-header {
        width: 320px;
        left: -320px;        
        transition: all 0.3s ease;
    }

    .tm-header.show { left: 0; }
    .tm-header-wrapper { padding: 15px; }

    .navbar-toggler {
        display: block;
        left: 0;
        top: 0;
        color: white;
        padding: 10px 15px;
        transition: all 0.3s ease;
        border-radius: 0;
        top: 5px;
    }

    .tm-header.show .navbar-toggler { left: 320px; }

    .tm-main {
        margin-left: 0;
        padding:50px 100px 25px;
        width: 100%;

    }

    .tm-post-sidebar {
        margin-left: 0;
        margin-right: auto;
    }

    .tm-person-col { width: 50%; }
    .tm-person { flex-direction: row; }

    .tm-contact-left {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .tm-contact-right {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .tm-post-full { max-width: none; }
}

@media (max-width: 767px) {
    .form-inline .form-control.tm-search-input {
        width: 70%;
        max-width: 375px;
        margin-right: 15px;
    }

    .tm-search-form { justify-content: flex-start; }
    .tm-main { padding: 10px 0px; }

    .tm-prev-next-wrapper,
    .tm-paging-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tm-paging-wrapper { 
        margin-top: 50px; 
        justify-content: flex-start;
    }

    .tm-copyright { text-align: left; }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .tm-person-col,
    .tm-contact-left,
    .tm-contact-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tm-contact-right { padding-left: 15px; }

    .tm-post-col,
    .tm-aside-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tm-post-sidebar {
        margin-left: 0;
        margin-right: auto;
    }
}

@media (max-width: 709px) {
    .tm-person-col { width: 100%; }
}

@media (max-width: 991px) and (min-width: 826px) {
    .tm-about-col {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .tm-person { flex-direction: row; }
}

@media (max-width: 630px) {
    .tm-contact-left,
    .tm-contact-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tm-contact-right { padding-left: 15px; }
}

@media (max-width: 575px) {
    .tm-contact-form input, 
    .tm-contact-form textarea {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .tm-person-col { width: 100%; }
    .tm-person { flex-direction: row; }
}

@media (max-width: 380px) {
    .tm-person img { max-width: 120px; }
}

/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
.recent-blog-posts .post-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-blog-posts .post-box .post-img {
  overflow: hidden;
  margin: -30px -30px 15px -30px;
  position: relative;
}

.recent-blog-posts .post-box .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-box .post-date {
  font-size: 16px;
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
  display: block;
  margin-bottom: 10px;
}

.recent-blog-posts .post-box .post-title {
  font-size: 24px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  transition: 0.3s;
}

.recent-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
}

.recent-blog-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-blog-posts .post-box:hover .post-title {
  color: #4154f1;
}

.recent-blog-posts .post-box:hover .post-img img {
  transform: rotate(6deg) scale(1.2);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  background: #fafbff;
  padding: 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #4154f1;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: #fafbff;
  padding: 30px;
  height: 100%;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #4154f1;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #4154f1;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #5969f3;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.breadcrumbs
{
	margin-top: 70px;
	padding: 30px;
}
.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #012970;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #4154f1;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #4084fd;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #4154f1;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #5969f3;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #012970;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #0d64fd;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #013289;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #4154f1;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #012970;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(1, 41, 112, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #4154f1;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #012970;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #013ca3;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #a0aaf8;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #a0aaf8;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #012970;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #013289;
}

.blog .blog-pagination {
  color: #024ed5;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #012970;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active, .blog .blog-pagination li:hover {
  background: #4154f1;
}

.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #012970;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type="text"] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #4154f1;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #5465f2;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #012970;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #4154f1;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #012970;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #4154f1;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #0257ee;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #d7e6ff;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #4154f1;
  background: #4154f1;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #a5c5fe;
  font-size: 14px;
}
@media(max-width:991px)
{
	.breadcrumbs
{
	margin-top: 0px;
}
}





























































