/**
* Template Name: Gp
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #444444;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

a {
  color: #5191ff;
  text-decoration: none;
}

a:hover {
  color: #5191ff;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #5191ff;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #151515;
  line-height: 0;
}

.back-to-top:hover {
  background: #151515;
}

.back-to-top:hover i {
  color: #5191ff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* #preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
} */

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #5191ff;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: .5rem 0;
  flex-wrap: wrap;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, 0.8);
}

#header .logo {
  width: 5rem;
  height: auto;
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #518eff;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #519fff;
}

.get-started-btn:hover {
  background: #519fff;
  color: #343a40;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }

  .navbar-mobile {
    position: fixed;
    overflow: visible !important;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
    width: 100vw !important;
    height: 481px !important;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  font-family: "Roboto Slab", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 0;
  scroll-behavior: initial;
  flex-wrap: wrap;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  font-family: cursive;
  text-align: center;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #46b7ef;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  background-color: #ffc451;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
.logo-mobile {
  display: none;
  height: auto;
  width: 8rem;
  margin: auto;
}

@media screen and (max-width: 1317px) {
  .navbar ul {
    display: none;
  }
  .navbar .mobile-nav-toggle {
    display: flex !important;
  }
  .navbar ul {
    position: relative !important;
    direction: rtl;
    width: 45%;
    top: 0 !important;
    height: max-content;
    margin: auto;
    padding: 1rem 0 2rem !important;
    background: rgb(40, 43, 83, .9);
  }
  .navbar ul li {
    line-height: 30px;
  }
  .logo-mobile {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .nav-link {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .navbar {
    overflow-x: hidden;
  }

  .nav-link li {
    opacity: 1;
  }
}

* Mobile Navigation */ .mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    width: 60%;
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

@media (max-width: 550px) {
  .navbar ul {
    left: 0 !important;
    height: 38rem !important;
    width: 100% !important;
  }
} 

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar .mobile-nav-toggle {
  display: none;
  border: 1px solid #fff;
  border-radius: 25px;
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 21px;
  cursor: pointer;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 0;
  overflow: hidden;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: rgb(156, 191, 218);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  background-color: #ffc451;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/259894.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #519fff;
}
#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #519fff;
}

#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#hero .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
  color: #519fff;
}

#hero .icon-box:hover {
  border-color: #519fff;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: auto;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}
.rounded-circle {
  margin-top: 20px;
  margin-left: 20px;
}
.title {
  margin-left: 30px 30px;
  text-align: center;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

/* .section-title {
  padding-bottom: 20px;
} */

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #70a4dc;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
  padding: 10rem 0 !important;
  background-image: url("../img/cta-bg.jpg");
}
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.about .row {
  align-items: center;
}

.about .row .img-fluid {
  height: auto;
}

.about .content p {
    color: #fff !important;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
  color: #fff;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #fff;
}

.about .content p:last-child {
  margin-bottom: 0;
}
.fst-italic {
  color: #fff;
}
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 20px;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 20px;
}

.features .icon-box {
  padding-left: 15px;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #ffc451;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ffc451;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 a:hover {
  color: #51a8ff;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# why choose us?
--------------------------------------------------------------*/
#services {
  background-image: url("../img/Luxury\ car\ in\ the\ world\ of\ luxury\ cars\ Chi\ selection\ of\ HD\ wallpaper.jpg");
}
.choose-us {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.heading-area {
  text-align: center;
  width: 100%;
  margin-bottom: 50px;
}

.heading-area h2 {
  font-weight: 900;
  font-size: 30px;
  margin-bottom: 10px;
  margin-top: 18px;
  transform: translateX(-50%);
  opacity: 0;
  transition: 1s;
}

.heading-area p {
  font-size: 13px;
  width: 460px;
  color: white;
  margin: auto;
}

.image {
  width: 450px;
  height: 450px;
  position: relative;
  border-radius: 50%;
  background-size: cover;
  align-items: right;
  transition: 1ms;
}
.image .overlay {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(200, 203, 225, 0.8);
  border-radius: 50%;
}
.image .overlay:hover {
  opacity: 0.6;
}
.image .text {
  position: relative;
  text-align: center;
}

.image .text h3 {
  margin-top: 120px;
  font-size: 48px;
  color: white;
}

.image .text p {
  font-size: 12px;
  color: #fff;
  width: 68%;
  margin: auto;
  line-height: 1.7;
}

.image .box {
  overflow: hidden;
  position: absolute;
  left: -240px;
  top: 0px;
  width: 80%;
}

.image .box .info {
  width: 240px;
  margin-right: 8%;
  text-align: right;
  float: left;
}

.image .box .info h4 {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}

.image .box .info p {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  width: 90%;
}

.image .box .imgs {
  float: left;
}

.image .box .imgs img {
  border: 2px solid #fff;
  border-radius: 60%;
  width: auto;
  height: 73px;
  padding: 6px;
  margin-top: 20px;
  background-color: #fff;
}

.image .box.two {
  bottom: 0;
  top: auto;
}

.image .box.one .info p,
.image .box.two .info p {
  margin-left: auto;
}

.image .box.three {
  left: auto;
  right: -240px;
}

.image .box.three .info,
.image .box.four .info {
  float: right;
  text-align: left;
  margin-right: 0;
  margin-left: 8%;
}

.image .box.four {
  left: auto;
  right: -240px;
  top: auto;
  bottom: 0;
}

/*--------------------------------------------------------------
# Pricing 
--------------------------------------------------------------*/
#portfolio {
  background-image: url("../img/Luxury\ Wallpapers\ HD\ Group\ 73\ \(1\).jpg");
background-repeat: no-repeat;
    background-size: cover;
}
:root {
  --main-color: #03488d;
}
.portfolio .row {
  margin-top: 2rem;
}
.portfolio .col-md-6 {
  margin-top: 2rem;
}
.pricingTable {
  /* min-height: 20rem; */
  background: rgb(40, 43, 83);
  font-family: "Open Sans", sans-serif;
  text-align: center;
  padding: 0;
  border-top-left-radius: 43px;
  border-top-right-radius: 43px;
  border-bottom-left-radius: 43px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}
.pricingTable-header {
  display: flex;
  align-items: baseline;
  justify-content: left;
  margin-left: 2.2rem;
}
.pricingTable .title {
  font-size: 15px;
  text-transform: uppercase;
  color: white;
}
.pricingTable .pricing-content {
  text-align: left;
  padding: 0 0 1.5rem;
  margin: 0;
  list-style: none;
  display: inline-block;
  border-bottom: 1px solid;
}
.pricingTable .price {
  color: #fff;
  font-size: 50px;
  font-weight: 400;
}
.text-price {
  color: #6c757d;
  margin-bottom: .2rem;
  font-weight: 500;
}
.div-flex-img {
  width: 20%;
  border: none;
  border-radius: 50%;
  background-color: rgb(49, 56, 102);
  padding: .5rem;
  margin: 2rem .5rem 1rem 1rem;
}
.pricingTable .img-icon {
  width: 100%;
  padding: 0.1rem;
}
.img-gold .img-icon{
  padding: 0;
}
.img-rocket .img-icon {
  padding: .2rem;
}
.pricingTable .pricing-content li {
  font-size: 14px;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: 0.4px;
  padding-left: 1.5rem;
  margin: 0 0 10px;
  position: relative;
  color: white;
}
.pricingTable .pricing-content li:last-child {
  margin: 0;
}
.pricingTable .pricing-content li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 free";
  font-size: 14px;
  font-weight: 900;
  position: absolute;
  top: 2px;
  left: 0;
}
.pricingTable .pricing-content li.disable:before {
  content: "\f00d";
}
.pricingTable .price-value {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--main-color);
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
  margin: 2rem 0 20px;
}
.pricingTable .pricingTable-signup {
  padding: 0 0 1.3rem;
}
.pricingTable .pricingTable-signup button {
  padding: .4rem 1.5rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  background-color: rgb(49, 56, 102);
  color: #fff;
}
.pricingTable .pricingTable-signup a {
  color: var(--main-color);
  font-size: 25px;
  font-weight: 700;
  text-transform: capitalize;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.pricingTable .pricingTable-signup a:hover {
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}
.pricingTable.gray {
  --main-color: #39393b;
}
@media only screen and (max-width: 1199px) {
  .pricingTable-header {
    margin-left: .4rem;
  }
}
@media only screen and (max-width: 990px) {
  .pricingTable {
    margin: 0 0 40px;
  }
}
@media (max-width: 991px) {
  .portfolio .row {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .pricingTable {
    width: 74% !important;
    padding: 2rem 3rem;
    margin: auto;
  }
  .div-flex-img {
    width: 22% !important;
    margin-top: 1rem !important;
  }
}

@media (max-width: 500px) {
  .pricingTable {
    width: 100% !important;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
/* .counts .content {
  padding: 30px 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #151515;
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #519aff;
  float: left;
}

.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #151515;
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #3b3b3b;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #3b3b3b;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #626262;
}

.counts .image {
  background: url("../img/counts-img.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .counts .image img {1
    max-width: 100%;
  }
} */

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
#Testimonial {
  width: 100%;
  padding: 70px 0;
}

.testimonial-row {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.testimonial-column {
  flex-basis: 28%;
  padding: 10px;
  margin-bottom: 30px;
  border-radius: 5px;
  box-shadow: 0 10px 20px 3px #00968814;
  cursor: pointer;
  transition: 0.5s;
}

.testimonial-column p {
  font-size: 17px;
}

.user {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.user img {
  width: 50px;
  margin-right: 20px;
  border-radius: 3px;
}

.testimonial-column:hover {
  transform: translateY(-7px);
}

@media (min-width: 768px) {
  .carousel-inner .carousel-item-right.active,
  .carousel-inner .carousel-item-next {
    transform: translateX(50%);
  }

  .carousel-inner .carousel-item-left.active,
  .carousel-inner .carousel-item-prev {
    transform: translateX(-50%);
  }
}

/* large - display 3 */
@media (min-width: 992px) {
  .carousel-inner .carousel-item-right.active,
  .carousel-inner .carousel-item-next {
    transform: translateX(33%);
  }

  .carousel-inner .carousel-item-left.active,
  .carousel-inner .carousel-item-prev {
    transform: translateX(-33%);
  }
}

@media (max-width: 768px) {
  .carousel-inner .carousel-item > div {
    display: none;
  }

  .carousel-inner .carousel-item > div:first-child {
    display: block;
  }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: flex;
  color: #fff;
}

.carousel-inner .carousel-item-right,
.carousel-inner .carousel-item-left {
  transform: translateX(0);
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
/* slider style*/
#team {
  background-color: #003061;
}
.slider-container {
  position: relative;
  overflow: hidden;
  padding: 0 14px;
  width: 90%;
  margin: auto;
}

.slider-container .slider-content {
  position: relative;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.slider-container .slider-content .slider-item {
  padding-left: 15px;
  padding-right: 15px;
}

.slider-container .slider-controls button {
  background: none;
  border: 1px solid #1c92d2;
  font-size: 20px;
  padding: 10px;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  transition: all 0.5s;
  z-index: 5;
  color: #fff;
  cursor: pointer;
}

.slider-container .slider-controls button:hover {
  background-color: #1c92d2;
}

.slider-container .slider-controls button.left {
  left: 0;
}

.slider-container .slider-controls button.right {
  right: 0;
}

/*section style*/
.features {
  color: #fff;
  padding: 50px 0;
  overflow: hidden;
  background: #3d3d42;
  text-align: center;
}
.features h2 {
  font-size: 38px;
  margin-bottom: 50px;
  font-weight: bold;
}
.features .feat span,
.features h2 span {
  color: #1c92d2;
}

.features .feat {
  padding: 10px;
  margin-bottom: 30px;
  background: #f2f8f8;
}

.features .feat p {
  line-height: 1.7;
  font-size: 16px;
}

.features .feat h3 {
  font-weight: bold;
  margin: 10px;
  font-size: 25px;
}
.img-fluid {
  border-radius: 15px;
  min-height: 20rem;
  height: 47rem;
}

.fx-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 0 .5rem .5rem;
}
.fx-center-v {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
#Review {
  background-image: url("../img/gabriel-gurrola.jpg");
}
.img-rate-review {
  width: 8rem;
  margin: .4rem auto 1.5rem;
}
.info,
.button {
  position: relative;
  z-index: 9;
  padding-bottom: 20px;
}
.info:nth-of-type(2) {
  color: #d2e1f1;
}
.main-container {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  padding: 20px;
  overflow: hidden;
}
.main-container::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
}
.heading {
  position: relative;
  padding-bottom: 3px;
  margin-bottom: 3rem;
}
.heading::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -3px;
  background: #05263b;
}
.review-tile {
  margin: 5px auto 45px 17px;
  text-align: left;
}
.review-name {
  display: flex;
  flex-direction: column;
}
.avatar {
  margin: auto;
  padding: 0 10px 8px 0;
}
.avatar img {
  background: #6490cd;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #fff;
}
.review-tile_bottom {
  width: 100%;
  height: 14rem ;
  min-height: 10rem;
  margin: auto;
  text-align: center;
  position: relative;
  background: rgb(237, 219, 234);
  background: -webkit-linear-gradient(
    top,
    rgba(115, 75, 109, 1) 1%,
    rgba(67, 40, 83, 1) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(1%, rgba(115, 75, 109, 1)),
    to(rgb(241, 237, 243))
  );
  background: -o-linear-gradient(
    top,
    rgb(141, 91, 133) 1%,
    rgb(73, 64, 79) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(1%, rgba(115, 75, 109, 1)),
    to(rgb(234, 226, 239))
  );
  background: rgb(40, 43, 83, .9);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6490cd',            endColorstr='#432853',GradientType=0 );
  padding: 18px 22px 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 11px 20px -8px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 11px 20px -8px rgba(0, 0, 0, 0.75);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.review-tile_bottom h2 {
  font-size: 20px;
  text-align: center;
  color: white;
  line-height: .6;
}
.id-review {
  color: #adb5bd !important;
  padding: 0 !important;
}
.review-tile_bottom .img-star {
  width: 23%;
  margin-bottom: 1rem;
}
.text-review {
  margin-bottom: 0.5rem !important;
}
.review-tile_bottom p {
  text-align: left;
  padding: 0 .7rem;
  color: white;
  font-size: 13px;
}
.tag-review {
  margin-bottom: -.5rem;
}
.review-tile_bottom:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0px 15px 25px -8px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 15px 25px -8px rgba(0, 0, 0, 0.8);
}
/* .review-tile_bottom::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #6490cd transparent;
} */

.button {
  display: block;
  width: 150px;
  padding: 15px;
  margin: 0 auto;
  background: #6490cd;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.button:hover {
  background: #6490cd;
}

@media (max-width: 514px) {
  .review-tile_bottom {
    padding: 18px 14px 5px !important;
    height: auto !important;
    min-height: 16rem !important;
  }
}

@media (max-width: 440px) {
  .review-tile_bottom {
    min-height: 17rem !important;
  }
}

@media (max-width: 379px) {
  .review-tile_bottom {
    min-height: 18rem !important;
  }
}

@media (max-width: 347px) {
  .review-tile_bottom {
    min-height: 20rem !important;
  }
}

@media (max-width: 992px) {
  .swiper-button-next, .swiper-button-prev {
    display: none !important;
  }
}

.text-center {
  margin-top: 3rem;
}

/*swiper override*/
.swiper-pagination-bullet-active {
  background: #6490cd !important;
}

.swiper-wrapper,
.swiper-slide {
  height: auto;
}

nav-link #Reviews {
  scroll-behavior: smooth;
}

.text-center .swiper-slide{
  margin: auto !important;
}

/* .team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #151515;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  transition: ease-in-out 0.3s;
  color: #484848;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a:hover {
  color: #151515;
  background: #ffc451;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #151515;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}
/* Carousel */
/* .about-us-service-title {
  text-align: center;
}

.carousel-container {
  padding: 20px;
  display: flex;
  text-align: center;
  position: relative;
  height: 450px;
  max-width: 800px;
  min-width: 600px;
  margin: 0 auto;
}

.carousel-card {
  height: 350px;
  width: 300px;
  padding: 20px;
  transition: 1s;
  opacity: 1;
  position: absolute;
  top: 0;
  background-color: #227dd8;
  color: #fff;
  cursor: pointer;
  box-shadow: 1px 2px 3px grey;
}

.carousel-icon {
  
  height: 300px;
  width: 250px;
}

#far-left {
  left: 15%;
  transform: scale(0.9) translateY(0%) translateX(-50%);
  z-index: 5;
  background-color: #f0f0f0;
}

#left {
  left: 30%;
  transform: scale(1) translateY(0%) translateX(-50%);
  z-index: 10;
  background-color: #c3c3c3;
}

#center {
  left: 50%;
  transform: scale(1.05) translateY(0%) translateX(-50%);
  z-index: 15;
}

#right {
  left: 70%;
  transform: scale(1) translateY(0%) translateX(-50%);
  z-index: 10;
  background-color: #c3c3c3;
}

#far-right {
  left: 80%;
  transform: scale(0.9) translateY(0%) translateX(-50%);
  z-index: 5;
  background-color: #f0f0f0;
}

.carousel-card:hover {

}  */

/*--------------------------------------------------------------
# FAQS
--------------------------------------------------------------*/

.main-section ::before,
::after {
  margin-bottom: 0;
  padding: 0;
  box-sizing: inherit;
}
.main-section {
  background-image: url("../img/2784409.jpg");
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  box-sizing: border-box;
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion-flush .accordion-collapse {
  transition: 1s all;
}
.text {
  width: 88%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  margin-top: 55px;
}
.accordion-item {
  background: rgb(40, 43, 83, .9);
  box-shadow: 8px 16px 27px 5px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgb(156, 191, 218, .3);
}
.accordion-item h2 {
  padding: 1rem;
}
.accordion-body {
  padding: 1.5rem;
  text-align: left;
  background: rgb(40, 43, 83, 1);
  color: #fff;
}
.accordion-links {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  background-color: rgb(40, 43, 83, 0);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
}
.accordion-button::after {
  color: #fff;
}
.accordion-body p {
  color: #fff;
  border-left: 5px solid #70a4dc;
  padding-left: 0.3rem;
  border-radius: 5px;
}

.answer {
  max-height: 0;
  overflow: hidden;
  position: relative;
  background-color: #212838;
  transition: max-height 650ms;
}
.answer::before {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 150%;
  background-color: #8fc460;
  top: 50%;
  left: 0;
  transform: translateY(-47%);
}
.answer p {
  color: #fff;
  font-size: 1.3rem;
  padding: 0.8rem;
  margin-bottom: 2.9rem;
}

.accordian-item:target .answer {
  max-height: fit-content;
}

.accordian-item:target .accordian-link .add {
  display: none;
}
.accordian-item:target .accordian-link .remove {
  display: block;
}

@media (max-width: 767px) {
  .text {
    width: 100% !important;
    padding: 0 !important;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  background: #ffc451;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

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

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

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

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

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

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

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

.contact .php-email-form input {
  height: 44px;
}

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

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

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

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

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }

  /*  start  */
  /*  start  */
  /* start   */
  /* .image .box.four,
  .image .box.three {
    right: -170px;
  } */
  /* .image .box,
  .image .box.two {
    left: -150px;
  } */
}
/*--------------------------------------------------------------
# BLOG
--------------------------------------------------------------*/
::selection {
  background: #1b1b1b;
  color: #fff;
}
.blog-navbar {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
  background: #fff;
  z-index: 9;
}

.links-container {
  display: flex;
  list-style: none;
}
.link {
  padding: 10px;
  margin-left: 10px;
  text-decoration: none;
  text-transform: capitalize;
  position: relative;
}
.blog-header {
  margin-top: 60px;
  margin-right: 40px;
  width: 100%;
  height: calc(150vh);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(/assets/img/2083123.jpg);
}
.blog-content {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
  flex-wrap: wrap;
}
.blog-heading {
  color: #fff;
  text-transform: capitalize;
  font: size 80px;
  line-height: 60px;
  margin-bottom: 80px;
}
.blog-heading .small {
  display: block;
  font-size: 40px;
  color: #fff;
}
.blog-heading .no-fill {
  font-size: 40px;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
}
.blog-btn {
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  color: #000;
  text-decoration: none;
  text-transform: capitalize;
}
.blogs-section {
  width: 100%;
  padding: 4rem 5vw 5rem;
  display: grid;
  display: flex;
  flex-direction: column;
  grid-gap: 64px;
  background-color: #edf2fb;
}
.blog-image {
  width: 100%;
  height: 17rem;
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
  margin-bottom: 10px;
}
.blog-card p {
  margin-bottom: .5rem;
}
.blog-overview {
  margin: 10px 11px 12px;
  line-height: 20px;
  text-align: justify;
  padding: 0 1rem;
  font-size: 14px;
}
.btn.dark {
  padding: 0.2rem 1rem;
  border-radius: 6px;
  background-color: #05263b;
  color: #fff;
  transition: .5s all;
}
.btn.dark:hover {
  background-color: #03488d;
}
.inner-page {
  text-align: center;
}
.img-inner {
  width: 60% !important;
  min-width: 29rem;
  height: 20rem !important;
  text-align: center;
  border-radius: 5px !important;
}
.title-inner {
  margin: 1rem auto;
}
.text-inner {
  width: 90%;
  line-height: 1.8;
  margin: auto !important;
}
@media (max-width: 850px) {
  .blogs-section {
    padding: 50px 0 !important;
  }
  .blog-content {
    flex-direction: column;
    justify-content: center !important;
  }

  .btn-read {
    margin-bottom: 1rem;
  }
}

@media (max-width: 600px) {
  .blog-card {
    width: 80% !important;
  }

  .search-container {
    width: 80% !important;
  }
}
/* .image .box.four ,.image .box.three  , .image .box, .image .box.two{
              padding-left:90px !important;
                } */
/* .section-title {
    padding-bottom: 0px !important;
  }
  .image .box,
  .image .box .info {
    width: 100%;
  }
  .info h4:nth-child(1) {
    text-align: center;
  }
}

@media screen and (min-width: 650px) and (min-height: 0px) and (max-height: 750px) {
  .link-container {
    margin-top: 12px;
  }
  h1 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
/*  */
@media screen and (max-width: 750px) {
  .image {
    width: 100%;
    height: auto;
  }
  .image .box {
    width: 100%;
    left: 0;
  }
  .image .box.four,
  .image .box.three {
    position: relative;
  }
  .image .box,
  .image .box.two {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
  }
  #services {
    padding-bottom: 115px;
    padding-top: 20px;
  }
  .image .box.three,
  .image .box.four {
    right: 0;
    left: 0;
  }
  .image .box .info {
    width: 86%;
    text-align: left;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
/* .address {
  display: flex;
  align-items: center;
  color: white;
}
.address i {
  padding-right: .2rem;
  font-size: 30px;
  color: rgb(40, 43, 83);
}
.connect {
  display: flex;
  align-items: center;
  color: white;
}
.connect i {
  padding-right: .2rem;
  font-size: 30px;
  color: rgb(40, 43, 83);
} */
.limage {
  margin-bottom: 0;
  margin-right: 15px;
}

#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 58px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: #5194ff;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 0px;
  color: white;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  margin-top: 25px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #517aff;
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  margin-bottom: 40px;
  align-items: center;
}

#footer .footer-top .footer-links {
  margin-bottom: 0;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
  align-items: center;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #5151ff;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 15px;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  text-align: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #5168ff;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #515dff;
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #515dff;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.txt-footer {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  margin-bottom: 40px;
  align-items: center;
}
.telegram {
  background-color: #151515;
  align-items: center;
  color: #fff;
  padding: 5px;
  border: none;
}

/*--------------------------------------------------------------
# Responsiv
--------------------------------------------------------------*/

.navbar-mobile {
  margin: auto;
  position: fixed;
  overflow: visible !important;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  transition: 0.3s;
  z-index: 999;
  width: 100vw !important;
  height: 100vh !important;
}
@media screen and (max-width: 768px) {
  .nav-link {
    position: relative;
    right: 0px;
    height: auto !important;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    transform: translate(0);
  }
}

.search-container {
  width: 60%;
  text-align: center;
  margin-bottom: 40px;
  grid-column: span 12/ span 12;
}

.form-control {
  padding: .3rem 0;
}

.search input{
  height: 3rem;
  text-indent: 25px;
  border: 2px solid #d6d4d4;
  border-radius: 5rem;
  box-shadow: 0px 1px 27px -5px #a2d6f9;
  border: 2px solid rgb(156, 191, 218);
  transition: .5s all;
}
.search input:focus{
  box-shadow: 0px 1px 14px -5px #90e0ef;
  
}

.search .fa-search{
  position: absolute;
  top: 16px;
  right: 2rem;
  cursor: pointer;
  transition: .5s all;
  color: rgb(40, 43, 83, .9);
}

.search .fa-search:hover {
  color: #023e8a;
}

.blg-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 100px;
}

.blog-card {
  max-width: 24rem;
  width: 35%;
  padding: 0 0 1rem;
  border: none;
  border-radius: 11px;
  background-color: #f8f9fa;
  box-shadow: 0px 1px 27px -5px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: .5s all;
}

.blog-card:hover {
  box-shadow: 0px 1px 14px -5px rgba(0, 0, 0, 0.5);
}

.blog-card h2 {
  font-size: 16px;
  font-weight: bold;
  padding: 0 .5rem;
}

@media only screen and (max-width: 900px){
  .blog-card {
    width: 100% !important;
    margin: auto auto 2.5rem;
  }
}

@media (max-width: 539px) {
  .img-inner {
    min-width: 0rem !important;
    width: 76% !important;
  }
}