/*
@File: Nuso HTML Template

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************
** - Default Btn Style 
** - Section Title Style
** - Top Header Style
** - Navbar Area Style
** - Main Banner Area CSS  Style
** - Inner Banner Style
** - About Area Style
** - Other Area Style

*******************************************
/*

/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700&amp;display=swap");
body {
  font-size: 16px;
  line-height: 1.8;
  font-family: "Fira Sans", sans-serif;
  color: #727272;
}

p {
  color: #727272;
  margin-bottom: 10px;
}

p:last-child {
  margin-bottom: 0;
}

a {
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: none;
}

button {
  outline: 0;
}

button:focus {
  outline: 0;
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  color: #1b1919;
  line-height: 1.4;
}

h3 {
  font-size: 22px;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  display: table-cell;
  vertical-align: middle;
}

img {
  max-width: 100%;
}

.pt-150 {
  padding-top: 150px;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-20 {
  padding-top: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.pb-10 {
  padding-bottom: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.border-radius-5 {
  border-radius: 5px !important;
}

.border-radius-50 {
  border-radius: 50px !important;
}

.default-btn {
  padding: 10px 32px;
  color: #ffffff;
  font-weight: 400;
  position: relative;
  z-index: 1;
  background-color: #2a3392;
}

.default-btn::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #1b1919;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px 0 0 5px;
}

.default-btn::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background-color: #1b1919;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 0 5px 5px 0;
}

.default-btn i {
  position: relative;
  top: 2px;
  left: 5px;
}

.default-btn:hover {
  color: #ffffff;
}

.default-btn:hover::before {
  width: 50%;
}

.default-btn:hover::after {
  width: 50%;
}

.default-btn-two {
  padding: 10px 32px;
  color: #2a3392;
  font-weight: 400;
  position: relative;
  z-index: 1;
  background-color: transparent;
  border: 1px solid #2a3392;
}

.default-btn-two::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #2a3392;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px 0 0 5px;
}

.default-btn-two::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background-color: #2a3392;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 0 5px 5px 0;
}

.default-btn-two:hover {
  color: #ffffff;
}

.default-btn-two:hover::before {
  width: 50%;
}

.default-btn-two:hover::after {
  width: 50%;
}

.section-bg {
  background-color: #fbfbfb !important;
}

.section-bg-two {
  background-color: #f5f9ff !important;
}

/*================================
Section Title Style 
===================================*/
.section-title span {
  text-transform: capitalize;
  padding-bottom: 10px;
  font-weight: 600;
  line-height: 0;
  font-size: 15px;
  color: #1b1919;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 500;
  margin-top: 0;
  line-height: 1.2;
  color: #1b1919;
  margin-bottom: 0;
}

.section-title p {
  padding-top: 15px;
  font-weight: 300;
  margin-bottom: 0;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

/*================================
Section Title Style End
===================================*/
/*================================
Top Header Area
===================================*/
.top-header {
  padding: 10px 0;
}

.top-header-bg {
  background-color: #2a3392;
}

.header-left {
  float: left;
}

.header-left ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.header-left ul li {
  display: inline-block;
  text-align: left;
  position: relative;
  padding-left: 25px;
  margin-right: 35px;
  font-weight: 400;
  font-size: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-left ul li:last-child {
  margin-right: 0;
}

.header-left ul li:last-child::before {
  display: none;
}

.header-left ul li i {
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 58%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-left ul li a {
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-left ul li:hover i {
  color: #0072ff;
}

.header-left ul li:hover a {
  color: #0072ff;
}

.head-right {
  float: right;
}

.head-right .languages {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: 0;
  padding-left: 30px;
  z-index: 9999;
}

.head-right .languages i {
  font-size: 16px;
  position: absolute;
  top: 8px;
  left: 15px;
  color: #ffffff;
}

.head-right .languages .nice-select {
  height: 30px;
  line-height: 30px;
  background-color: transparent;
  border: 0;
  font-size: 15px;
  color: #ffffff;
  font-weight: 400;
}

.head-right .languages .nice-select:after {
  border-bottom: 1.5px solid #ffffff;
  border-right: 1.5px solid #ffffff;
  width: 8px;
  height: 8px;
}

.head-right .languages .nice-select ul {
  border: 0;
  border-radius: 0;
  display: block;
  width: 110px;
}

.head-right .languages .nice-select ul li {
  display: block;
  width: 100%;
  color: #02123a;
  font-size: 15px;
}

.head-right .social-link-area {
  display: inline-block;
  margin-left: 20px;
  position: relative;
  top: 1.5px;
}

.head-right .social-link-area .social-link {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.head-right .social-link-area .social-link li {
  display: inline-block;
  margin-right: 10px;
}

.head-right .social-link-area .social-link li:last-child {
  margin-right: 0;
}

.head-right .social-link-area .social-link li a i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #0072ff;
  border-radius: 50px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.head-right .social-link-area .social-link li a:hover i {
  background-color: #ffffff;
  color: #0072ff;
}

/*================================
Top Header Area End
===================================*/
/*=================================
Navbar Area
====================================*/
.navbar-area {
  background-color: #ffffff;
}

.navbar-area.is-sticky {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  background-color: #ffffff !important;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.desktop-nav {
  background-color: #ffffff;
  padding-top: 0;
  padding-bottom: 0;
}

.desktop-nav .navbar {
  padding-right: 0;
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
}

.desktop-nav .navbar ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.desktop-nav .navbar .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}

.desktop-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding-bottom: 25px;
  padding-top: 25px;
  padding-right: 0;
  padding-left: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item a {
  font-size: 16px;
  color: #1b1919;
  position: relative;
  z-index: 1;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-left: 15px;
  margin-right: 15px;
}

.desktop-nav .navbar .navbar-nav .nav-item a:hover, .desktop-nav .navbar .navbar-nav .nav-item a:focus, .desktop-nav .navbar .navbar-nav .nav-item a.active {
  color: #0072ff;
}

.desktop-nav .navbar .navbar-nav .nav-item a i {
  font-size: 18px;
  position: relative;
  top: 3px;
}

.desktop-nav .navbar .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item:hover a, .desktop-nav .navbar .navbar-nav .nav-item:focus a, .desktop-nav .navbar .navbar-nav .nav-item.active a {
  color: #0072ff;
}

.desktop-nav .navbar .navbar-nav .nav-item:hover a:before, .desktop-nav .navbar .navbar-nav .nav-item:focus a:before, .desktop-nav .navbar .navbar-nav .nav-item.active a:before {
  width: 100%;
  opacity: 1;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #ffffff;
  position: absolute;
  visibility: hidden;
  border-radius: 0;
  display: block;
  width: 250px;
  border: none;
  z-index: 99;
  opacity: 0;
  top: 80px;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-top: 0;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  padding: 0;
  border-bottom: 1px dashed #0073ff54;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:last-child {
  border: none;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: #1b1919;
  padding: 7px 15px;
  margin: 0;
  font-size: 15px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:before {
  display: none;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #0072ff;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a i {
  float: right;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: 245px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  margin-top: 11px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #1b1919;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #0072ff;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: 245px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #1b1919;
  font-size: 15px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #0072ff;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #1b1919;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #1b1919;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #1b1919;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #1b1919;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #1b1919;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #1b1919;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #1b1919;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #1b1919;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #1b1919;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #1b1919;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #1b1919;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  top: -15px;
  visibility: visible;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #1b1919;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  top: -15px;
  visibility: visible;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: #0072ff;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: #1b1919;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}

.desktop-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  top: 100%;
  opacity: 1;
  margin-top: 0;
  visibility: visible;
}

.mobile-responsive-nav {
  display: none;
}

.mobile-nav-area {
  position: absolute;
  top: -6px;
  right: 50px;
  display: none;
}

.mobile-nav-area .mobile-nav-btn .default-btn-two {
  padding: 5px 8px;
}

/*=================================
Navbar Area End
====================================*/
/*=================================
Banner Area
====================================*/
.banner-area {
  background-color: #f5fafe;
  position: relative;
  z-index: 1;
}

.banner-area-two {
  position: relative;
  z-index: 1;
}

.banner-content {
  margin-right: -42px;
}

.banner-content span {
  color: #0072ff;
  display: block;
  font-weight: 500;
}

.banner-content h1 {
  font-size: 71px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 600;
}

.banner-content h1 b {
  color: #0072ff;
  font-weight: 600;
}

.banner-content p {
  margin-bottom: 25px;
  font-size: 18px;
}

.banner-img {
  position: relative;
}

.banner-img .banner-img-dots {
  position: absolute;
  bottom: 200px;
  right: 40px;
  -webkit-animation: flash 5s infinite;
          animation: flash 5s infinite;
}

.banner-content-ml {
  margin-right: -200px;
  padding: 50px 50px 50px 0;
  margin-left: auto;
  position: relative;
  max-width: 720px;
  background-color: #ffffff;
}

.banner-content-two {
  margin-right: -200px;
  padding: 35px 35px 35px 0;
  margin-left: auto;
  position: relative;
  max-width: 720px;
  border-radius: 0 240px 240px 0;
  background-color: #ffffff;
}

.banner-shape .shape1 {
  position: absolute;
  z-index: -1;
  top: 5%;
  left: 0;
  -webkit-animation: flash 3s infinite;
          animation: flash 3s infinite;
}

.banner-shape .shape2 {
  position: absolute;
  z-index: -1;
  bottom: 5%;
  left: 0;
  -webkit-animation: rotated360 6s infinite linear;
          animation: rotated360 6s infinite linear;
}

.banner-shape .shape2 img {
  max-width: 100px;
}

.banner-shape .shape3 {
  position: absolute;
  z-index: -1;
  top: 13%;
  left: 39%;
  -webkit-animation: rotated360 6s infinite linear;
          animation: rotated360 6s infinite linear;
}

.banner-shape .shape4 {
  position: absolute;
  z-index: -1;
  top: 40%;
  left: 42%;
  -webkit-animation: flash 3s infinite;
          animation: flash 3s infinite;
}

.banner-shape .shape5 {
  position: absolute;
  top: 15%;
  left: 50%;
  -webkit-animation: animationFramesOne 15s linear infinite;
          animation: animationFramesOne 15s linear infinite;
}

.banner-shape .shape5 .circle1 {
  width: 10px;
  height: 10px;
  background-color: #9096c8;
  border-radius: 50px;
}

.banner-shape .shape6 {
  position: absolute;
  top: 40%;
  right: 20%;
  -webkit-animation: animationFramesOne 10s linear infinite;
          animation: animationFramesOne 10s linear infinite;
}

.banner-shape .shape6 .circle2 {
  width: 7px;
  height: 7px;
  background-color: #9096c8;
  border-radius: 50px;
}

.banner-shape .shape7 {
  position: absolute;
  top: 20%;
  right: 10%;
  -webkit-animation: movebounce-up 7s infinite;
          animation: movebounce-up 7s infinite;
}

.banner-shape .shape7 .circle3 {
  width: 15px;
  height: 15px;
  background-color: transparent;
  border: 1px solid #9096c8;
  border-radius: 50px;
}

.banner-shape .shape8 {
  position: absolute;
  top: 20%;
  right: 5%;
  -webkit-animation: movebounce-up 10s infinite;
          animation: movebounce-up 10s infinite;
}

.banner-shape .shape8 .circle4 {
  width: 7px;
  height: 7px;
  background-color: #9096c8;
  border-radius: 50px;
}

.banner-shape-two .shape1 {
  position: absolute;
  top: 5%;
  left: 0;
  -webkit-animation: flash 3s infinite;
          animation: flash 3s infinite;
}

.banner-shape-two .shape2 {
  position: absolute;
  bottom: 5%;
  left: 0;
  -webkit-animation: rotated360 6s infinite linear;
          animation: rotated360 6s infinite linear;
}

.banner-shape-two .shape2 img {
  max-width: 100px;
}

.banner-shape-two .shape3 {
  position: absolute;
  bottom: 12%;
  left: 45%;
  -webkit-animation: rotated360 6s infinite linear;
          animation: rotated360 6s infinite linear;
}

.banner-shape-two .shape4 {
  position: absolute;
  top: 15%;
  left: 42%;
  -webkit-animation: flash 3s infinite;
          animation: flash 3s infinite;
}

.banner-shape-two .shape5 {
  position: absolute;
  top: 15%;
  right: 20%;
  -webkit-animation: animationFramesOne 15s linear infinite;
          animation: animationFramesOne 15s linear infinite;
}

.banner-shape-two .shape5 .circle1 {
  width: 15px;
  height: 15px;
  background-color: transparent;
  border: 1px solid #9096c8;
  border-radius: 50px;
}

.banner-shape-three .shape1 {
  position: absolute;
  top: 20%;
  left: 25%;
  -webkit-animation: flash 3s infinite;
          animation: flash 3s infinite;
}

.banner-shape-three .shape2 {
  position: absolute;
  bottom: 35%;
  left: 40%;
  -webkit-animation: flash 3s infinite;
          animation: flash 3s infinite;
}

/*=================================
Banner Area End
====================================*/
/*================================
Inner Banner
==================================*/
.inner-banner {
  position: relative;
  z-index: 1;
  background-position: center center;
  background-size: cover;
}

.inner-banner::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background-color: #0072ff;
  opacity: 0.6;
}

.inner-banner .inner-title {
  padding-top: 148px;
  padding-bottom: 148px;
  position: relative;
  z-index: 1;
}

.inner-banner .inner-title h3 {
  font-size: 45px;
  color: #ffffff;
  font-weight: 500;
}

.inner-banner .inner-title ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inner-banner .inner-title ul li {
  font-size: 18px;
  color: #ffffff;
  display: inline-block;
  position: relative;
  margin-right: 25px;
  font-weight: 400;
}

.inner-banner .inner-title ul li:last-child {
  margin-right: 0;
}

.inner-banner .inner-title ul li:last-child::before {
  display: none;
}

.inner-banner .inner-title ul li::before {
  content: '';
  position: absolute;
  top: 10px;
  right: -15px;
  height: 17px;
  width: 1px;
  background-color: #ffffff;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}

.inner-banner .inner-title ul li a {
  color: #ffffff;
}

.inner-banner .inner-title ul li a:hover {
  color: #2a3392;
}
/*
.inner-bg1 {
  background-image: url(../images/inner-banner/inner-banner1.jpg);
}

.inner-bg2 {
  background-image: url(../images/inner-banner/inner-banner2.jpg);
}
*/
.inner-bg3 {
  background-image: url(../images/inner-banner/inner-banner3.jpg);
}

.inner-bg4 {
  /*background-image: url(../images/inner-banner/inner-banner4.jpg);*/
}

.inner-bg5 {
  /*background-image: url(../images/inner-banner/inner-banner5.jpg);*/
}

.inner-bg6 {
  background-image: url(../images/inner-banner/inner-banner6.jpg);
}

.inner-bg7 {
  background-image: url(../images/inner-banner/inner-banner7.jpg);
}

.inner-bg8 {
  background-image: url(../images/inner-banner/inner-banner8.jpg);
}

.inner-bg9 {
  background-image: url(../images/inner-banner/inner-banner9.jpg);
}

.inner-bg10 {
  background-image: url(../images/inner-banner/inner-banner10.jpg);
}

.inner-bg11 {
  background-image: url(../images/inner-banner/inner-banner11.jpg);
}

.inner-bg12 {
  background-image: url(../images/inner-banner/inner-banner12.jpg);
}

/*=================================
Banner Bottom Area
====================================*/
.banner-bottom-area {
  background-color: #2a3392;
  padding: 30px 0 20px;
}

.banner-bottom-content {
  max-width: 920px;
  margin: 0 auto;
}

.banner-bottom-content h3 {
  font-size: 35px;
  margin-bottom: 0;
  display: inline-block;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.2;
}

.banner-bottom-content .banner-bottom-btn {
  display: inline-block;
  margin-left: 60px;
  position: relative;
  top: -7px;
}

.banner-bottom-content .banner-bottom-btn .default-btn-two {
  color: #ffffff;
  border-color: #ffffff;
}

.banner-bottom-content .banner-bottom-btn .default-btn-two:hover {
  border-color: #1b1919;
}

.banner-bottom-content .banner-bottom-btn .default-btn-two:hover::before {
  background-color: #1b1919;
}

.banner-bottom-content .banner-bottom-btn .default-btn-two:hover::after {
  background-color: #1b1919;
}

/*=================================
Banner Bottom Area End
====================================*/
/*=================================
About Area
====================================*/
.about-img {
  position: relative;
  padding-right: 200px;
  margin-bottom: 30px;
}

.about-img img {
  border-radius: 50%;
}

.about-img .about-sub-img {
  position: absolute;
  top: 100px;
  right: 0;
}

.about-img .about-sub-img img {
  border-radius: 50%;
  width: 300px;
  height: 300px;
}

.about-img-two {
  margin-bottom: 30px;
}

.about-content {
  margin-bottom: 30px;
  position: relative;
}

.about-content span {
  text-transform: capitalize;
  padding-bottom: 10px;
  font-weight: 600;
  line-height: 0;
  font-size: 15px;
  color: #0072ff;
}

.about-content h2 {
  font-size: 35px;
  font-weight: 500;
  margin-top: 0;
  line-height: 1.2;
  color: #1b1919;
  margin-bottom: 0;
}

.about-content p {
  padding-top: 15px;
  font-weight: 300;
  margin-bottom: 20px;
}

.about-content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.about-content ul li {
  display: block;
  margin-bottom: 10px;
  color: #727272;
  font-size: 16px;
}

.about-content ul li i {
  font-size: 20px;
  color: #0072ff;
  position: relative;
  top: 3px;
  margin-right: 3px;
}

.about-content ul li:last-child {
  margin-bottom: 20px;
}

.about-content .about-shape {
  position: absolute;
  top: -20px;
  right: -20px;
}

.about-img-three {
  position: relative;
  padding-right: 150px;
  margin-bottom: 130px;
}

.about-img-three .about-sub-img {
  position: absolute;
  bottom: -100px;
  right: 0;
}

.about-img-three .about-sub-img img {
  max-width: 400px;
}

/*=================================
About Area End
====================================*/
/*=================================
Offer Area
====================================*/
.offer-area {
  position: relative;
}

.offer-shape {
  position: absolute;
  top: 25%;
  right: 5%;
}

.offer-card {
  background-color: #fbfbfb;
  padding: 40px;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}

.offer-card i {
  font-size: 45px;
  margin-bottom: 12px;
  color: #0072ff;
}

.offer-card h3 {
  margin-bottom: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.offer-card p {
  margin-bottom: 0;
}

.offer-card .dots {
  position: absolute;
  top: 30px;
  right: 30px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.offer-card:hover {
  background-color: #ffffff;
}

.offer-card:hover h3 {
  color: #0072ff;
}

.offer-card:hover .dots {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.offer-card-two {
  padding: 40px;
  margin-bottom: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  border: 1px solid #dedcdc;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

.offer-card-two::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  width: 100%;
  border-left: 1px solid #0072ff;
  border-right: 1px solid #0072ff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.offer-card-two::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 0%;
  height: 100%;
  border-top: 1px solid #0072ff;
  border-bottom: 1px solid #0072ff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.offer-card-two i {
  font-size: 30px;
  margin-bottom: 12px;
  color: #ffffff;
  width: 60px;
  height: 60px;
  line-height: 70px;
  background-color: #0072ff;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
}

.offer-card-two h3 {
  margin-bottom: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.offer-card-two p {
  margin-bottom: 0;
}

.offer-card-two .dots {
  position: absolute;
  top: 30px;
  right: 30px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.offer-card-two:hover::before {
  height: 100%;
}

.offer-card-two:hover::after {
  width: 100%;
}

.offer-card-two:hover h3 {
  color: #0072ff;
}

.offer-card-two:hover .dots {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.offer-item {
  padding: 30px;
  margin-bottom: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  text-align: center;
  background-color: #ffffff;
}

.offer-item i {
  font-size: 30px;
  margin-bottom: 12px;
  color: #ffffff;
  width: 60px;
  height: 60px;
  line-height: 70px;
  background-color: #0072ff;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.offer-item h3 {
  margin-bottom: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.offer-item p {
  margin-bottom: 0;
}

.offer-item .dots {
  position: absolute;
  top: 30px;
  right: 30px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.offer-item:hover h3 {
  color: #0072ff;
}

.offer-item:hover .dots {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*=================================
Offer Area End
====================================*/
/*=================================
Domain Area 
====================================*/
.domain-area {
  background-color: #fbfbfb;
  position: relative;
}

.domain-area .section-title {
  margin-bottom: 40px;
}

.domain-area .circle-shape .circle1 {
  width: 20px;
  height: 20px;
  border-radius: 50px;
  background-color: #97c4fd;
  position: absolute;
  top: 10%;
  left: 5%;
}

.domain-area .circle-shape .circle2 {
  position: absolute;
  top: 45%;
  right: 5%;
  width: 7px;
  height: 7px;
  border-radius: 50px;
  background-color: #97c4fd;
}

.domain-content {
  max-width: 770px;
  margin: 0 auto;
}

.domain-content .domain-form {
  background-color: #fbfbfb;
  border: 1px solid #d9d9d9;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.domain-content .domain-form .form-group {
  position: relative;
  margin-bottom: 0;
  position: relative;
}

.domain-content .domain-form .form-group .form-control {
  height: 50px;
  padding: 0 25px;
  border: none;
  color: #727272;
  background-color: #fbfbfb;
  font-weight: 400;
  border-radius: 0;
  font-size: 15px;
}

.domain-content .domain-form .form-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  z-index: 5;
}

.domain-content .domain-form .default-btn {
  float: right;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
}

.domain-content .domain-form .nice-select {
  height: 50px;
  width: 100%;
  line-height: 50px;
  font-size: 15px;
  margin-bottom: 0;
  padding-left: 20px;
  border-radius: 0;
  background-color: #2a3392;
  color: #ffffff;
}

.domain-content .domain-form .nice-select .list {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
          box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.domain-content .domain-form .nice-select .list .option {
  -webkit-transition: .6s;
  transition: .6s;
  color: #0072ff;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 0;
}

.domain-content .domain-form .nice-select .list .option:hover {
  background-color: #2a3392 !important;
  color: #ffffff;
}

.domain-content .domain-form .nice-select .list .option .selected {
  background-color: transparent;
  font-weight: 600;
}

.domain-content .domain-form .nice-select::after {
  height: 8px;
  width: 8px;
  border-color: #555555;
  top: 45%;
  right: 20px;
}

.domain-content .domain-form .dot-shape {
  position: absolute;
  z-index: -1;
  top: 8px;
  right: -85px;
}

.domain-content .domain-name {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.domain-content .domain-name li {
  display: inline-block;
  margin-right: 45px;
  position: relative;
  font-size: 16px;
}

.domain-content .domain-name li::before {
  content: '';
  position: absolute;
  top: 10px;
  height: 10px;
  width: 1px;
  right: -20px;
  background-color: #1b1919;
}

.domain-content .domain-name li:last-child {
  margin-right: 0;
}

.domain-content .domain-name li:last-child::before {
  display: none;
}

.domain-content .domain-name li a {
  color: #0072ff;
}

.domain-content .domain-name li a span {
  color: #727272;
  margin-left: 10px;
}

.domain-content .domain-name li a:hover {
  color: #2a3392;
}

.domain-content .domain-name li a:hover span {
  color: #1b1919;
}

.domain-area-two {
  background-color: #2a3392;
  position: relative;
}

.domain-area-two .section-title {
  margin-bottom: 40px;
}

.domain-area-two .section-title h2 {
  color: #ffffff;
}

.domain-area-two .section-title p {
  color: #ffffff;
}

.domain-area-two .domain-content {
  position: relative;
  z-index: 1;
}

.domain-area-two .domain-content .domain-name li::before {
  background-color: #ffffff;
}

.domain-area-two .domain-content .domain-name li a span {
  color: #ffffff;
}

.domain-area-two .domain-content .domain-name li a:hover {
  color: #1b1919;
}

.domain-area-two .domain-content .domain-name li a:hover span {
  color: #1b1919;
}

.domain-area-two .domain-content .circle-shape {
  position: absolute;
  z-index: -1;
  top: -35px;
  left: -70px;
}

.domain-area-two .circle-shape2 .circle1 {
  width: 20px;
  height: 20px;
  border-radius: 50px;
  background-color: #ffffff;
  position: absolute;
  top: 10%;
  left: 5%;
  opacity: 0.5;
}

.domain-area-two .circle-shape2 .circle2 {
  position: absolute;
  top: 45%;
  right: 5%;
  width: 7px;
  height: 7px;
  border-radius: 50px;
  background-color: #ffffff;
  opacity: 0.5;
}

.domain-area-two .domain-name-two {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.domain-area-two .domain-name-two li {
  display: inline-block;
  margin-right: 45px;
  position: relative;
  font-size: 16px;
}

.domain-area-two .domain-name-two li::before {
  content: '';
  position: absolute;
  top: 10px;
  height: 20px;
  width: 1px;
  right: -25px;
  background-color: #ffffff;
}

.domain-area-two .domain-name-two li:last-child {
  margin-right: 0;
}

.domain-area-two .domain-name-two li:last-child::before {
  display: none;
}

.domain-area-two .domain-name-two li a {
  color: #0072ff;
  padding: 5px 10px;
  border: 1px solid #ffffff;
}

.domain-area-two .domain-name-two li a span {
  color: #ffffff;
  margin-left: 10px;
}

.domain-area-two .domain-name-two li a:hover {
  background-color: #0072ff;
  color: #ffffff;
  border-color: #0072ff;
}

.domain-area-two .domain-name-two li a:hover span {
  color: #1b1919;
}

.domain-form-bg {
  background-color: #ffffff26 !important;
  border: 1px solid #ffffff26 !important;
  padding: 20px;
}

.domain-form-bg .domain-name li a {
  padding: 5px;
  border: 1px solid #ffffff;
}

.domain-form-bg .domain-name li a span {
  color: #ffffff;
}

.domain-form-bg .domain-name li a:hover {
  color: #1b1919;
}

.domain-form-bg .domain-name li a:hover span {
  color: #1b1919;
}

.domain-card {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 15px;
}

.domain-card .domain-title {
  max-width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 24px;
  border-radius: 50px;
  margin: 0 auto;
  background-color: #2a3392;
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.domain-card .domain-title::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0%;
  border-radius: 50px;
  background-color: #0072ff;
  opacity: 0;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.domain-card h3 {
  margin-bottom: 15px;
  margin-top: 15px;
  font-weight: 600;
  font-size: 24px;
  color: #0072ff;
}

.domain-card h3 sub {
  font-size: 16px;
  color: #0072ff;
}

.domain-card p {
  margin-bottom: 10px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.domain-card .register-btn {
  display: inline-block;
  color: #2a3392;
  font-weight: 600;
  margin-bottom: 0;
  position: relative;
}

.domain-card .register-btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
  background-color: #2a3392;
  -webkit-transition: 0.9s;
  transition: 0.9s;
  opacity: 0.5;
}

.domain-card .register-btn:hover {
  color: #0072ff;
  letter-spacing: 0.50px;
}

.domain-card .register-btn:hover::before {
  background-color: #0072ff;
}

.domain-card:hover .domain-title {
  background-image: none;
  color: #ffffff;
}

.domain-card:hover .domain-title::before {
  height: 100%;
  opacity: 1;
}

.domain-card:hover .register-btn {
  color: #0072ff;
  letter-spacing: 0.50px;
}

.domain-card:hover .register-btn::before {
  background-color: #0072ff;
}

/*=================================
Domain Area End
====================================*/
.faq-accordion {
  margin-bottom: 30px;
}

.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item {
  display: block;
  margin-bottom: 15px;
  border: none;
}

.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
  padding: 10px 60px 12px 20px;
  color: #1b1919;
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 500;
  border-radius: 30px;
  border: 1px solid #2a3392;
}

.faq-accordion .accordion .accordion-title i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 24px;
  width: 30px;
  height: 30px;
  color: #1b1919;
  text-align: center;
  line-height: 30px;
  background-color: transparent;
}

.faq-accordion .accordion .accordion-title.active {
  background-color: #2a3392;
  border-radius: 30px 30px 0 0;
  border-color: #2a3392;
  color: #ffffff;
}

.faq-accordion .accordion .accordion-title.active i {
  color: #ffffff;
}

.faq-accordion .accordion .accordion-title.active i::before {
  content: "\eaed";
}

.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  margin-top: 0;
}

.faq-accordion .accordion .accordion-content p {
  margin-top: -6px;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 3px;
  background-color: #f5f9ff;
  color: #727272;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 0 0 30px 30px;
}

.faq-accordion .accordion .accordion-content.show {
  display: block;
}

/*=================================
Work Area 
====================================*/
.work-card {
  text-align: center;
  margin-bottom: 30px;
}

.work-card .number {
  font-size: 40px;
  color: #97c4fd;
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: 500;
}

.work-card i {
  width: 80px;
  height: 80px;
  line-height: 95px;
  font-size: 50px;
  background-color: #0072ff;
  color: #ffffff;
  display: inline-block;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
}

.work-card h3 {
  margin-bottom: 15px;
}

.work-card p {
  max-width: 350px;
  margin: 0 auto;
}

.work-card-two {
  text-align: center;
  margin-bottom: 30px;
}

.work-card-two .number {
  font-size: 35px;
  color: #97c4fd;
  line-height: 1.2;
  margin-bottom: 20px;
}

.work-card-two .work-icon {
  width: 70px;
  height: 70px;
  line-height: 90px;
  font-size: 35px;
  background-color: transparent;
  color: #0072ff;
  display: inline-block;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.work-card-two .work-icon::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 5px;
  right: 5px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px dashed #0072ff;
}

.work-card-two .work-icon::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px dashed #0072ff;
}

.work-card-two h3 {
  margin-bottom: 15px;
  margin-top: 10px;
}

.work-card-two p {
  max-width: 350px;
  margin: 0 auto;
}

/*=================================
Work Area End
====================================*/
/*=================================
Service Area
====================================*/
.service-area {
  position: relative;
}

.service-area .services-shape1 {
  position: absolute;
  top: 50%;
  right: 0%;
}

.service-card {
  margin-bottom: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px rgba(102, 102, 102, 0.1);
          box-shadow: 0 0 15px rgba(102, 102, 102, 0.1);
  position: relative;
  z-index: 1;
  padding: 20px;
  border-radius: 10px;
}

.service-card::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #0072ff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px;
  opacity: 0;
}

.service-card i {
  font-size: 50px;
  color: #0072ff;
  line-height: 1;
  margin-bottom: 0;
}

.service-card h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.service-card h3 a {
  color: #1b1919;
}

.service-card p {
  margin-bottom: 0;
}

.service-card:hover::before {
  width: 100%;
  opacity: 1;
}

.service-card:hover i {
  color: #ffffff;
}

.service-card:hover h3 a {
  color: #ffffff;
}

.service-card:hover p {
  color: #ffffff;
}

.service-card-two {
  margin-bottom: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px rgba(102, 102, 102, 0.1);
          box-shadow: 0 0 15px rgba(102, 102, 102, 0.1);
  position: relative;
  z-index: 1;
  padding: 20px;
  border-radius: 10px;
}

.service-card-two::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #0072ff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px;
  opacity: 0;
}

.service-card-two i {
  font-size: 30px;
  width: 70px;
  height: 70px;
  line-height: 80px;
  text-align: center;
  background-color: #e1edfb;
  border-radius: 50px;
  color: #0072ff;
  margin-bottom: 0;
  display: inline-block;
}

.service-card-two h3 {
  margin-top: 15px;
  margin-bottom: 10px;
}

.service-card-two h3 a {
  color: #1b1919;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.service-card-two p {
  margin-bottom: 10px;
}

.service-card-two .read-btn {
  font-size: 15px;
  color: #0072ff;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.service-card-two:hover::before {
  width: 100%;
  opacity: 1;
}

.service-card-two:hover i {
  background-color: #ffffff;
  color: #0072ff;
}

.service-card-two:hover h3 a {
  color: #ffffff;
}

.service-card-two:hover p {
  color: #ffffff;
}

.service-card-two:hover .read-btn {
  color: #ffffff;
}

.service-item {
  margin-bottom: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px rgba(102, 102, 102, 0.1);
          box-shadow: 0 0 15px rgba(102, 102, 102, 0.1);
  position: relative;
  z-index: 1;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.service-item::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #0072ff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px;
  opacity: 0;
}

.service-item i {
  font-size: 30px;
  width: 70px;
  height: 70px;
  line-height: 80px;
  text-align: center;
  background-color: #e1edfb;
  border-radius: 50px;
  color: #0072ff;
  margin-bottom: 0;
  display: inline-block;
}

.service-item h3 {
  margin-top: 15px;
  margin-bottom: 10px;
}

.service-item h3 a {
  color: #1b1919;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.service-item p {
  margin-bottom: 0;
}

.service-item .read-btn {
  font-size: 15px;
  color: #0072ff;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.service-item .read-btn:hover {
  color: #2a3392;
}

.service-item:hover h3 a {
  color: #ffffff;
}

.service-item:hover p {
  color: #ffffff;
}

.service-item:hover i {
  background-color: #ffffff;
}

.service-item:hover::before {
  width: 100%;
  opacity: 1;
}

.services-article-content {
  margin-bottom: 20px;
}

.services-article-content img {
  border-radius: 5px;
  margin-bottom: 25px;
}

.services-article-content .content h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

.services-article-img {
  margin-bottom: 30px;
}

.services-article-img img {
  border-radius: 5px;
}

.services-article-img-content {
  margin-bottom: 30px;
}

.services-article-img-content p {
  margin-bottom: 0;
}

.services-choose-area {
  margin-bottom: 30px;
}

.services-choose-area h2 {
  font-size: 26px;
  color: #1b1919;
  margin-bottom: 20px;
}

.services-choose-area p {
  margin-bottom: 20px;
}

.services-choose-area ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.services-choose-area ul li {
  display: block;
  color: #727272;
  margin-bottom: 10px;
}

.services-choose-area ul li:last-child {
  margin-bottom: 0;
}

.services-choose-area ul li i {
  font-size: 18px;
  color: #0072ff;
  margin-right: 10px;
}

.services-choose-area ul li:hover {
  color: #0072ff;
}

.services-choose-area ul li:hover i {
  color: #2a3392;
}

.services-related h2 {
  font-size: 26px;
  color: #1b1919;
  margin-bottom: 20px;
}

.services-side-bar-widget {
  margin-bottom: 30px;
}

.services-side-bar-widget .title {
  font-size: 22px;
  color: #ffffff;
  background-color: #0072ff;
  font-weight: 600;
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 20px 30px;
  margin-bottom: 0;
}

.services-side-bar-widget .service-info {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  padding: 20px 30px 25px;
  margin: 0;
  list-style: none;
}

.services-side-bar-widget .service-info li {
  display: block;
  position: relative;
  padding-left: 85px;
  margin-bottom: 15px;
}

.services-side-bar-widget .service-info li:last-child {
  margin-bottom: 0;
}

.services-side-bar-widget .service-info li i {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 32px;
  display: inline-block;
  text-align: center;
  background-color: #0072ff;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.services-side-bar-widget .service-info li .content h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.services-side-bar-widget .service-info li .content a {
  color: #727272;
}

.services-side-bar-widget .service-info li .content a:hover {
  color: #2a3392;
}

.services-side-bar-widget .service-info li:hover i {
  border-radius: 50px;
}

.services-side-bar-widget .service-info li:hover .content a {
  color: #0072ff;
}

.services-side-bar-widget .services-categories {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  padding: 20px 30px 25px;
  margin: 0;
  list-style: none;
}

.services-side-bar-widget .services-categories li {
  display: block;
  margin-bottom: 10px;
}

.services-side-bar-widget .services-categories li:last-child {
  margin-bottom: 0;
}

.services-side-bar-widget .services-categories li a {
  padding-left: 20px;
  position: relative;
  color: #1b1919;
  font-size: 16px;
}

.services-side-bar-widget .services-categories li a::before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 7px;
  height: 7px;
  background-color: #0072ff;
}

.services-side-bar-widget .services-categories li a:hover {
  color: #0072ff;
}

/*=================================
Service Area End
====================================*/
/*=================================
Team Area
====================================*/
.team-area {
  position: relative;
}

.team-area .team-shape1 {
  position: absolute;
  bottom: 20%;
  left: 0%;
}

.team-area .owl-dots {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.team-area .owl-dots .owl-dot span {
  background-color: #0072ff !important;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  margin: 0 7px;
  width: 12px !important;
  height: 12px !important;
  position: relative;
  z-index: 1;
}

.team-area .owl-dots .owl-dot span::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid #0072ff;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.team-area .owl-dots .owl-dot.active span {
  width: 10px !important;
  height: 10px !important;
}

.team-area .owl-dots .owl-dot.active span::before {
  opacity: 1;
}

.team-area .owl-dots .owl-dot:hover span {
  width: 10px !important;
  height: 10px !important;
}

.team-area .owl-dots .owl-dot:hover span::before {
  opacity: 1;
}

.team-area .team-slider .team-card {
  margin-right: 15px;
  margin-right: 15px;
}

.team-card {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

.team-card::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 0%;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 15px;
  background-color: #0072ff;
  opacity: 0;
}

.team-card .team-img {
  position: relative;
}

.team-card .team-img a img {
  border-radius: 15px;
}

.team-card .team-img .social-link {
  list-style-type: none;
  margin: 15px 0 0;
  padding: 0;
  position: absolute;
  top: 30px;
  right: 30px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.team-card .team-img .social-link li {
  display: block;
  margin-bottom: 10px;
}

.team-card .team-img .social-link li:last-child {
  margin-bottom: 0;
}

.team-card .team-img .social-link li a i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #0072ff;
  border-radius: 50px;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.team-card .team-img .social-link li a:hover i {
  background-color: #1b1919;
  color: #ffffff;
}

.team-card .content {
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.team-card .content h3 {
  margin-bottom: 5px;
}

.team-card .content h3 a {
  color: #1b1919;
}

.team-card .content span {
  margin-bottom: 0;
}

.team-card .content .circle-img {
  position: absolute;
  z-index: -1;
  top: 20px;
  left: 20px;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.team-card:hover::before {
  width: 100%;
  opacity: 1;
}

.team-card:hover .team-img .social-link {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.team-card:hover .content h3 a {
  color: #ffffff;
}

.team-card:hover .content span {
  color: #ffffff;
}

.team-card:hover .content .circle-img {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.team-item {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

.team-item::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 15px;
  background-color: #2a3392;
  opacity: 1;
}

.team-item .team-img {
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.team-item .team-img a img {
  border-radius: 15px;
}

.team-item .team-img .social-link {
  padding-left: 0;
  list-style-type: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  margin: 0 auto;
  text-align: center;
}

.team-item .team-img .social-link li {
  display: inline-block;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  margin: 0 5px;
}

.team-item .team-img .social-link li a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #0072ff;
  text-align: center;
  position: relative;
  font-size: 18px;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.team-item .team-img .social-link li a i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}

.team-item .team-img .social-link li a:hover {
  color: #2a3392;
}

.team-item .team-img .social-link li:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.team-item .team-img .social-link li:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.team-item .team-img .social-link li:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.team-item .team-img .social-link li:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.team-item .content {
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.team-item .content h3 {
  margin-bottom: 5px;
}

.team-item .content h3 a {
  color: #1b1919;
}

.team-item .content span {
  margin-bottom: 0;
}

.team-item .content .circle-img {
  position: absolute;
  z-index: -1;
  top: 20px;
  left: 20px;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.team-item:hover::before {
  height: 100%;
  opacity: 1;
}

.team-item:hover .team-img {
  padding: 10px 10px 0;
}

.team-item:hover .team-img .social-link li {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.team-item:hover .content h3 a {
  color: #ffffff;
}

.team-item:hover .content span {
  color: #ffffff;
}

.team-item:hover .content .circle-img {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*=================================
Team Area End
====================================*/
/*=================================
Support Area
====================================*/
.support-content {
  margin-left: 30px;
}

.support-content h2 {
  font-size: 50px;
  color: #1b1919;
  margin-bottom: 10px;
  line-height: 1.2;
  max-width: 500px;
}

.support-content p {
  margin-bottom: 20px;
  max-width: 550px;
}

.support-bg {
  background-image: url(../images/support/support-bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 150px;
}

.support-bg::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#2a33925e), to(#2a3392));
  background-image: linear-gradient(to right, #2a33925e, #2a3392);
}

.support-content-two {
  max-width: 500px;
  margin-left: auto;
}

.support-content-two h2 {
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.2;
  max-width: 500px;
}

.support-content-two p {
  margin-bottom: 20px;
  max-width: 550px;
  color: #ffffff;
}

.support-three-area {
  background-image: url(../../new-images/banner-sub.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 150px;
}

.support-three-area::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#98c5fe), to(#98c4fe00));
  background-image: linear-gradient(to right, #98c5fe, #98c4fe00);
}

.support-content-three {
  max-width: 500px;
}

.support-content-three h2 {
  font-size: 50px;
  color: #1b1919;
  margin-bottom: 10px;
  line-height: 1.2;
  max-width: 500px;
}

.support-content-three p {
  margin-bottom: 20px;
  max-width: 550px;
  color: #1b1919;
}

/*=================================
Support Area End
====================================*/
/*=================================
Pricing Area
====================================*/
.pricing-area {
  position: relative;
}

.pricing-shape {
  position: absolute;
  z-index: -1;
  top: 10%;
  left: 60%;
}

.pricing-card {
  margin-bottom: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  position: relative;
}

.pricing-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #2a3392;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.pricing-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 3px;
  background-color: #0072ff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.pricing-card h4 {
  padding: 20px;
  text-align: center;
  font-size: 20px;
  color: #ffffff;
  background-color: #2a3392;
  margin-bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 400;
}

.pricing-card .sub-title {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid #f3f3f3;
  margin-bottom: 20px;
}

.pricing-card .sub-title h3 {
  font-size: 35px;
  color: #0072ff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.pricing-card .sub-title h3 b {
  font-size: 20px;
  color: #727272;
  font-weight: 400;
}

.pricing-card .sub-title span {
  color: #1b1919;
}

.pricing-card ul {
  list-style-type: none;
  max-width: 300px;
  margin: 0 auto;
  padding: 0;
}

.pricing-card ul li {
  display: block;
  margin-bottom: 10px;
  color: #1b1919;
  font-size: 16px;
}

.pricing-card ul li i {
  font-size: 20px;
  color: #0072ff;
  position: relative;
  top: 3px;
  margin-right: 3px;
}

.pricing-card ul li:last-child {
  margin-bottom: 20px;
}

.pricing-card .price-btn {
  padding-top: 20px;
  padding-bottom: 25px;
  text-align: center;
  border-top: 1px solid #f3f3f3;
}

.pricing-card .price-btn .default-btn-two {
  padding: 7px 24px;
  margin: 0 auto;
}

.pricing-card:hover h4 {
  background-color: #0072ff;
}

.pricing-card:hover::after {
  width: 100%;
}

.pricing-card:hover .price-btn .default-btn-two {
  background-color: #2a3392;
  color: #ffffff;
}

.pricing-wraps {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}

.pricing-wraps .pricing-table table {
  margin-bottom: 0;
}

.pricing-wraps .pricing-table table thead tr {
  border-top: none;
}

.pricing-wraps .pricing-table table thead tr th {
  border-width: 0px;
  vertical-align: middle;
  border: none;
  padding: 0.95rem;
}

.pricing-wraps .pricing-table table thead tr th:last-child {
  border-right: none;
}

.pricing-wraps .pricing-table table thead tr th.tr-head {
  background-color: #f5f9ff;
  text-align: center;
  border-radius: 30px 0 0 0;
  padding: 0;
}

.pricing-wraps .pricing-table table thead tr th.tr-head h2 {
  color: #1b1919;
  font-size: 20px;
  margin-bottom: 0;
}

.pricing-wraps .pricing-table table thead tr th.tr-head-side {
  padding: 0 20px;
}

.pricing-wraps .pricing-table table thead tr th.price-table-bg {
  background-color: #f5f9ff;
}

.pricing-wraps .pricing-table table thead tr th .pricing-table-title {
  padding: 30px 10px;
}

.pricing-wraps .pricing-table table thead tr th .pricing-table-title h2 {
  font-size: 19px;
  color: #1b1919;
  margin-bottom: 10px;
  font-weight: 600;
}

.pricing-wraps .pricing-table table thead tr th .pricing-table-title span {
  font-size: 15px;
  color: #727272;
  font-weight: 400;
}

.pricing-wraps .pricing-table table thead tr th .pricing-table-title .pricing-content {
  margin-top: 15px;
  position: relative;
  z-index: 1;
}

.pricing-wraps .pricing-table table thead tr th .pricing-table-title .pricing-content h3 {
  font-size: 45px;
  color: #2a3392;
  margin-bottom: 0;
  font-weight: 600;
  margin-right: 25px;
}

.pricing-wraps .pricing-table table thead tr th .pricing-table-title .pricing-content .content {
  position: absolute;
  bottom: 10px;
  left: 110px;
}

.pricing-wraps .pricing-table table thead tr th .pricing-table-title .pricing-content .content p {
  color: #727272;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1;
}

.pricing-wraps .pricing-table table thead tr th .pricing-table-title.pricing-table-font {
  padding: 30px 0;
}

.pricing-wraps .pricing-table table tbody tr {
  border: none;
}

.pricing-wraps .pricing-table table tbody tr td {
  padding: 10px 10px;
  font-size: 15px;
  border-left: none;
  border-bottom: none;
  border-top: none;
  border-right: none;
}

.pricing-wraps .pricing-table table tbody tr td.td-title {
  font-size: 16px;
  color: #ffffff;
  vertical-align: middle;
}

.pricing-wraps .pricing-table table tbody tr td.td-bg {
  background-color: #293AA5;
}

.pricing-wraps .pricing-table table tbody tr td.td-bg-2 {
  background-color: #0072ff;
}

.pricing-wraps .pricing-table table tbody tr td.border-radius {
  border-radius: 0 0 0 30px;
}

.pricing-wraps .pricing-table table tbody tr td.tb-pl {
  padding: 10px 30px;
}

.pricing-wraps .pricing-table table tbody tr td.td-name {
  font-size: 16px;
  text-align: center;
  vertical-align: middle;
  color: #2a3392;
}

.pricing-wraps .pricing-table table tbody tr td.td-name i {
  font-size: 20px;
  line-height: 0;
}

.pricing-wraps .pricing-table table tbody tr td.td-name .bx-x {
  color: #707070;
}

.pricing-wraps .pricing-table table tbody tr td.td-name-bg {
  background-color: #f1f1f1;
}

.pricing-wraps .pricing-table table tbody tr td .get-btn {
  padding: 7px 16px;
  color: #2a3392;
  border: 1px solid #2a3392;
  border-radius: 50px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 500;
}

.pricing-wraps .pricing-table table tbody tr td .get-btn:hover {
  background-color: #2a3392;
  color: #ffffff;
}

.pricing-wraps .pricing-table table tbody tr td .get-btn-tb {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/*=================================
Pricing Area End
====================================*/
/*=================================
Play Btn Area
====================================*/
.play-btn-area {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 200px 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.play-btn-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #0072ff;
  opacity: 0.5;
}

.play-btn-area .play-btn {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
}

.play-btn-area .play-btn i {
  width: 90px;
  height: 90px;
  font-size: 35px;
  color: #0072ff;
  background-color: #ffffff;
  border-radius: 50px;
  display: inline-block;
  line-height: 103px;
  padding-left: 5px;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 0 auto;
}

.play-btn-area .play-btn::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: -30px;
  right: 0;
  top: -30px;
  width: 150px;
  height: 150px;
  background-color: #ffffff59;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-animation: ripple 1s linear infinite;
          animation: ripple 1s linear infinite;
}

.play-btn-area .play-btn:hover i {
  background-color: #1b1919;
  color: #ffffff;
}

.play-btn-area .play-btn:hover::before {
  background-color: #1b1919;
  opacity: 0.1;
}

.play-btn-area .play-on-btn2 {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
}

.play-btn-area .play-on-btn2 i {
  width: 90px;
  height: 90px;
  font-size: 35px;
  color: #ffffff;
  background-color: #0072ff;
  border-radius: 50px;
  display: inline-block;
  line-height: 103px;
  padding-left: 5px;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 0 auto;
}

.play-btn-area .play-on-btn2::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid #0072ff;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-animation: ripple 1s linear infinite;
          animation: ripple 1s linear infinite;
}

.play-btn-area .play-on-btn2:hover i {
  background-color: #1b1919;
  color: #ffffff;
}

.play-btn-area .play-on-btn2:hover::before {
  border-color: #1b1919;
}

.play-bg {
  background-image: url(../newimages/products/about.jpg);
}

.play-bg2 {
  background-image: url(../images/play-btn-bg2.jpg);
}

/*=================================
Play Btn Area End
====================================*/
/*=================================
Testimonial Area
====================================*/
.testimonial-slider .testimonial-item {
  margin-top: 70px;
  margin-left: 10px;
  margin-right: 10px;
}

.testimonial-area .owl-dots {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.testimonial-area .owl-dots .owl-dot span {
  background-color: #0072ff !important;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  margin: 0 7px;
  width: 12px !important;
  height: 12px !important;
  position: relative;
  z-index: 1;
}

.testimonial-area .owl-dots .owl-dot span::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid #0072ff;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.testimonial-area .owl-dots .owl-dot.active span {
  width: 10px !important;
  height: 10px !important;
}

.testimonial-area .owl-dots .owl-dot.active span::before {
  opacity: 1;
}

.testimonial-area .owl-dots .owl-dot:hover span {
  width: 10px !important;
  height: 10px !important;
}

.testimonial-area .owl-dots .owl-dot:hover span::before {
  opacity: 1;
}

.testimonial-item {
  padding: 40px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  border-radius: 15px;
}

.testimonial-item img {
  position: relative;
  margin-top: -100px;
  border-radius: 50%;
  width: 120px !important;
  height: 120px !important;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-item h3 {
  margin-top: 15px;
  margin-bottom: 5px;
  color: #0072ff;
}

.testimonial-item .rating {
  color: #ffc107;
  font-size: 18px;
}

.testimonial-item p {
  margin-top: 10px;
  max-width: 545px;
  margin-left: auto;
  margin-right: auto;
  color: #1b1919;
  margin-bottom: 0;
}

.testimonial-item .quote {
  position: absolute;
  right: 0;
  top: -50px;
  font-size: 100px;
  color: #0072ff;
  line-height: 1;
}

.testimonial-area-two {
  position: relative;
}

.testimonial-area-two .owl-nav {
  margin-top: 0;
}

.testimonial-area-two .owl-nav .owl-prev {
  position: absolute;
  bottom: 240px;
  right: 100px;
  font-size: 22px !important;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  text-align: center;
  width: 45px;
  height: 45px;
  line-height: 45px !important;
  border-radius: 50px !important;
  background-color: #ffffff !important;
  color: #0072ff !important;
  border: 1px solid #0072ff !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.testimonial-area-two .owl-nav .owl-prev i {
  position: relative;
  top: 2px;
}

.testimonial-area-two .owl-nav .owl-prev:hover {
  background-color: #0072ff !important;
  color: #ffffff !important;
}

.testimonial-area-two .owl-nav .owl-next {
  position: absolute;
  bottom: 240px;
  right: 40px;
  font-size: 22px !important;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  border-radius: 50px !important;
  text-align: center;
  width: 45px;
  height: 45px;
  line-height: 45px !important;
  background-color: #ffffff !important;
  border: 1px solid #0072ff !important;
  color: #0072ff !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.testimonial-area-two .owl-nav .owl-next i {
  position: relative;
  top: 2px;
}

.testimonial-area-two .owl-nav .owl-next:hover {
  background-color: #0072ff !important;
  color: #ffffff !important;
}

.testimonial-slider-img {
  margin-bottom: 0;
}

.testimonial-slider-card {
  padding: 35px;
  margin-bottom: 0;
  position: relative;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  border-radius: 15px;
}

.testimonial-slider-card .quote {
  font-size: 50px;
  color: #0072ff;
  line-height: 1;
}

.testimonial-slider-card p {
  margin-top: 10px;
  max-width: 545px;
  margin-bottom: 10px;
  font-size: 18px;
}

.testimonial-slider-card h3 {
  margin-bottom: 5px;
  color: #0072ff;
}

.testimonial-slider-card .rating {
  color: #ffc107;
  font-size: 18px;
}

/*=================================
Testimonial Area End
====================================*/
/*=================================
Blog Area
====================================*/
.blog-card {
  margin-bottom: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-card::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0%;
  background-color: #0072ff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
}

.blog-card a {
  display: block;
}

.blog-card .blog-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  width: auto;
  height: 35px;
  line-height: 35px;
  background-color: #2a3392;
  text-align: center;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: .7s;
  transition: .7s;
  padding: 0 15px;
}

.blog-card .blog-tag a {
  color: #ffffff;
}

.blog-card .content {
  padding: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-card .content h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.blog-card .content h3 a {
  color: #1b1919;
}

.blog-card .content p {
  margin-bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-card .content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.blog-card .content ul li {
  display: inline-block;
  margin-right: 10px;
  color: #727272;
  font-size: 15px;
}

.blog-card .content ul li:last-child {
  margin-right: 0;
}

.blog-card .content ul li i {
  color: #0072ff;
  margin-right: 3px;
  position: relative;
  top: 2px;
  font-size: 16px;
}

.blog-card .content ul li a {
  display: inline-block;
  color: #727272;
}

.blog-card .content ul li a i {
  color: #0072ff;
  margin-right: 3px;
  position: relative;
  top: 2px;
  font-size: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-card .content ul li a:hover {
  color: #0072ff;
}

.blog-card .content ul li a:hover i {
  color: #1b1919;
}

.blog-card .content .read-btn {
  margin-top: 10px;
  color: #0072ff;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  border-bottom: 1px solid #0072ff;
}

.blog-card .content .read-btn:hover {
  letter-spacing: 0.25px;
}

.blog-card:hover::before {
  height: 100%;
  opacity: 1;
}

.blog-card:hover .blog-tag {
  background-color: #0072ff;
}

.blog-card:hover .content ul li {
  color: #ffffff;
}

.blog-card:hover .content ul li i {
  color: #ffffff;
}

.blog-card:hover .content ul li a {
  color: #ffffff;
}

.blog-card:hover .content ul li a i {
  color: #ffffff;
}

.blog-card:hover .content h3 a {
  color: #ffffff;
}

.blog-card:hover .content p {
  color: #ffffff;
}

.blog-card:hover .content .read-btn {
  color: #ffffff;
  border-color: #ffffff;
}

.blog-card-text .content h3 {
  font-size: 20px;
}

.blog-article-content {
  margin-bottom: 20px;
}

.blog-article-content img {
  border-radius: 5px;
  margin-bottom: 25px;
}

.blog-article-content .content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.blog-article-content .content ul li {
  display: inline-block;
  font-size: 15px;
  color: #1b1919;
  margin-right: 15px;
}

.blog-article-content .content ul li:last-child {
  margin-right: 0;
}

.blog-article-content .content ul li i {
  color: #0072ff;
  margin-right: 3px;
}

.blog-article-content .content ul li a {
  color: #1b1919;
}

.blog-article-content .content ul li a i {
  color: #0072ff;
  margin-right: 3px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-article-content .content ul li a:hover {
  color: #0072ff;
}

.blog-article-content .content ul li a:hover i {
  color: #2a3392;
}

.blog-article-content .content h3 {
  margin-top: 12px;
  margin-bottom: 10px;
  font-size: 26px;
}

.article-content-area p {
  margin-bottom: 30px;
}

.article-content-area .blockquote {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  margin-top: 30px;
  background-color: #f5f9ff;
  padding: 20px;
}

.article-content-area .blockquote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: #0072ff;
}

.article-content-area .blockquote p {
  font-size: 17px;
  color: #727272;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.blog-article-img {
  margin-bottom: 30px;
}

.blog-article-img img {
  border-radius: 5px;
}

.article-img-content {
  margin-bottom: 30px;
}

.article-share {
  padding: 10px 0;
  border-top: 1px solid #c3c3c3;
  border-bottom: 1px solid #c3c3c3;
  margin-bottom: 30px;
}

.article-share .social-icon {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-share .social-icon li {
  display: inline-block;
  margin-right: 10px;
}

.article-share .social-icon li.title {
  font-size: 18px;
  color: #1b1919;
}

.article-share .social-icon li.title i {
  color: #0072ff;
  font-size: 20px;
  margin-right: 3px;
  position: relative;
  top: 2px;
}

.article-share .social-icon li:last-child {
  margin-right: 0;
}

.article-share .social-icon li a i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #0072ff;
  border-radius: 50px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.article-share .social-icon li a:hover i {
  background-color: #2a3392;
}

.comments-wrap .comment-title {
  margin-bottom: 30px;
}

.comments-wrap .comment-title .title {
  font-size: 24px;
  margin-bottom: 0;
  color: #1b1919;
  font-weight: 500;
}

.comments-wrap .comment-form {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comments-wrap .comment-form li {
  position: relative;
  padding-left: 65px;
  margin-bottom: 30px;
  border-bottom: 1px solid #c3c3c3;
  padding-bottom: 30px;
}

.comments-wrap .comment-form li.pl-80 {
  padding-left: 100px;
}

.comments-wrap .comment-form li.pl-80 img {
  left: 40px;
}

.comments-wrap .comment-form li img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  width: 45px;
  height: 45px;
}

.comments-wrap .comment-form li h3 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 500;
}

.comments-wrap .comment-form li span {
  color: #727272;
}

.comments-wrap .comment-form li p {
  margin-top: 10px;
  margin-bottom: 15px;
}

.comments-wrap .comment-form li a {
  padding: 5px 18px;
  background-color: #2a3392;
  color: #ffffff;
  border-radius: 5px;
  font-size: 15px;
  display: inline-block;
}

.comments-wrap .comment-form li a:hover {
  background-color: #0072ff;
}

.comments-form {
  margin-top: 30px;
  margin-bottom: 30px;
}

.comments-form .contact-form .form-group label {
  margin-bottom: 20px;
  color: #1b1919;
}

.comments-form .title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1b1919;
}

.comments-form p {
  margin-bottom: 30px;
}

.comments-form .default-btn {
  width: unset;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.search-widget {
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
}

.search-widget .search-form {
  position: relative;
  margin: 0 auto;
  border-radius: 0;
  border: 1px solid #d3d9cd;
  width: 100%;
  background-color: #ffffff;
}

.search-widget .search-form .form-control {
  background-color: #ffffff;
  border-radius: 0;
  border: 1px solid #d3d9cd;
  height: 45px;
  line-height: 45px;
  margin: 0;
  border: 0;
  padding: 0 25px;
  color: #1b1919;
}

.search-widget .search-form .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

.search-widget .search-form button {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  border-radius: 0;
  background-color: #2a3392;
  color: #ffffff;
  height: 45px;
  line-height: 45px;
  font-size: 22px;
  padding: 0 15px;
}

.search-widget .search-form button:hover {
  background: #0072ff;
}

.side-bar-widget {
  margin-bottom: 30px;
}

.side-bar-widget .title {
  font-size: 22px;
  color: #1b1919;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.side-bar-widget .title::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0072ff;
  width: 100%;
  height: 2px;
  opacity: 0.5;
}

.side-bar-widget .side-bar-categories ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.side-bar-widget .side-bar-categories ul li {
  position: relative;
  font-weight: 300;
  margin-bottom: 10px;
}

.side-bar-widget .side-bar-categories ul li:last-child {
  margin-bottom: 0;
}

.side-bar-widget .side-bar-categories ul li a {
  display: inline-block;
  color: #1b1919;
  background-color: #f5f9ff;
  font-weight: normal;
  padding: 10px 25px;
  position: relative;
  width: 100%;
  border-radius: 5px;
}

.side-bar-widget .side-bar-categories ul li a i {
  font-size: 12px;
  float: right;
  position: relative;
  top: 4px;
}

.side-bar-widget .side-bar-categories ul li a .bx-download {
  font-size: 20px;
}

.side-bar-widget .side-bar-categories ul li a:hover {
  background-color: #2a3392;
  color: #ffffff;
}

.side-bar-widget .side-bar-categories ul li:hover::before {
  background-color: #2a3392;
  border-color: #2a3392;
}

.side-bar-widget .widget-popular-post {
  position: relative;
  overflow: hidden;
}

.side-bar-widget .widget-popular-post .item {
  overflow: hidden;
  margin-bottom: 20px;
  padding: 10px 10px 5px;
  background-color: #f5f9ff;
}

.side-bar-widget .widget-popular-post .item:last-child {
  margin-bottom: 0;
}

.side-bar-widget .widget-popular-post .item .thumb {
  float: left;
  overflow: hidden;
  position: relative;
  margin-right: 15px;
}

.side-bar-widget .widget-popular-post .item .thumb .full-image {
  width: 80px;
  height: 80px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
  position: relative;
  background-color: #f5f9ff;
}

.side-bar-widget .widget-popular-post .item .thumb .full-image.bg1 {
  background-image: url(../images/blog/blog-img1.jpg);
}

.side-bar-widget .widget-popular-post .item .thumb .full-image.bg2 {
  background-image: url(../images/blog/blog-img2.jpg);
}

.side-bar-widget .widget-popular-post .item .thumb .full-image.bg3 {
  background-image: url(../images/blog/blog-img3.jpg);
}

.side-bar-widget .widget-popular-post .item .info {
  overflow: hidden;
  padding: 0;
}

.side-bar-widget .widget-popular-post .item .info p {
  font-size: 15px;
  margin-bottom: 5px;
}

.side-bar-widget .widget-popular-post .item .info .title-text {
  margin-bottom: 0;
  line-height: 1.2;
  font-size: 18px;
  font-weight: 600;
  max-width: 245px;
}

.side-bar-widget .widget-popular-post .item .info .title-text a {
  display: inline-block;
  color: #1b1919;
}

.side-bar-widget .widget-popular-post .item .info .title-text a:hover {
  color: #2a3392;
}

.side-bar-widget .side-bar-widget-tag {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-bar-widget .side-bar-widget-tag li {
  display: inline-block;
  padding: 7px 15px;
  margin: 5px;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  color: #1b1919;
  font-size: 14px;
  font-weight: 600;
  background-color: #ffffff;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.side-bar-widget .side-bar-widget-tag li:hover {
  background-color: #2a3392;
}

.side-bar-widget .side-bar-widget-tag li a {
  color: #1b1919;
}

.side-bar-widget .side-bar-widget-tag li:hover a {
  color: #ffffff;
}

.author-profile {
  padding-left: 120px;
  position: relative;
  margin-bottom: 30px;
}

.author-profile img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.author-profile h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}

.author-profile span {
  margin-bottom: 0;
  font-size: 15px;
  color: #0072ff;
}

.author-profile p {
  margin-top: 5px;
  margin-bottom: 15px;
}

.author-profile .social-link {
  list-style-type: none;
  margin: 0 0 20px;
  padding: 0;
}

.author-profile .social-link li {
  display: inline-block;
  margin-right: 10px;
}

.author-profile .social-link li.title {
  font-weight: 600;
  font-size: 16px;
  color: #1b1919;
}

.author-profile .social-link li:last-child {
  margin-right: 0;
}

.author-profile .social-link li a i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 18px;
  color: #ffffff;
  border-radius: 50px;
  text-align: center;
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.author-profile .social-link li:nth-child(2) a i {
  background-color: #0f4dca;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.author-profile .social-link li:nth-child(2) a i:hover {
  background-color: #2a3392;
}

.author-profile .social-link li:nth-child(3) a i {
  background-color: #16a5ff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.author-profile .social-link li:nth-child(3) a i:hover {
  background-color: #1b1919;
}

.author-profile .social-link li:nth-child(4) a i {
  background-color: #f80c11;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.author-profile .social-link li:nth-child(4) a i:hover {
  background-color: #2a3392;
}

.author-profile .social-link li:nth-child(5) a i {
  background-color: #ff0629;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.author-profile .social-link li:nth-child(5) a i:hover {
  background-color: #0072ff;
}

/*=================================
Blog Area End
====================================*/
/*==============================
Pagination Area 
=================================*/
.pagination-area {
  margin-top: 10px;
  margin-bottom: 30px;
}

.pagination-area .page-numbers {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #0072ff;
  background-color: #fbfbfb;
  border: 1px solid #0072ff;
  text-align: center;
  display: inline-block;
  position: relative;
  margin-left: 3px;
  margin-right: 3px;
  font-size: 18px;
  border-radius: 50px;
}

.pagination-area .page-numbers:hover {
  background-color: #0072ff;
  color: #ffffff;
}

.pagination-area .page-numbers i {
  position: relative;
  font-size: 25px;
  top: 5px;
}

.pagination-area .page-numbers.current {
  background-color: #0072ff;
  color: #ffffff;
}

/*==============================
Pagination Area End
=================================*/
/*================================
Contact Area
==================================*/
.contact-form {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form .section-title {
  margin-bottom: 30px;
}

.contact-form .form-group {
  margin-bottom: 20px;
  position: relative;
}

.contact-form .form-group.checkbox-option {
  position: relative;
}

.contact-form .form-group.checkbox-option #chb2 {
  position: absolute;
  top: 6px;
  left: 0;
}

.contact-form .form-group.checkbox-option p {
  padding-left: 25px;
  font-size: 15px;
  color: #1b1919;
}

.contact-form .form-group.checkbox-option p a {
  color: #0072ff;
}

.contact-form .form-group.checkbox-option p a:hover {
  color: #2a3392;
}

.contact-form .form-group .form-control {
  height: 45px;
  color: #727272;
  border: 1px solid #0072ff;
  background-color: transparent;
  font-size: 15px;
  padding: 10px 20px;
  width: 100%;
  border-radius: 0;
}

.contact-form .form-group .form-control:focus {
  outline: none;
  border-color: #2a3392;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact-form .form-group textarea.form-control {
  height: auto;
}

.contact-form .agree-label {
  margin-bottom: 15px;
  position: relative;
}

.contact-form .agree-label #chb1 {
  position: absolute;
  top: 7px;
  left: 0;
}

.contact-form .agree-label label {
  font-weight: 500;
  color: #0072ff;
  margin-left: 25px;
}

.contact-form .agree-label label a {
  color: #2a3392;
}

.contact-form .agree-label label a:hover {
  color: #0072ff;
}

.contact-form .agree-label label a.forget {
  position: absolute;
  right: 0;
}

.contact-form .with-errors {
  float: left;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 0;
  color: #f00;
  font-weight: 400;
  display: block;
}

.contact-form .text-danger {
  font-size: 18px;
  margin-top: 15px;
}

.contact-form .default-btn {
  border: 0;
  outline: none;
}

.contact-form .form-group .form-control::-webkit-input-placeholder, .contact-form .form-group .form-control:-ms-input-placeholder, .contact-form .form-group .form-control::-ms-input-placeholder, .contact-form .form-group .form-control::-webkit-input-placeholder {
  color: #727272;
}

.contact-form .form-group .form-control::-webkit-input-placeholder, .contact-form .form-group .form-control:-ms-input-placeholder, .contact-form .form-group .form-control::-ms-input-placeholder, .contact-form .form-group .form-control::placeholder {
  color: #727272;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-info .section-title {
  margin-bottom: 20px;
}

.contact-info .section-title p {
  margin-left: 0;
  margin-right: unset;
}

.contact-info .contact-info-list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.contact-info .contact-info-list ul li {
  display: block;
  margin-bottom: 15px;
}

.contact-info .contact-info-list ul li a {
  padding-left: 35px;
  position: relative;
  font-size: 16px;
  color: #1b1919;
}

.contact-info .contact-info-list ul li a i {
  font-size: 20px;
  color: #0072ff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.contact-info .contact-info-list ul li a:hover {
  color: #2a3392;
}

.contact-info .contact-info-list ul li a:hover i {
  color: #1b1919;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 450px;
}

/*================================
Contact Area End
==================================*/
/*=================================
User All Form
====================================*/
.user-all-form {
  margin-bottom: 30px;
}

.user-all-form .contact-form {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
}

.user-all-form .contact-form h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.user-all-form .contact-form .account-desc {
  margin-top: 15px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}

.user-all-form .contact-form .account-desc a {
  color: #2a3392;
}

.user-all-form .contact-form .account-desc a:hover {
  color: #0072ff;
}

/*=================================
User All Form End
====================================*/
.single-content {
  margin-bottom: 30px;
}

.single-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.single-content p {
  margin-bottom: 0;
}

/*=================================
404 Error Area
===================================*/
.error-area .error-content {
  text-align: center;
  position: relative;
}

.error-area .error-content h1 {
  font-size: 300px;
  line-height: 0.7;
  font-weight: 700;
  color: #1b1919;
}

.error-area .error-content h1 span {
  color: #0072ff;
}

.error-area .error-content h3 {
  margin: 50px 0 0;
  position: relative;
  color: #1b1919;
  font-size: 35px;
}

.error-area .error-content p {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  color: #727272;
}

/*=================================
404 Error Area End
===================================*/
/*================================== 
Coming Soon Area 
====================================*/
.coming-soon-area {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background-color: #ffffff;
}

.coming-soon-area .coming-soon-content {
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  padding: 100px 30px 120px;
  background-color: #f5f9ff;
  border: 2px solid #0072ff;
}

.coming-soon-area .coming-soon-content h1 {
  margin-bottom: 0;
  font-size: 50px;
}

.coming-soon-area .coming-soon-content p {
  font-size: 16px;
  max-width: 600px;
  margin-top: 15px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-area .coming-soon-content #timer {
  margin-top: 40px;
}

.coming-soon-area .coming-soon-content #timer div {
  display: inline-block;
  color: #1b1919;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 10px;
  font-size: 35px;
  font-weight: 700;
  background-color: #ffffff;
  border-radius: 5px;
}

.coming-soon-area .coming-soon-content #timer div span {
  display: block;
  text-transform: capitalize;
  margin-top: -15px;
  font-size: 16px;
  font-weight: normal;
  color: #0072ff;
}

.coming-soon-area .coming-soon-content #timer div:last-child {
  margin-right: 0;
}

.coming-soon-area .coming-soon-content #timer div:last-child::before {
  display: none;
}

.coming-soon-area .coming-soon-content #timer div:first-child {
  margin-left: 0;
}

.coming-soon-area .coming-soon-content #timer div::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -10px;
  font-size: 70px;
  color: #ffffff;
}

.coming-soon-area .coming-soon-content .newsletter-form {
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter {
  display: block;
  width: 100%;
  height: 60px;
  border: none;
  background-color: #ffffff;
  padding-left: 15px;
  color: #ffffff;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 0;
  border: 1px solid #cccccc;
  color: #5d5d5d;
}

.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter:focus {
  border-color: #0072ff;
}

.coming-soon-area .coming-soon-content .newsletter-form .default-btn {
  border: 0;
  outline: 0;
  border-radius: 0 !important;
}

.coming-soon-area .coming-soon-content .newsletter-form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 60px;
  padding: 0 30px;
  outline: 0;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
}

.coming-soon-area .coming-soon-content .newsletter-form button::after {
  border-radius: 0;
}

.coming-soon-area .coming-soon-content .newsletter-form button::before {
  border-radius: 0;
}

.coming-soon-area .coming-soon-content .newsletter-form button:hover {
  color: #ffffff;
  background-color: #190f3c;
}

.coming-soon-area #validator-newsletter {
  text-align: left;
  color: #dc3545 !important;
}

/*================================== 
Coming Soon Area End
====================================*/
/*=================================
Footer Area
====================================*/
.footer-bg {
  background-color: #2a3392;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-widget .footer-logo {
  margin-bottom: 20px;
  position: relative;
  top: 0;
}

.footer-widget h3 {
  margin-top: 0;
  font-size: 22px;
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.2;
}

.footer-widget h3.title {
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-widget p {
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-widget .social-link {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.footer-widget .social-link li {
  display: inline-block;
  margin-right: 10px;
}

.footer-widget .social-link li:last-child {
  margin-right: 0;
}

.footer-widget .social-link li a i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #0072ff;
  border-radius: 50px;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.footer-widget .social-link li a:hover i {
  background-color: #1b1919;
  color: #ffffff;
}

.footer-widget .footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-widget .footer-list li {
  display: block;
  margin-bottom: 10px;
}

.footer-widget .footer-list li:last-child {
  margin-bottom: 0;
}

.footer-widget .footer-list li a {
  color: #ffffff;
}

.footer-widget .footer-list li a:hover {
  color: #0072ff;
}

.footer-widget .contact-list {
  list-style: none;
  margin: 0 0 25px;
  padding: 0;
}

.footer-widget .contact-list li {
  display: block;
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
}

.footer-widget .contact-list li i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
}

.footer-widget .contact-list li a {
  color: #ffffff;
  vertical-align: middle;
}

.footer-widget .contact-list li a:hover {
  color: #0072ff;
}

.newsletter-area .newsletter-form {
  position: relative;
}

.newsletter-area .newsletter-form .form-control {
  background: transparent;
  border-radius: 5px;
  height: 50px;
  line-height: 50px;
  margin: 0;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
  padding: 0 25px;
  max-width: 100%;
  color: #ffffff;
}

.newsletter-area .newsletter-form .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #ffffff;
}

.newsletter-area .newsletter-form .subscribe-btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #0072ff;
  color: #ffffff;
  padding: 4px 16px;
  font-size: 24px;
  border: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 0 5px 5px 0;
  text-align: center;
}

.newsletter-area .newsletter-form .subscribe-btn:hover {
  background: #1b1919;
  color: #ffffff;
}

.newsletter-area .newsletter-form .validation-danger {
  font-size: 18px;
  margin-top: 5px;
  color: red;
}

.newsletter-area .newsletter-form .form-control::-webkit-input-placeholder, .newsletter-area .newsletter-form .form-control:-ms-input-placeholder, .newsletter-area .newsletter-form .form-control::-ms-input-placeholder, .newsletter-area .newsletter-form .form-control::-webkit-input-placeholder {
  color: #ffffff !important;
}

.newsletter-area .newsletter-form .form-control::-webkit-input-placeholder, .newsletter-area .newsletter-form .form-control:-ms-input-placeholder, .newsletter-area .newsletter-form .form-control::-ms-input-placeholder, .newsletter-area .newsletter-form .form-control::placeholder {
  color: #ffffff !important;
}

.copyright-area {
  border-top: 1px solid #d7d7d7;
  padding: 15px 0;
  background-color: #2a3392;
}

.copy-right-text {
  text-align: left;
}

.copy-right-text p {
  color: #ffffff;
  margin-bottom: 0;
}

.copy-right-text p a {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}

.copy-right-text p a:hover {
  color: #0072ff;
  border-color: #0072ff;
}

.copy-right-payment {
  text-align: right;
}

.copy-right-payment ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.copy-right-payment ul li {
  display: inline-block;
  margin-right: 5px;
}

.copy-right-payment ul li:last-child {
  margin-right: 0;
}

.copy-right-payment ul li a img {
  max-width: 50px;
}

/*=================================
Go Top Area 
====================================*/
.go-top {
  position: fixed;
  top: 50%;
  right: 3%;
  opacity: 0;
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  background: #2a3392;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  z-index: 100;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top i {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  vertical-align: middle;
}

.go-top:hover {
  background-color: #0072ff;
}

.go-top:hover i {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.go-top.active {
  top: 95%;
  -webkit-transform: translateY(-95%);
  transform: translateY(-95%);
  opacity: 1;
  visibility: visible;
}

/*=================================
Go Top Area End
====================================*/
/*=================================
Preloader
====================================*/
.preloader {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 9999999;
  left: 0;
  top: 0;
  text-align: center;
  background-color: #2a3392;
}

.loader-in {
  width: 250px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-transform: uppercase;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.2em;
}

.loader-in::before, .loader-in::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: #ffffff;
  position: absolute;
  -webkit-animation: load .7s infinite alternate ease-in-out;
          animation: load .7s infinite alternate ease-in-out;
}

.loader-in::before {
  top: 0;
}

.loader-in::after {
  bottom: 0;
}

/*=================================
Preloader End
====================================*/
@-webkit-keyframes load {
  0% {
    left: 0;
    height: 30px;
    width: 15px;
  }
  50% {
    height: 8px;
    width: 40px;
  }
  100% {
    left: 235px;
    height: 30px;
    width: 15px;
  }
}

@keyframes load {
  0% {
    left: 0;
    height: 30px;
    width: 15px;
  }
  50% {
    height: 8px;
    width: 40px;
  }
  100% {
    left: 235px;
    height: 30px;
    width: 15px;
  }
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes rotated360 {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

@keyframes rotated360 {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

@-webkit-keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
            transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
            transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
            transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
            transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
            transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
            transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
            transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
            transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes movebounce-up {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes movebounce-up {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-webkit-keyframes running-in {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-10px, 150px);
    transform: translate(-10px, 150px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes running-in {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-10px, 150px);
    transform: translate(-10px, 150px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
/*# sourceMappingURL=style.css.map */

.footer-bar p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.footer-left-text {
    text-align: left;
}

.footer-right-text {
    text-align: right;
}

.footer-right-text a {
    font-weight: 600;
    color: #fff;
    text-decoration: underline;
}

.footer-right-text a:hover {
    color: #ffd700;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .footer-left-text,
    .footer-right-text {
        text-align: center;
        margin-bottom: 5px;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {

    /* Make footer columns 2 per row */
    .footer-area .col-lg-5,
    .footer-area .col-lg-3,
    .footer-area .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Center the last column */
    .footer-area .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 20px;
    }

    /* Reduce logo size */
    .footer-logo img {
        width: 260px !important;
        height: auto;
    }

    /* Adjust spacing */
    .footer-widget {
        padding-left: 15px !important;
        padding-right: 15px;
        margin-bottom: 25px;
    }

    .footer-widget h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .footer-widget p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Footer bottom alignment */
    .footer-left-text {
        text-align: left;
    }

    .footer-right-text {
        text-align: right;
    }
}















.features-box{
  padding-left:25px;
  padding-bottom: 25px;
} 

.features-box h3{
    margin-bottom:12px;
    font-size:22px;
}

.features-box ul{
    list-style:none;
    padding:0;
}

.features-box li{
    margin-bottom:10px;
    font-size:17px;
}
.blog-card:hover .features-box { 
  color: #ffffff;
 }
 .blog-card:hover .features-box h3 { 
  color: #ffffff;
 }

.blog-card .features-box  {
  margin-bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.features-box strong{
  color: #1b1919;

}
.blog-card:hover .features-box strong{
    color:#ffffff;
}
.features-list i{
    color:#00c853;
    margin-right:8px;
    font-size:16px;
}
.blog-card .features-box ul li i {
    color: #0072ff;
    margin-right: 3px;
    position: relative;
    top: 2px;
    font-size: 16px;
} 
.blog-card:hover .features-box ul li i{
    color:#ffffff;
}