/*================================================
Template name: Softree
Version: 1.0.0
Author: SITLBD       
Author url: https://www.sitlbd.com/  
Developer: Najmul Huda Eimon


[Table of Content]


01: Common CSS

    1.1: padding margin 
    1.2: button design 
    1.3: section title

02: Preloader

03: Top to button

04: Menu

05: Portfolio landing page

    05.1: General CSS
    05.2: Preloader
    05.3: Menubar fixed
    05.4: Scroll top button
    05.5: Menu 
    05.6: Banner
    05.7: Service
    05.8: Count
    05.9: Work
    05.10: About
    05.11: Portfolio
    05.12: Team
    05.13: Pricing
    05.14: Client
    05.15: Blog
    05.16: Contact
    05.17: Brand
    05.18: Newsletter
    05.19: Footer
    05.20: Top-footer
    05.21: Bottom-footer

06: Crypto currency home page

    06.1: General CSS
    06.2: Preloader
    06.3: Scroll top button
    06.4: Menubar fixed
    06.5: Menu 
    06.6: Banner 
    06.7: About 
    06.8: System 
    06.9: Feature 
    06.10: Signup 
    06.11: Team 
    06.12: Faq 
    06.13: App
    06.14: Newsletter
    06.15: Client
    06.16: Fun
    06.17: Blog
    06.18: Network
    06.19: Brand
    06.20: Contact
    06.21: Top Footer
    06.22: Bottom Footer

07: Web Hosting home page

    07.1: General CSS
    07.3: Menubar fixed
    07.4: Menu 
    07.5: Banner
    07.6: Feature
    07.7: Domain
    07.8: Service
    07.9: Get-start
    07.10: Pricing
    07.11: About
    07.12: Newsletter
    07.13: Client
    07.14: Blog
    07.15: Contact
    07.16: World
    07.17: Footer
    07.18: Top-footer
    07.19: Bottom-footer

08: VPN landing page

    08.1: General CSS
    08.2: Preloader
    08.3: Scroll top button
    08.4: Menubar fixed
    08.5: Menu 
    08.6: Banner
    08.7: Service
    08.8: Device
    08.9: Download
    08.10: Feature
    08.11: App
    08.12: Pricing
    08.13: FAQ
    08.14: World
    08.15: Blog
    08.16: Notification
    08.17: Footer
    08.18: Top-footer
    08.19: Bottom-footer

09: Blog page

    09.1: Preloader
    09.2: Menubar fixed
    09.3: Scroll top button
    09.4: Menu 
    09.5: Banner 
    09.6: Content 
    09.7: Footer
    09.8: Top-footer
    09.9: Bottom-footer

10: Single blog page

    10.1: Single blog page Blog-item
    10.2: Single blog page Comment

11: Contact page

    11.1: Contact page content
    11.2: Contact page Map


==========================================================*/

/*===========================================================
01: Common CSS
=============================================================*/
body {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
  position: relative;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
ol {
  margin: 0;
  padding: 0;
}
ul li,
ol li {
  list-style: none;
}

a {
  text-decoration: none;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
a:hover,
a:focus {
  text-decoration: none;
  outline: 0;
}
button {
  outline: none;
  border: 0;
  cursor: pointer;
  background: transparent;
}
button:focus {
  outline: none;
}
.clearfix {
  clear: both;
  display: block;
}

/* 1.1: padding margin */

.bg-blue {
  background: #f7fafe;
}
.p-120 {
  padding: 120px 0;
}
.pb-120 {
  padding-bottom: 120px;
}
.pt-120 {
  padding-top: 120px;
}
.mb-95 {
  margin-bottom: 95px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-30 {
  margin-bottom: 30px;
}

/* 1.2: button design */

.btn-design {
  line-height: 58px;
  border: 1px solid #538de4;
  padding: 0 50px;
  text-transform: capitalize;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  background: #538de4;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  -webkit-transform: perspective(1px) translateZ(0);
  -moz-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  -o-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
}
.btn-design:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  outline: none;
  background: #fff;
  border-radius: 5px;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  -ms-transform-origin: 50%;
  -o-transform-origin: 50%;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  -ms-transform-origin: 50%;
  -o-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  -moz-transition-property: transform;
  -ms-transition-property: transform;
  -o-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn-design:focus {
  outline: none;
}
.btn-design:hover {
  color: #538de4;
  z-index: 1;
}
.btn-design:hover:before {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}

/* 1.3: section title */

.title {
  margin-top: -7px;
  margin-bottom: 56px;
}
.title span {
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
}
.title h2 {
  font-size: 45px;
  line-height: 62px;
  font-weight: 600;
  padding-bottom: 22px;
}

p {
  color: #757575;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

/*===================================================
02: Preloader
=====================================================*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/*===================================================
03: Top to button
=====================================================*/
.top-btn {
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 16px;
  text-align: center;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 99;
  outline: none;
  display: none;
  border: 1px solid transparent;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  cursor: pointer;
}
.top-btn i {
  font-size: 20px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.top-btn:focus {
  outline: none;
}
/*===================================================
04: Menu
=====================================================*/
.header-menu {
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

/*===================================================
05: Portfolio landing light version
=====================================================*/

/*===================================================
05.1: Portfolio landing General CSS
=====================================================*/

.personal .title span {
  color: #538de4;
}
.personal .title h2 {
  color: #031026;
}
/*===================================================
05.2: Portfolio landing Preloader
=====================================================*/
.personal .preloader {
  background: #fff url(../images/portfolio/preloader.gif) no-repeat center
    center;
}
/*===================================================
05.3: Portfolio landing Menubar fixed
=====================================================*/
.personal .menubar.fixed {
  padding-top: 5px;
  padding-bottom: 5px;
  background: #031026;
}
/*===================================================
05.4: Portfolio landing Scroll top button
=====================================================*/
.personal .top-btn {
  background: #538de4;
  color: #fff;
  border-color: #fff;
}
.personal .top-btn i {
  color: #fff;
}
.personal .top-btn:hover {
  background: #fff;
  border-color: #538de4;
}
.personal .top-btn:hover i {
  color: #538de4;
}

/*===================================================
05.5: Portfolio landing Menu 
=====================================================*/
.personal .menubar {
  width: 100%;
  padding: 30px 175px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

/*=====================================================
05.6: Portfolio landing Banner
=======================================================*/
.personal .banner {
  background: url(../images/portfolio/banner.jpg) no-repeat center;
  background-size: cover;
}
.personal .banner .overlay {
  background: hsla(0, 0%, 0%, 0.6);
  padding: 270px 0;
  position: relative;
}

.personal .banner .overlay:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: url(../images/portfolio/banner-overlay.png) no-repeat center;
  background-position: 0 132px;
  opacity: 0.5;
}
.personal .banner .banner-text {
  position: relative;
  z-index: 99;
}
.personal .banner .banner-text h1 {
  font-size: 70px;
  line-height: 85px;
  font-weight: 600;
  color: #fff;
  padding: 0 40px;
}
.personal .banner .banner-text p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #e5e5e5;
  padding: 25px 200px 60px 200px;
}
.personal .banner .banner-text ul li {
  display: inline-block;
  margin-right: 36px;
}
.personal .banner .banner-text ul li:last-child {
  margin: 0;
}
.personal .banner .banner-text ul li a {
  color: #538de4;
  background: #fff;
  display: inline-block;
  border-color: transparent;
}
.personal .banner .banner-text ul li a:hover {
  color: #fff;
}
.personal .banner .banner-text ul li .vid-btn i {
  height: 40px;
  width: 42px;
  line-height: 42px;
  background: #538de4;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  margin-left: 30px;
}
.personal .banner .banner-text ul li .btn-design:before {
  background: #538de4;
}
.personal .banner .banner-text ul li .vid-btn {
  padding-right: 9px;
}
.personal .banner .banner-text ul li .vid-btn:hover i {
  background: #fff;
  color: #538de4;
}
.personal .banner .banner-text ul li .btn-bg {
  background: #538de4;
  color: #fff;
}
.personal .banner .banner-text ul li .btn-bg:before {
  background: #fff;
}
.personal .banner .banner-text ul li .btn-bg:hover {
  color: #538de4;
}
.personal .banner .shapes .shape {
  position: absolute;
  -webkit-animation-duration: 4s;
  -moz-animation-duration: 4s;
  -ms-animation-duration: 4s;
  -o-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}
.personal .banner .shapes .shape1 {
  bottom: 60px;
  right: 0;
  -webkit-animation-name: spinn;
  -moz-animation-name: spinn;
  -ms-animation-name: spinn;
  -o-animation-name: spinn;
  animation-name: spinn;
}
.personal .banner .shapes .shape2 {
  bottom: 60px;
  left: 0;
  -webkit-animation-name: spinnx;
  -moz-animation-name: spinnx;
  -ms-animation-name: spinnx;
  -o-animation-name: spinnx;
  animation-name: spinnx;
}
.personal .banner .shapes .shape3 {
  top: -100px;
  left: 0;
  -webkit-animation-name: spinn;
  -moz-animation-name: spinn;
  -ms-animation-name: spinn;
  -o-animation-name: spinn;
  animation-name: spinn;
}
@keyframes spinn {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinnx {
  100% {
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
/*============================================================
05.7: Portfolio landing Service
==============================================================*/

.personal .service .item-main {
  position: relative;
  z-index: 1;
}
.personal .service .item {
  border: 1px solid #538de4;
  padding: 65px 20px 50px 20px;
}
.personal .service .item:before {
  position: absolute;
  content: "";
  height: 5px;
  width: 100%;
  background: #538de4;
  bottom: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.personal .service .item:hover:before {
  height: 100%;
}
.personal .service .item .icon {
  height: 95px;
  width: 95px;
  line-height: 95px;
  text-align: center;
  margin: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px hsla(0, 0%, 0%, 0.13);
  position: relative;
  z-index: 1;
}
.personal .service .item .shape svg path,
.personal .service .item .shape svg circle,
.personal .service .item .icon svg path {
  fill: #538de4;
}
.personal .service .item h3 {
  color: #031026;
  font-size: 30px;
  line-height: 42px;
  font-weight: 600;
  text-transform: capitalize;
  padding-top: 35px;
  padding-bottom: 30px;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.personal .service .item p {
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.personal .service .item:hover h3,
.personal .service .item:hover p {
  color: #fff;
}
.personal .service .item .shape {
  position: absolute;
  top: 38px;
  right: 100px;
  z-index: 0;
}
.personal .service .item:hover .shape .svg path,
.personal .service .item:hover .shape .svg circle {
  fill: #fff;
}
/*============================================================
05.8: Portfolio landing Count
==============================================================*/
.personal .count {
  background: url(../images/portfolio/counter.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
}
.personal .count .overlay {
  background: hsla(0, 0%, 0%, 0.6);
}
.personal .count .item {
  border-radius: 5px;
  border: 1px solid #538de4;
  padding: 25px;
}
.personal .count .item .icon {
  height: 115px;
  width: 115px;
  line-height: 115px;
  background: #538de4;
  text-align: center;
  border-radius: 5px;
  margin-right: 30px;
}
.personal .count .item h3 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
}
.personal .count .item p {
  font-size: 16px;
  line-height: 32px;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
}
/*============================================================
05.9: Portfolio landing Work
==============================================================*/

.personal .work .item-main {
  position: relative;
  z-index: 1;
}
.personal .work .mb-30 {
  margin-bottom: 30px;
}
.personal .work .item {
  border: 1px solid #538de4;
  padding: 40px;
  padding-right: 35px;
  border-radius: 5px;
  overflow: hidden;
}
.personal .work .item:before {
  position: absolute;
  content: "";
  height: 5px;
  width: 100%;
  background: #538de4;
  border-radius: 5px;
  bottom: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.personal .work .item:hover:before {
  height: 100%;
}
.personal .work .item h3 {
  color: #031026;
  font-size: 30px;
  line-height: 42px;
  font-weight: 600;
  text-transform: capitalize;
  padding-bottom: 30px;
}

.personal .work .item:hover h3,
.personal .work .item:hover p {
  color: #fff;
}
/*============================================================
05.10: Portfolio landing About
==============================================================*/
.personal .about {
  background: url(../images/portfolio/about-bg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}
.personal .about .overlay {
  background: hsla(0, 0%, 0%, 0.7);
}

.personal .about .title {
  margin-bottom: 30px;
}
.personal .about h2 {
  color: #fff;
  padding-bottom: 0;
}
.personal .about ul {
  padding-left: 20px;
  padding-bottom: 50px;
}
.personal .about ul li {
  list-style: initial;
  font-size: 16px;
  line-height: 45px;
  font-weight: 400;
  color: #fff;
}
.personal .about a {
  padding-right: 20px;
}
.personal .about a .svg {
  margin-left: 30px;
}
.personal .about a:hover .svg path {
  stroke: #538de4;
}

.personal .about .vid-icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.personal .about .vid-icon i {
  height: 85px;
  width: 85px;
  line-height: 85px;
  text-align: center;
  background: hsla(216, 73%, 61%, 0.6);
  border-radius: 50%;
  font-size: 30px;
  color: #fff;
}

.personal .about .vid-icon i:after {
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 20px;
  border-radius: 50%;
  box-shadow: 0 0 rgba(60, 111, 247, 0.2), 0 0 0 15px rgba(60, 111, 247, 0.2),
    0 0 0 30px rgba(60, 111, 247, 0.2);
  animation: ripple-wave 1s linear infinite;
  animation-play-state: running;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

@keyframes ripple-wave {
  to {
    box-shadow: 0 0 0 15px rgba(60, 111, 247, 0.2),
      0 0 0 30px rgba(60, 111, 247, 0.2), 0 0 0 45px rgba(60, 111, 247, 0);
  }
}

/*============================================================
05.11: Portfolio landing Portfolio
==============================================================*/

.personal .portfolio ul {
  justify-content: center;
  margin-bottom: 60px;
}
.personal .portfolio ul li {
  display: inline-block;
  padding: 0 13px;
}
.personal .portfolio ul li a {
  line-height: 40px;
  text-transform: capitalize;
  padding: 0 30px;
  font-size: 14px;
  color: #538de4;
  font-weight: 400;
  border: 1px solid #538de4;
  border-radius: 5px;
  display: inline-block;
}
.personal .portfolio ul li.active a,
.personal .portfolio ul li:hover a {
  background: #538de4;
  color: #fff;
}
.personal .portfolio .mt-30 {
  margin-top: 30px;
}
.personal .portfolio .item {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.personal .portfolio .item img {
  width: 100%;
}
.personal .portfolio .item .overlay {
  height: 100%;
  width: 100%;
  background: hsla(0, 0%, 0%, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  padding: 40px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.personal .portfolio .item:hover .overlay {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.personal .portfolio .item .overlay h3 {
  font-size: 30px;
  line-height: 46px;
  color: #fff;
  font-weight: 600;
  padding-bottom: 5px;
  text-transform: capitalize;
}
.personal .portfolio .item .overlay p {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
  text-transform: capitalize;
}
.personal .portfolio .item .overlay p span {
  font-weight: 500;
}
.personal .portfolio .item .overlay a {
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 5px;
  display: inline-block;
  background: #fff;
  position: absolute;
  bottom: 40px;
  left: 40px;
}
.personal .portfolio .item .overlay a svg line {
  stroke: #538de4;
}
/*============================================================
05.12: Portfolio landing Team
==============================================================*/

.personal .team .item {
  padding: 20px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #538de4;
  position: relative;
}
.personal .team .item:after {
  position: absolute;
  left: 20px;
  bottom: 20px;
  content: "";
  height: 300px;
  width: 300px;
  background: #538de4;
  border-radius: 50%;
  z-index: 0;
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.personal .team .item:hover:after {
  height: 100%;
  width: 100%;
  border-radius: 0;
  left: 0;
  bottom: 0;
}
.personal .team .item .image {
  position: relative;
  z-index: 2;
}
.personal .team .item .text {
  width: 87%;
  height: auto;
  padding-top: 20px;
  padding-bottom: 30px;
  text-align: center;
  background: #fff;
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 4;
}
.personal .team .item .text h3 {
  font-size: 24px;
  line-height: 35px;
  font-weight: 600;
  text-transform: capitalize;
  color: #031026;
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.personal .team .item:hover .text h3 {
  color: #538de4;
}
.personal .team .item .text span {
  display: inline-block;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  text-transform: capitalize;
  color: #999;
}
.personal .team .item .text ul {
  padding-top: 25px;
}
.personal .team .item .text ul li {
  display: inline-block;
  padding: 0 7px;
}
.personal .team .item .text ul li a i {
  font-size: 16px;
  color: #538de4;
}
/*============================================================
05.13: Portfolio landing Pricing
==============================================================*/

.personal .pricing .title {
  padding-left: 70px;
  padding-right: 70px;
}
.personal .pricing .item {
  border-radius: 10px;
  border: 1px solid #538de4;
  padding: 40px 40px 60px 40px;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.personal .pricing .item:hover {
  background: #538de4;
  transform: scale(1.05);
}
.personal .pricing .item .icon {
  height: 178px;
  width: 178px;
  line-height: 178px;
  text-align: center;
  border-radius: 50%;
  background: #538de4;
  margin: auto;
}
.personal .pricing .item .icon svg path {
  fill: #fff;
}
.personal .pricing .item h3 {
  font-size: 24px;
  line-height: 34px;
  color: #031026;
  text-transform: capitalize;
  font-weight: 600;
  padding-top: 40px;
  padding-bottom: 25px;
}
.personal .pricing .item p {
  font-size: 16px;
  line-height: 30px;
  color: #757575;
  font-weight: 400;
  padding-bottom: 50px;
}
.personal .pricing .item:hover .icon {
  background: #fff;
}
.personal .pricing .item:hover .icon .svg path {
  fill: #538de4;
}
.personal .pricing .item:hover h3,
.personal .pricing .item:hover p {
  color: #fff;
}
.personal .pricing .item:hover a {
  background: #fff;
  color: #538de4;
}
/*============================================================
05.14: Portfolio landing Client
==============================================================*/

.personal .client .title {
  padding-left: 40px;
  padding-right: 40px;
}
.personal .client .quote {
  padding-bottom: 35px;
}
.personal .client .personal-client-slide .item p {
  padding-bottom: 45px;
}
.personal .client .personal-client-slide .item h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: #333;
  text-transform: capitalize;
}
.personal .client .personal-client-slide .item span {
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
  color: #999;
  text-transform: capitalize;
}
.personal .client .personal-client-slide .item .rating ul li {
  display: inline-block;
  padding-right: 11px;
}
.personal .client .personal-client-slide .item .rating ul li svg path {
  fill: #538de4;
}
.personal .client .personal-client-slide .item .rating ul li:last-child {
  padding-right: 0;
}
.personal
  .client
  .personal-client-slide
  .item
  .rating
  ul
  li:last-child
  .svg
  path {
  fill: #c8c8c8;
}
.personal .client .button-prev,
.personal .client .button-next {
  border-radius: 5px;
  border: 1px solid #538de4;
  line-height: 40px;
  text-align: center;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  margin-top: 70px;
}
.personal .client .button-prev {
  padding: 0 12px;
  margin-right: 20px;
}
.personal .client .button-prev svg path,
.personal .client .button-prev svg line {
  stroke: #538de4;
}
.personal .client .button-prev:hover {
  background: #538de4;
}
.personal .client .button-prev:hover .svg path,
.personal .client .button-prev:hover .svg line {
  stroke: #fff;
}
.personal .client .button-next {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  background: #538de4;
  color: #fff;
  padding: 0 35px;
}
.personal .client .button-next:hover {
  color: #538de4;
  background: transparent;
}
/*============================================================
05.15: Portfolio landing Blog
==============================================================*/

.personal .blog .item .blog-bottom {
  background: #fff;
  padding: 30px 18px;
}
.personal .blog .item .blog-img {
  overflow: hidden;
}
.personal .blog .item .blog-img img {
  width: 100%;
  transform: scale(1) rotate(0deg);
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.personal .blog .item:hover .blog-img img {
  transform: scale(1.2) rotate(3deg);
}
.personal .blog .item h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #031026;
  padding-bottom: 10px;
}
.personal .blog .item p {
  padding-bottom: 10px;
}

.personal .blog .item a {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #031026;
  text-transform: capitalize;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.personal .blog .item a:hover {
  color: #538de4;
}
.personal .blog .item a i {
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 20px;
  background: #538de4;
  color: #fff;
  font-size: 16px;
  margin-left: 5px;
}

/*==============================================================
05.16: Portfolio landing Contact
================================================================*/
.personal .contact {
  padding: 120px 0;
}
.personal .contact .contact-bg {
  background: #fff;
  border: 1px solid #538de4;
  border-radius: 5px;
  overflow: hidden;
}
.personal .contact .text {
  height: 100%;
  background: #538de4;
  padding: 100px 100px 0 50px;
}
.personal .contact .text h3 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
}
.personal .contact .text h4 {
  font-size: 24px;
  line-height: 40px;
  font-weight: 500;
  color: #fff;
  padding: 30px 0;
}
.personal .contact .text p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #fff;
}
.personal .contact form {
  padding-right: 40px;
  padding-top: 40px;
}
.personal .contact form .input-field {
  height: 50px;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ccc;
  padding: 0 15px;
  outline: none;
  margin-bottom: 30px;
}
.personal .contact form .input-field:focus {
  outline: none;
}
.personal .contact form .input-field::placeholder,
.personal .contact form p {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  color: #777;
}
.personal .contact form textarea.input-field {
  height: 100px;
  padding-top: 15px;
  resize: none;
}
.personal .contact form button {
  margin-top: 75px;
  margin-bottom: 40px;
}
/*==============================================================
05.17: Portfolio landing Brand
================================================================*/
.personal .brand {
  padding-bottom: 120px;
}
.personal .brand .mb-45 {
  margin-bottom: 45px;
}
.personal .brand .img-main {
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.personal .brand .img-hover {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.personal .brand a:hover .img-main {
  opacity: 0;
}
.personal .brand a:hover .img-hover {
  opacity: 1;
}
/*==============================================================
05.18: Portfolio landing Newsletter
================================================================*/
.personal .news-bg {
  border-radius: 5px;
  padding: 45px 60px;
  background: #fff;
  border: 1px solid hsla(288, 34%, 27%, 0.2);
  position: relative;
  z-index: 9;
}

.personal .newsletter form {
  position: relative;
}
.personal .newsletter .input-field {
  width: 100%;
  height: 80px;
  border-radius: 5px;
  border: 1px solid #d4d4d4;
  box-shadow: 0 8px 15px hsla(0, 0%, 0%, 0.16);
  padding: 0 30px;
  outline: none;
  padding-right: 230px;
}
.personal .newsletter .input-field:focus {
  outline: none;
}
.personal .newsletter button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
}
/*==============================================================
05.19: Portfolio landing Footer
================================================================*/
.personal footer {
  background: #538de4;
}
/*==============================================================
05.20: Portfolio landing Top-footer
================================================================*/
.personal .top-footer {
  padding-top: 240px;
  padding-bottom: 55px;
  margin-top: -175px;
}
.personal .top-footer .social {
  justify-content: center;
}
.personal .top-footer .social li {
  padding: 0 25px;
}
.personal .top-footer .social li a i {
  color: #fff;
  font-size: 20px;
}
/*==============================================================
05.21: Portfolio landing Bottom-footer
================================================================*/
.personal .bottom-footer {
  background: #007aff;
  padding: 30px 0;
}
.personal .bottom-footer p,
.personal .bottom-footer p a,
.personal .bottom-footer ul li a {
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
}
.personal .bottom-footer p a {
  font-weight: 600;
}
.personal .bottom-footer ul {
  justify-content: flex-end;
}
.personal .bottom-footer ul li {
  padding-left: 30px;
}
.personal .bottom-footer ul li:first-child {
  padding-left: 0;
}
.personal .bottom-footer ul li a {
  text-transform: uppercase;
}

/*================================================================
06: Crypto currency home light version
==================================================================*/

/*================================================================
06.1: Crypto currency General CSS
==================================================================*/
.crypto .btn-design {
  border-color: #25bfbf;
  background: #25bfbf;
}

.crypto .btn-design:hover {
  color: #25bfbf;
  z-index: 1;
}

.crypto .title span {
  color: #25bfbf;
}
.crypto .title h2 {
  color: #283a5e;
}
/*=================================================================
06.2: Crypto currency Preloader
===================================================================*/
.crypto .preloader {
  background: #fff url(../images/crypto/preloader.gif) no-repeat center center;
}
/*=================================================================
06.3: Crypto currency Scroll top button
===================================================================*/

.crypto .top-btn {
  background: #fff;
  color: #fff;
  border-color: #22007f;
}
.crypto .top-btn i {
  color: #22007f;
}
.crypto .top-btn:hover {
  background: #22007f;
  border-color: #fff;
}
.crypto .top-btn:hover i {
  color: #fff;
}

/*=====================================================================
06.4: Crypto currency Menubar fixed
=======================================================================*/
.crypto .menubar.fixed {
  position: fixed !important;
  padding-top: 5px;
  padding-bottom: 5px;
  background: #22007f;
  z-index: 999;
  -webkit-box-shadow: 0 4px 5px 0 hsla(0, 0%, 100%, 0.2);
  -moz-box-shadow: 0 4px 5px 0 hsla(0, 0%, 100%, 0.2);
  -ms-box-shadow: 0 4px 5px 0 hsla(0, 0%, 100%, 0.2);
  -o-box-shadow: 0 4px 5px 0 hsla(0, 0%, 100%, 0.2);
  box-shadow: 0 4px 5px 0 hsla(0, 0%, 100%, 0.2);
}

/*=====================================================================
06.5: Crypto currency Menu 
=======================================================================*/
.crypto .menubar {
  width: 100%;
  padding: 30px 150px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

/*======================================================================
06.6: Crypto currency Banner 
========================================================================*/
.crypto .banner {
  padding: 150px;
  padding-top: 240px;
  background: url(../images/crypto/banner-bg.png) no-repeat center;
  background-size: cover;
}

.crypto .banner span {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  line-height: 21px;
  padding-left: 100px;
  position: relative;
  font-weight: 400;
}
.crypto .banner span:before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  height: 1px;
  width: 80px;
  background: #fff;
}
.crypto .banner h1 {
  color: #fff;
  font-size: 60px;
  line-height: 88px;
  font-weight: 600;
  padding: 25px 0;
}
.crypto .banner p {
  color: #fff;
  width: 82%;
}
.crypto .banner ul {
  display: flex;
  padding-top: 60px;
}

.crypto .banner ul li {
  margin-right: 30px;
}
.crypto .banner ul li:last-child {
  margin-right: 0;
}
.crypto .banner ul li:last-child a {
  width: 230px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 400;
  padding: 0 15px;
  border-radius: 5px;
}
.crypto .banner ul li:last-child a .svg {
  margin-right: 15px;
}
.crypto .banner ul li:last-child a:hover {
  background: #25bfbf;
}
.crypto .banner .all-img {
  position: relative;
}
.crypto .banner .coin {
  position: absolute;
  -webkit-animation-name: spin;
  -moz-animation-name: spin;
  -ms-animation-name: spin;
  -o-animation-name: spin;
  animation-name: spin;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}
@keyframes spin {
  0% {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  50% {
    -webkit-transform: rotateY(60deg);
    -moz-transform: rotateY(60deg);
    -ms-transform: rotateY(60deg);
    -o-transform: rotateY(60deg);
    transform: rotateY(60deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
.crypto .banner .coin1 {
  top: 7%;
  right: 46%;
  -webkit-animation-duration: 5000ms;
  -moz-animation-duration: 5000ms;
  -ms-animation-duration: 5000ms;
  -o-animation-duration: 5000ms;
  animation-duration: 5000ms;
}
.crypto .banner .coin2 {
  top: 0%;
  right: 40%;
  -webkit-animation-duration: 4000ms;
  -moz-animation-duration: 4000ms;
  -ms-animation-duration: 4000ms;
  -o-animation-duration: 4000ms;
  animation-duration: 4000ms;
}
.crypto .banner .coin3 {
  top: 3%;
  right: 55%;
  -webkit-animation-duration: 3000ms;
  -moz-animation-duration: 3000ms;
  -ms-animation-duration: 3000ms;
  -o-animation-duration: 3000ms;
  animation-duration: 3000ms;
}

/*======================================================================
06.7: Crypto currency About 
========================================================================*/

.crypto .about .m-75 {
  margin-left: -75px;
  margin-right: 75px;
}
.crypto .about .m-35 {
  margin-left: -35px;
  margin-right: 35px;
}
.crypto .about .item-border {
  position: relative;
  z-index: 1;
}
.crypto .about .item {
  border-radius: 13px;
  background: #1e117f;
  padding: 50px 18px;
  border: 1px solid #25bfbf;
}
.crypto .about .item-border:last-child {
  margin-bottom: 25px;
}
.crypto .about .item:before {
  height: 100%;
  width: 100%;
  border: 1px dashed #999;
  content: "";
  top: 25px;
  right: 25px;
  border-radius: 13px;
  z-index: -1;
  position: absolute;
}
.crypto .about .item .icon {
  height: 110px;
  width: 110px;
  line-height: 110px;
  background: #25bfbf;
  border-radius: 14px;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 44px;
}

.crypto .about .item h3 {
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
  padding-bottom: 17px;
}
.crypto .about .item p {
  color: #fff;
}
.crypto .about .title {
  margin-bottom: 0;
}
.crypto .about .title h2 {
  padding-bottom: 0;
}
.crypto .about .content p {
  padding-top: 30px;
}
.crypto .about .content a {
  margin-top: 40px;
}
/*==========================================================================
06.8: Crypto currency System 
============================================================================*/
.crypto .system {
  background: url(../images/crypto/system-bg.png) no-repeat center;
  background-size: cover;
}
.crypto .system .overlay {
  background: hsla(0, 0%, 0%, 0.6);
}

.crypto .system .title span,
.crypto .system .title h2,
.crypto .system .title p {
  color: #fff;
}
.crypto .system .content {
  background: #1c0068;
  border-radius: 10px;
  padding: 25px 30px 30px 30px;
}
.crypto .system .content .search-area {
  padding-bottom: 25px;
}
.crypto .system .content .search-area h3 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  color: #fff;
  width: 100%;
}
.crypto .system .content .search-area ul li {
  padding: 0 27px;
}
.crypto .system .content .search-area ul li a {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
.crypto .system .content .search-area form {
  position: relative;
  float: right;
  margin-left: 74px;
}
.crypto .system .content .search-area .input-search {
  width: 200px;
  height: 34px;
  border-radius: 3px;
  background: #220055;
  color: #fff;
  border: 0;
  outline: none;
  padding-left: 37px;
  padding-right: 20px;
}
.crypto .system .content .search-area .input-search:focus {
  outline: none;
}
.crypto .system .content .search-area .input-search::placeholder {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  color: #fff;
}
.crypto .system .content .search-area .icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 10px;
}

.crypto .system .content .table td,
.crypto .system .content .table th {
  padding: 20px;
}

.crypto .system .content .table thead tr {
  background: #25bfbf;
}
.crypto .system .content .table thead tr:first-child th:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.crypto .system .content .table thead tr:first-child th:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.crypto .system .content .table thead th button {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #fff;
  text-transform: capitalize;
}
.crypto .system .content .table thead th button .svg {
  margin-left: 25px;
}
.crypto .system .content .table tbody tr {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
}
.crypto .system .content .table tbody tr:last-child {
  border: 0;
}
.crypto .system .content .table tbody th {
  font-size: 18px;
  line-height: 24px;
  color: #fbfbfb;
  font-weight: 400;
  text-transform: capitalize;
}
.crypto .system .content .table tbody th img {
  padding-right: 15px;
}
.crypto .system .content .table tbody td {
  font-size: 16px;
  line-height: 21px;
  color: #fff;
  font-weight: 400;
}
.crypto .system .content .table tbody td span {
  font-size: 12px;
  line-height: 22px;
  display: inline-block;
  background: #25bfbf;
  border-radius: 15px;
  padding-left: 11px;
  padding-right: 22px;
  margin-left: 27px;
}
.crypto .system .content .table tbody td .svg {
  margin-right: 24px;
}

/*==========================================================================
06.9: Crypto currency Feature 
============================================================================*/

.crypto .feature .nav-tabs {
  border: 0;
}
.crypto .feature .nav-tabs .nav-item {
  margin-left: 9px;
  margin-right: 9px;
}
.crypto .feature .nav-tabs .nav-item:first-child {
  margin-left: 0;
}

.crypto .feature .nav-tabs .nav-item:last-child {
  margin-right: 0;
}
.crypto .feature .nav-tabs .nav-link {
  border: 0;
  border: 1px solid #25bfbf;
  border-radius: 3px;
  width: 170px;
  line-height: 80px;
  height: 80px;
  text-align: center;
  color: #283a5e;
  background: #fff;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  padding: 0;
}
.crypto .feature .nav-tabs .nav-link.active {
  background: #22007f;
  color: #fff;
  border-color: #22007f !important;
}
.crypto .feature .nav-tabs .nav-link:focus,
.crypto .feature .nav-tabs .nav-link:hover {
  border-color: #25bfbf;
}
.crypto .feature .nav-tabs .nav-link:after {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  background: #25bfbf;
  left: 50%;
  -webkit-transform: rotate(45deg) translateX(-50%);
  -moz-transform: rotate(45deg) translateX(-50%);
  -ms-transform: rotate(45deg) translateX(-50%);
  -o-transform: rotate(45deg) translateX(-50%);
  transform: rotate(45deg) translateX(-50%);
  bottom: -17px;
}
.crypto .feature .nav-tabs .nav-link.active:after {
  background: #22007f;
}
.crypto .feature .tab-content {
  padding-top: 115px;
}
.crypto .feature .tab-content .tab-pane .feature-img {
  position: relative;
}
.crypto .feature .tab-content .tab-pane .feature-coin {
  position: absolute;
  top: 10%;
  left: 35%;
  -webkit-animation-name: spin;
  -moz-animation-name: spin;
  -ms-animation-name: spin;
  -o-animation-name: spin;
  animation-name: spin;
  -webkit-animation-duration: 4000ms;
  -moz-animation-duration: 4000ms;
  -ms-animation-duration: 4000ms;
  -o-animation-duration: 4000ms;
  animation-duration: 4000ms;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}

@keyframes spin {
  from {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
.crypto .feature .tab-content .tab-pane h3 {
  font-size: 34px;
  line-height: 46px;
  font-weight: 600;
  color: #283a5e;
}
.crypto .feature .tab-content .tab-pane p {
  padding: 25px 0;
}

.crypto .feature .tab-content .tab-pane ul li {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #757575;
}
.crypto .feature .tab-content .tab-pane ul li {
  line-height: 24px;
  padding-bottom: 25px;
  position: relative;
  padding-left: 30px;
}
.crypto .feature .tab-content .tab-pane ul li:last-child {
  padding-bottom: 0;
}
.crypto .feature .tab-content .tab-pane ul li .svg {
  position: absolute;
  top: 2px;
  left: 0;
}
.crypto .feature .tab-content .tab-pane a {
  margin-top: 60px;
}

/*==========================================================================
06.10: Crypto currency Signup 
============================================================================*/
.crypto .signup {
  background: url(../images/crypto/signup-bg.png) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}
.crypto .signup .overlay {
  background: hsla(0, 0%, 0%, 0.6);
}

.crypto .signup h2,
.crypto .signup p {
  color: #fff;
}
.crypto .signup .form {
  background: #fff;
  border-radius: 5px;
  padding: 40px;
}
.crypto .signup .form label {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #858585;
  text-transform: capitalize;
  padding-bottom: 20px;
}
.crypto .signup .form .input-field {
  width: 100%;
  height: 50px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  padding: 0 15px;
  outline: none;
}
.crypto .signup .form .input-field:focus {
  outline: none;
  border-color: #22007f;
}
.crypto .signup .form .input-field::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #ccc;
}
.crypto .signup .form button {
  margin-top: 40px;
}
/*==========================================================================
06.11: Crypto currency Team 
============================================================================*/

.crypto .team .item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #c8c8c8;
}
.crypto .team .item .image {
  width: 100%;
  height: 400px;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  background: #25bfbf;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 9;
}
.crypto .team .item .image img {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  width: 100%;
}
.crypto .team .item .detail {
  margin-top: -166px;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.crypto .team .item:hover .image {
  height: 234px;
}
.crypto .team .item:hover .image img {
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: grayscale(0);
  width: 100%;
}
.crypto .team .item:hover .detail {
  margin-top: 0;
}
.crypto .team .item .detail h3 {
  font-size: 30px;
  padding-top: 28px;
  line-height: 42px;
  font-weight: 500;
  color: #283a5e;
  text-transform: capitalize;
}
.crypto .team .item .detail p {
  padding-top: 5px;
  padding-bottom: 28px;
  text-transform: capitalize;
}
.crypto .team .item .detail ul li {
  padding: 0 11px;
}
.crypto .team .item .detail ul li a {
  height: 36px;
  width: 36px;
  background: #22007f;
  border-radius: 3px;
  line-height: 36px;
  text-align: center;
  display: inline-block;
}
.crypto .team .item .detail ul li a:hover {
  background: #25bfbf;
}
/*============================================================================
06.12: Crypto currency Faq 
==============================================================================*/
.crypto .faq {
  background: url(../images/crypto/faq-bg.png) no-repeat center;
  background-size: cover;
}

.crypto .faq .nav-tabs {
  border: 0;
  justify-content: center;
  margin-bottom: 60px;
}
.crypto .faq .nav-tabs .nav-link {
  border: 0;
  border-radius: 5px;
  background: #fff;
  color: #283a5e;
  font-size: 14px;
  font-weight: 400;
  line-height: 50px;
  margin: 0 10px;
  padding: 0 25px;
  text-transform: capitalize;
}
.crypto .faq .nav-tabs .nav-link:hover {
  border: 0;
}
.crypto .faq .nav-tabs .nav-item.show .nav-link,
.crypto .faq .nav-tabs .nav-link:hover,
.crypto .faq .nav-tabs .nav-link.active {
  background: #25bfbf;
  color: #fff;
  border: 0;
}
.crypto .faq .accordion .card {
  border-radius: 8px;
  background: #fff;
  margin-bottom: 20px;
  border: 0;
}
.crypto .faq .accordion .card:first-of-type,
.crypto .faq .accordion .card:last-of-type {
  border-radius: 8px;
}
.crypto .faq .accordion .card:last-of-type {
  margin-bottom: 0;
}
.crypto .faq .accordion .card:not(:first-of-type):not(:last-of-type) {
  border-radius: 8px;
}
.crypto .faq .accordion .card .card-header {
  padding: 20px 0 20px 30px;
  margin-bottom: 0;
  background-color: transparent;
  border-bottom: 0;
}
.crypto .faq .accordion .card .card-header h2 {
  font-size: 0;
}
.crypto .faq .accordion .card .card-header .btn-link {
  font-weight: 500;
  color: #283a5e;
  font-size: 18px;
  padding: 0;
  text-decoration: none;
  width: 100%;
  text-align: left;
}
.crypto .faq .accordion .card .card-header .btn-link i {
  height: 20px;
  width: 20px;
  line-height: 20px;
  border-radius: 50%;
  border: 1px solid #25bfbf;
  color: #25bfbf;
  font-size: 14px;
  text-align: center;
  margin-right: 30px;
  float: right;
}
.crypto .faq .accordion .card .card-body {
  padding: 0 35px 25px 35px;
}

/*============================================================================
06.13: Crypto currency App
==============================================================================*/

.crypto .app .title {
  margin-bottom: 0;
}
.crypto .app .title h2 {
  padding-bottom: 0;
}
.crypto .app h3 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #777;
  padding-top: 25px;
  padding-bottom: 30px;
}
.crypto .app p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #757575;
  padding-bottom: 60px;
}
.crypto .app ul li {
  margin-right: 30px;
}
.crypto .app ul li:last-child {
  margin-right: 0;
}
.crypto .app ul li a {
  width: 180px;
  height: 60px;
  line-height: 60px;
  border: 1px solid #c9c3c3;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #727272;
  text-transform: capitalize;
}
.crypto .app ul li a .svg {
  margin-right: 15px;
}
/*============================================================================
06.14: Crypto currency Newsletter
==============================================================================*/
.crypto .newsletter {
  background: url(../images/crypto/signup-bg.png) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
}
.crypto .newsletter .overlay {
  background: hsla(0, 0%, 0%, 0.6);
}
.crypto .newsletter h2,
.crypto .newsletter p {
  color: #fff;
}
.crypto .newsletter form {
  position: relative;
  margin-top: 60px;
}
.crypto .newsletter form .input-subscribe {
  width: 100%;
  height: 60px;
  background: #fff;
  border-radius: 5px;
  border: 0;
  padding-left: 52px;
  padding-right: 200px;
  outline: none;
}
.crypto .newsletter form .input-subscribe:focus {
  outline: none;
}
.crypto .newsletter form .input-subscribe::placeholder {
  color: #9e9e9e;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 400;
}
.crypto .newsletter form .env {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 20px;
}
.crypto .newsletter form button {
  height: 60px;
  line-height: 60px;
  width: 200px;
  background: #25bfbf;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  position: absolute;
  top: 0;
  right: 0;
}
.crypto .newsletter form button .svg {
  margin-right: 10px;
}
/*============================================================================
06.15: Crypto currency Client
==============================================================================*/
.crypto .client .title p {
  padding: 0 100px;
}
.crypto .client .overlay {
  background: hsla(0, 0%, 0%, 0.6);
}
.crypto .client .crypto-client-slider .item .text {
  border-radius: 5px;
  background: #fff;
  padding: 30px 25px;
  text-align: left;
}
.crypto .client .crypto-client-slider .swiper-slide-active .text {
  border: 1px solid #200077;
}
.crypto .client .crypto-client-slider .item .text img {
  padding-right: 20px;
}
.crypto .client .crypto-client-slider .item .author {
  margin-top: 100px;
  margin-bottom: 85px;
  position: relative;
}
.crypto .client .crypto-client-slider .item .author .image {
  margin: auto;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  border: 1px solid #dfdfdf;
  padding: 6px;
  margin-bottom: 20px;
}
.crypto .client .crypto-client-slider .item .author .image img {
  border-radius: 50%;
}
.crypto .client .crypto-client-slider .item .author:before {
  position: absolute;
  content: "";
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 26px;
  width: 26px;
  border-radius: 50%;
  background: #25bfbf;
}
.crypto .client .crypto-client-slider .item .author:after {
  position: absolute;
  content: "";
  top: -70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: hsla(256, 100%, 23%, 0.5);
}
.crypto .client .crypto-client-slider .item .author h4 {
  font-size: 18px;
  line-height: 26px;
  color: #283a5e;
  font-weight: 400;
  text-transform: capitalize;
}
.crypto .client .crypto-client-slider .item .author h5 {
  font-size: 14px;
  line-height: 22px;
  color: #777;
  font-weight: 400;
  text-transform: capitalize;
}
.crypto .client .crypto-client-slider .swiper-slide {
  opacity: 0.3;
}
.crypto .client .crypto-client-slider .swiper-slide-active {
  opacity: 1;
}
.crypto .client .crypto-client-slider .button-prev,
.crypto .client .crypto-client-slider .button-next {
  cursor: pointer;
  outline: none;
  position: absolute;
  bottom: 0;
  z-index: 9;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.crypto .client .crypto-client-slider .button-prev {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 50%;
  left: 45%;
}
.crypto .client .crypto-client-slider .button-prev:hover {
  background: #25bfbf;
  border-color: transparent;
}
.crypto .client .crypto-client-slider .button-prev:hover .svg path,
.crypto .client .crypto-client-slider .button-prev:hover .svg line {
  stroke: #fff;
}
.crypto .client .crypto-client-slider .button-next {
  height: 50px;
  width: 120px;
  border: 1px solid transparent;
  line-height: 50px;
  padding-right: 15px;
  padding-left: 54px;
  background: #25bfbf;
  border-radius: 25px;
  right: 45%;
}
.crypto .client .crypto-client-slider .button-next:hover {
  background: transparent;
  border-color: #ddd;
}
.crypto .client .crypto-client-slider .button-next:hover .svg path,
.crypto .client .crypto-client-slider .button-next:hover .svg line {
  stroke: #aeaeae;
}
/*============================================================================
06.16: Crypto currency Fun
==============================================================================*/
.crypto .fun {
  background: url(../images/crypto/counter-bg.png) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}
.crypto .fun .overlay {
  background: hsla(0, 0%, 0%, 0.6);
}
.crypto .fun .item {
  padding-left: 70px;
  position: relative;
}
.crypto .fun .item:after {
  position: absolute;
  content: "";
  top: 0;
  right: -30px;
  width: 1px;
  height: 100%;
  background: #fff;
}
.crypto .fun .item.no-border:after {
  display: none;
}
.crypto .fun .item .shape {
  position: relative;
  z-index: 1;
  width: 60px;
}
.crypto .fun .item .icon {
  height: 60px;
  width: 60px;
  line-height: 60px;
  background: #25bfbf;
  border-radius: 2px;
  text-align: center;
  margin-bottom: 30px;
  margin-left: 10px;
}
.crypto .fun .item .icon:before {
  position: absolute;
  content: "";
  height: 50px;
  width: 50px;
  border: 1px dashed #fff;
  top: 20px;
  left: 0;
  border-radius: 2px;
  z-index: -1;
}
.crypto .fun .item h3 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
  color: #fff;
}
.crypto .fun .item p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding-top: 5px;
}
/*==========================================================================
06.17: Crypto currency Blog
============================================================================*/
.crypto .blog {
  background: url(../images/crypto/faq-bg.png) no-repeat center;
  background-size: cover;
}
.crypto .blog .item {
  background: #fff;
}
.crypto .blog .item .image {
  overflow: hidden;
}
.crypto .blog .item .image img {
  width: 100%;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.crypto .blog .item:hover .image img {
  transform: scale(1.2);
}
.crypto .blog .item .text {
  padding: 30px 20px;
}
.crypto .blog .item .text .time a {
  padding-right: 20px;
  display: inline-block;
}
.crypto .blog .item .text .time a p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #757575;
  text-transform: capitalize;

  display: flex;
  align-items: center;
}
.crypto .blog .item .text .time a:last-child {
  padding-right: 0;
}
.crypto .blog .item .text .time p .svg {
  margin-right: 10px;
}
.crypto .blog .item .text h3 {
  color: #283a5e;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  padding-top: 15px;
}
.crypto .blog .item .text a {
  color: #22007f;
  font-size: 18px;
  line-height: 34px;
  font-weight: 500;
  padding-top: 10px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
}
.crypto .blog .item .text a i {
  margin-left: 5px;
}
.crypto .blog .item .text a:hover {
  color: #25bfbf;
}
/*==========================================================================
06.18: Crypto currency Network
============================================================================*/
.crypto .network {
  padding-bottom: 70px;
}
.crypto .network .title {
  padding-bottom: 45px;
}
.crypto .network .map-part {
  padding-top: 410px;
  padding-bottom: 50px;
  background: url(../images/crypto/map.png) no-repeat center;
}
.crypto .network .item {
  width: 100%;
  background: #fff;
  border: 15px solid hsla(256, 100%, 25%, 0.2);
  padding: 25px 0;
}
.crypto .network .item h3 {
  font-size: 55px;
  color: #25bfbf;
  font-weight: 600;
}
.crypto .network .item p {
  font-size: 24px;
  line-height: 26px;
  color: #283a5e;
  font-weight: 500;
  text-transform: uppercase;
  padding-top: 10px;
}
/*==========================================================================
06.19: Crypto currency Brand
============================================================================*/

.crypto .brand .mt-50 {
  margin-top: 50px;
}
.crypto .brand .item a {
  width: 100%;
  text-align: center;
  position: relative;
}
.crypto .brand .item a .img-hover {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.crypto .brand .item a:hover .img-hover {
  opacity: 1;
}
.crypto .brand .item a:hover .img-main {
  opacity: 0;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
/*==========================================================================
06.20: Crypto currency Contact
============================================================================*/

.crypto .contact .contact-bg {
  background: #fff;
  padding: 80px 60px;
  box-shadow: 0 6px 15px hsla(0, 0%, 0%, 0.16);
  position: relative;
}
.crypto .contact h2 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  color: #283a5e;
  padding-bottom: 36px;
}
.crypto .contact h3 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 500;
  color: #283a5e;
  text-transform: capitalize;
  padding-bottom: 20px;
}
.crypto .contact ul li {
  position: relative;
  padding-bottom: 28px;
}
.crypto .contact ul li:last-child {
  padding-bottom: 0;
}
.crypto .contact ul li .svg {
  position: absolute;
  top: 5px;
  left: 0;
}
.crypto .contact ul li .svg path {
  fill: #283a5e;
}
.crypto .contact ul li p {
  font-size: 16px;
  font-weight: 400;
  color: #283a5e;
  line-height: 26px;
  padding-left: 45px;
}
.crypto .contact .form-part {
  padding-left: 40px;
}
.crypto .contact .form-part .inputs {
  width: 100%;
  height: 50px;
  border: 0;
  border-bottom: 1px solid #283a5e;
  background: transparent;
  color: #283a5e;
  outline: none;
  margin-bottom: 30px;
}
.crypto .contact .form-part .inputs::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #283a5e;
  text-transform: capitalize;
}
.crypto .contact .form-part textarea.inputs {
  height: 100px;
  resize: none;
}

/*==================================================================================
06.21: Crypto currency Top Footer
====================================================================================*/
.crypto footer {
  background: url(../images/crypto/footer-bg.png) no-repeat center;
  background-size: cover;
}
.crypto .top-footer {
  padding-top: 440px;
  margin-top: -330px;
  padding-bottom: 80px;
}
.crypto .top-footer p.company {
  font-size: 16px;
  line-height: 36px;
  font-weight: 400;
  color: #fff;
  padding-top: 38px;
}
.crypto .top-footer h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  padding-bottom: 60px;
  position: relative;
}
.crypto .top-footer h3:after {
  position: absolute;
  content: "";
  height: 4px;
  width: 100%;
  background: url(../images/crypto/border.png) no-repeat;
  bottom: 30px;
  left: 0;
}
.crypto .top-footer ul li {
  padding-bottom: 20px;
}
.crypto .top-footer ul li:last-child {
  padding-bottom: 0;
}
.crypto .top-footer ul li,
.crypto .top-footer ul li a {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
}
.crypto .top-footer ul li a:hover {
  color: #25bfbf;
}
/*==================================================================================
06.22: Crypto currency Bottom Footer
====================================================================================*/

.crypto .bottom-footer p {
  border-top: 1px solid #707070;
  font-size: 14px;
  line-height: 70px;
  font-weight: 500;
  color: #fff;
}
.crypto .bottom-footer p a {
  color: #fff;
}

/*==================================================================================
07: Web Hosting home light version
====================================================================================*/

/*==================================================================================
07.1: Web Hosting General CSS
====================================================================================*/

.hosting p {
  color: #172541;
}
.hosting .btn-design {
  border-color: #3c6ff7;
  background: #3c6ff7;
}
.hosting .title {
  margin-top: -15px;
}
.hosting .title h2 {
  color: #151a33;
}
.hosting .title p {
  color: #172541;
}

/*============================================================================
07.2: Web Hosting Preloader
==============================================================================*/
.hosting .preloader {
  background: #fff url(../images/hosting/preloader.gif) no-repeat center center;
}
/*============================================================================
07.3: Web Hosting Menubar fixed
==============================================================================*/
.hosting .menubar.fixed {
  background: #fff;
  position: fixed !important;
  z-index: 999;
  -webkit-box-shadow: 0 5px 50px 0 hsla(0, 0%, 13%, 0.2);
  box-shadow: 0 5px 50px 0 hsla(0, 0%, 13%, 0.2);
}

/*============================================================================
07.4: Web Hosting Menu 
==============================================================================*/
.hosting .menubar {
  width: 100%;
  padding: 0 50px;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

/*===========================================================================
07.5: Web Hosting Banner
=============================================================================*/
.hosting .banner {
  padding: 120px 250px;
  background: url(../images/hosting/banner-bg.png) no-repeat center;
  background-size: cover;
}
.hosting .banner .banner-img {
  position: relative;
}
.hosting .banner .banner-shape {
  position: absolute;
  top: 0;
  left: 85px;
  -webkit-animation: updown 2s infinite alternate;
  -moz-animation: updown 2s infinite alternate;
  -ms-animation: updown 2s infinite alternate;
  -o-animation: updown 2s infinite alternate;
  animation: updown 2s infinite alternate;
}
@keyframes updown {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.hosting .banner .md-device {
  display: none;
}
.hosting .banner .text h1 {
  color: #151a33;
  font-size: 65px;
  line-height: 80px;
  font-weight: 600;
}
.hosting .banner .text p {
  width: 80%;
  padding-top: 30px;
  padding-bottom: 50px;
}
.hosting .banner .text ul {
  display: flex;
}
.hosting .banner .text ul li {
  margin-right: 30px;
}
.hosting .banner .text ul li:last-child {
  margin-right: 0;
}
.hosting .banner .text ul li .banner-btn {
  background: transparent;
  color: #3c6ff7;
}
.hosting .banner .text ul li .banner-btn:hover {
  color: #3c6ff7;
  background: #3c6ff7;
}
/*===========================================================================
07.6: Web Hosting Feature
=============================================================================*/
.hosting .feature .item {
  border: 1px solid hsla(224, 92%, 60%, 0.5);
  border-radius: 10px;
  padding: 40px 25px;
}
.hosting .feature .item .image {
  padding-bottom: 40px;
}
.hosting .feature .item .image img {
  width: 100%;
}
.hosting .feature .item h3 {
  font-size: 22px;
  line-height: 34px;
  font-weight: 600;
  color: #151a33;
  padding-bottom: 20px;
  text-transform: capitalize;
}

/*===========================================================================
07.7: Web Hosting Domain
=============================================================================*/
.hosting .domain {
  background: url(../images/hosting/hosting-bg.jpg) no-repeat center;
  background-size: cover;
}
.hosting .domain .title p {
  padding-left: 80px;
  padding-right: 80px;
}
.hosting .domain .domain-bg {
  background: #fff;
  border-radius: 10px;
  border: 1px solid hsla(224, 92%, 60%, 0.5);
  padding: 70px 130px;
}
.hosting .domain .domain-bg form {
  width: 100%;
  border: 1px solid #81a3ff;
  border-radius: 5px;
  padding: 10px;
  display: flex;
  align-items: center;
}
.hosting .domain .domain-bg form .input-domain {
  width: calc(100% - 290px);
  height: 60px;
  padding: 0 40px;
  border: 0;
  border-right: 1px solid #ddd;
  outline: none;
}
.hosting .domain .domain-bg form .input-domain:focus {
  outline: none;
}
.hosting .domain .domain-bg form .input-domain::placeholder {
  color: #cccccc;
  font-size: 16px;
  font-weight: 400;
}
.hosting .domain .domain-bg form .select {
  width: 150px;
  position: relative;
}
.hosting .domain .domain-bg form .select:after {
  position: absolute;
  content: "";
  background: url(../images/hosting-icon/chevron-down.svg) no-repeat;
  right: 35px;
  top: 6px;
  height: 28px;
  width: 28px;
}
.hosting .domain .domain-bg form .select select {
  background: transparent;
  appearance: none;
  border: 0;
  width: 100%;
  padding: 0 40px;
  color: #3c6ff7;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  outline: none;
}
.hosting .domain .domain-bg form .select select:focus {
  outline: none;
}
.hosting .domain .domain-bg .hosting-slider {
  padding-top: 60px;
  padding-left: 5px;
  padding-right: 5px;
}
.hosting .domain .domain-bg .hosting-slider .item {
  border-radius: 5px;
  border: 1px solid #81a3ff;
  padding: 8px 0;
  text-align: center;
}
.hosting .domain .domain-bg .hosting-slider .item h3 {
  font-size: 24px;
  line-height: 35px;
  font-weight: 500;
  color: #3c6ff7;
  text-transform: lowercase;
}
.hosting .domain .domain-bg .hosting-slider .item p {
  font-size: 12px;
  line-height: 18px;
}
/*===========================================================================
07.8: Web Hosting Service
=============================================================================*/
.hosting .service .mb-50 {
  margin-bottom: 50px;
}

.hosting .service .item {
  border-radius: 10px;
  border: 1px solid hsla(224, 92%, 60%, 0.5);
  padding: 40px;
  padding-top: 0;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.hosting .service .item:hover {
  background: #3c6ff7;
}
.hosting .service .item .icon {
  width: 95px;
  height: 155px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  background: #3c6ff7;
  position: relative;
  margin-bottom: 50px;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.hosting .service .item .icon .svg {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.hosting .service .item:hover .icon {
  background: #fff;
}
.hosting .service .item:hover .icon .svg path {
  fill: #3c6ff7;
}
.hosting .service .item:hover .icon .svg g {
  stroke: #3c6ff7;
}
.hosting .service .item h3 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  color: #151a33;
}
.hosting .service .item p {
  padding-top: 20px;
  padding-bottom: 25px;
}
.hosting .service .item a {
  display: inline-block;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  color: #172541;
  text-transform: capitalize;
}
.hosting .service .item a i {
  padding-left: 10px;
}

.hosting .service .item:hover h3,
.hosting .service .item:hover p,
.hosting .service .item:hover a {
  color: #fff;
}
/*===========================================================================
07.9: Web Hosting Get-start
=============================================================================*/
.hosting .get-start {
  background: url(../images/hosting/get-start.png) no-repeat center;
}

/*===========================================================================
07.10: Web Hosting Pricing
=============================================================================*/
.hosting .pricing {
  position: relative;
}
.hosting .pricing:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 44%;
  background: #e4eaff;
  z-index: -1;
}

.hosting .pricing .item {
  border: 1px solid hsla(224, 92%, 60%, 0.5);
  padding: 50px 15px;
  background: #fff;
  position: relative;
  z-index: 9;
}
.hosting .pricing .item:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #3c6ff7;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  z-index: -1;
}
.hosting .pricing .item:hover:before {
  height: 100%;
}
.hosting .pricing .item h4 {
  font-size: 36px;
  line-height: 50px;
  font-weight: 600;
  color: #151a33;
  text-transform: capitalize;
}
.hosting .pricing .item h3 {
  font-size: 58px;
  line-height: 78px;
  font-weight: 600;
  color: #3c6ff7;
  padding-top: 15px;
  padding-bottom: 35px;
}
.hosting .pricing .item h3 span {
  display: inline-block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  text-transform: capitalize;
}
.hosting .pricing .item p {
  padding: 0 35px 25px 35px;
}
.hosting .pricing .item ul {
  padding-top: 50px;
  padding-left: 35px;
  border-top: 1px solid #ddd;
}
.hosting .pricing .item ul li {
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  color: #555;
  text-transform: capitalize;
  padding-bottom: 30px;
}
.hosting .pricing .item ul li .svg {
  margin-right: 20px;
  height: 24px;
  width: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  background: hsla(224, 92%, 60%, 0.2);
  padding: 5px;
}
.hosting .pricing .item button {
  margin-top: 20px;
}
.hosting .pricing .item:hover h4,
.hosting .pricing .item:hover h3,
.hosting .pricing .item:hover p,
.hosting .pricing .item:hover ul li {
  color: #fff;
}
.hosting .pricing .item:hover button {
  background: #fff;
  color: #3c6ff7;
}
.hosting .pricing .item:hover ul li .svg {
  background: hsla(0, 0%, 100%, 0.2);
}
.hosting .pricing .item:hover ul li .svg path {
  stroke: #fff;
}

/*===========================================================================
07.11: Web Hosting About
=============================================================================*/
.hosting .about .title {
  margin-bottom: 0;
}

.hosting .about a {
  margin-top: 30px;
}
.hosting .about .about-img {
  padding-top: 140px;
  position: relative;
}
.hosting .about .about-shape {
  position: absolute;
  top: 15px;
  left: 100px;
  -webkit-animation: slide 2s infinite alternate;
  -moz-animation: slide 2s infinite alternate;
  -ms-animation: slide 2s infinite alternate;
  -o-animation: slide 2s infinite alternate;
  animation: slide 2s infinite alternate;
}
@keyframes slide {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

/*===========================================================================
07.12: Web Hosting Newsletter
=============================================================================*/
.hosting .newsletter {
  background: #e4eaff;
}
.hosting .newsletter .title {
  margin-bottom: 0;
}
.hosting .newsletter .title h2 {
  font-size: 32px;
  line-height: 48px;
}

.hosting .newsletter form {
  position: relative;
}
.hosting .newsletter .input-field {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #a4cfff;
  height: 66px;
  padding-left: 25px;
  padding-right: 200px;
  outline: none;
}
.hosting .newsletter .input-field::placeholder {
  color: #999;
  font-size: 16px;
  font-weight: 400;
}
.hosting .newsletter .input-field:focus {
  outline: none;
}
.hosting .newsletter button {
  border-radius: 10px;
  line-height: 50px;
  padding: 0 30px;
  outline: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
}
.hosting .newsletter button:before {
  border-radius: 10px;
}
/*===========================================================================
07.13: Web Hosting Client
=============================================================================*/
.hosting .client {
  position: relative;
}
.hosting .client .title {
  padding-bottom: 0;
}
.hosting .client .title p {
  width: 90%;
}
.hosting .client .hosting-client-slider {
  padding-top: 30px;
}

.hosting .client .hosting-client-slider .item .author {
  padding-top: 60px;
}
.hosting .client .hosting-client-slider .item .author .image {
  height: 100px;
  width: 100px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
  margin-right: 10px;
}
.hosting .client .hosting-client-slider .item .author .image img {
  width: 100%;
}
.hosting .client .hosting-client-slider .item .author h3 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
  color: #3c6ff7;
  padding-bottom: 5px;
}
.hosting .client .hosting-client-slider .item .author span {
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: capitalize;
  color: #999;
}
.hosting .client .md-device {
  display: none;
}
.hosting .client .button-prev,
.hosting .client .button-next {
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  border: 1px solid #3c6ff7;
  background: #3c6ff7;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  position: absolute;
  bottom: 0;
  outline: none;
  z-index: 9;
}
.hosting .client .button-prev {
  left: 15px;
}
.hosting .client .button-next {
  left: 115px;
}
.hosting .client .button-prev:hover,
.hosting .client .button-next:hover {
  background: transparent;
  color: #3c6ff7;
}
/*===========================================================================
07.14: Web Hosting Blog
=============================================================================*/
.hosting .blog {
  background: #e4eaff;
}
.hosting .blog .item {
  border: 1px solid #ddd;
  background: #fff;
}
.hosting .blog .item .image {
  padding: 30px;
}
.hosting .blog .item .image img {
  width: 100%;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.hosting .blog .item:hover .image img {
  opacity: 0.7;
}
.hosting .blog .item .text {
  padding: 25px;
}
.hosting .blog .item .text a {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #151a33;
}

.hosting .blog .item .text a:hover {
  color: #3c6ff7;
}
.hosting .blog .item .text .time {
  padding-top: 20px;
  padding-bottom: 15px;
}
.hosting .blog .item .text img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 1px solid #958c8c;
  margin-right: 15px;
}
.hosting .blog .item .text span {
  display: inline-block;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
  color: #999;
}
.hosting .blog .item .text span .svg {
  margin-right: 10px;
}
.hosting .blog .item .text p {
  padding-bottom: 25px;
}
.hosting .blog .item .text .comment {
  border-top: 1px solid #ccc;
  padding-top: 25px;
}

/*===============================================================================
07.15: Web Hosting Contact
=================================================================================*/
.hosting .contact {
  background: #e4eaff;
}
.hosting .contact .title {
  margin-bottom: 0;
}
.hosting .contact h3 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 500;
  color: #151a33;
  text-transform: capitalize;
  padding-bottom: 40px;
}
.hosting .contact ul li {
  position: relative;
  padding-bottom: 28px;
}
.hosting .contact ul li:last-child {
  padding-bottom: 0;
}
.hosting .contact ul li .svg {
  position: absolute;
  top: 5px;
  left: 0;
}
.hosting .contact ul li p {
  font-size: 16px;
  font-weight: 500;
  color: #777;
  line-height: 30px;
  padding-left: 45px;
}

.hosting .contact .form-part .inputs {
  width: 100%;
  height: 55px;
  border: 1px solid hsla(224, 92%, 60%, 0.5);
  background: #fff;
  padding: 0 20px;
  border-radius: 5px;
  outline: none;
  margin-bottom: 40px;
}
.hosting .contact .form-part .inputs::placeholder {
  font-size: 14px;
  font-weight: 500;
  color: #999;
  text-transform: capitalize;
}
.hosting .contact .form-part textarea.inputs {
  height: 120px;
  resize: none;
  padding-top: 20px;
}
.hosting .contact .form-part .btn-design {
  float: right;
}
.hosting .contact .form-part .btn-design {
  padding: 0 60px;
}
/*===============================================================================
07.16: Web Hosting World
=================================================================================*/
.hosting .world .map-part {
  position: relative;
}
.hosting .world .map-part .pointer {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #3c6ff7;
  position: absolute;
  cursor: pointer;
}
.hosting .world .map-part .pointer:after {
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  border-radius: 50%;
  box-shadow: 0 0 rgba(60, 111, 247, 0.2), 0 0 0 10px rgba(60, 111, 247, 0.2),
    0 0 0 20px rgba(60, 111, 247, 0.2);
  animation: ripple-white 1s linear infinite;
  animation-play-state: running;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

@keyframes ripple-white {
  to {
    box-shadow: 0 0 0 10px rgba(60, 111, 247, 0.2),
      0 0 0 20px rgba(60, 111, 247, 0.2), 0 0 0 30px rgba(60, 111, 247, 0);
  }
}

.hosting .world .map-part .pointer1 {
  top: 36%;
  left: 16%;
}
.hosting .world .map-part .pointer2 {
  top: 68%;
  left: 26%;
}
.hosting .world .map-part .pointer3 {
  top: 44%;
  left: 45%;
}
.hosting .world .map-part .pointer4 {
  top: 65%;
  left: 53%;
}
.hosting .world .map-part .pointer5 {
  top: 36%;
  right: 32%;
}
.hosting .world .map-part .pointer6 {
  top: 23%;
  right: 23%;
}
.hosting .world .map-part .pointer7 {
  top: 60%;
  right: 20%;
}
.hosting .world .map-part .pointer8 {
  bottom: 20%;
  right: 11%;
}

.hosting .world .map-part .pointer .place {
  font-size: 16px;
  line-height: 30px;
  background: #3c6ff7;
  color: #fff;
  font-weight: 400;
  padding: 0 25px;
  white-space: nowrap;
  border-radius: 3px;
  text-transform: capitalize;
  position: absolute;
  top: -45px;
  z-index: 1;
  visibility: hidden;
}
/* .hosting .world .map-part .pointer .place:after {
  position: absolute;
  content: "";
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  -o-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  height: 24px;
  width: 24px;
  background: #3c6ff7;
  border-radius: 3px;
  z-index: -1;
} */
.hosting .world .map-part .pointer:hover .place {
  visibility: visible;
}
.hosting .world .map-part .pointer .place1 {
  left: -85px;
}
.hosting .world .map-part .pointer .place2 {
  left: -60px;
}
.hosting .world .map-part .pointer .place3 {
  left: -43px;
}
.hosting .world .map-part .pointer .place4 {
  left: -58px;
}
.hosting .world .map-part .pointer .place5 {
  left: -67px;
}
.hosting .world .map-part .pointer .place6 {
  left: -43px;
}
.hosting .world .map-part .pointer .place7 {
  left: -63px;
}
.hosting .world .map-part .pointer .place8 {
  left: -56px;
}
/*===============================================================================
07.17: Web Hosting Footer
=================================================================================*/
.hosting footer {
  background: url(../images/hosting/footer-bg.png) no-repeat bottom;
  position: relative;
}

.hosting footer .wave {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  z-index: -1;
  left: 50%;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-size: cover;
  position: relative;
  box-shadow: 0 0 16px rgba(60, 111, 247, 0.5);
}

.hosting footer .wave:before {
  position: absolute;
  content: "";
  top: 60px;
  bottom: -60px;
  left: -3px;
  right: -3px;
  border-radius: 50%;
  box-shadow: 0 0 rgba(60, 111, 247, 0.2), 0 0 0 20px rgba(60, 111, 247, 0.2),
    0 0 0 40px rgba(60, 111, 247, 0.2), 0 0 0 60px rgba(60, 111, 247, 0.2),
    0 0 0 80px rgba(60, 111, 247, 0.2), 0 0 0 100px rgba(60, 111, 247, 0.2);
  z-index: -1;
  animation: ripples 1s linear infinite;
  animation-play-state: running;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

@keyframes ripples {
  to {
    box-shadow: 0 0 0 20px rgba(60, 111, 247, 0.2),
      0 0 0 40px rgba(60, 111, 247, 0.2), 0 0 0 60px rgba(60, 111, 247, 0.2),
      0 0 0 80px rgba(60, 111, 247, 0.2), 0 0 0 100px rgba(60, 111, 247, 0.2),
      0 0 0 120px rgba(60, 111, 247, 0);
  }
}

.hosting footer .rocket {
  position: absolute;
  top: -85px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  height: auto;
  width: auto;
  bottom: auto;
  right: auto;
}
/*===============================================================================
07.18: Web Hosting Top-footer
=================================================================================*/
.hosting .top-footer {
  padding-top: 160px;
  padding-bottom: 80px;
}
.hosting .top-footer p {
  color: #fff;
}
.hosting .top-footer .pl-70 {
  padding-left: 70px;
}
.hosting .top-footer .company {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #ffff;
  padding: 25px 0;
}
.hosting .top-footer .social li {
  margin-right: 26px;
}
.hosting .top-footer .social li:last-child {
  margin-right: 0;
}
.hosting .top-footer .social li a i {
  font-size: 16px;
  color: #fff;
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.hosting .top-footer .social li a:hover i {
  transform: scale(1.1);
}

.hosting .top-footer h3 {
  font-size: 24px;
  line-height: 35px;
  font-weight: 600;
  color: #ffff;
  text-transform: capitalize;
  padding-bottom: 25px;
}
.hosting .top-footer ul li {
  padding-bottom: 20px;
  position: relative;
}
.hosting .top-footer ul li,
.hosting .top-footer ul li a {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #ffff;
  text-transform: capitalize;
}
.hosting .top-footer ul li p {
  padding-left: 35px;
}
.hosting .top-footer ul li .svg {
  position: absolute;
  top: 0;
  left: 0;
}
/*===============================================================================
07.19: Web Hosting Bottom-footer
=================================================================================*/
.hosting .bottom-footer {
  padding: 20px 0;
  border-top: 1px solid #fff;
}
.hosting .bottom-footer p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 50px;
}
.hosting .bottom-footer p a {
  color: #fff;
  font-weight: 600;
}

/*===============================================================================
08: VPN landing light version
=================================================================================*/

/* ===============================================================================
08.1: VPN landing General CSS
=================================================================================*/
.vpn .bg-blue {
  background: #f3f6ff;
}
.vpn p {
  color: #616c7f;
}
.vpn .title h2 {
  color: #213e6e;
}
.vpn .btn-design {
  border-color: #0745ae;
  color: #fff;
  background: #0745ae;
}

.vpn .btn-design:hover {
  color: #0745ae;
  z-index: 1;
}

/*===============================================================================
08.2: VPN landing Preloader
=================================================================================*/
.vpn .preloader {
  background: #fff url(../images/vpn/preloader.gif) no-repeat center center;
}
/*===============================================================================
08.3: VPN landing Scroll top button
=================================================================================*/
.vpn .top-btn {
  color: #fff;
  background: #3c6ff7;
  border-color: #fff;
}
.vpn .top-btn i {
  color: #fff;
}
.vpn .top-btn:hover {
  color: #0745ae;
  background: #fff;
  border-color: #0745ae;
}
.vpn .top-btn:hover i {
  color: #0745ae;
}
/*===============================================================================
08.4: VPN landing Menubar fixed
=================================================================================*/
.vpn .menubar.fixed {
  padding-top: 5px;
  padding-bottom: 5px;
  background: #0745ae;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.3);
}
.vpn .menubar.fixed .btn-design {
  border: 1px solid #fff;
}
/*===========================================================================
08.5: VPN landing Menu 
=============================================================================*/
.vpn .menubar {
  width: 100%;
  padding: 25px 50px;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.vpn .menubar button {
  background: #fff;
  border-color: #fff;
  color: #0745ae;
}
.vpn .menubar button:before {
  background: #0745ae;
}
.vpn .menubar button:hover {
  color: #fff;
}

/*===========================================================================
08.6: VPN landing Banner
=============================================================================*/
.vpn .banner {
  background: url(../images/vpn/banner-bg.png) no-repeat center;
  background-size: cover;
  padding: 120px 100px 0 200px;
}

.vpn .banner .text h1 {
  font-size: 60px;
  line-height: 82px;
  font-weight: 700;
  color: #fff;
}
.vpn .banner .text p {
  color: #fff;
  padding-top: 30px;
  padding-bottom: 45px;
}
.vpn .banner .text a {
  width: 240px;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border-radius: 30px;
  border: 1px solid #0745ae;
  padding-left: 45px;
  display: inline-block;
  text-transform: capitalize;
}
.vpn .banner .text a .svg {
  height: 44px;
  width: 44px;
  line-height: 44px;
  border-radius: 50%;
  background: #0745ae;
  padding: 14px;
  float: right;
  margin-top: 8px;
  margin-right: 8px;
}

.vpn .banner .text a {
  background: #fff;
  border-color: #fff;
  color: #0745ae;
}
.vpn .banner .text a:hover {
  background: #0745ae;
  color: #fff;
}
.vpn .banner .text a:hover .svg {
  background: #fff;
}
.vpn .banner .text a:hover .svg line,
.vpn .banner .text a:hover .svg path {
  stroke: #0745ae;
}

/*===============================================================================
08.7: VPN landing Service
=================================================================================*/
.vpn .service .item {
  border: 1px solid hsla(218, 92%, 35%, 0.5);
  border-bottom: 5px solid #0745ae;
  padding: 50px 25px;
}

.vpn .service .item:hover:after {
  height: 100%;
}
.vpn .service .item .icon {
  height: 140px;
  width: 140px;
  line-height: 140px;
  text-align: center;
  border-radius: 26px;
  background: #0745ae;
  margin: auto;
}
.vpn .service .item h3 {
  font-size: 24px;
  line-height: 34px;
  color: #213e6e;
  font-weight: 600;
  text-transform: capitalize;
  padding-top: 50px;
  padding-bottom: 25px;
}

/*===============================================================================
08.8: VPN landing Device
=================================================================================*/

.vpn .device2 .image {
  margin-left: -250px;
}

/*===============================================================================
08.9: VPN landing Download
=================================================================================*/
.vpn .download {
  position: relative;
}
.vpn .download .image {
  margin-left: -415px;
}
.vpn .download:before {
  content: "";
  height: 100%;
  width: 72%;
  background: #f3f6ff;
  position: absolute;
  top: 0;
  right: 0;
}

/*===============================================================================
08.10: VPN landing Feature
=================================================================================*/

.vpn .feature .item {
  border: 1px solid hsla(218, 92%, 35%, 0.5);
  padding: 40px;
  border-radius: 10px;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.vpn .feature .item:hover {
  background: #0745ae;
}
.vpn .feature .item:hover .icon .svg path {
  fill: #fff;
}
.vpn .feature .item h3 {
  font-size: 20px;
  line-height: 30px;
  color: #213e6e;
  font-weight: 600;
  text-transform: capitalize;
  padding-top: 20px;
  padding-bottom: 25px;
}

.vpn .feature .item:hover h3,
.vpn .feature .item:hover p {
  color: #fff;
}
/*===========================================================================
08.11: VPN landing App
=============================================================================*/

.vpn .app .title {
  text-align: left;
}
.vpn .app .md-device {
  display: none;
}
.vpn .app ul li {
  margin-right: 50px;
}
.vpn .app ul li:last-child {
  margin-right: 0;
}
.vpn .app ul li a {
  display: flex;
  width: 240px;
  height: 70px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid transparent;
  box-shadow: 0 10px 25px hsla(215, 73%, 51%, 0.25);
}
.vpn .app ul .black a {
  background: #222;
}
.vpn .app ul li a .icon {
  line-height: 70px;
  padding-left: 20px;
  padding-right: 30px;
}
.vpn .app ul li a .text {
  padding-top: 9px;
}
.vpn .app ul li a h4 {
  font-size: 12px;
  line-height: 24px;
  font-weight: 400;
  color: #222;
  text-transform: uppercase;
}
.vpn .app ul li a h3 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: #222;
  text-transform: capitalize;
}
.vpn .app ul .black a h4,
.vpn .app ul .black a h3 {
  color: #fff;
}
/*===========================================================================
08.12: VPN landing Pricing
=============================================================================*/

.vpn .pricing .item {
  border: 2px solid hsla(218, 92%, 35%, 0.5);
  border-radius: 10px;
  padding: 50px 0;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.vpn .pricing .item:hover {
  background: #0745ae;
  padding: 80px 0;
  margin-top: -30px;
}
.vpn .pricing .item h4 {
  font-size: 24px;
  line-height: 36px;
  color: #213e6e;
  font-weight: 500;
  text-transform: capitalize;
}
.vpn .pricing .item h3 {
  font-size: 60px;
  line-height: 72px;
  color: #0745ae;
  font-weight: 600;
  padding-bottom: 25px;
}
.vpn .pricing .item ul li p {
  line-height: 36px;
  text-transform: capitalize;
}
.vpn .pricing .item a {
  margin-top: 50px;
}
.vpn .pricing .item:hover h4,
.vpn .pricing .item:hover h3,
.vpn .pricing .item:hover ul li p {
  color: #fff;
}
.vpn .pricing .item:hover a {
  background: #fff;
  color: #0745ae;
}
/*===========================================================================
08.13: VPN landing FAQ
=============================================================================*/

.vpn .faq .card {
  border: 0;
  border-radius: 0;
  padding: 0;
  border-bottom: 1px solid #979797;
}
.vpn .faq .card:last-child {
  border-bottom: 0;
}
.vpn .faq .card .card-header {
  padding: 0;
  border: 0;
  background: transparent;
}
.vpn .faq .card .card-header .btn-link {
  padding: 0 40px;
  line-height: 90px;
  color: #213e6e;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  text-align: left;
}

.vpn .faq .card .card-header .btn-link i {
  float: right;
  margin-top: 28px;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid transparent;
  color: #fff;
  background: #0745ae;
}
.vpn .faq .card .card-header .btn-link.collapsed i {
  transform: rotate(180deg);
  border: 1px solid #d5d5d5;
  background: transparent;
  color: #222;
}
.vpn .faq .card .card-body {
  padding: 0 40px 30px 40px;
  font-size: 16px;
  line-height: 30px;
  color: #616c7f;
  background: transparent;
}
/*===========================================================================
08.14: VPN landing World
=============================================================================*/

.vpn .world .image {
  position: relative;
}
.vpn .world .image .overlay {
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, hsla(0, 0%, 100%, 0.07), #fff);
  position: absolute;
  top: 0;
  left: 0;
}
.vpn .world .image .overlay a {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 50px;
}
/*===========================================================================
08.15: VPN landing Blog
=============================================================================*/

.vpn .blog .item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid hsla(218, 92%, 35%, 0.5);
  position: relative;
}
.vpn .blog .item .image {
  overflow: hidden;
}
.vpn .blog .item .image img {
  width: 100%;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.vpn .blog .item:hover .image img {
  transform: scale(1.1);
}
.vpn .blog .item .image h5 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  border-radius: 5px;
  line-height: 40px;
  background: #0745ae;
  padding: 0 35px;
  width: fit-content;
  text-transform: capitalize;
  margin: auto;
  margin-top: -20px;
  position: relative;
}
.vpn .blog .text {
  padding: 20px;
  padding-bottom: 25px;
}
.vpn .blog .item .text a {
  font-size: 22px;
  line-height: 36px;
  color: #213e6e;
  font-weight: 500;
}
.vpn .blog .item .text .author {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  position: relative;
}
.vpn .blog .item .text .author p {
  text-transform: capitalize;
}
.vpn .blog .item .text .author p:after {
  position: absolute;
  content: "";
  top: 20px;
  left: 50%;
  height: 30px;
  width: 1px;
  background: #ccc;
}
.vpn .blog .item .text .author p:last-child:after {
  display: none;
}
.vpn .blog .item .text .author p .svg {
  margin-right: 10px;
}

/*===========================================================================
08.16: VPN landing Notification
=============================================================================*/
.vpn .notification .bg {
  background: #fff;
  padding: 70px 30px;
  border-radius: 6px;
  position: relative;
  box-shadow: 4px 0 94px hsla(0, 0%, 0%, 0.15);
}
.vpn .notification .title {
  margin-bottom: 0;
}
.vpn .notification h2 {
  padding-bottom: 0;
}
/*===========================================================================
08.17: VPN landing Footer
=============================================================================*/
.vpn footer {
  background: url(../images/vpn/footer-bg.png) no-repeat center;
  background-size: cover;
  margin-top: -90px;
  padding-top: 60px;
}
/*===========================================================================
08.18: VPN landing Top-footer
=============================================================================*/
.vpn .top-footer {
  padding-top: 120px;
  padding-bottom: 80px;
}
.vpn .top-footer .pl-70 {
  padding-left: 70px;
}
.vpn .top-footer .company {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #ffff;
  padding: 25px 0;
}
.vpn .top-footer .social li {
  margin-right: 26px;
}
.vpn .top-footer .social li:last-child {
  margin-right: 0;
}
.vpn .top-footer .social li a i {
  font-size: 16px;
  color: #fff;
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.vpn .top-footer .social li a:hover i {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.vpn .top-footer h3 {
  font-size: 24px;
  line-height: 35px;
  font-weight: 600;
  color: #ffff;
  text-transform: capitalize;
  padding-bottom: 25px;
}
.vpn .top-footer ul li {
  padding-bottom: 20px;
  position: relative;
}
.vpn .top-footer ul li,
.vpn .top-footer ul li a {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #ffff;
  text-transform: capitalize;
}
.vpn .top-footer ul li a:hover {
  color: #25bfbf;
}
.vpn .top-footer ul li p {
  padding-left: 35px;
  color: #fff;
}
.vpn .top-footer ul li .svg {
  position: absolute;
  top: 0;
  left: 0;
}
/*==============================================================================
08.19: VPN landing Bottom-footer
================================================================================*/
.vpn .bottom-footer {
  padding: 20px 0;
  border-top: 1px solid hsla(0, 0%, 100%, 0.6);
}
.vpn .bottom-footer p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 50px;
}
.vpn .bottom-footer p a {
  color: #fff;
  font-weight: 600;
}

/*===========================================================================
09: Blog page
=============================================================================*/

/*=================================================================================
09.1: Blog page Preloader
===================================================================================*/
.blog-page .preloader {
  background: #fff url(../images/blog/preloader.gif) no-repeat center center;
}
/*=================================================================================
09.2: Blog page Menubar fixed
===================================================================================*/
.blog-page .menubar.fixed {
  padding-top: 5px;
  padding-bottom: 5px;
  background: #031026;
}
/*=================================================================================
09.3: Blog page Scroll top button
===================================================================================*/
.blog-page .top-btn {
  background: #538de4;
  color: #fff;
  border-color: #fff;
}
.blog-page .top-btn i {
  color: #fff;
}
.blog-page .top-btn:hover {
  background: #fff;
  border-color: #538de4;
}
.blog-page .top-btn:hover i {
  color: #538de4;
}

/*==============================================================================
09.4: Blog page Menu 
================================================================================*/
.blog-page .menubar {
  width: 100%;
  padding: 30px 175px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

/*==============================================================================
09.5: Blog page Banner 
================================================================================*/
.blog-page .banner {
  background: url(../images/blog/blog-bg.jpg) no-repeat center;
  background-size: cover;
}
.blog-page .banner .overlay {
  background: hsla(0, 0%, 0%, 0.6);
  padding-top: 200px;
  padding-bottom: 100px;
}
.blog-page .banner h1 {
  font-size: 45px;
  line-height: 54px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  padding-bottom: 14px;
}
.blog-page .banner .breadcrumb {
  padding: 0;
  border-radius: 0;
  background: transparent;
  margin: 0;
  justify-content: center;
}
.blog-page .banner .breadcrumb li {
  text-transform: capitalize;
}
.blog-page .banner .breadcrumb li a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.blog-page .banner .breadcrumb-item.active {
  color: #538de4;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}
/*==============================================================================
09.6: Blog page Content 
================================================================================*/
.blog-page .content {
  padding: 120px 0;
}
.blog-page .content .search-form {
  position: relative;
}
.blog-page .content .search-form .input-field {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #538de4;
  height: 90px;
  outline: none;
  padding: 0 30px;
}
.blog-page .content .search-form .input-field:focus {
  outline: none;
}
.blog-page .content .search-form .input-field::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: #757575;
}
.blog-page .content .search-form button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 30px;
}
.blog-page .content .search-form button .svg path {
  stroke: #538de4;
}
.blog-page .box {
  padding: 30px 35px;
  border: 1px solid #538de4;
  border-radius: 10px;
  margin-top: 45px;
}
.blog-page .box h3 {
  font-size: 20px;
  line-height: 30px;
  color: #031026;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 1px solid #ddd;
  padding-bottom: 13px;
  margin-bottom: 18px;
}

.blog-page .box .category li {
  padding-bottom: 25px;
}
.blog-page .box .category li:last-child {
  padding-bottom: 0;
}
.blog-page .box .category li a {
  font-size: 16px;
  line-height: 23px;
  color: #757575;
  font-weight: 400;
  text-transform: capitalize;
}
.blog-page .box .category li a:hover {
  color: #538de4;
}
.blog-page .box .post li {
  margin-bottom: 30px;
}
.blog-page .box .post li:last-child {
  margin-bottom: 0;
}
.blog-page .box .post li .image {
  height: 60px;
  width: 60px;
  border-radius: 10px;
  border: 1px solid #538de4;
  overflow: hidden;
  margin-right: 20px;
  float: left;
}
.blog-page .box .post li .image img {
  width: 100%;
}
.blog-page .box .post li a,
.blog-page .box.tag a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #757575;
  text-transform: capitalize;
}
.blog-page .box .post li a:hover {
  color: #538de4;
}

.blog-page .box.tag a:hover {
  color: #538de4;
}
.blog-page .blog-item {
  padding-bottom: 70px;
}
.blog-page .blog-item .blog-image {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.blog-page .blog-item .blog-image .time {
  height: 66px;
  width: 66px;
  border-radius: 50%;
  background: #538de4;
  text-align: center;
  position: absolute;
  padding: 15px 0;
  right: 20px;
  top: 20px;
}
.blog-page .blog-item .blog-image .time p {
  text-transform: capitalize;
  color: #fff;
  line-height: 18px;
  font-weight: 500;
}
.blog-page .blog-item h3 {
  font-size: 30px;
  line-height: 40px;
  color: #031026;
  font-weight: 600;
  text-transform: capitalize;
  padding-top: 40px;
}
.blog-page .blog-item .desc {
  font-size: 16px;
  line-height: 30px;
  color: #757575;
  font-weight: 400;
  padding-top: 20px;
  padding-bottom: 25px;
}
.blog-page .blog-item span {
  display: block;
  font-size: 16px;
  line-height: 25px;
  color: #757575;
  font-weight: 400;
}
.blog-page .blog-item .btn-design {
  background: #fff;
  color: #538de4;
  margin-top: 60px;
}
.blog-page .blog-item .btn-design:before {
  background: #538de4;
}
.blog-page .blog-item .btn-design:hover {
  color: #fff;
}
.blog-page .pages {
  width: 100%;
  text-align: right;
}
.blog-page .pages ul li {
  display: inline-block;
  margin-left: 6px;
}
.blog-page .pages ul li:first-child {
  margin: 0;
}
.blog-page .pages ul li a {
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  color: #999;
  border: 1px solid #ccc;
  display: inline-block;
}
.blog-page .pages ul li a i {
  color: #538de4;
}
.blog-page .pages ul li a:hover,
.blog-page .pages ul li a.active {
  background: #538de4;
  border-color: #538de4;
  color: #fff;
}
.blog-page .pages ul li a:hover i,
.blog-page .pages ul li a.active i {
  color: #fff;
}
/*============================================================================
09.7: Blog page Footer
==============================================================================*/
.blog-page footer {
  background: #538de4;
}
/*============================================================================
09.8: Blog page Top-footer
==============================================================================*/
.blog-page .top-footer {
  padding-top: 120px;
  padding-bottom: 80px;
}
.blog-page .top-footer .pl-70 {
  padding-left: 70px;
}
.blog-page .top-footer .company {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #fff;
  padding: 25px 0;
}
.blog-page .top-footer .social li {
  margin-right: 26px;
}
.blog-page .top-footer .social li:last-child {
  margin-right: 0;
}
.blog-page .top-footer .social li a i {
  font-size: 16px;
  color: #fff;
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.blog-page .top-footer .social li a:hover i {
  transform: scale(1.1);
}

.blog-page .top-footer h3 {
  font-size: 24px;
  line-height: 35px;
  font-weight: 600;
  color: #ffff;
  text-transform: capitalize;
  padding-bottom: 25px;
}
.blog-page .top-footer ul li {
  padding-bottom: 20px;
  position: relative;
}
.blog-page .top-footer ul li,
.blog-page .top-footer ul li a {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #ffff;
  text-transform: capitalize;
}
.blog-page .top-footer ul li p {
  padding-left: 35px;
  color: #fff;
}
.blog-page .top-footer ul li .svg {
  position: absolute;
  top: 0;
  left: 0;
}
/*============================================================================
09.9: Blog page Bottom-footer
==============================================================================*/
.blog-page .bottom-footer {
  padding: 20px 0;
  background: #007aff;
}
.blog-page .bottom-footer p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 50px;
}
.blog-page .bottom-footer p a {
  color: #fff;
  font-weight: 600;
}

/*============================================================================
10: Single blog page
==============================================================================*/

/*============================================================================
10.1: Single blog page Blog-item
==============================================================================*/
.single-blog .blog-item h3 {
  font-weight: 700;
}
.single-blog .blog-item .desc {
  font-weight: 400;
  text-align: justify;
}
.single-blog .blog-item .tags {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
}
.single-blog .blog-item .tags span {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #555;
  text-transform: capitalize;
}
.single-blog .blog-item .tags span a {
  font-size: 16px;
  font-weight: 400;
  color: #777;
}
.single-blog .blog-item .tags ul li {
  padding-left: 34px;
}
.single-blog .blog-item .tags ul li:first-child {
  padding: 0;
}
.single-blog .blog-item .tags ul li a i {
  color: #ccc;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.single-blog .blog-item .tags ul li a.fb:hover i {
  color: #38529a;
}
.single-blog .blog-item .tags ul li a.ln:hover i {
  color: #0077b5;
}
.single-blog .blog-item .tags ul li a.twit:hover i {
  color: #50abf1;
}
.single-blog .blog-item .tags ul li a.pin:hover i {
  color: #df0019;
}
.single-blog .blog-item .tags ul li a.gp:hover i {
  color: #d54c3f;
}

.single-blog .posts {
  border-radius: 10px;
  border: 2px solid #eeeeee;
  padding: 40px;
}
.single-blog .posts .image {
  border-radius: 10px;
  overflow: hidden;
  width: 170px;
  height: 100%;
  margin-right: 40px;
}
.single-blog .posts .image img {
  width: 100%;
}
.single-blog .posts .text {
  width: calc(100% - 210px);
}
.single-blog .posts h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #031026;
  text-transform: capitalize;
}
.single-blog .posts p {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #777;
  padding: 30px 0;
}
.single-blog .posts a {
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
  color: #538de4;
  text-transform: capitalize;
  text-decoration: underline;
}
/*============================================================================
10.2: Single blog page Comment
==============================================================================*/
.single-blog .comment h3 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  color: #031026;
  text-transform: capitalize;
  padding-bottom: 27px;
  border-bottom: 1px solid #ddd;
  padding-top: 60px;
}
.single-blog .comment .single-comment {
  position: relative;
  border-bottom: 1px solid #ddd;
  padding-top: 40px;
}
.single-blog .comment .single-comment .author-img {
  width: 110px;
  height: 110px;
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  top: 40px;
  left: 0;
}
.single-blog .comment .single-comment .author-img img {
  width: 100%;
}
.single-blog .comment .single-comment .text {
  padding-left: 140px;
}
.single-blog .comment .single-comment h4 {
  text-transform: capitalize;
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  color: #031026;
}
.single-blog .comment .single-comment span {
  display: inline-block;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
  color: #538de4;
}
.single-blog .comment .single-comment p {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #6f6c7f;
  padding-top: 30px;
}
.single-blog .comment .single-comment .btn-design {
  float: right;
  border-radius: 28px;
  padding: 0 30px;
  margin: 30px 0;
}
.single-blog .comment .single-comment .btn-design:before {
  border-radius: 28px;
}
.single-blog .comment .reply {
  padding-left: 75px;
}
.single-blog .comment .reply .author-img {
  left: 75px;
}
.single-blog .comment form .input-field {
  width: 100%;
  height: 70px;
  padding: 0 30px;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-top: 30px;
  outline: none;
}
.single-blog .comment form .input-field:focus {
  border-color: #538de4;
}
.single-blog .comment form .input-field::placeholder {
  text-transform: capitalize;
  color: #999;
  font-size: 16px;
  font-weight: 400;
}
.single-blog .comment form textarea.input-field {
  padding-top: 20px;
  height: 190px;
  resize: none;
}
.single-blog .comment form .btn-design {
  float: right;
  margin-top: 60px;
  background: #fff;
  color: #538de4;
}
.single-blog .comment form .btn-design:before {
  background: #538de4;
}
.single-blog .comment form .btn-design:hover {
  color: #fff;
}

/*============================================================================
11: Contact page
==============================================================================*/

/*============================================================================
11.1: Contact page content
==============================================================================*/
.contact-page .content .title {
  padding-bottom: 30px;
}
.contact-page .content .title span {
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: #538de4;
  text-transform: uppercase;
  padding-bottom: 7px;
}
.contact-page .content .title h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  color: #031026;
  border-bottom: 1px solid #ddd;
  padding-bottom: 25px;
}
.contact-page .content form .input-field {
  border: 0;
  border-bottom: 1px solid #ddd;
  width: 100%;
  height: 100px;
  outline: none;
}
.contact-page .content form .input-field::placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #757575;
  text-transform: capitalize;
}
.contact-page .content form .input-field:focus {
  outline: none;
}
.contact-page .content form textarea.input-field {
  height: 200px;
  resize: none;
  padding-top: 30px;
}
.contact-page .content form .btn-design {
  margin-top: 60px;
}
/*================================================================
11.2: Contact page Map
==================================================================*/
.contact-page .location #map {
  width: 100%;
  height: 580px;
}
