/*--------------------------------------------------------------------
                      start table of content
--------------------------------------------------------------------*/


/* 01. common css */


/* 02. navbar css */


/* 03. home */


/* 04. about */


/* 05. features */


/* 06. explain */


/* 07. video */


/* 08. testimonial */


/* 09. screenshots */


/* 10. blog-grid */


/* 11. package */


/* 12. contact-from */


/* 13. contact-cornar button */


/* 14. footer */


/* 15. scroll down */


/* 16. scroll top */


/* 17. preloader */


/* 18. responsive */


/*--------------------------------------------------------------------
                     end table of content
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
                     1. start common css
--------------------------------------------------------------------*/

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 28px;
  background: #ffffff;
  color: #191e23;
}

a {
  color: #555555;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

a:focus,
a:hover {
  text-decoration: none;
  outline: 0;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1 {
  color: #fff;
  font-size: 57px;
  line-height: 73px;
  letter-spacing: 2px;
  font-weight: 300;
}

h2 {
  color: #2C2C2C;
  font-size: 46px;
  line-height: 60px;
  font-weight: 300;
}

h3{
  font-size: 25px;
  font-weight: 300;
  color: #2C2C2C;
  line-height: 38px;  
}

h5 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 27px;
  color: #0181F5;
  text-transform: uppercase;
}

p {
  margin-bottom: 0;
}

strong {
  color: #0BC560;
}

input,
textarea {
    border: 0;
}

#explain,
.screenshots-content,
.explain-content h2,
.explain-content p{
  -webkit-transition: all .5s ease-in;
  -moz-transition: all .5s ease-in;
  -ms-transition: all .5s ease-in;
  -o-transition: all .5s ease-in;
  transition: all .5s ease-in;
}

.c-white{
  color: #fff;
}

.title{
  padding-bottom: 63px;
  text-align: center;
  margin-top: -25px;
}

.sub-title {
  padding-top: 10px;
}

.site-btn {  
  display: inline-block;
  padding: 15px 27px;
  font-weight: 500;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  letter-spacing: 1px;
  background: #0181f5;
  background: -moz-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: -webkit-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: linear-gradient(to right, #0181f5 0%, #5db2ff 100%);
}

.site-btn:hover,
.site-btn:focus {
  color: #fff;
}

.site-btn i {
  padding-right: 5px;
   font-size: 19px;
}

.hover-effect {
  position: relative;
  overflow: hidden;
}

.hover-effect::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.hover-effect:hover::before {
  -webkit-animation: circle .73s;
  animation: circle .73s;
}

@-webkit-keyframes circle {
  0% {
      opacity: 1;
  }
  40% {
      opacity: 1;
  }
  100% {
      width: 200%;
      height: 200%;
      opacity: 0;
  }
}

@keyframes circle {
  0% {
      opacity: 1;
  }
  40% {
      opacity: 1;
  }
  100% {
      width: 200%;
      height: 200%;
      opacity: 0;
  }
}

/*--------------------------------------------------------------------
                     1. end common css
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
                     2. start navbar
--------------------------------------------------------------------*/

.set-color,
.navbar,
.navbar-nav .nav-item,
.navbar-brand img,
.navbar .navbar-nav .nav-link,
.show{
  -moz-transition: .3s;
  -o-transition: .3s;
  -ms-transition: .3s;
  -webkit-transition: .3s;
  transition: .3s;
}

.navbar-nav .nav-item {
  padding: 25px 8px;
}

.color-set.navbar-expand-lg{
  -webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,.1); 
  box-shadow: 0 5px 10px 0 rgba(0,0,0,.1); 
}

.navbar .navbar-nav .nav-link {
  color: #fff;
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 17px;
  text-align: center;
  text-transform: capitalize;
}

.color-set{
  background: #fff;
}

.color-set .navbar-nav .nav-item{
  padding: 8px;
}

.color-set .navbar-nav .nav-item .nav-link {
  color: #0181F5;
}

.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:hover{
  color: #0181F5;
  background: #fff;
}

.color-set .show{
  margin-top: 0;
}

.navbar .navbar-nav .nav-link:focus{
  outline: none;
}

.color-set.navbar .navbar-nav .nav-link.active,
.color-set.navbar .navbar-nav .nav-link:hover{
  color: #fff;
  background: #0181f5;
  background: -moz-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: -webkit-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: linear-gradient(to right, #0181f5 0%, #5db2ff 100%);
}

.ml-auto,
.mx-auto {
  margin: 12px 0;
}

.color-set .ml-auto,
.color-set .mx-auto {
  margin: 0;
}

.navbar-toggler {
  background: #fff;
}

.color-set .navbar-toggler {
  background: #000;
}

.navbar-dark .navbar-toggler-icon {
  background-image: url(../images/images-bars.png);
  margin: 6px 0;
  height: 20px;
}

.navbar-toggler:focus{
  outline: none;
}

/*--------------------------------------------------------------------
                      2. end navbar
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
                     3. start home
--------------------------------------------------------------------*/

#home {
  height: 900px;
  position: relative;
  background: url(../images/images-banner.png) no-repeat center center;
  background-size: cover;
  -webkit-background-size: cover;
}

.home_text p {
  font-size: 20px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 50px;
  margin-top: 30px;
  line-height: 35px;
}

.phone_thumb {
  position: relative;
  top: 110px;
}

.phone_thumb img{
  max-width: 464px;
}

#home .site-btn{
  background: -webkit-linear-gradient(to right, #00F298 0%, #07F7F7 100%);
  background: -moz-linear-gradient(to right, #00F298 0%, #07F7F7 100%);
  background: linear-gradient(to right, #00F298 0%, #07F7F7 100%);
}

/*--------------------------------------------------------------------
                     3. end home
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
                     4. start about
--------------------------------------------------------------------*/

#about{
  text-align: center;
  margin: 70px 0;
  padding-top: 100px;
}

.about-single-item .icon-circle{
  margin-bottom: 40px;
  border-radius: 25px;
  width: 100px;
  height: 100px;
  display: inline-table;
}

#about .title h2{
  margin-bottom: 0;
}

.about-single-item .icon-circle i{
  display: table-cell;
  color: #fff;
  vertical-align: middle;
  font-size: 30px;
}

.part-1{
  background: #0181f5;
  background: -moz-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: -webkit-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: linear-gradient(to right, #0181f5 0%, #5db2ff 100%);
}

.part-2{
  background: #fdae5c;
  background: -moz-linear-gradient(left, #fdae5c 0%, #fd8e5e 100%);
  background: -webkit-linear-gradient(left, #fdae5c 0%, #fd8e5e 100%);
  background: linear-gradient(to right, #fdae5c 0%, #fd8e5e 100%);
}

.part-3{
  background: -webkit-linear-gradient(to right, #00F298 0%, #07F7F7 100%);
  background: -moz-linear-gradient(to right, #00F298 0%, #07F7F7 100%);
  background: linear-gradient(to right, #00F298 0%, #07F7F7 100%);
}

/*--------------------------------------------------------------------
                      4. end about
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
                      5. start features
--------------------------------------------------------------------*/

#features{
  padding: 80px 0;
}

#features .col-md-8{
  background-size: 90% 63%;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/images-feature.png);
  position: relative;
}

#features .col-md-8:before{
  content: "Features";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  color: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-top: 36px;
  padding-left: 15px;
  font-size: 17px;
  background: #0181f5;
  background: -moz-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: -webkit-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: linear-gradient(to right, #0181f5 0%, #5db2ff 100%);
}

.single-feature {
  background: #fff;
  margin: 20px 5px;
  padding: 25px 25px 35px;
  border-radius: 20px;
  text-align: center;
  -webkit-box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.08);
}

.feature-icon {
  padding: 10px;
  width: 150px;
  border-radius: 50%;
  margin: auto;
  transform: rotate(20deg);
  margin-top: 20px;
  background: -webkit-linear-gradient(to right, #f1f6fd, #f0fbfe);
  background: linear-gradient(to right, #f1f6fd, #f0fbfe);
}

.feature-text h5{
  margin: 25px 0px 11px;
}

.featurs-image{
  text-align: right;
}

.feature-icon img {
    transform: rotate(-20deg);
}

/*--------------------------------------------------------------------
                      5. end features
--------------------------------------------------------------------*/
/*--------------------------------------------------------------------
                      6. start explain
--------------------------------------------------------------------*/

#explain{
  padding: 100px 0;
}

#explain:hover{
  background: #111;
}

#explain:hover .explain-content h2,
#explain:hover .explain-content p{
  color: #f5f5f5;
}

.explain-img-con{
  position: relative;
  text-align: center;
}

.same-style{
  background: #fff;
  -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
  display: table;
  border-radius: 10px;
  font-size: 30px;
  text-align: center;
  position: absolute;
}

.same-style i{
  color: #0181F5;
  display: table-cell;
  vertical-align: middle;
}

.icon-1{
  width: 110px;
  height: 110px;
  top: 20px;
  left: 30px;
  transform: rotate(45deg);
}

.icon-1 i{
  transform: rotate(-45deg);
}

.icon-2{
  width: 63px;
  height: 63px;
  top: 250px;
  left: 40px;
}

.icon-3{
  width: 90px;
  height: 90px;
  transform: rotate(-20deg);
  bottom: 73px;
  left: 50px;
}

.icon-4{
  width: 85px;
  height: 85px;
  right: 45px;
  top: 99px;
  transform: rotate(25deg);
}

.icon-5{
  width: 90px;
  height: 90px;
  right: 40px;
  bottom: 250px;
  transform: rotate(-40deg);
}

.explain-list{
  margin-bottom: 44px;
}

.explain-list li{
  margin-bottom: 26px;
  position: relative;
  padding-left: 40px;
}

.explain-list li:before{
  content: "\f058";
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 25px;
  color: #0181F5;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 free";
}

.ex-paragraph{
  margin: 27px 0 37px;
}

/*--------------------------------------------------------------------
                             6. end explain
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
                              7. start video
--------------------------------------------------------------------*/

#video{
  padding-top: 100px;
}

#video .title{
  padding-bottom: 57px;
}

.video-part{
  position: relative;
  text-align: center;
}

.video-play-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-btn {
  height: 80px;
  width: 80px;
  color: #fff;
  border-radius: 50%;
  line-height: 80px;
  display: inline-block;
  font-size: 30px;
  margin-top: -45px;
  box-shadow: 0 0 0 0 hsla(182, 74%, 86%, 0.7);
  background: #0181f5;
  background: -moz-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: -webkit-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: linear-gradient(to right, #0181f5 0%, #5db2ff 100%);
  animation: 1.2s cubic-bezier(0.8, 0, 0, 1) 0s normal none infinite running pulse;
}

.play-btn:hover{
  color: #fff;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

@keyframes pulse {
  100% {
      box-shadow: 0 0 0 45px hsla(182, 74%, 86%, 0);
  }

}

@keyframes pulse {
  100% {
      box-shadow: 0 0 0 45px hsla(182, 74%, 86%, 0);
  }

}

.video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -webkit-transition: all ease 500ms;
  transition: all ease 500ms;
}

.video-overlay.open {
  position: fixed;
  z-index: 1050;
  opacity: 1;
}

.video-overlay-close {
  position: absolute;
  z-index: 1000;
  left: 77%;
  top: 16%;
  padding: 10px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 40px;
  line-height: 1;
  color: #f5f5f5 !important;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.video-overlay-close:hover {
  color: #0181f5 !important;
}

.video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

/*--------------------------------------------------------------------
                              7. end video
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
                          8. start testimonials
--------------------------------------------------------------------*/

#testimonials{
  padding: 85px 0;
  text-align: center;
  position: relative;
  margin-top: -45px;
  background: url(../images/images-testimonial.png) no-repeat center center fixed;
  background-size: cover;
  -webkit-background-size: cover;
}

.carousel-indicators li {
  width: auto;
  height: auto;
  cursor: pointer;
  border-radius: 50%;
  opacity: .4;
  overflow: hidden;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  vertical-align: middle;
  text-indent: 0;
  -webkit-transform: scale(.7);
  -moz-transform: scale(.7);
  -ms-transform: scale(.7);
  -o-transform: scale(.7);
  transform: scale(.7);
}

.carousel-indicators .active {
  opacity: 1;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.carousel-control-next, 
.carousel-control-prev {
  width: auto;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.carousel-item p {
  color: #fff;
  font-size: 20px;
  line-height: 35px;
  font-weight: 400;
  margin: 70px 0 60px;
}

.peo-info ul{
  margin-bottom: 10px;
}

.peo-info li{
  display: inline-block;
}

.peo-info li i{
  color: #FFD35A;
  font-size: 20px;
}

.carousel-item span,
.man-name{
  color: #fff;
  text-transform: uppercase;
}

.carousel-inner {
  width: 80%;
  margin: auto;
}

.carousel-indicators {
  position: relative;
  margin-top: 40px;
}

.carousel-control-next:hover, 
.carousel-control-prev:hover {
  opacity: 1;
}

/*--------------------------------------------------------------------
                          8. end testimonials
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
                     9. start screenshots
--------------------------------------------------------------------*/

#screenshots{
  padding-top: 100px;
}

.screenshots-content {
  font-size: calc(20px + (40  - 20) * (100vw - 320px)/(960 - 320));
  line-height: 1.5;
}

.screenshots-content:hover{
  background: #000;
}

.main-part, .phone {
  position: relative;
}

.main-part {
  font-size: 0.5em;
  margin: auto;
  overflow: hidden;
  min-height: 23em;
  height: 100%;
}

.surface, .notch, .side-btns, .bottom {
  position: absolute;
}

.notch, .bottom, .surface {
  display: flex;
}

.notch, .bottom {
  align-items: center;
}

.surface {
  animation: scroll 3s ease-in-out infinite;
  justify-content: space-between;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) rotateX(45deg) rotateZ(-30deg);
  width: 60em;
  height: 60em;
}

.column:nth-of-type(3n + 1) {
  transform: translateY(3.3em);
}

.column:nth-of-type(3n + 2) {
  transform: translateY(-6.6em);
}

.phone, .notch, .side-btns > div {
  background-color: #fcfcfc;
}

.phone {
  border-radius: 1.25em;
  box-shadow:0.2em -0.2em 0.5em rgba(0,0,0,0.2) inset,
  -0.2em 0.1em 0.2em rgba(0,0,0,0.3);
  margin-bottom: 3em;
  padding: 0.5em 0.5em 0.5em 1em;
  width: 10em;
  height: 20em;
}

.notch {
  border-radius: 0 0 0.75em 0.75em;
  box-shadow: 0 0.1em 0.04em 0.04em rgba(0,0,0,0.1);
  justify-content: center;
  top: 0;
  left: 2.75em;
  width: 5em;
  height: 1.5em;
  z-index: 9;
}

.notch-speaker {
  background-color: #ddd;
  border-radius: 0.1em;
  box-shadow: 0 0.05em 0.05em rgba(0,0,0,0.2) inset;
  margin-right: 0.5em;
  width: 1.4em;
  height: 0.2em;
}

.camera {
  background-color: #ddd;
  background-image:radial-gradient(at top right,rgb(255,255,255) 30%, rgba(255,255,255,0) 50%),
  radial-gradient(at bottom left,rgb(255,255,255) 30%, rgba(255,255,255,0) 50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0.05em rgba(0,0,0,0.2) inset;
  width: 0.4em;
  height: 0.4em;
}

.side-btns {
  top: 2em;
  left: -0.1em;
  width: 0.5em;
  height: 9em;
  transform: skewY(-45deg);
}

.side-btns > div {
  box-shadow:
  -0.04em 0 0 0 rgba(255,255,255,0.7) inset,
  0.1em 0 0.1em 0.1em rgba(0,0,0,0.1) inset,
  0 0 0.1em 0.1em rgba(0,0,0,0.1);
}

.lock-btn {
  border-radius: 0.15em;
  margin-bottom: 1em;
  width: 0.2em;
  height: 0.8em;
}

.vol-up-btn, .vol-down-btn {
  border-radius: 0.2em;
  margin-bottom: 0.5em;
  width: 0.3em;
  height: 1.6em;
}

.bottom {
  justify-content: space-between;
  bottom: 0;
  left: 1.5em;
  width: 7em;
  height: 0.5em;
  transform: skewX(-30deg);
}

.speaker-circle, .speaker-circle-lg {
  background-color: #999;
  border-radius: 50%;
}

.speaker-circle {
  box-shadow: 0 -0.1em 0 rgba(255,255,255,0.9) inset;
  width: 0.25em;
  height: 0.25em;
}

.speaker-circle-lg {
  box-shadow: 0 -0.2em 0 rgba(255,255,255,0.9) inset;
  width: 0.4em;
  height: 0.4em;
}

.headphone-jack {
  box-shadow:0 0.2em 0.1em #888 inset, 
  0 -0.2em 0 0 rgba(255,255,255,0.7) inset;
  border-radius: 0.2em;
  margin: 0 0.1em;
  width: 1.5em;
  height: 0.4em;
}

.screenshot {
  background-color: #202a20;
  background-image: url(../images/images-screen.jpg);
  background-size: 42.5em 18.25em;
  border-radius: 0.75em;
  box-shadow: 0 0 0.1em 0.1em rgba(0,0,0,0.1) inset;
  display: block;
  width: 8.5em;
  height: 18.25em;
}

.column:nth-of-type(1) .screenshot {
  background-position: -8.5em 0;
}

.column:nth-of-type(2) .screenshot {
  background-position: -17em 0;
}

.column:nth-of-type(4) .screenshot {
  background-position: -25.5em 0;
}

.column:nth-of-type(5) .screenshot {
  background-position: -34em 0;
}

@keyframes scroll {

  from {
    transform: translate(-50%,-50%) rotateX(45deg) rotateZ(-30deg) translateY(0);
  }

  to {
    transform: translate(-50%,-50%) rotateX(45deg) rotateZ(-30deg) translateY(-23em);
  }

}

/*--------------------------------------------------------------------
                       9. end screenshots    
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
                      10. start blog-grid
--------------------------------------------------------------------*/

#blog-grid{
  padding: 100px 0 85px;
}

#blog-grid .title{
  padding-bottom: 25px;
}

.blog-grid-description {
  background: #ffffff;
  text-align: left;
  margin: 0 15px;
  position: relative;
  padding: 8px 17px 22px 27px;
  border-bottom-right-radius: 30px;
  -webkit-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -ms-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  transition: all .3s ease-in;
  -webkit-box-shadow: 0 10px 20px 0px rgba(0, 0, 0, 0.10);
  box-shadow: 0 10px 20px 0px rgba(0, 0, 0, 0.10);
}

.blog-grid-description:hover{
  margin-top: -15px;
}

.continue {
  margin-bottom: 0;
}

.continue a {
  color: #0181F5;
}

.continue a span{
  font-size: 15px;
  padding: 0;
  -webkit-transition: all .2s ease-in;
  -moz-transition: all .2s ease-in;
  -ms-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  transition: all .2s ease-in;
}

.continue a:hover span{
  margin-left: 5px;
}

.other-blog{
  margin-top: 47px;
}

.blog-grid-description span {
  line-height: 1.2;
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 12px;
  font-size: 12px;
}

.blog-grid-description h3 {
  margin: 12px 0 11px;
  font-size: 25px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.reading {
  margin-bottom: 10px;
}

.blog-grid-description h3:hover {
  color: #0181F5;
}

.blog-grid-description span.date {
  color: #ffffff;
  background: #fdae5c;
  background: -moz-linear-gradient(left, #fdae5c 0%, #fd8e5e 100%);
  background: -webkit-linear-gradient(left, #fdae5c 0%, #fd8e5e 100%);
  background: linear-gradient(to right, #fdae5c 0%, #fd8e5e 100%);
}

.blog-grid-description span.post-comments {
  color: #fff;
  background: #37ef8d;
  background: -moz-linear-gradient(left, #37ef8d 0%, #37ef8d 100%);
  background: -webkit-linear-gradient(left, #37ef8d 0%, #37ef8d 100%);
  background: linear-gradient(to right, #37ef8d 0%, #37ef8d 100%);
}

.blog-grid-description i {
    margin-right: 5px;
}

.blog-grid-btn a{
    margin-top: 40px;
}

#blog-grid .col-md-4{
  margin-top: 35px;
}

/*--------------------------------------------------------------------
                    10. end blog-grid
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
                       11. start package            
--------------------------------------------------------------------*/

#prising-area{
  padding: 100px 0;
}

#prising-area .title{
  padding-bottom: 27px;
}

#prising-area .site-btn{
  background: none;
  border: 1px solid #0181f5;
  color: #0181f5;
}

.single-prising h3{
  color: #0181f5;
  font-weight: 500;
  margin-top: -3px;
}

.single-prising h3 span{
  margin-right: 1px;
}

#prising-area .site-btn:hover{
  color: #fff;
  border-color: #fff;
  background: #0181f5;
  background: -moz-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: -webkit-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: linear-gradient(to right, #0181f5 0%, #5db2ff 100%);
}

#prising-area .single-prising {
  margin-top: 35px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding-bottom: 40px;
}

.single-prising .prising_header {
  background: #E9F4FE;
  padding: 41px 35px 25px;
}

.single-prising ul {
  margin-top: 30px;
  margin-bottom: 30px;
}

.single-prising ul li {
  font-size: 16px;
  line-height: 30px;
  color: #727272;
  margin-bottom: 30px;
}

.single-prising .prising_header.pink_header {
  background: #FEF4EE;
  position: relative;
}

.single-prising .prising_header.pink_header:before{
  content: "Popular";
  position: absolute;
  color: #fff;
  bottom: 0;
  left: 50%;
  padding: 3px 12px;
  border-radius: 50px;
  transform: translateX(-50%);
  background: #0181f5;
  background: -moz-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: -webkit-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: linear-gradient(to right, #0181f5 0%, #5db2ff 100%);
}

.single-prising .prising_header.green_header {
  background: #E8FCF1;
}

/*--------------------------------------------------------------------
                      11. end package
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
                  12. start contact form css
--------------------------------------------------------------------*/

.contact-form-area{
  padding: 40px;
  border-radius: 10px;
  -webkit-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.10);
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.10);
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 10px 20px;
  color: #222222;
  outline: 0;
  border: 1px solid #ffffff;
  -webkit-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.10);
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  -webkit-transition: all .5s ease-in;
  -moz-transition: all .5s ease-in;
  -ms-transition: all .5s ease-in;
  -o-transition: all .5s ease-in;
  transition: all .5s ease-in;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #fff;
}

.contact-input {
  margin-bottom: 23px;
  height: 60px;
}

.contact-textarea {
  margin-bottom: 14px;
  height: 150px;
}

.contact-btn {
  width: 100%;
  border: 0;
  height: 60px;
  border-radius: 10px;
  color: #ffffff;
  outline: 0;
  background: -webkit-linear-gradient(to right, #00F298 0%, #07F7F7 100%);
  background: -moz-linear-gradient(to right, #00F298 0%, #07F7F7 100%);
  background: linear-gradient(to right, #00F298 0%, #07F7F7 100%);
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.contact-btn:focus{
  outline:none;
}

.contact-btn i {
  padding-right: 7px;
}

.alert {
  background-color: #ffffff;
  border-color: #ffffff;
  margin-bottom: 0;
  border-radius: 10px;
  margin-top: 23px;
  padding: 16px 20px;
  color: #777777;
  -webkit-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.10);
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.10);
}

#contact .close {
  font-size: 43px;
  color: #fff;
  opacity: 1;
  text-shadow: none;
  -webkit-transition: all .2s ease-in;
  -moz-transition: all .2s ease-in;
  -ms-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  transition: all .2s ease-in;
}

#contact .close:hover{
  color: red;
}

.modal-title{
  color: #fff;
}
.modal-header{
  padding-bottom: 3px;
  border-bottom: none;
}

#contact .modal-content {
  padding: 17px 25px 25px;
  border: none;
  border-radius: 10px;
  background: #0181f5;
  background: -moz-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: -webkit-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: linear-gradient(to right, #0181f5 0%, #5db2ff 100%);
}

#contact .close:focus {
    outline: none;
}

/*--------------------------------------------------------------------
                   12. end contact form css
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
                      13. start contact-corner-btn
--------------------------------------------------------------------*/

.contact-corner-btn{
  width: 47px;
  height: 47px;
  top: 50%;
  right: 0;
  position: fixed;
  z-index: 1025;
  transform: translateY(-50%);
  color: #fff;
  font-size: 23px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  background: #fdae5c;
  background: -moz-linear-gradient(left, #fdae5c 0%, #fd8e5e 100%);
  background: -webkit-linear-gradient(left, #fdae5c 0%, #fd8e5e 100%);
  background: linear-gradient(to right, #fdae5c 0%, #fd8e5e 100%);
  text-align: center;
  line-height: 47px;
}

.contact-corner-btn:hover{
  color: #fff;
}

/*--------------------------------------------------------------------
                      13. end contact-corner-btn
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
                      14. start footer css
--------------------------------------------------------------------*/

#footer{
  background: #000000;
  padding-top: 80px;
  color: #f5f5f5;
  position: relative;
}

#footer:before {
  position: absolute;
  content: "";
  height: 540px;
  width: 690px;
  right: 10%;
  bottom: 0;
  background: -moz-linear-gradient(left, #e8eefc 0%, #e6fafe 100%);
  background: -webkit-linear-gradient(left, #e8eefc 0%, #e6fafe 100%);
  background: linear-gradient(to right, #e8eefc 0%, #e6fafe 100%);
  border-radius: 50% 50% 0% 50%;
}

#footer:after {
  position: absolute;
  content: "";
  height: 540px;
  width: 663px;
  right: 10%;
  bottom: 0;
  background: #0181f5;
  background: -moz-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: -webkit-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: linear-gradient(to right, #0181f5 0%, #5db2ff 100%);
  border-radius: 50% 50% 0% 50%;
}

.footer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.footer-download{
  margin-left: -12px;
}

.footer-download a{
  margin-left: 12px;
  margin-bottom: 12px;
}

.footer-social{
  margin-left: -7px;
  margin-top: 25px;
}

.footer-social li{
  display: inline-block;
  margin-left: 7px;
}

.footer-social li a{
  width: 40px;
  height: 40px;
  background: #222222;
  display: table;
  text-align: center;
  color:#f5f5f5;
  border-radius: 4px;
  font-size: 17px;
  -webkit-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -ms-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

.footer-social li a:hover{
  color:#ffffff;
}

.footer-social li:nth-child(1) a:hover{
  background: #0181f5;
  background: -moz-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: -webkit-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: linear-gradient(to right, #0181f5 0%, #5db2ff 100%);
}

.footer-social li:nth-child(2) a:hover{
  background: #fdae5c;
  background: -moz-linear-gradient(left, #fdae5c 0%, #fd8e5e 100%);
  background: -webkit-linear-gradient(left, #fdae5c 0%, #fd8e5e 100%);
  background: linear-gradient(to right, #fdae5c 0%, #fd8e5e 100%);
}

.footer-social li:nth-child(3) a:hover{
  background: -webkit-linear-gradient(to right, #00F298 0%, #07F7F7 100%);
  background: -moz-linear-gradient(to right, #00F298 0%, #07F7F7 100%);
  background: linear-gradient(to right, #00F298 0%, #07F7F7 100%);
}

.footer-social li:nth-child(4) a:hover{
  background: -webkit-linear-gradient(to right, #303395 0%, #27F0F0 100%);
  background: -moz-linear-gradient(to right, #303395 0%, #27F0F0 100%);
  background: linear-gradient(to right, #303395 0%, #27F0F0 100%);
}

.footer-social li:nth-child(5) a:hover{
  background: -webkit-linear-gradient(left, #ED4443 0%, #EABC85 100%);
  background: -moz-linear-gradient(left, #ED4443 0%, #EABC85 100%);
  background: linear-gradient(to right, #ED4443 0%, #EABC85 100%);
}

.footer-social li a i{
  display: table-cell;
  vertical-align: middle;
}

.copyright {
  padding: 30px 0;
  border-top: 1px solid #111111;
}

/* subscribe */

.c-subscribe-box {
  width: 310px;
  height: 350px;
  margin: 35px auto 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 40px -10px rgba(0, 64, 128, 0.2);
  border-radius: var(--border-radius-outer);
}

.subscribe-content p{
  margin: 27px 0 40px;
}

.c-subscribe-box__wrapper {
  width: calc(100% - var(--border-width));
  height: calc(100% - var(--border-width));
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 1.2rem 1rem 1.8rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  background: #319bfa;
}

.c-subscribe-box__form {
  margin-top: auto;
}

.c-form--accent input:hover, 
.c-form--accent input:active, 
.c-form--accent input:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px #fff;
}

.c-form--accent [type=submit] {
  border-color: var(--color-third);
  color: #fff;
  padding: 10px 20px;
  width: 100%;
  text-align: center;
  border-radius: 4px;
  margin-top: 18px;
  text-transform: uppercase;
  outline: none;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background: #319bfa;
  background: -moz-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: -webkit-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  background: linear-gradient(to right, #0181f5 0%, #5db2ff 100%);
  border-radius: var(--border-radius-inner);
}

.subscribe-input {
  outline: none;
  border: 1px solid #dedede;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  padding: 10px 20px;
  text-align: center;
  border-radius: 4px;
  width: 100%;
}

.c-subscribe-box__wrapper h3{
  font-weight: 500;
  margin-top: 11px;
}

.c-subscribe-box__wrapper p{
  color: #fff;
  margin-top: 5px;
}


label {
    margin: 10px 0 0;
}

:root {
  --color-first: #65587f;
  --color-second: #f18867;
  --color-third: #e85f99;
  --color-forth: #50bda1;
  --block-width: 300px;
  --block-height: 270px;
  --border-width: .625rem;
  --border-radius-outer: 8px;
  --border-radius-inner: calc(var(--border-radius-outer) / 2);
  --font-plain: 'IBM Plex Sans', sans-serif;
  --font-special: 'Fredoka One', sans-serif;
  box-sizing: border-box;
  line-height: 1.4;
}

.rainbow span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.rainbow span:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 100%;
}

.rainbow span:first-child {
  background: #e3e131;
}

.rainbow span:first-child:after {
  background: #fdae5c;
  background: -moz-linear-gradient(left, #fdae5c 0%, #fd8e5e 100%);
  background: -webkit-linear-gradient(left, #fdae5c 0%, #fd8e5e 100%);
  background: linear-gradient(to right, #fdae5c 0%, #fd8e5e 100%);
}

.rainbow span:last-child {
  background: var(--color-third);
}

.rainbow span:last-child:after {
  background: #37ef8d;
  background: -moz-linear-gradient(left, #37ef8d 0%, #37ef8d 100%);
  background: -webkit-linear-gradient(left, #37ef8d 0%, #37ef8d 100%);
  background: linear-gradient(to right, #37ef8d 0%, #37ef8d 100%);
}

.rainbow {
  width: 100%;
  height: 100%;
  -webkit-animation: o-rotate-360 linear 8s infinite;
  animation: o-rotate-360 linear 8s infinite;
}

@-webkit-keyframes o-rotate-360 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

}

@keyframes o-rotate-360 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

}

/*--------------------------------------------------------------------
                         14. end footer css
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
                       15. start scroll down
--------------------------------------------------------------------*/

#scroll-down a {
  position: absolute;
  bottom: 240px;
  left: 50%;
  z-index: 2;
}

#scroll-down a span {
  position: absolute;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb05 1.5s infinite;
  animation: sdb05 1.5s infinite;
}

@-webkit-keyframes sdb05 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
    opacity: 0;
  }

}

@keyframes sdb05 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
    
  50% {
    opacity: 1;
  }

  100% {
    transform: rotate(-45deg) translate(-10px, 10px);
    opacity: 0;
  }

}

/*--------------------------------------------------------------------
                        15. end scroll-down 
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
                      16. start scroll top css 
--------------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  bottom: 63px;
  right: 63px;
  z-index:  333;
  display: none;
}

.scroll-top span {
  position: absolute;
  width: 24px;
  height: 24px;
  margin-right: -12px;
  border-right: 2px solid #00f298;
  border-top: 2px solid #00f298;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sbb05 1.5s infinite;
  animation: sbb05 1.5s infinite;
}

@-webkit-keyframes sbb05 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: rotate(-45deg) translate(10px, -10px);
    opacity: 0;
  }

}

@keyframes sbb05 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: rotate(-45deg) translate(10px, -10px);
    opacity: 0;
  }

}

/*--------------------------------------------------------------------
                      16. end scroll top css
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
                       17. start preloader 
--------------------------------------------------------------------*/

.loader-overlay {
  background-color: rgba(255, 255, 255, 1);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  -webkit-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out;
}

.preloader {
  background: #0BC560;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: ffffff9;
}

.preloader-inner-area {
  height: 100%;
  position: relative;
  width: 100%;
}

.l-preloader {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.c-preloader {
  width: 60px;
  height: 60px;
  position: relative;
}

.c-preloader::before {
  content: '';
  width: 60px;
  height: 60px;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  background-color: #0BC560;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  animation-name: preloading;
  animation-duration: 1.2s;
  animation-delay: 0s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.c-preloader::after {
  content: '';
  width: 60px;
  height: 60px;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  background-color: #0BC560;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  animation-name: preloading;
  animation-duration: 1.2s;
  animation-delay: -0.6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes preloading {
  0% {
      opacity: 1;
      transform: scale(0);
  }

  100% {
      opacity: 0;
      transform: scale(1);
  }

}

/*--------------------------------------------------------------------
                        17. end preloader
--------------------------------------------------------------------*/

/*--------------------------------------------------------------------
                      18. start responsive css
--------------------------------------------------------------------*/

@media (max-width: 1680px) {
  
  #footer .col-md-8,
  #footer .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  } 

}

@media (max-width: 1440px) {

  #footer:before{
   width: 640px;
   right: 5%;
  }
  
  #footer:after{
    right: 5%;
    width: 620px;
  }

}

@media (max-width:1199px) {

  h1,
  h2 {
    font-size: 45px;
    line-height: 56px;
  }

  .copyright{
    padding-top: 0;
    border-top: none;
  }

  #footer:before,
  #footer:after,
  .subscribe-content p br{
    display: none;
  }

  .c-subscribe-box {
      margin-top: 25px;
  }

}

@media (min-width:992px) and (max-width:1199px){

  .blog-grid-description {
    margin: -20px 10px 0;
  }

  .blog-grid-description:hover{
    margin: -25px 10px 0;
  }

}

@media (max-width: 991px){

  .copyright{
    padding-top: 30px;
  }

  h1,
  h2 {
    font-size: 40px;
    line-height: 54px;
  }

  h3 {
    font-size: 23px;
  }

  .home_text br{
    display: none;
  }

  .part-3{
    margin-top: 47px;
  }

  .navbar{
    padding: 20px 15px;
  }

  .navbar .container{
    padding-left: 15px;
    padding-right: 15px;
  }

  #video .sub-title br,
  #prising-area .sub-title br{
    display: none;
  }


  .blog-grid-description:hover{
      margin-top: 0;
  }

  .color-set.navbar{
    padding: 10px 15px;
  }

  .show{
    background: #fff;
    margin-top: 20px;
  }

  .contact-corner-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;
  }

  .show .navbar-nav .nav-link{
    color: #0181F5;
  }

  .navbar-nav .nav-item,
  .color-set .navbar-nav .nav-item {
    padding: 12px;
  }

  .navbar .navbar-nav .nav-link.active, 
  .navbar .navbar-nav .nav-link:hover {
    color: #fff;
    background: #0181f5;
    background: -moz-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
    background: -webkit-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
    background: linear-gradient(to right, #0181f5 0%, #5db2ff 100%);
  }

  .phone_thumb {
    top: 63px;
  }

  .home_text p {
    font-size: 16px;
    line-height: 28px;
  }

  .phone_thumb img{
    max-width: 100%;
  }

}

@media (min-width: 768px) and (max-width: 991px){

  .icon-1, 
  .icon-2, 
  .icon-3 {
    left: 0px;
  }

  .single-prising .prising_header.pink_header:before{
    padding: 1px 12px;
  }
 
  .icon-4 {
    right: 12px;
  }
 
  .icon-5{
    right: 17px;
  }

  .explain-img-con {
    text-align: left;
  }

  #blog-grid .col-md-4{
    flex: 0 0 50%;
    max-width: 50%;
  }

  #blog-grid .col-md-4:nth-child(3){
    margin-left: 25%;
  }

  #home {
    height: 630px;
  }

  #features .container{
    max-width: 97%;
  }

  #features {
    padding: 90px 0;
  }

  .single-feature {
    padding: 25px 12px 35px;
    margin: 15px 0;
  }

  .about-content .col-md-4{
    flex: 0 0 50%;
    max-width: 50%;
  }

  .about-content .col-md-4:nth-child(3){
    margin-left: 25%;
  }

  .home_text p {
    margin-bottom: 40px;
    margin-top: 27px;
  }

}

@media (max-width: 767px){

  #prising-area {
    padding-bottom: 0;
  }

  #about .title h2{
    margin-bottom: 8px;
  }

  .phone_thumb{
    text-align: center;
  }

  .scroll-down{
    display: none;
  }

  #explain {
    padding: 83px 0 100px;
  }

  #video{
    padding-top: 22px;
  }

  .sub-title br{
    display: none;
  }

  #footer .col-md-8,
  #footer .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .c-subscribe-box {
    margin: 40px 0 7px 0;
  }

  #features .col-md-8:before{
    top: -10px;
    padding-top: 32px;
  }

  #features .col-md-8 {
    background: none;
  }

  .featurs-image{
    text-align: center;
    margin: 40px 0 20px;
  }

  #testimonials{
    padding: 80px 0;
  }

  .single-feature {
      margin: 20px 0;
  }

  .carousel-indicators {
    margin-top: 30px;
  }

  .carousel-item p {
    margin: 40px 0 48px;
  }

  .explain-content{
    margin-bottom: 60px;
  }

  #about .title {
    padding-bottom: 50px;
  }

  .part-2,
  .part-3{
    margin-top: 50px;
  }

  #home {
    height: auto;
    background-size: cover;
  }

  #about {
    margin: 64px 0 70px;
  }

  .home_text {
    padding-top: 120px;
  }

}

@media (max-width: 479px){

  #about br{
    display: none;
  }

  .carousel-item p {
    margin: 30px 0 36px;
  }

  .carousel-indicators {
    margin-top: 25px;
  }

}

@media (max-width: 575px){
  .navbar .container {
    padding-left: 0;
    padding-right: 0;
  }

}

@media (max-width: 360px){

  .c-subscribe-box {
    width: 100%;
  }

}

/*--------------------------------------------------------------------
                      18. end responsive css
--------------------------------------------------------------------*/
