/* Start my personal theme */
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

.display {
  display: none;
}

.span {
  color: #00176c !important;
}

.span2 {
  color: red;
  font-size: 40px !important;
}

a {
  color: #106eea;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

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

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #106eea;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

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

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 996;
  background: #740c0c;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/* End my personal theme */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/* Start Config for Sections Globally */
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #b11616;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #b11616;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}
/* End Config for Sections Globally */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/* Start section topbar */
#topbar {
  background: #b11616;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 7px;
}
#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i[class="bi bi-whatsapp"] {
  margin: 0px 10px;
}

#topbar i a {
  cursor: pointer;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}

.scrolled-offset {
  margin-top: 70px;
}

/* start media for section topbar */
@media (max-width: 767px) {
  /* small screen rules */
  #topbar {
    padding: 5px;
  }

  #topbar .contact-info i {
    display: block;
  }

  #topbar .contact-info i[class="bi bi-whatsapp"] {
    margin: 0px 0px;
  }
}
/* End media for section topbar */
/* End section topbar */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/* Start Header */
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

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

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #106eea;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #106eea;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  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-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 {
  color: #106eea;
}

.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;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

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

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

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

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

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #106eea;
}

.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;
}

.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 {
  color: #106eea;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/* End Header */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/* Start section hero */
#hero {
  width: 100%;
  height: 75vh;
  background: url("../img/hero-bg.jpg") top left;
  background-size: cover;
  position: relative;
}

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

#hero .container {
  position: relative;
}

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

#hero h1 span {
  color: #b11616;
}

#hero h2 {
  color: #555555;
  margin: 5px 0 20px 0;
  font-size: 19px;
  font-weight: 400;
}

#hero h2[class="special"] span {
  color: #00176c;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #b11616;
}

#hero .btn-get-started:hover {
  background: #b11616;
  transform: scale(1.1, 1.1);
}

#hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}

#hero .btn-watch-video i {
  color: #106eea;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

#hero .btn-watch-video:hover {
  color: #106eea;
}

#hero .btn-watch-video:hover i {
  color: #3b8af2;
}

#hero .right-content .special {
  position: absolute;
  color: #b11616;
  right: -21px;
  top: 192px;
  font-weight: bold;
  font-size: 20px;
}

/* start media for section hero */
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 767px) {
  /* Small screen rules */
  #hero {
    text-align: center;
  }

  #hero .right-content .special {
    right: 0px;
    top: 192px;
    font-size: 20px;
    text-align: center;
    margin-top: 25px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* Meduim screen rules */
  #hero {
    text-align: center;
  }

  #hero .right-content .special {
    right: 0px;
    top: 192px;
    font-size: 20px;
    text-align: center;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* large screen rules */
  #hero h5 {
    margin-right: -59px;
  }

  #hero .right-content .special {
    right: 55px;
    top: 192px;
    font-size: 19px;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }
  #hero h1 {
    font-size: 30px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .btn-get-started,
  #hero .btn-watch-video {
    font-size: 13px;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}
/* End media for section hero */
/* End section hero */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/* Start section Featured Services */
.featured-services p span[class="unique"] {
  color: #0c66db;
  font-size: 17px;
  display: block;
}

.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #dfd8d8;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  border-radius: 83px;
  cursor: pointer;
  margin-bottom: 8px;
}

.featured-services .icon-box:hover {
  color: #fff;
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #b11616;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #106eea;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services img {
  max-width: 58%;
  height: auto;
  margin-bottom: 14px;
}

.featured-services .title a {
  color: #111;
  margin-top: 10px;
}

.featured-services .description {
  font-size: 12px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a,
.featured-services .icon-box:hover .description,
.featured-services .icon-box:hover ul {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

.featured-services ul li {
  font-size: 12px;
}

.featured-services .icon-box.box.six ul {
  list-style-type: none;
  text-align: left;
}

.featured-services .icon-box.box.six ul li {
  font-size: 11px;
  line-height: 2;
}

.featured-services .icon-box.box.seven ul {
  list-style-type: none;
  text-align: left;
}

.featured-services .icon-box.box.seven ul li {
  font-size: 11px;
  line-height: 2;
}
/* End section featured service */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/* Start section about */
.about .content {
  margin-bottom: 65px;
}

.about p i[class="bi bi-envelope"] {
  color: #ff0000;
}

.about p i[class="bi bi-whatsapp"] {
  color: green;
}

.about p i[class="bi bi-facebook"] {
  color: #1251d7;
}

.about p span {
  color: #b11616;
}

.about.content.six ul {
  list-style: none;
  padding: 0;
  margin-top: -24px;
}

.about .content.six ul li:first-child {
  margin-top: 22px;
}

.about.content.six ul li {
  display: flex;
  align-items: flex-start;
  margin: 5px;
}

.about.content.seven ul {
  list-style: none;
  padding: 0;
  margin-top: -24px;
}

.about .content.seven ul li:first-child {
  margin-top: 22px;
}

.about.content.seven ul li {
  display: flex;
  align-items: flex-start;
  margin: 5px;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
  margin-top: -24px;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .content ul li:first-child {
  margin-top: 35px;
}

.about .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #106eea;
  border-radius: 50px;
}

.about .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .down {
  margin: 20px;
}

.about h5 {
  margin-bottom: 16px;
}

.about video {
  border-radius: 5px;
}

#hero2 {
  margin-bottom: -108px;
}

#hero2 h1 span {
  color: #b11616;
}

#hero2 ul {
  list-style-type: none;
}

#featured-services2 ul {
  list-style-type: none;
  margin-bottom: 10px;
  padding: 6px;
}

#featured-services2 ul li {
  font-size: 14px;
}

#featured-services2 ul li span {
  color: #b11616;
  font-weight: bold;
  margin-right: 14px;
}

#featured-services2 ul li span[class="id"] {
  margin-right: 0px;
}

#featured-services2 ul li span[class="no-space"] {
  margin-right: 6px;
}

.video-ins {
  font-weight: bold;
  font-size: 14px;
}

#featured-services2 iframe {
  border-radius: 5px;
  max-width: 100%;
}

#featured-services2 button {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #b11616;
  border: none;
}

/* start media for section about */
@media (max-width: 767px) {
  /* small screen rules */
  .about .featured-services ul li {
    margin-bottom: 7px;
  }

  #featured-services2 video {
    max-width: 100%;
    height: auto;
  }

  #featured-services2 .button-box {
    text-align: center;
  }

  #featured-services2 .button-box button {
    font-size: 12px;
  }

  #featured-services2 h3 {
    margin-bottom: -30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* medium screen rules */
  #featured-services2 h3 {
    margin-bottom: -30px;
  }
}
/* End media for section about */
/* End section about */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/* Start section popup */
.popup {
  background-color: #201e1efd;
  width: 100%;
  padding: 30px 40px;
  position: fixed;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  border-radius: 10px;
  color: #fff;
  direction: rtl;
}

.popup p {
  font-size: 18px;
  font-weight: bold;
}

.popup p i[class="bi bi-facebook"] {
  color: #1251d7;
  margin-left: 5px;
}

.popup p i[class="bi bi-whatsapp"] {
  color: green;
  margin-left: 5px;
}

.popup p i[class="bi bi-envelope"] {
  color: #ff0000;
  margin-left: 1px;
}

.popup button {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #b11616;
  border: none;
  margin: 10px 0px;
}
/* Start media for section popup */
@media (max-width: 767px) {
  .popup p {
    font-size: 13px;
  }

  .popup button {
    font-size: 11px;
  }
}
/* End media for section popup */
/* End section popup */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/* Start Footer */
footer {
  background-color: #b11616;
  color: #fff;
  padding: 5px 0px 1px 0px;
}
/* start media for footer */
@media (max-width: 767px) {
  footer h4 {
    font-size: 17px;
  }
}
/* End media for footer */
/* End Footer */
/* -------------------------------------------------------------------------- */
