/*
@File: Paheli Template Styles

* 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 Style
** - Section Title Style
** - Modal Style
** - Top Header Area
** - Navbar Area Style
** - Hero Area Style
** - Security Area Style
** - About Area Style
** - Partner Area Style
** - Services Area Style
** - Choose Area Style
** - Counter Area Style
** - Pricing Area Style
** - Testimonial Area Style
** - Blog Area Style
** - Contact Area Style
** - Projects Area
** - Faq Area Style
** - Team Area Style
** - Solutions Area Style
** - Page Title Area
** - 
** - 
** - 
** - 
** - 
** - 
** - 
** - 
** - 
** - 
** - Footer Area Style
*/
/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --body-font-family: "Poppins", sans-serif;
  --heading-font-family: "Libre Franklin", sans-serif;
  --fontSize: 16px;
  --primaryColor: #6600FC;
  --secondaryColor: #796eff;
  --whiteColor: #ffffff;
  --blackColor: #0C0B0B;
  --paragraphColor: #666;
  --transition: .5s;
}

body {
  margin: 0;
  padding: 0;
  font-weight: 400;
  color: var(--paragraphColor);
  font-size: var(--fontSize);
  font-family: var(--body-font-family);
}

.h1_7db573928b3fc77c, .h2_a7d49252572dc131, .h3_5d90b2be29e475b7, .h4_d77a6afe18057dc2, .h5_5f67939a4092415d, .h6_72d04b7618cd36d5, h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--blackColor);
  font-family: var(--heading-font-family);
}

a {
  transition: var(--transition);
  color: var(--whiteColor);
  outline: 0 !important;
}
a:hover {
  color: var(--primaryColor);
}

.d-table_72eb753f54dd02b1 {
  width: 100%;
  height: 100%;
}

.d-table-cell_cbbfff9e5e788ca6 {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  color: var(--paragraphColor);
  font-size: var(--fontSize);
  margin-bottom: 15px;
  line-height: 28px;
  letter-spacing: -0.32px;
}
p:last-child {
  margin-bottom: 0;
}

.form-control_9a8210976e912278:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--primaryColor) !important;
}

.ptb-100_4766a4a040b58745 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100_5f0ff9179be07bf2 {
  padding-top: 40px;
}

.pb-100_12d8369875ad9202 {
  padding-bottom: 100px;
}

.pt-75_4826991831f82a17 {
  padding-top: 75px;
}

.pb-75_59f71e7e9cb409ef {
  padding-bottom: 75px;
}

/*=========================================
Default Button Style
===========================================*/
.default-btn_543c2dc237fe6a9e {
  z-index: 1;
  position: relative;
  padding: 13px 25px;
  border-radius: 5px;
  display: inline-block;
  color: var(--whiteColor);
  transition: var(--transition);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 600;
}
.default-btn_543c2dc237fe6a9e i {
  width: 29px;
  height: 29px;
  font-size: 13px;
  line-height: 29px;
  margin-right: 7px;
  text-align: center;
  border-radius: 100px;
  display: inline-block;
  color: var(--blackColor);
  background-color: var(--whiteColor);
}
.default-btn_543c2dc237fe6a9e::before {
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
  visibility: visible;
  position: absolute;
  border-radius: 5px;
  transition: var(--transition);
  background: linear-gradient(96deg, #6600FC 0%, #FA3988 51.56%, #FF8408 100%);
}
.default-btn_543c2dc237fe6a9e::after {
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  position: absolute;
  border-radius: 5px;
  transition: var(--transition);
  background: linear-gradient(293deg, #6600FC 0%, #FA3988 51.56%, #FF8408 100%);
}
.default-btn_543c2dc237fe6a9e:hover {
  color: var(--whiteColor);
}
.default-btn_543c2dc237fe6a9e:hover::before {
  opacity: 0;
  visibility: hidden;
}
.default-btn_543c2dc237fe6a9e:hover::after {
  opacity: 1;
  visibility: visible;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/*=========================================
Section Title Style
===========================================*/
.section-title_e1854a56f54679cb {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.section-title_e1854a56f54679cb span {
  color: #ff8408;
  margin-bottom: 10px;
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 500;
}
.section-title_e1854a56f54679cb h2 {
  font-size: 40px;
  line-height: 1.4;
}
.section-title_e1854a56f54679cb.style-2_0ab62eb3caa3b95f {
  max-width: 100%;
}
.section-title_e1854a56f54679cb.style-2_0ab62eb3caa3b95f h2 {
  color: var(--whiteColor);
}

/*=========================================
Modal Style
===========================================*/
.search-modal_eca61cc08553c60e {
  background-color: rgba(22, 15, 10, 0.9);
}
.search-modal_eca61cc08553c60e .btn-close_a70ed7cf0db9c251 {
  top: 10px;
  right: 20px;
  position: absolute;
  padding: 0;
  opacity: unset;
  font-size: 40px;
  box-shadow: unset;
  color: var(--whiteColor);
  background-image: unset;
  transition: var(--transition);
}
.search-modal_eca61cc08553c60e .btn-close_a70ed7cf0db9c251:hover {
  color: var(--primaryColor);
}

.modal-content_69fd3ac34e688195 {
  border: unset;
  background-color: transparent;
}
.modal-content_69fd3ac34e688195 .modal-header_975e3f537de494de {
  border-bottom: unset;
}
.modal-content_69fd3ac34e688195 .modal-body .form-group {
  max-width: 500px;
  margin: auto;
  position: relative;
}
.modal-content_69fd3ac34e688195 .modal-body .form-group .form-control_9a8210976e912278 {
  height: 60px;
  padding-left: 25px;
  border-radius: 30px;
  border: unset;
  font-weight: 600;
  color: var(--blackColor);
  background-color: var(--whiteColor);
}
.modal-content_69fd3ac34e688195 .modal-body .form-group .form-control_9a8210976e912278::-moz-placeholder {
  font-weight: 600;
  color: var(--paragraphColor);
}
.modal-content_69fd3ac34e688195 .modal-body .form-group .form-control_9a8210976e912278::placeholder {
  font-weight: 600;
  color: var(--paragraphColor);
}
.modal-content_69fd3ac34e688195 .modal-body .form-group button {
  font-size: 18px;
  top: 50%;
  right: 5px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  padding: 0;
  border: none;
  box-shadow: none;
  border-radius: 100%;
  color: var(--whiteColor);
  background-color: #e53e30;
  transition: var(--transition);
  transform: translateY(-50%);
}
.modal-content_69fd3ac34e688195 .modal-body .form-group button:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

/*=========================================
Top Header Area Style
===========================================*/
.top-header-area_622a84829b333379 {
  padding-top: 13px;
  padding-bottom: 13px;
}
.top-header-area_622a84829b333379 .container-fluid_3b92a38788a42e98 {
  max-width: 1580px;
  margin: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.top-header-content_91da6e65b543029f .list_03f696d0715013e8 li {
  position: relative;
  padding-left: 27px;
  display: inline-block;
  color: var(--paragraphColor);
  font-size: 14px;
  font-weight: 400;
}
.top-header-content_91da6e65b543029f .list_03f696d0715013e8 li i {
  top: -1px;
  left: 0;
  position: absolute;
  font-size: 20px;
  line-height: 1;
  color: var(--primaryColor);
}
.top-header-content_91da6e65b543029f .list_03f696d0715013e8 li a {
  color: var(--primaryColor);
  text-decoration-line: underline;
  font-size: 14px;
  font-weight: 400;
}
.top-header-content_91da6e65b543029f .list_03f696d0715013e8 li strong {
  color: #ff8408;
  font-size: 14px;
  font-weight: 400;
}

.top-header-list_e601f46da3059c49 .list_03f696d0715013e8 li {
  position: relative;
  margin-right: 8px;
  color: var(--paragraphColor);
  padding-left: 27px;
  padding-right: 17px;
  font-size: 14px;
  font-weight: 400;
}
.top-header-list_e601f46da3059c49 .list_03f696d0715013e8 li i {
  top: -1px;
  left: 0;
  position: absolute;
  font-size: 20px;
  line-height: 1;
  color: var(--primaryColor);
}
.top-header-list_e601f46da3059c49 .list_03f696d0715013e8 li a {
  color: var(--paragraphColor);
  font-size: 14px;
  font-weight: 400;
}
.top-header-list_e601f46da3059c49 .list_03f696d0715013e8 li a:hover {
  color: var(--primaryColor);
}
.top-header-list_e601f46da3059c49 .list_03f696d0715013e8 li::before {
  right: 0;
  top: 0;
  width: 1px;
  height: 20px;
  content: "";
  position: absolute;
  background-color: #d9d9d9;
}
.top-header-list_e601f46da3059c49 .list_03f696d0715013e8 li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.top-header-list_e601f46da3059c49 .list_03f696d0715013e8 li:last-child::before {
  display: none;
}

/*=========================================
Navbar Area Style
===========================================*/
.navbar-area {
  z-index: 111;
  position: relative;
  background-color: var(--whiteColor);
  padding-top: 20px;
  padding-bottom: 20px;
}
.navbar-area.is-sticky {
  padding-top: 20px;
  padding-bottom: 20px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  background-color: var(--whiteColor);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.navbar-area .container-fluid_3b92a38788a42e98 {
  max-width: 1320px;
  margin: auto;
  padding-left: 12px;
  padding-right: 12px;
}
.navbar-area.style-2_0ab62eb3caa3b95f {
  background-color: #272b3a;
}
.navbar-area.style-2_0ab62eb3caa3b95f.is-sticky {
  box-shadow: 0 0 20px 3px rgba(12, 12, 12, 0.1);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.desktop-nav {
  padding-top: 0;
  padding-bottom: 0;
}
.desktop-nav .navbar-brand img {
  max-width: 200px;
  height: auto;
  display: block;
}
.desktop-nav .navbar {
  transition: all ease 0.5s;
  z-index: 2;
  padding-right: 0;
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
}
.desktop-nav .navbar ul {
  margin-bottom: 0;
  list-style-type: none;
}
.desktop-nav .navbar .navbar-nav {
  z-index: 1;
}
.desktop-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-right: 0;
  padding-left: 0;
  margin-left: 20px;
  margin-right: 20px;
}
.desktop-nav .navbar .navbar-nav .nav-item a {
  color: #1B2336;
  line-height: 1;
  position: relative;
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 500;
  padding-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle {
  padding-right: 18px;
}
.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle::after {
  display: none;
}
.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle::before {
  content: "\ea4e";
  position: absolute;
  top: -1px;
  right: 0;
  line-height: 1;
  color: rgb(12, 11, 11);
  font-family: remixicon !important;
  font-size: 17px;
  font-weight: 600;
}
.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: var(--primaryColor);
}
.desktop-nav .navbar .navbar-nav .nav-item a:hover.dropdown-toggle::before, .desktop-nav .navbar .navbar-nav .nav-item a:focus.dropdown-toggle::before, .desktop-nav .navbar .navbar-nav .nav-item a.active.dropdown-toggle::before {
  color: var(--primaryColor);
}
.desktop-nav .navbar .navbar-nav .nav-item a i {
  font-size: 18px;
  line-height: 0;
  position: relative;
  top: 4px;
}
.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: var(--primaryColor);
}
.desktop-nav .navbar .navbar-nav .nav-item:hover a.dropdown-toggle::before, .desktop-nav .navbar .navbar-nav .nav-item:focus a.dropdown-toggle::before, .desktop-nav .navbar .navbar-nav .nav-item.active a.dropdown-toggle::before {
  color: var(--primaryColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  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;
  padding: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  padding: 0;
  margin: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: var(--blackColor);
  padding: 15px;
  border-bottom: 1px dashed #ededed;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  display: block;
  padding-left: 20px;
  position: relative;
  transition: var(--transition);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::after {
  display: none;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::before {
  top: 14px;
  right: 13px;
  line-height: 1;
  font-size: 17px;
  content: "\ea4e";
  position: absolute;
  color: var(--blackColor);
  font-family: remixicon !important;
}
.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: var(--primaryColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover::after, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus::after, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active::after {
  opacity: 1;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover::before, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus::before, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active::before {
  color: var(--primaryColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a::after {
  top: 0;
  left: 0;
  width: 4px;
  opacity: 0;
  height: 100%;
  content: "";
  position: absolute;
  transition: 0.1s all;
  transition: var(--transition);
  background-color: var(--primaryColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .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 a {
  color: var(--blackColor);
  border-bottom: 1px dashed #ededed;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  position: relative;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.dropdown-toggle::after {
  display: none;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.dropdown-toggle::before {
  content: "\ea4e";
  position: absolute;
  top: 14px;
  right: 13px;
  font-family: remixicon !important;
  line-height: 1;
  font-size: 17px;
}
.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: var(--blackColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .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 a {
  color: var(--blackColor);
}
.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: var(--blackColor);
}
.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: var(--blackColor);
}
.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: var(--blackColor);
}
.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: var(--blackColor);
}
.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: var(--primaryColor);
}
.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: var(--blackColor);
}
.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: var(--primaryColor);
}
.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: var(--blackColor);
}
.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: var(--primaryColor);
}
.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: var(--blackColor);
}
.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: var(--primaryColor);
}
.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: -1px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--primaryColor);
}
.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: -1px;
  visibility: visible;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--primaryColor);
}
.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: var(--blackColor);
}
.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: var(--blackColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:last-child a {
  border-bottom: none;
}
.desktop-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  top: 100%;
  opacity: 1;
  margin-top: 0;
  visibility: visible;
}
.desktop-nav .navbar .others-options ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.desktop-nav .navbar .others-options ul li {
  margin-right: 25px;
  display: inline-block;
}
.desktop-nav .navbar .others-options ul li .btn_e24f9cc3a3b6e936 {
  border: none;
  padding: 0;
  width: 56px;
  height: 56px;
  border-radius: 100px;
  line-height: 56px;
  display: inline-block;
  color: var(--blackColor);
  background-color: transparent;
  transition: var(--transition);
  border: 1px solid rgb(239, 239, 239);
  font-size: 19px;
  font-weight: 600;
}
.desktop-nav .navbar .others-options ul li .btn_e24f9cc3a3b6e936 i {
  top: -1px;
  position: relative;
}
.desktop-nav .navbar .others-options ul li .btn_e24f9cc3a3b6e936:hover {
  color: var(--primaryColor);
  border-color: rgb(217, 212, 212);
}
.desktop-nav .navbar .others-options ul li .default-btn_543c2dc237fe6a9e i {
  width: 29px;
  height: 29px;
  font-size: 13px;
  line-height: 29px;
  margin-right: 7px;
  text-align: center;
  border-radius: 100px;
  display: inline-block;
  color: var(--blackColor);
  background-color: var(--whiteColor);
}
.desktop-nav .navbar .others-options ul li:last-child {
  margin-right: 0;
}
.desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item a {
  color: var(--whiteColor);
  transition: var(--transition);
}
.desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item a.dropdown-toggle::before {
  color: var(--whiteColor);
  transition: var(--transition);
}
.desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item a:hover, .desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item a:focus, .desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item a.active {
  color: var(--secondaryColor);
}
.desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item a:hover.dropdown-toggle::before, .desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item a:focus.dropdown-toggle::before, .desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item a.active.dropdown-toggle::before {
  color: var(--secondaryColor);
}
.desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item:hover a, .desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item:focus a, .desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item.active a {
  color: var(--secondaryColor);
}
.desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item:hover a.dropdown-toggle::before, .desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item:focus a.dropdown-toggle::before, .desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item.active a.dropdown-toggle::before {
  color: var(--secondaryColor);
}
.desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: var(--blackColor);
}
.desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--secondaryColor);
}
.desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item .dropdown-menu li a:hover::after, .desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item .dropdown-menu li a:focus::after, .desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item .dropdown-menu li a.active::after {
  opacity: 1;
}
.desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item .dropdown-menu li a:hover::before, .desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item .dropdown-menu li a:focus::before, .desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item .dropdown-menu li a.active::before {
  color: var(--secondaryColor);
}
.desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item .dropdown-menu li a::after {
  background-color: var(--secondaryColor);
}
.desktop-nav.style-2_0ab62eb3caa3b95f .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: var(--secondaryColor);
}
.desktop-nav.style-2_0ab62eb3caa3b95f .navbar .others-options ul li .btn_e24f9cc3a3b6e936 {
  color: var(--whiteColor);
  border-color: rgba(255, 255, 255, 0.15);
}
.desktop-nav.style-2_0ab62eb3caa3b95f .navbar .others-options ul li .btn_e24f9cc3a3b6e936:hover {
  border-color: rgb(217, 212, 212);
}

.mobile-nav {
  display: none;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
/*=========================================
Others Option For Responsive Area Style
===========================================*/
.others-option-for-responsive {
  display: none !important;
}
.others-option-for-responsive .dot-menu {
  display: none;
}
.others-option-for-responsive .dot-menu .inner_2f11bddc244bc907 {
  display: flex;
  align-items: center;
  height: 30px;
}
.others-option-for-responsive .dot-menu .inner_2f11bddc244bc907 .circle_1d6ea1ad4db0eec7 {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  transition: all ease 0.5s;
  background-color: var(--secondaryColor);
}
.others-option-for-responsive .dot-menu:hover .inner_2f11bddc244bc907 .circle_1d6ea1ad4db0eec7 {
  background-color: var(--secondaryColor);
}
.others-option-for-responsive .container {
  position: relative;
}
.others-option-for-responsive .container .container {
  position: absolute;
  right: -2px;
  top: 15px;
  max-width: 130px;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
  transform: scaleY(0);
  z-index: 1;
  padding-left: 15px;
  padding-right: 15px;
}
.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
.others-option-for-responsive .others-options {
  background-color: var(--whiteColor);
  padding: 15px;
  text-align: center;
}
.others-option-for-responsive .others-options ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.others-option-for-responsive .others-options ul li {
  align-items: center;
  display: inline-block;
  margin-right: 15px;
}
.others-option-for-responsive .others-options ul li .btn_e24f9cc3a3b6e936 {
  font-size: 20px;
  border: none;
  padding: 0;
  line-height: 1;
  color: var(--blackColor);
  background-color: transparent;
}
.others-option-for-responsive .others-options ul li .btn_e24f9cc3a3b6e936:hover {
  color: var(--primaryColor);
}
.others-option-for-responsive .others-options ul li .quote_5f9d813dc0793aff {
  display: inline-block;
}
.others-option-for-responsive .others-options ul li .quote_5f9d813dc0793aff i {
  top: 2px;
  font-size: 20px;
  line-height: 1;
  position: relative;
  color: var(--blackColor);
}
.others-option-for-responsive .others-options ul li .quote_5f9d813dc0793aff i:hover {
  color: var(--primaryColor);
}
.others-option-for-responsive .others-options ul li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}

/*=========================================
Hero Area Style
===========================================*/
.hero-area_09e396ba2cf3624a {
  z-index: 1;
  position: relative;
  padding-top: 260px;
  padding-bottom: 390px;
  background-image: url(../img/hero/hero-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-area_09e396ba2cf3624a .container-fluid_3b92a38788a42e98 {
  max-width: 1580px;
  margin: auto;
  padding-left: 30px;
  padding-right: 30px;
}
.hero-area_09e396ba2cf3624a .shape-1_76c3addda8bd1b90 {
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
}

.hero-content_d193bc155a43be8d {
  max-width: 754px;
}
.hero-content_d193bc155a43be8d .title {
  margin-bottom: 40px;
}
.hero-content_d193bc155a43be8d .title span {
  color: #FF8408;
  margin-bottom: 10px;
  font-family: var(--heading-font-family);
}
.hero-content_d193bc155a43be8d .title h1 {
  color: #FFF;
  font-size: 70px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
}
.hero-content_d193bc155a43be8d .title p {
  color: #CDCDCD;
}
.hero-content_d193bc155a43be8d .hero-button_80707c46395e722c .demo_c2c6b9530ff8edda {
  padding: 15px 24px;
  padding-left: 48px;
  margin-right: 30px;
  position: relative;
  border-radius: 5px;
  display: inline-block;
  color: var(--whiteColor);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 600;
}
.hero-content_d193bc155a43be8d .hero-button_80707c46395e722c .demo_c2c6b9530ff8edda .dote_795bb22b4ec0b2e1 {
  top: 50%;
  left: 25px;
  width: 13px;
  height: 13px;
  content: "";
  z-index: 1;
  position: absolute;
  border-radius: 100%;
  display: inline-block;
  background-color: #FF8408;
  transform: translateY(-50%);
}
.hero-content_d193bc155a43be8d .hero-button_80707c46395e722c .demo_c2c6b9530ff8edda::before {
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
  visibility: visible;
  position: absolute;
  border-radius: 5px;
  transition: var(--transition);
  background: linear-gradient(96deg, #6600FC 0%, #FA3988 51.56%, #FF8408 100%);
}
.hero-content_d193bc155a43be8d .hero-button_80707c46395e722c .demo_c2c6b9530ff8edda::after {
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  position: absolute;
  border-radius: 5px;
  transition: var(--transition);
  background: linear-gradient(293deg, #6600FC 0%, #FA3988 51.56%, #FF8408 100%);
}
.hero-content_d193bc155a43be8d .hero-button_80707c46395e722c .demo_c2c6b9530ff8edda:hover {
  color: var(--whiteColor);
}
.hero-content_d193bc155a43be8d .hero-button_80707c46395e722c .demo_c2c6b9530ff8edda:hover::before {
  opacity: 0;
  visibility: hidden;
}
.hero-content_d193bc155a43be8d .hero-button_80707c46395e722c .demo_c2c6b9530ff8edda:hover::after {
  opacity: 1;
  visibility: visible;
}
.hero-content_d193bc155a43be8d .hero-button_80707c46395e722c .play-btn_a91be900473c148f {
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 600;
}
.hero-content_d193bc155a43be8d .hero-button_80707c46395e722c .play-btn_a91be900473c148f .icon_f1d327e33470f573 {
  width: 55px;
  height: 55px;
  font-size: 25px;
  line-height: 55px;
  text-align: center;
  margin-right: 15px;
  border-radius: 100%;
  display: inline-block;
  color: var(--primaryColor);
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.hero-content_d193bc155a43be8d .hero-button_80707c46395e722c .play-btn_a91be900473c148f .icon_f1d327e33470f573 i {
  left: 2px;
  position: relative;
}
.hero-content_d193bc155a43be8d .hero-button_80707c46395e722c .play-btn_a91be900473c148f .icon_f1d327e33470f573:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.banner-area_ab668e2328f5628f {
  z-index: 1;
  position: relative;
  background-color: rgb(41, 45, 60);
  padding-top: 160px;
  padding-bottom: 160px;
}
.banner-area_ab668e2328f5628f .container-fluid_3b92a38788a42e98 {
  max-width: 1580px;
  margin: auto;
  padding-left: 30px;
  padding-right: 30px;
}
.banner-area_ab668e2328f5628f .shape-2_af8e31f0ecc7059b {
  top: 30px;
  left: 0;
  z-index: -1;
  position: absolute;
}

.banner-content_f46ba94bcbc30f93 {
  max-width: 610px;
}
.banner-content_f46ba94bcbc30f93 .title {
  margin-bottom: 40px;
}
.banner-content_f46ba94bcbc30f93 .title span {
  color: #FF8408;
  margin-bottom: 10px;
  font-family: var(--heading-font-family);
}
.banner-content_f46ba94bcbc30f93 .title h1 {
  color: #FFF;
  font-size: 70px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
}
.banner-content_f46ba94bcbc30f93 .title p {
  color: #dae0f5;
}
.banner-content_f46ba94bcbc30f93 .banner-button_76a315fd09af4b06 .demo_c2c6b9530ff8edda {
  padding: 16px 24px;
  padding-left: 48px;
  margin-right: 30px;
  position: relative;
  border-radius: 5px;
  display: inline-block;
  transition: var(--transition);
  font-family: var(--heading-font-family);
  background-color: rgb(41, 45, 60);
  font-size: 15px;
  font-weight: 600;
}
.banner-content_f46ba94bcbc30f93 .banner-button_76a315fd09af4b06 .demo_c2c6b9530ff8edda::before {
  top: 50%;
  left: 25px;
  width: 13px;
  height: 13px;
  content: "";
  position: absolute;
  border-radius: 100%;
  display: inline-block;
  background-color: #FF8408;
  transform: translateY(-50%);
}
.banner-content_f46ba94bcbc30f93 .banner-button_76a315fd09af4b06 .demo_c2c6b9530ff8edda::after {
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  content: "";
  z-index: -1;
  position: absolute;
  border-radius: 5px;
  background: linear-gradient(96deg, #6600FC 0%, #FA3988 51.56%, #FF8408 100%);
}
.banner-content_f46ba94bcbc30f93 .banner-button_76a315fd09af4b06 .demo_c2c6b9530ff8edda:hover {
  color: var(--whiteColor);
  background-color: transparent;
}
.banner-content_f46ba94bcbc30f93 .banner-button_76a315fd09af4b06 .play-btn_a91be900473c148f {
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 600;
}
.banner-content_f46ba94bcbc30f93 .banner-button_76a315fd09af4b06 .play-btn_a91be900473c148f .icon_f1d327e33470f573 {
  width: 55px;
  height: 55px;
  font-size: 25px;
  line-height: 55px;
  text-align: center;
  margin-right: 15px;
  border-radius: 100%;
  display: inline-block;
  color: var(--primaryColor);
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.banner-content_f46ba94bcbc30f93 .banner-button_76a315fd09af4b06 .play-btn_a91be900473c148f .icon_f1d327e33470f573 i {
  left: 2px;
  position: relative;
}
.banner-content_f46ba94bcbc30f93 .banner-button_76a315fd09af4b06 .play-btn_a91be900473c148f .icon_f1d327e33470f573:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.banner-image_ebd02975e799671b {
  max-width: 704px;
  margin-left: auto;
  margin-right: 0;
}

.banner-wrapper-area_f2c972d8eb305028 {
  z-index: 1;
  position: relative;
  padding-top: 100px;
  background-image: url(../img/hero/banner-wrapper-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-wrapper-area_f2c972d8eb305028 .container-fluid_3b92a38788a42e98 {
  max-width: 1580px;
  margin: auto;
  padding-left: 30px;
  padding-right: 30px;
}
.banner-wrapper-area_f2c972d8eb305028 .banner-wrapper-shape_8eb3e9aba2d9b5d2 {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: auto;
  text-align: center;
  position: absolute;
}

.banner-wrapper-content_93c85a29937e3e4c {
  padding-top: 125px;
}
.banner-wrapper-content_93c85a29937e3e4c .title {
  margin-bottom: 40px;
}
.banner-wrapper-content_93c85a29937e3e4c .title span {
  color: #FF8408;
  margin-bottom: 10px;
  font-family: var(--heading-font-family);
}
.banner-wrapper-content_93c85a29937e3e4c .title h1 {
  color: #FFF;
  font-size: 70px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}
.banner-wrapper-content_93c85a29937e3e4c .title p {
  max-width: 760px;
  color: rgb(218, 224, 245);
}
.banner-wrapper-content_93c85a29937e3e4c .banner-wrapper-button_934a248851c27e7b .demo_c2c6b9530ff8edda {
  z-index: 1;
  padding: 15px 24px;
  padding-left: 48px;
  margin-right: 30px;
  position: relative;
  border-radius: 5px;
  display: inline-block;
  color: var(--whiteColor);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 600;
}
.banner-wrapper-content_93c85a29937e3e4c .banner-wrapper-button_934a248851c27e7b .demo_c2c6b9530ff8edda .dote_795bb22b4ec0b2e1 {
  top: 50%;
  left: 25px;
  width: 13px;
  height: 13px;
  content: "";
  z-index: 1;
  position: absolute;
  border-radius: 100%;
  display: inline-block;
  background-color: #FF8408;
  transform: translateY(-50%);
}
.banner-wrapper-content_93c85a29937e3e4c .banner-wrapper-button_934a248851c27e7b .demo_c2c6b9530ff8edda::before {
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
  visibility: visible;
  position: absolute;
  border-radius: 5px;
  transition: var(--transition);
  background: linear-gradient(96deg, #6600FC 0%, #FA3988 51.56%, #FF8408 100%);
}
.banner-wrapper-content_93c85a29937e3e4c .banner-wrapper-button_934a248851c27e7b .demo_c2c6b9530ff8edda::after {
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  position: absolute;
  border-radius: 5px;
  transition: var(--transition);
  background: linear-gradient(293deg, #6600FC 0%, #FA3988 51.56%, #FF8408 100%);
}
.banner-wrapper-content_93c85a29937e3e4c .banner-wrapper-button_934a248851c27e7b .demo_c2c6b9530ff8edda:hover {
  color: var(--whiteColor);
}
.banner-wrapper-content_93c85a29937e3e4c .banner-wrapper-button_934a248851c27e7b .demo_c2c6b9530ff8edda:hover::before {
  opacity: 0;
  visibility: hidden;
}
.banner-wrapper-content_93c85a29937e3e4c .banner-wrapper-button_934a248851c27e7b .demo_c2c6b9530ff8edda:hover::after {
  opacity: 1;
  visibility: visible;
}
.banner-wrapper-content_93c85a29937e3e4c .banner-wrapper-button_934a248851c27e7b .play-btn_a91be900473c148f {
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 600;
}
.banner-wrapper-content_93c85a29937e3e4c .banner-wrapper-button_934a248851c27e7b .play-btn_a91be900473c148f .icon_f1d327e33470f573 {
  width: 55px;
  height: 55px;
  font-size: 25px;
  line-height: 55px;
  text-align: center;
  margin-right: 15px;
  border-radius: 100%;
  display: inline-block;
  color: var(--primaryColor);
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.banner-wrapper-content_93c85a29937e3e4c .banner-wrapper-button_934a248851c27e7b .play-btn_a91be900473c148f .icon_f1d327e33470f573 i {
  left: 2px;
  position: relative;
}
.banner-wrapper-content_93c85a29937e3e4c .banner-wrapper-button_934a248851c27e7b .play-btn_a91be900473c148f .icon_f1d327e33470f573:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.banner-wrapper-image_95925e7f43b8b2b2 {
  z-index: 1;
  position: relative;
}
.banner-wrapper-image_95925e7f43b8b2b2 .bg-shape_4a6689d8bee1d39a {
  top: 165px;
  right: -40px;
  z-index: -1;
  position: absolute;
}

/*=========================================
Security Area Style
===========================================*/
.security-area_733a9cce71e273d5 .container-fluid_3b92a38788a42e98 {
  max-width: 1580px;
  margin: auto;
  padding-left: 30px;
  padding-right: 30px;
}
.security-area_733a9cce71e273d5.top-70_86c306e44b0bed8c {
  z-index: 1;
  position: relative;
  margin-top: -90px;
}
.security-area_733a9cce71e273d5.style-2_0ab62eb3caa3b95f {
  background-color: rgb(39, 43, 58);
}
.security-area_733a9cce71e273d5.services-style_4ef67ac4164d6a94 {
  z-index: 1;
  padding-top: 45px;
  position: relative;
}
.security-area_733a9cce71e273d5.services-style_4ef67ac4164d6a94::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 38%;
  z-index: -1;
  content: "";
  position: absolute;
  background-color: #f7ffff;
}

.single-security-info_75f00c68f76387f2 {
  padding: 30px 35px;
  padding-top: 0;
  margin-bottom: 25px;
  border-radius: 0px 30px;
  transition: var(--transition);
  background-color: var(--whiteColor);
  border: 1px solid rgba(207, 217, 249, 0.5);
}
.single-security-info_75f00c68f76387f2 .date_6140796142008fd4 {
  top: -45px;
  bottom: 0;
  width: 80px;
  height: 80px;
  line-height: 80px;
  color: #CFD9F9;
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  margin-bottom: -25px;
  border-radius: 100%;
  position: relative;
  display: inline-block;
  transition: var(--transition);
  background-color: var(--whiteColor);
  border: 1px solid rgba(207, 217, 249, 0.5);
}
.single-security-info_75f00c68f76387f2 h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.single-security-info_75f00c68f76387f2 h3 a {
  color: var(--blackColor);
}
.single-security-info_75f00c68f76387f2 h3 a:hover {
  color: var(--secondaryColor);
}
.single-security-info_75f00c68f76387f2 .read-more_40b5904353a8af78 {
  position: relative;
  color: var(--blackColor);
  transition: var(--transition);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 500;
}
.single-security-info_75f00c68f76387f2 .read-more_40b5904353a8af78 i {
  top: 1px;
  font-size: 17px;
  line-height: 1;
  position: relative;
  display: inline-block;
  transform: rotate(304deg);
  color: var(--blackColor);
  transition: var(--transition);
}
.single-security-info_75f00c68f76387f2 .read-more_40b5904353a8af78::before {
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: var(--primaryColor);
}
.single-security-info_75f00c68f76387f2:hover {
  border-color: transparent;
  box-shadow: 0px 4px 20px 0px rgba(207, 217, 249, 0.35);
}
.single-security-info_75f00c68f76387f2:hover .date_6140796142008fd4 {
  border-color: var(--primaryColor);
  background-color: var(--primaryColor);
  transform: translateY(-7px);
}
.single-security-info_75f00c68f76387f2:hover .read-more_40b5904353a8af78 {
  color: var(--primaryColor);
}
.single-security-info_75f00c68f76387f2:hover .read-more_40b5904353a8af78 i {
  transform: unset;
  color: var(--primaryColor);
}
.single-security-info_75f00c68f76387f2:hover .read-more_40b5904353a8af78::before {
  width: 100%;
}

.col-lg-3_ee0b67bca989d88a:nth-child(1) .single-security-info_75f00c68f76387f2 {
  margin-right: 10px;
}
.col-lg-3_ee0b67bca989d88a:nth-child(2) .single-security-info_75f00c68f76387f2 {
  margin-right: 10px;
}
.col-lg-3_ee0b67bca989d88a:nth-child(3) .single-security-info_75f00c68f76387f2 {
  margin-left: 5px;
}
.col-lg-3_ee0b67bca989d88a:nth-child(4) .single-security-info_75f00c68f76387f2 {
  margin-left: 10px;
}

.single-security-item_00484ce06675ddea {
  margin-bottom: 25px;
}
.single-security-item_00484ce06675ddea .icon_f1d327e33470f573 {
  flex: 0 0 auto;
  display: block;
  margin-right: 20px;
}
.single-security-item_00484ce06675ddea h3 {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 20px;
  font-weight: 600;
}
.single-security-item_00484ce06675ddea h3 a {
  color: var(--whiteColor);
}
.single-security-item_00484ce06675ddea h3 a:hover {
  color: var(--secondaryColor);
}
.single-security-item_00484ce06675ddea .read-more_40b5904353a8af78 {
  position: relative;
  color: #dae0f5;
  transition: var(--transition);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 400;
}
.single-security-item_00484ce06675ddea .read-more_40b5904353a8af78 i {
  top: 1px;
  font-size: 17px;
  line-height: 1;
  color: #dae0f5;
  position: relative;
  display: inline-block;
  transform: rotate(304deg);
  transition: var(--transition);
}
.single-security-item_00484ce06675ddea .read-more_40b5904353a8af78::before {
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: var(--primaryColor);
}
.single-security-item_00484ce06675ddea .read-more_40b5904353a8af78:hover {
  color: var(--primaryColor);
}
.single-security-item_00484ce06675ddea .read-more_40b5904353a8af78:hover i {
  transform: unset;
  color: var(--primaryColor);
}
.single-security-item_00484ce06675ddea .read-more_40b5904353a8af78:hover::before {
  width: 100%;
}

.single-security-card_2ce6194feb91e5f3 {
  padding: 35px;
  margin-bottom: 25px;
  border-radius: 0px 30px;
  transition: var(--transition);
  background-color: var(--whiteColor);
  border: 1px solid rgba(207, 217, 249, 0.5);
}
.single-security-card_2ce6194feb91e5f3 .icon_f1d327e33470f573 {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 100%;
  margin-bottom: 25px;
  display: inline-block;
  transition: var(--transition);
  background-color: var(--whiteColor);
  border: 1px solid rgba(207, 217, 249, 0.5);
}
.single-security-card_2ce6194feb91e5f3 .icon_f1d327e33470f573 svg path {
  transition: var(--transition);
}
.single-security-card_2ce6194feb91e5f3 h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.single-security-card_2ce6194feb91e5f3 .read-more_40b5904353a8af78 {
  position: relative;
  color: var(--blackColor);
  transition: var(--transition);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 500;
}
.single-security-card_2ce6194feb91e5f3 .read-more_40b5904353a8af78 i {
  top: 1px;
  font-size: 17px;
  line-height: 1;
  position: relative;
  display: inline-block;
  transform: rotate(304deg);
  color: var(--blackColor);
  transition: var(--transition);
}
.single-security-card_2ce6194feb91e5f3 .read-more_40b5904353a8af78::before {
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: var(--primaryColor);
}
.single-security-card_2ce6194feb91e5f3:hover {
  border-color: transparent;
  box-shadow: 0px 4px 20px 0px rgba(207, 217, 249, 0.35);
}
.single-security-card_2ce6194feb91e5f3:hover .icon_f1d327e33470f573 {
  background-color: var(--primaryColor);
}
.single-security-card_2ce6194feb91e5f3:hover .icon_f1d327e33470f573 svg path {
  fill: var(--whiteColor);
}
.single-security-card_2ce6194feb91e5f3:hover .read-more_40b5904353a8af78 {
  color: var(--primaryColor);
}
.single-security-card_2ce6194feb91e5f3:hover .read-more_40b5904353a8af78 i {
  transform: unset;
  color: var(--primaryColor);
}
.single-security-card_2ce6194feb91e5f3:hover .read-more_40b5904353a8af78::before {
  width: 100%;
}

/*=========================================
About Area Style
===========================================*/
.about-area_f2461c9dafb92fab.style-2_0ab62eb3caa3b95f {
  background-color: rgb(39, 43, 58);
}

.about-title-area_4e646abfb48154f8 {
  margin-bottom: 30px;
}
.about-title-area_4e646abfb48154f8 .about-title_28a61455bebf8ecc span {
  color: #FF8408;
  margin-bottom: 10px;
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 500;
}
.about-title-area_4e646abfb48154f8 .about-title_28a61455bebf8ecc h2 {
  font-size: 40px;
  line-height: 1.4;
}

.col-lg-6_c8301dc9cbfece8f:nth-child(2) .about-title_28a61455bebf8ecc {
  margin-left: 45px;
}

.about-image_2028f563e615bab1 {
  margin-bottom: 25px;
  position: relative;
}
.about-image_2028f563e615bab1 .image-1_7265b9b0c47239bf {
  max-width: 441px;
}
.about-image_2028f563e615bab1 .image-2_1d8b97e85595b78d {
  top: 60px;
  right: 10px;
  position: absolute;
}
.about-image_2028f563e615bab1 .image-2_1d8b97e85595b78d img {
  width: 155px;
  height: 155px;
  border-radius: 0px 30px;
}
.about-image_2028f563e615bab1 .image-3_8505bd02e5cfdcae {
  right: 0;
  bottom: 50px;
  position: absolute;
}
.about-image_2028f563e615bab1 .image-3_8505bd02e5cfdcae img {
  width: 310px;
  height: 310px;
  border-radius: 289px;
  border: 10px solid #FFF;
}
.about-image_2028f563e615bab1.style-2_0ab62eb3caa3b95f .image-1_7265b9b0c47239bf {
  max-width: 472px;
}
.about-image_2028f563e615bab1.style-2_0ab62eb3caa3b95f .image-1_7265b9b0c47239bf img {
  border-radius: 20px 0px;
}
.about-image_2028f563e615bab1.style-2_0ab62eb3caa3b95f .image-two_8f9bc560becfc985 {
  max-width: 375px;
  position: relative;
  background-color: #272b3a;
  padding-top: 10px;
  padding-left: 10px;
  margin-top: -365px;
  margin-right: 0;
  margin-left: auto;
}
.about-image_2028f563e615bab1.style-2_0ab62eb3caa3b95f .image-two_8f9bc560becfc985 img {
  border-radius: 0px 20px;
}

.about-content_b49d6068819e4c33 {
  margin-left: 45px;
  margin-bottom: 25px;
}
.about-content_b49d6068819e4c33 .title {
  margin-bottom: 30px;
}
.about-content_b49d6068819e4c33 .title span {
  color: #FF8408;
  margin-bottom: 10px;
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 500;
}
.about-content_b49d6068819e4c33 .title h2 {
  font-size: 40px;
  line-height: 1.4;
  margin-bottom: 13px;
  color: var(--whiteColor);
}
.about-content_b49d6068819e4c33 .title p {
  color: #dae0f5;
}
.about-content_b49d6068819e4c33 .content-card_f3952ec243944e05 {
  margin-bottom: 35px;
  transition: var(--transition);
}
.about-content_b49d6068819e4c33 .content-card_f3952ec243944e05 .icon_f1d327e33470f573 {
  width: 100px;
  height: 100px;
  display: block;
  flex: 0 0 auto;
  margin-right: 30px;
  text-align: center;
  line-height: 100px;
  border-radius: 100%;
  transition: var(--transition);
  border: 1px solid rgba(207, 217, 249, 0.5);
}
.about-content_b49d6068819e4c33 .content-card_f3952ec243944e05 .icon_f1d327e33470f573 svg g path {
  transition: var(--transition);
}
.about-content_b49d6068819e4c33 .content-card_f3952ec243944e05 .content h3 {
  line-height: 1.4;
  font-size: 20px;
  font-weight: 700;
}
.about-content_b49d6068819e4c33 .content-card_f3952ec243944e05:hover .icon_f1d327e33470f573 {
  border-color: var(--whiteColor);
  box-shadow: 0px 4px 20px rgba(207, 217, 249, 0.35);
}
.about-content_b49d6068819e4c33 .content-card_f3952ec243944e05:hover .icon_f1d327e33470f573 svg g path {
  fill: rgb(102, 0, 252);
}
.about-content_b49d6068819e4c33 .default-btn_543c2dc237fe6a9e {
  margin-top: 10px;
}
.about-content_b49d6068819e4c33.style-2_0ab62eb3caa3b95f .content-card_f3952ec243944e05 .icon_f1d327e33470f573 {
  border: unset;
  background-color: #2e3241;
}
.about-content_b49d6068819e4c33.style-2_0ab62eb3caa3b95f .content-card_f3952ec243944e05 .icon_f1d327e33470f573 svg g path {
  fill: rgb(255, 132, 8);
}
.about-content_b49d6068819e4c33.style-2_0ab62eb3caa3b95f .content-card_f3952ec243944e05 .content h3 {
  color: var(--whiteColor);
  font-size: 20px;
  font-weight: 700;
}
.about-content_b49d6068819e4c33.style-2_0ab62eb3caa3b95f .content-card_f3952ec243944e05 .content p {
  color: #dae0f5;
}
.about-content_b49d6068819e4c33.style-2_0ab62eb3caa3b95f .content-card_f3952ec243944e05:hover .icon_f1d327e33470f573 {
  box-shadow: unset;
}
.about-content_b49d6068819e4c33.style-3_bcb009a1151cfce5 {
  margin-left: 0;
  max-width: 751px;
  margin-bottom: 0;
}
.about-content_b49d6068819e4c33.style-3_bcb009a1151cfce5 .title {
  margin-bottom: 50px;
}
.about-content_b49d6068819e4c33.style-3_bcb009a1151cfce5 .title h2 {
  color: var(--blackColor);
}
.about-content_b49d6068819e4c33.style-3_bcb009a1151cfce5 .title p {
  color: var(--paragraphColor);
}
.about-content_b49d6068819e4c33.style-3_bcb009a1151cfce5 .content-item_f88d92cb1c0dce85 {
  margin-bottom: 25px;
}
.about-content_b49d6068819e4c33.style-3_bcb009a1151cfce5 .content-item_f88d92cb1c0dce85 h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.about-content_b49d6068819e4c33.about-style_cc9a8ab689433142 {
  margin-left: 35px;
}
.about-content_b49d6068819e4c33.about-style_cc9a8ab689433142 .title {
  margin-bottom: 40px;
}
.about-content_b49d6068819e4c33.about-style_cc9a8ab689433142 .title h2 {
  color: var(--blackColor);
}
.about-content_b49d6068819e4c33.about-style_cc9a8ab689433142 .title p {
  color: var(--paragraphColor);
}
.about-content_b49d6068819e4c33.about-style_cc9a8ab689433142 .about-item_6304450dfe58e156 {
  margin-bottom: 25px;
}
.about-content_b49d6068819e4c33.about-style_cc9a8ab689433142 .about-item_6304450dfe58e156 .point_686d17519e182e9b {
  width: 100px;
  height: 100px;
  margin-bottom: 25px;
  line-height: 100px;
  border-radius: 100%;
  text-align: center;
  display: inline-block;
  color: var(--blackColor);
  border: 1px solid rgba(207, 217, 249, 0.5);
  font-size: 30px;
  font-weight: 700;
}
.about-content_b49d6068819e4c33.about-style_cc9a8ab689433142 .about-item_6304450dfe58e156 h3 {
  font-size: 16px;
  margin-bottom: 12px;
}
.about-content_b49d6068819e4c33.about-style_cc9a8ab689433142 .demo_c2c6b9530ff8edda {
  margin-top: 15px;
  padding: 15px 24px;
  padding-left: 48px;
  position: relative;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  color: var(--blackColor);
  transition: var(--transition);
  background-color: var(--whiteColor);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 600;
}
.about-content_b49d6068819e4c33.about-style_cc9a8ab689433142 .demo_c2c6b9530ff8edda::before {
  top: 50%;
  left: 25px;
  width: 13px;
  height: 13px;
  content: "";
  position: absolute;
  border-radius: 100%;
  display: inline-block;
  background-color: #FF8408;
  transform: translateY(-50%);
}
.about-content_b49d6068819e4c33.about-style_cc9a8ab689433142 .demo_c2c6b9530ff8edda::after {
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  content: "";
  z-index: -1;
  position: absolute;
  border-radius: 5px;
  transition: var(--transition);
  background: linear-gradient(96deg, #6600FC 0%, #FA3988 51.56%, #FF8408 100%);
}
.about-content_b49d6068819e4c33.about-style_cc9a8ab689433142 .demo_c2c6b9530ff8edda:hover {
  color: var(--whiteColor);
  background-color: transparent;
}

/*=========================================
Partner Area Style
===========================================*/
.partner-area_f76c2d15cc939ec1 {
  background-color: #fdfdff;
}
.partner-area_f76c2d15cc939ec1.style-2_0ab62eb3caa3b95f {
  background-color: #272b3a;
}
.partner-area_f76c2d15cc939ec1.style-3_bcb009a1151cfce5 {
  background-color: unset;
}

.partner-slider .single-partner-logo_291ee30810ffd3bf {
  margin-bottom: 25px;
}
.partner-slider .single-partner-logo_291ee30810ffd3bf img {
  width: auto;
  margin: auto;
}

/*=========================================
Services Area Style
===========================================*/
.services-area_3812bd5c640010a6 {
  z-index: 1;
  position: relative;
}
.services-area_3812bd5c640010a6.style-2_0ab62eb3caa3b95f {
  background-color: #272b3a;
}
.services-area_3812bd5c640010a6.style-3_bcb009a1151cfce5 {
  background-color: #fdfdff;
}
.services-area_3812bd5c640010a6.style-3_bcb009a1151cfce5 .services-box-shape_85db0238cbc39c01 {
  left: 0;
  right: 0;
  top: 230px;
  margin: auto;
  z-index: -1;
  text-align: center;
  position: absolute;
}
.services-area_3812bd5c640010a6.services-style_4ef67ac4164d6a94 {
  background-color: unset;
}

.services-title-area_dab34266a36c3abb {
  margin-bottom: 15px;
}
.services-title-area_dab34266a36c3abb .title {
  margin-bottom: 25px;
}
.services-title-area_dab34266a36c3abb .title span {
  color: #FF8408;
  margin-bottom: 10px;
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 500;
}
.services-title-area_dab34266a36c3abb .title h2 {
  font-size: 40px;
  line-height: 1.4;
}
.services-title-area_dab34266a36c3abb .button {
  float: right;
  margin-bottom: 25px;
}
.services-title-area_dab34266a36c3abb .button .demo_c2c6b9530ff8edda {
  padding: 15px 24px;
  padding-left: 48px;
  position: relative;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  color: var(--blackColor);
  transition: var(--transition);
  background-color: var(--whiteColor);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 600;
}
.services-title-area_dab34266a36c3abb .button .demo_c2c6b9530ff8edda::before {
  top: 50%;
  left: 25px;
  width: 13px;
  height: 13px;
  content: "";
  position: absolute;
  border-radius: 100%;
  display: inline-block;
  background-color: #FF8408;
  transform: translateY(-50%);
}
.services-title-area_dab34266a36c3abb .button .demo_c2c6b9530ff8edda::after {
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  content: "";
  z-index: -1;
  position: absolute;
  border-radius: 5px;
  transition: var(--transition);
  background: linear-gradient(96deg, #6600FC 0%, #FA3988 51.56%, #FF8408 100%);
}
.services-title-area_dab34266a36c3abb .button .demo_c2c6b9530ff8edda:hover {
  color: var(--whiteColor);
  background-color: transparent;
}

.single-services-card_ea577228008f9f35 {
  margin-bottom: 25px;
}
.single-services-card_ea577228008f9f35 .image {
  margin-bottom: 25px;
}
.single-services-card_ea577228008f9f35 .image img {
  border-radius: 0px 30px;
}
.single-services-card_ea577228008f9f35 h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.single-services-card_ea577228008f9f35 h3 a {
  color: var(--blackColor);
}
.single-services-card_ea577228008f9f35 h3 a:hover {
  color: var(--primaryColor);
}
.single-services-card_ea577228008f9f35 .read-more_40b5904353a8af78 {
  position: relative;
  color: var(--blackColor);
  transition: var(--transition);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 500;
}
.single-services-card_ea577228008f9f35 .read-more_40b5904353a8af78 i {
  top: 1px;
  font-size: 17px;
  line-height: 1;
  position: relative;
  display: inline-block;
  transform: rotate(304deg);
  color: var(--blackColor);
  transition: var(--transition);
}
.single-services-card_ea577228008f9f35 .read-more_40b5904353a8af78::before {
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: var(--primaryColor);
}
.single-services-card_ea577228008f9f35:hover .read-more_40b5904353a8af78 {
  color: var(--primaryColor);
}
.single-services-card_ea577228008f9f35:hover .read-more_40b5904353a8af78 i {
  transform: unset;
  color: var(--primaryColor);
}
.single-services-card_ea577228008f9f35:hover .read-more_40b5904353a8af78::before {
  width: 100%;
}

.single-services-info_12c7e704fa2af67c {
  padding: 40px;
  margin-bottom: 25px;
  border-radius: 0px 30px;
  background-color: #2e3241;
  transition: var(--transition);
}
.single-services-info_12c7e704fa2af67c .icon_f1d327e33470f573 {
  margin-bottom: 25px;
}
.single-services-info_12c7e704fa2af67c h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.single-services-info_12c7e704fa2af67c h3 a {
  color: var(--whiteColor);
}
.single-services-info_12c7e704fa2af67c h3 a:hover {
  color: var(--secondaryColor);
}
.single-services-info_12c7e704fa2af67c p {
  color: #dae0f5;
}
.single-services-info_12c7e704fa2af67c .read-more_40b5904353a8af78 {
  position: relative;
  color: var(--whiteColor);
  transition: var(--transition);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 500;
}
.single-services-info_12c7e704fa2af67c .read-more_40b5904353a8af78 i {
  top: 1px;
  font-size: 17px;
  line-height: 1;
  position: relative;
  display: inline-block;
  transform: rotate(304deg);
  color: var(--whiteColor);
  transition: var(--transition);
}
.single-services-info_12c7e704fa2af67c .read-more_40b5904353a8af78::before {
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: var(--primaryColor);
}
.single-services-info_12c7e704fa2af67c:hover {
  border-radius: 0px 30px;
  box-shadow: 0px 10px 40px 5px rgba(255, 255, 255, 0.08);
}
.single-services-info_12c7e704fa2af67c:hover .read-more_40b5904353a8af78 {
  color: var(--secondaryColor);
}
.single-services-info_12c7e704fa2af67c:hover .read-more_40b5904353a8af78 i {
  transform: unset;
  color: var(--secondaryColor);
}
.single-services-info_12c7e704fa2af67c:hover .read-more_40b5904353a8af78::before {
  width: 100%;
}

.single-security-services_e9dab183d9afa921 {
  padding: 0px 70px;
  margin-bottom: 25px;
}
.single-security-services_e9dab183d9afa921 .icon_f1d327e33470f573 {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 100%;
  margin-bottom: 25px;
  display: inline-block;
  transition: var(--transition);
  background-color: var(--whiteColor);
  border: 1px solid rgba(207, 217, 249, 0.5);
}
.single-security-services_e9dab183d9afa921 .icon_f1d327e33470f573 svg path {
  transition: var(--transition);
}
.single-security-services_e9dab183d9afa921 h3 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 12px;
}
.single-security-services_e9dab183d9afa921 h3 a {
  color: var(--blackColor);
}
.single-security-services_e9dab183d9afa921 h3 a:hover {
  color: var(--primaryColor);
}
.single-security-services_e9dab183d9afa921 span {
  margin-bottom: 10px;
  color: var(--paragraphColor);
}
.single-security-services_e9dab183d9afa921:hover .icon_f1d327e33470f573 {
  background-color: var(--primaryColor);
}
.single-security-services_e9dab183d9afa921:hover .icon_f1d327e33470f573 svg path {
  fill: var(--whiteColor);
}

.col-lg-4_92c39dc9b82e43fd:nth-child(1) .single-security-services_e9dab183d9afa921 {
  padding-bottom: 60px;
}
.col-lg-4_92c39dc9b82e43fd:nth-child(2) .single-security-services_e9dab183d9afa921 {
  padding-bottom: 60px;
}
.col-lg-4_92c39dc9b82e43fd:nth-child(3) .single-security-services_e9dab183d9afa921 {
  padding-bottom: 60px;
}
.col-lg-4_92c39dc9b82e43fd:nth-child(4) .single-security-services_e9dab183d9afa921 {
  padding-top: 20px;
}
.col-lg-4_92c39dc9b82e43fd:nth-child(5) .single-security-services_e9dab183d9afa921 {
  padding-top: 20px;
}
.col-lg-4_92c39dc9b82e43fd:nth-child(6) .single-security-services_e9dab183d9afa921 {
  padding-top: 20px;
}

/*=========================================
Choose Area Style
===========================================*/
.choose-area_9a6c9370a2dd12b3 {
  background-color: #f7ffff;
}
.choose-area_9a6c9370a2dd12b3.style-3_bcb009a1151cfce5 {
  padding-top: 170px;
  padding-bottom: 125px;
  z-index: 1;
  position: relative;
  background-color: unset;
  background-image: url(../img/choose/choose-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.choose-area_9a6c9370a2dd12b3.style-3_bcb009a1151cfce5 .top-shape_974084330c4e08ca {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  position: absolute;
}
.choose-area_9a6c9370a2dd12b3.style-3_bcb009a1151cfce5 .bottom-shape_c9c7a89b34263e01 {
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  position: absolute;
}

.choose-content_639de458bf6445c3 {
  margin-bottom: 25px;
}
.choose-content_639de458bf6445c3 .title {
  margin-bottom: 40px;
}
.choose-content_639de458bf6445c3 .title span {
  color: #FF8408;
  margin-bottom: 10px;
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 500;
}
.choose-content_639de458bf6445c3 .title h2 {
  font-size: 40px;
  line-height: 1.4;
}
.choose-content_639de458bf6445c3 .choose-value_1b0b7d10732d0fbd {
  padding: 13px 25px;
  padding-left: 60px;
  border-radius: 50px;
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
  background-color: #e3ecfc;
}
.choose-content_639de458bf6445c3 .choose-value_1b0b7d10732d0fbd i {
  top: 50%;
  left: 22px;
  font-size: 25px;
  position: absolute;
  transform: translateY(-50%);
  color: rgb(102, 0, 252);
}
.choose-content_639de458bf6445c3 .choose-value_1b0b7d10732d0fbd span {
  color: #666;
}
.choose-content_639de458bf6445c3 .choose-button_bfb4f01482d65658 {
  margin-top: 25px;
}
.choose-content_639de458bf6445c3.style-3_bcb009a1151cfce5 {
  margin-left: 20px;
}
.choose-content_639de458bf6445c3.style-3_bcb009a1151cfce5 .title h2 {
  color: var(--whiteColor);
}
.choose-content_639de458bf6445c3.style-3_bcb009a1151cfce5 .choose-value_1b0b7d10732d0fbd {
  background-color: rgb(13, 33, 51);
}
.choose-content_639de458bf6445c3.style-3_bcb009a1151cfce5 .choose-value_1b0b7d10732d0fbd i {
  color: rgb(255, 132, 8);
}
.choose-content_639de458bf6445c3.style-3_bcb009a1151cfce5 .choose-value_1b0b7d10732d0fbd span {
  color: rgb(218, 224, 245);
}

.choose-image_bd844965c83fd682 {
  max-width: 607px;
  position: relative;
  margin-left: auto;
  margin-right: 0;
}
.choose-image_bd844965c83fd682 .image-2_1d8b97e85595b78d {
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
}
.choose-image_bd844965c83fd682 .image-2_1d8b97e85595b78d img {
  width: 270px;
  height: 270px;
  border-radius: 230px;
  border: 20px solid #f7ffff;
}
.choose-image_bd844965c83fd682.style-3_bcb009a1151cfce5 {
  max-width: 100%;
  position: relative;
  margin-right: 40px;
  margin-bottom: 25px;
}
.choose-image_bd844965c83fd682.style-3_bcb009a1151cfce5 .logo_2ccbff4684bce8e0 {
  top: 25px;
  right: 55px;
  position: absolute;
  display: inline-block;
}
.choose-image_bd844965c83fd682.style-3_bcb009a1151cfce5 .logo_2ccbff4684bce8e0 img {
  animation: rotation 10s infinite linear;
}
.choose-image_bd844965c83fd682.style-3_bcb009a1151cfce5 .logo_2ccbff4684bce8e0 .icon_f1d327e33470f573 {
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
}
.choose-image_bd844965c83fd682.style-3_bcb009a1151cfce5 .logo_2ccbff4684bce8e0 .icon_f1d327e33470f573 img {
  width: 73px;
  height: 73px;
  animation: unset;
  border-radius: 100%;
}

/*=========================================
Counter Area Style
===========================================*/
.counter-area_55fe8f60046d4b50 {
  background-color: #f7ffff;
}
.counter-area_55fe8f60046d4b50.style-2_0ab62eb3caa3b95f {
  background-color: #272b3a;
}
.counter-area_55fe8f60046d4b50.style-3_bcb009a1151cfce5 {
  background-color: unset;
}

.single-counter-card_5817e247226f6648 {
  margin-bottom: 25px;
}
.single-counter-card_5817e247226f6648 h2 {
  font-size: 50px;
  font-weight: 800;
}
.single-counter-card_5817e247226f6648 p {
  text-transform: uppercase;
}
.single-counter-card_5817e247226f6648.style-2_0ab62eb3caa3b95f h2 {
  color: var(--whiteColor);
}
.single-counter-card_5817e247226f6648.style-2_0ab62eb3caa3b95f p {
  color: rgb(218, 224, 245);
}

.col-lg-3_ee0b67bca989d88a:nth-child(3) .single-counter-card_5817e247226f6648 {
  margin-left: 40px;
}
.col-lg-3_ee0b67bca989d88a:nth-child(4) .single-counter-card_5817e247226f6648 {
  margin-left: 85px;
}

/*=========================================
Pricing Area Style
===========================================*/
.single-pricing-card_666167e01a836eba {
  padding: 35px;
  margin-bottom: 25px;
  border-radius: 0px 30px;
  transition: var(--transition);
  background-color: var(--whiteColor);
  border: 1px solid rgba(207, 217, 249, 0.5);
}
.single-pricing-card_666167e01a836eba h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.single-pricing-card_666167e01a836eba h1 {
  font-size: 40px;
  margin-top: 25px;
  margin-bottom: 30px;
}
.single-pricing-card_666167e01a836eba h1 sub {
  color: var(--paragraphColor);
  font-family: var(--body-font-family);
  font-size: 16px;
  font-weight: 400;
}
.single-pricing-card_666167e01a836eba .list_03f696d0715013e8 {
  margin-bottom: 40px;
}
.single-pricing-card_666167e01a836eba .list_03f696d0715013e8 li {
  position: relative;
  margin-bottom: 16px;
}
.single-pricing-card_666167e01a836eba .list_03f696d0715013e8 li i {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 40px;
  margin-right: 10px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: var(--primaryColor);
  background-color: #e3ecfc;
}
.single-pricing-card_666167e01a836eba .list_03f696d0715013e8 li:last-child {
  margin-bottom: 0;
}
.single-pricing-card_666167e01a836eba .demo_c2c6b9530ff8edda {
  z-index: 1;
  width: 100%;
  padding: 16px 24px;
  padding-left: 48px;
  border-radius: 5px;
  position: relative;
  text-align: center;
  display: inline-block;
  color: var(--blackColor);
  transition: var(--transition);
  font-family: var(--heading-font-family);
  border: 1px solid var(--paragraphColor);
  font-size: 15px;
  font-weight: 600;
}
.single-pricing-card_666167e01a836eba .demo_c2c6b9530ff8edda i {
  top: 50%;
  width: 13px;
  height: 13px;
  content: "";
  font-size: 0;
  line-height: 13px;
  margin-left: -22px;
  position: absolute;
  border-radius: 100%;
  display: inline-block;
  background-color: #FF8408;
  transform: translateY(-50%);
  transition: var(--transition);
}
.single-pricing-card_666167e01a836eba .demo_c2c6b9530ff8edda::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  border-radius: 5px;
  visibility: hidden;
  transition: var(--transition);
  background: linear-gradient(96deg, #6600FC 0%, #FA3988 51.56%, #FF8408 100%);
}
.single-pricing-card_666167e01a836eba .default-btn_543c2dc237fe6a9e {
  width: 100%;
  text-align: center;
  transition: var(--transition);
}
.single-pricing-card_666167e01a836eba:hover {
  border-color: var(--whiteColor);
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 20px 0px rgba(207, 217, 249, 0.35);
}
.single-pricing-card_666167e01a836eba:hover .demo_c2c6b9530ff8edda {
  padding-left: 75px;
  border-color: unset;
  color: var(--whiteColor);
}
.single-pricing-card_666167e01a836eba:hover .demo_c2c6b9530ff8edda i {
  width: 29px;
  height: 29px;
  font-size: 13px;
  line-height: 29px;
  margin-left: -40px;
  text-align: center;
  border-radius: 100px;
  display: inline-block;
  color: var(--blackColor);
  background-color: var(--whiteColor);
}
.single-pricing-card_666167e01a836eba:hover .demo_c2c6b9530ff8edda::before {
  opacity: 1;
  visibility: visible;
}

/*=========================================
Testimonial Area Style
===========================================*/
.single-testimonial-card_f2e1420eb08fad8c {
  padding: 35px;
  margin-bottom: 25px;
  border-radius: 0px 30px;
  background-color: var(--whiteColor);
  border: 1px solid rgba(207, 217, 249, 0.5);
}
.single-testimonial-card_f2e1420eb08fad8c .testimonial-user_d03b5bc6c0ef441a {
  margin-bottom: 25px;
}
.single-testimonial-card_f2e1420eb08fad8c .testimonial-user_d03b5bc6c0ef441a .user_b651d3bd6a801d5c .image {
  margin-right: 25px;
}
.single-testimonial-card_f2e1420eb08fad8c .testimonial-user_d03b5bc6c0ef441a .user_b651d3bd6a801d5c .image img {
  width: 100px;
  height: 100px;
  border-radius: 20px 0px;
}
.single-testimonial-card_f2e1420eb08fad8c .testimonial-user_d03b5bc6c0ef441a .user_b651d3bd6a801d5c .content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.single-testimonial-card_f2e1420eb08fad8c .testimonial-user_d03b5bc6c0ef441a .user_b651d3bd6a801d5c .content span {
  background: linear-gradient(90deg, #6600FC 0%, #FA3988 50.09%, #FF8408 100%);
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
}
.single-testimonial-card_f2e1420eb08fad8c .testimonial-user_d03b5bc6c0ef441a .star-icon_094d594628d561a3 li {
  display: inline-block;
}
.single-testimonial-card_f2e1420eb08fad8c .testimonial-user_d03b5bc6c0ef441a .star-icon_094d594628d561a3 li i {
  color: #ffdf00;
}

.testimonial-slider-info_faa460258fd9df15 .testimonial-slider .owl-dots_a61e9a8a34f5279d .owl-dot_6e2dc58b0c625dee span {
  position: relative;
  background-color: rgb(207, 217, 249);
}
.testimonial-slider-info_faa460258fd9df15 .testimonial-slider .owl-dots_a61e9a8a34f5279d .owl-dot_6e2dc58b0c625dee span::before {
  content: "";
  position: absolute;
  left: -4px;
  top: -4px;
  bottom: -4px;
  right: -4px;
  opacity: 0;
  border-radius: 100%;
  visibility: hidden;
  border: 1px solid #6600FC;
}
.testimonial-slider-info_faa460258fd9df15 .testimonial-slider .owl-dots_a61e9a8a34f5279d .owl-dot_6e2dc58b0c625dee.active span {
  background-color: #6600FC;
}
.testimonial-slider-info_faa460258fd9df15 .testimonial-slider .owl-dots_a61e9a8a34f5279d .owl-dot_6e2dc58b0c625dee.active span::before {
  opacity: 1;
  visibility: visible;
}

/*=========================================
Blog Area Style
===========================================*/
.blog-area_568e0f8174400dd9.style-2_0ab62eb3caa3b95f {
  background-color: #272b3a;
}

.single-blog-card_b092af76d082c615 {
  margin-bottom: 25px;
}
.single-blog-card_b092af76d082c615 .image {
  margin-bottom: 30px;
}
.single-blog-card_b092af76d082c615 .image img {
  border-radius: 0px 30px;
}
.single-blog-card_b092af76d082c615 .list_03f696d0715013e8 {
  margin-bottom: 15px;
}
.single-blog-card_b092af76d082c615 .list_03f696d0715013e8 li {
  padding-left: 25px;
  position: relative;
  margin-right: 25px;
}
.single-blog-card_b092af76d082c615 .list_03f696d0715013e8 li i {
  top: 1px;
  left: 0;
  line-height: 1;
  font-size: 20px;
  position: absolute;
  color: #ff8408;
}
.single-blog-card_b092af76d082c615 .list_03f696d0715013e8 li a {
  color: var(--paragraphColor);
  font-size: 16px;
  font-weight: 400;
}
.single-blog-card_b092af76d082c615 .list_03f696d0715013e8 li a:hover {
  color: var(--primaryColor);
}
.single-blog-card_b092af76d082c615 .list_03f696d0715013e8 li:last-child {
  margin-right: 0;
}
.single-blog-card_b092af76d082c615 h3 {
  font-size: 20px;
  max-width: 315px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.single-blog-card_b092af76d082c615 h3 a {
  color: var(--blackColor);
}
.single-blog-card_b092af76d082c615 h3 a:hover {
  color: var(--primaryColor);
}
.single-blog-card_b092af76d082c615 .read-more_40b5904353a8af78 {
  position: relative;
  color: var(--blackColor);
  transition: var(--transition);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 500;
}
.single-blog-card_b092af76d082c615 .read-more_40b5904353a8af78 i {
  top: 1px;
  font-size: 17px;
  line-height: 1;
  position: relative;
  display: inline-block;
  transform: rotate(304deg);
  color: var(--blackColor);
  transition: var(--transition);
}
.single-blog-card_b092af76d082c615 .read-more_40b5904353a8af78::before {
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: var(--primaryColor);
}
.single-blog-card_b092af76d082c615 .read-more_40b5904353a8af78:hover {
  color: var(--primaryColor);
}
.single-blog-card_b092af76d082c615 .read-more_40b5904353a8af78:hover i {
  transform: unset;
  color: var(--primaryColor);
}
.single-blog-card_b092af76d082c615 .read-more_40b5904353a8af78:hover::before {
  width: 100%;
}
.single-blog-card_b092af76d082c615.style-2_0ab62eb3caa3b95f .image {
  padding: 30px;
  border-radius: 0px 30px;
  border: 2px solid #2E3241;
}
.single-blog-card_b092af76d082c615.style-2_0ab62eb3caa3b95f .content {
  padding-left: 30px;
}
.single-blog-card_b092af76d082c615.style-2_0ab62eb3caa3b95f h3 a {
  color: var(--whiteColor);
}
.single-blog-card_b092af76d082c615.style-2_0ab62eb3caa3b95f h3 a:hover {
  color: var(--primaryColor);
}
.single-blog-card_b092af76d082c615.style-2_0ab62eb3caa3b95f .list_03f696d0715013e8 li {
  color: rgb(218, 224, 245);
}
.single-blog-card_b092af76d082c615.style-2_0ab62eb3caa3b95f .list_03f696d0715013e8 li a {
  color: rgb(218, 224, 245);
}
.single-blog-card_b092af76d082c615.style-2_0ab62eb3caa3b95f .list_03f696d0715013e8 li a:hover {
  color: var(--secondaryColor);
}
.single-blog-card_b092af76d082c615.style-2_0ab62eb3caa3b95f .read-more_40b5904353a8af78 {
  color: rgb(218, 224, 245);
}
.single-blog-card_b092af76d082c615.style-2_0ab62eb3caa3b95f .read-more_40b5904353a8af78 i {
  color: rgb(218, 224, 245);
}
.single-blog-card_b092af76d082c615.style-2_0ab62eb3caa3b95f .read-more_40b5904353a8af78:hover {
  color: var(--secondaryColor);
}
.single-blog-card_b092af76d082c615.style-2_0ab62eb3caa3b95f .read-more_40b5904353a8af78:hover i {
  transform: unset;
  color: var(--secondaryColor);
}
.single-blog-card_b092af76d082c615.style-2_0ab62eb3caa3b95f .read-more_40b5904353a8af78:hover::before {
  width: 100%;
}
.single-blog-card_b092af76d082c615.style-3_bcb009a1151cfce5 .image {
  padding: 30px;
  border-radius: 0px 30px;
  border: 1px solid #e7ecfc;
}
.single-blog-card_b092af76d082c615.style-3_bcb009a1151cfce5 .content {
  padding-left: 30px;
}
.single-blog-card_b092af76d082c615.style-3_bcb009a1151cfce5 .read-more_40b5904353a8af78 {
  color: rgb(102, 102, 102);
}
.single-blog-card_b092af76d082c615.style-3_bcb009a1151cfce5 .read-more_40b5904353a8af78 i {
  color: rgb(102, 102, 102);
}
.single-blog-card_b092af76d082c615.style-3_bcb009a1151cfce5 .read-more_40b5904353a8af78:hover {
  color: var(--primaryColor);
}
.single-blog-card_b092af76d082c615.style-3_bcb009a1151cfce5 .read-more_40b5904353a8af78:hover i {
  color: var(--primaryColor);
}
.single-blog-card_b092af76d082c615.blog-style_b98534c2a84e1f32 h3 {
  max-width: 100%;
}

/*================================================
Contact Area Style
=================================================*/
.contact-area_90400cdf260db206 {
  background-color: #1B2336;
}
.contact-area_90400cdf260db206.pages-style_3be134bc74c47d0a {
  background-color: transparent;
}

.contact-info-area_47deea22b5c4571c {
  border-bottom: 1px solid rgb(36, 44, 62);
}

.single-contact-info_ae0684370665d733 {
  z-index: 1;
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}
.single-contact-info_ae0684370665d733::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border-right: 1px solid rgb(36, 44, 62);
}
.single-contact-info_ae0684370665d733 .contact-call_bd4b0e9d44f5de2a .icon_f1d327e33470f573 {
  width: 80px;
  height: 80px;
  flex: 0 0 auto;
  line-height: 80px;
  margin-right: 25px;
  border-radius: 100%;
  text-align: center;
  display: inline-block;
  background-color: var(--whiteColor);
}
.single-contact-info_ae0684370665d733 .contact-call_bd4b0e9d44f5de2a .icon_f1d327e33470f573 svg g path {
  transition: var(--transition);
}
.single-contact-info_ae0684370665d733 .contact-call_bd4b0e9d44f5de2a .icon_f1d327e33470f573:hover svg g path {
  fill: #0C0B0B;
}
.single-contact-info_ae0684370665d733 .contact-call_bd4b0e9d44f5de2a .content h3 {
  font-size: 16px;
  color: var(--whiteColor);
}
.single-contact-info_ae0684370665d733 .contact-call_bd4b0e9d44f5de2a .content a {
  font-family: var(--heading-font-family);
  font-size: 20px;
  font-weight: 700;
}
.single-contact-info_ae0684370665d733 .contact-social_14588855a3518430 {
  z-index: 1;
  position: relative;
  text-align: center;
  margin-left: 0;
  margin-right: 0;
}
.single-contact-info_ae0684370665d733 .contact-social_14588855a3518430::before {
  content: "";
  position: absolute;
  right: 30px;
  top: -55px;
  height: 141px;
  border-right: 1px solid rgb(36, 44, 62);
}
.single-contact-info_ae0684370665d733 .contact-social_14588855a3518430 .list_03f696d0715013e8 li {
  margin-right: 12px;
}
.single-contact-info_ae0684370665d733 .contact-social_14588855a3518430 .list_03f696d0715013e8 li a {
  z-index: 1;
  position: relative;
  font-size: 20px;
  display: inline-block;
  transition: var(--transition);
  color: rgb(141, 145, 154);
}
.single-contact-info_ae0684370665d733 .contact-social_14588855a3518430 .list_03f696d0715013e8 li a:hover {
  transform: translateY(-7px);
  background: linear-gradient(90deg, #6600FC 0%, #FA3988 50.09%, #FF8408 100%);
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
}
.single-contact-info_ae0684370665d733 .contact-social_14588855a3518430 .list_03f696d0715013e8 li:last-child {
  margin-right: 0;
}
.single-contact-info_ae0684370665d733 .contact-submit_cbc1a6e7cd4ccaef {
  padding-left: 30px;
}
.single-contact-info_ae0684370665d733 .contact-submit_cbc1a6e7cd4ccaef h3 {
  max-width: 86px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--whiteColor);
}
.single-contact-info_ae0684370665d733 .contact-submit_cbc1a6e7cd4ccaef form .form-group {
  position: relative;
}
.single-contact-info_ae0684370665d733 .contact-submit_cbc1a6e7cd4ccaef form .form-group .form-control_9a8210976e912278 {
  width: 488px;
  height: 75px;
  border: unset;
  border-radius: 5px;
  padding-left: 20px;
  color: rgb(111, 116, 128);
  background-color: rgb(50, 57, 74);
}
.single-contact-info_ae0684370665d733 .contact-submit_cbc1a6e7cd4ccaef form .form-group .form-control_9a8210976e912278::-moz-placeholder {
  color: rgb(111, 116, 128);
}
.single-contact-info_ae0684370665d733 .contact-submit_cbc1a6e7cd4ccaef form .form-group .form-control_9a8210976e912278::placeholder {
  color: rgb(111, 116, 128);
}
.single-contact-info_ae0684370665d733 .contact-submit_cbc1a6e7cd4ccaef form .form-group button {
  top: 50%;
  right: 10px;
  border: unset;
  box-shadow: unset;
  padding: 13px 25px;
  border-radius: 5px;
  position: absolute;
  display: inline-block;
  color: var(--whiteColor);
  transform: translateY(-50%);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 600;
}
.single-contact-info_ae0684370665d733 .contact-submit_cbc1a6e7cd4ccaef form .form-group button i {
  width: 29px;
  height: 29px;
  font-size: 13px;
  line-height: 29px;
  margin-right: 7px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: var(--blackColor);
  background-color: var(--whiteColor);
}
.single-contact-info_ae0684370665d733 .contact-submit_cbc1a6e7cd4ccaef form .form-group button::before {
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
  visibility: visible;
  position: absolute;
  border-radius: 5px;
  transition: var(--transition);
  background: linear-gradient(96deg, #6600FC 0%, #FA3988 51.56%, #FF8408 100%);
}
.single-contact-info_ae0684370665d733 .contact-submit_cbc1a6e7cd4ccaef form .form-group button::after {
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  position: absolute;
  border-radius: 5px;
  transition: var(--transition);
  background: linear-gradient(293deg, #6600FC 0%, #FA3988 51.56%, #FF8408 100%);
}
.single-contact-info_ae0684370665d733 .contact-submit_cbc1a6e7cd4ccaef form .form-group button:hover {
  color: var(--whiteColor);
}
.single-contact-info_ae0684370665d733 .contact-submit_cbc1a6e7cd4ccaef form .form-group button:hover::before {
  opacity: 0;
  visibility: hidden;
}
.single-contact-info_ae0684370665d733 .contact-submit_cbc1a6e7cd4ccaef form .form-group button:hover::after {
  opacity: 1;
  visibility: visible;
}

.col-lg-3_ee0b67bca989d88a:nth-child(1) .single-contact-info_ae0684370665d733::before {
  right: -25px;
}
.col-lg-3_ee0b67bca989d88a:nth-child(2) .single-contact-info_ae0684370665d733::before {
  display: none;
}

.col-lg-6_c8301dc9cbfece8f:nth-child(3) .single-contact-info_ae0684370665d733::before {
  display: none;
}

.single-contact-card_47f3268d097d78c7 {
  padding: 45px;
  margin-bottom: 25px;
  border-radius: 0 30px;
  transition: var(--transition);
  border: 1px solid rgba(207, 217, 249, 0.5);
}
.single-contact-card_47f3268d097d78c7 .icon_f1d327e33470f573 {
  width: 80px;
  height: 80px;
  font-size: 25px;
  line-height: 80px;
  text-align: center;
  border-radius: 100%;
  margin-bottom: 25px;
  display: inline-block;
  color: var(--blackColor);
  transition: var(--transition);
  border: 1px solid rgba(207, 217, 249, 0.5);
}
.single-contact-card_47f3268d097d78c7 h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.single-contact-card_47f3268d097d78c7 p {
  max-width: 243px;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}
.single-contact-card_47f3268d097d78c7 ul li {
  margin-bottom: 4px;
}
.single-contact-card_47f3268d097d78c7 ul li a {
  color: var(--paragraphColor);
}
.single-contact-card_47f3268d097d78c7 ul li a:hover {
  color: var(--primaryColor);
}
.single-contact-card_47f3268d097d78c7 ul li:last-child {
  margin-bottom: 0;
}
.single-contact-card_47f3268d097d78c7:hover {
  border-color: transparent;
  box-shadow: 0px 4px 20px 0px rgba(207, 217, 249, 0.35);
}
.single-contact-card_47f3268d097d78c7:hover .icon_f1d327e33470f573 {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
}

.single-contact-card_47f3268d097d78c7:hover .icon_f1d327e33470f573 i {
  color: var(--whiteColor);
}

.contact-form-info_41d0e1cd68b0b8d4 {
  margin-bottom: 25px;
}
.contact-form-info_41d0e1cd68b0b8d4 form .form-group {
  margin-bottom: 20px;
}
.contact-form-info_41d0e1cd68b0b8d4 form .form-group .form-control_9a8210976e912278 {
  height: 55px;
  border: unset;
  box-shadow: unset;
  padding-left: 25px;
  border-radius: 30px;
  background-color: #f2f4fe;
}
.contact-form-info_41d0e1cd68b0b8d4 form .form-group .form-control_9a8210976e912278.textarea_ca3cd0ef86594495 {
  height: 155px;
  padding-top: 15px;
  border-radius: 15px;
}
.contact-form-info_41d0e1cd68b0b8d4 form .form-check_eed9b0206d1951b6 {
  margin-bottom: 20px;
}
.contact-form-info_41d0e1cd68b0b8d4 form .form-check_eed9b0206d1951b6 .form-check-input_5956199d7e1184cb {
  box-shadow: unset;
  border-radius: 100%;
  border: 2px solid #cfd9f9;
}
.contact-form-info_41d0e1cd68b0b8d4 form button {
  border: unset;
  box-shadow: unset;
  padding: 15px 24px;
  padding-left: 48px;
  position: relative;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  color: var(--blackColor);
  transition: var(--transition);
  background-color: var(--whiteColor);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 600;
}

.contact-form-info_41d0e1cd68b0b8d4 form button::after {
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  content: "";
  z-index: -1;
  position: absolute;
  border-radius: 5px;
  transition: var(--transition);
  background: linear-gradient(96deg, #6600FC 0%, #FA3988 51.56%, #FF8408 100%);
}
.contact-form-info_41d0e1cd68b0b8d4 form button:hover {
  color: var(--whiteColor);
  background-color: transparent;
}

/*=========================================
Projects Area Style
===========================================*/
.projects-area_1bf420bf3fee604f {
  background-color: #272b3a;
}

.projects-section-title_8b990641d641c28d {
  margin-bottom: 20px;
}
.projects-section-title_8b990641d641c28d .title {
  margin-bottom: 25px;
}
.projects-section-title_8b990641d641c28d .title span {
  color: #ff8408;
  margin-bottom: 10px;
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 500;
}
.projects-section-title_8b990641d641c28d .title h2 {
  font-size: 40px;
  line-height: 1.4;
  color: var(--whiteColor);
}
.projects-section-title_8b990641d641c28d .button {
  z-index: 1;
  position: relative;
  margin-bottom: 25px;
}
.projects-section-title_8b990641d641c28d .button .demo_c2c6b9530ff8edda {
  padding: 15px 24px;
  padding-left: 48px;
  position: relative;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  color: var(--whiteColor);
  transition: var(--transition);
  background-color: rgb(39, 43, 58);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 600;
}
.projects-section-title_8b990641d641c28d .button .demo_c2c6b9530ff8edda::before {
  top: 50%;
  left: 25px;
  width: 13px;
  height: 13px;
  content: "";
  position: absolute;
  border-radius: 100%;
  display: inline-block;
  background-color: #FF8408;
  transform: translateY(-50%);
}
.projects-section-title_8b990641d641c28d .button .demo_c2c6b9530ff8edda::after {
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  content: "";
  z-index: -1;
  position: absolute;
  border-radius: 5px;
  transition: var(--transition);
  background: linear-gradient(96deg, #6600FC 0%, #FA3988 51.56%, #FF8408 100%);
}
.projects-section-title_8b990641d641c28d .button .demo_c2c6b9530ff8edda:hover {
  color: var(--whiteColor);
  background-color: transparent;
}

.projects-box-info_aaa3aedaab049bb2 .main-box {
  padding: 0;
  display: flex;
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box {
  background-image: url(../img/projects/projects-5.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  width: 172px;
  height: 350px;
  -o-transition: 0.8s;
  position: relative;
  overflow: hidden;
  list-style: none;
  margin-right: 25px;
  webkit-transition: 0.8s;
  border-radius: 0px 30px;
  transition: var(--transition);
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box.bg-1_31acc29a30465240 {
  background-image: url(../img/projects/projects-1.jpg);
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box.bg-2_81f3733d427e6e07 {
  background-image: url(../img/projects/projects-2.jpg);
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box.bg-3_ac48dbf98c702754 {
  background-image: url(../img/projects/projects-3.jpg);
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box.bg-4_859ab9f5ebd73121 {
  background-image: url(../img/projects/projects-4.jpg);
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box .detail_0ccdddd543b72ede {
  right: 0;
  top: 0;
  opacity: 0;
  padding: 30px;
  width: 100%;
  height: 100%;
  position: absolute;
  -o-transition: 0.8s;
  box-sizing: border-box;
  webkit-transition: 0.8s;
  transform: translateY(100%);
  transition: var(--transition);
  -webkit-transform: translateY(100%);
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box .detail_0ccdddd543b72ede .content {
  padding-top: 158px;
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box .detail_0ccdddd543b72ede .content h3 {
  font-size: 20px;
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box .detail_0ccdddd543b72ede .content h3 a {
  color: var(--whiteColor);
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box .detail_0ccdddd543b72ede .content h3 a:hover {
  color: var(--secondaryColor);
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box .detail_0ccdddd543b72ede .content p {
  color: #dae0f5;
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box .detail_0ccdddd543b72ede .content .read-more_40b5904353a8af78 {
  position: relative;
  color: var(--whiteColor);
  transition: var(--transition);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 500;
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box .detail_0ccdddd543b72ede .content .read-more_40b5904353a8af78 i {
  top: 1px;
  font-size: 17px;
  line-height: 1;
  position: relative;
  display: inline-block;
  transform: rotate(304deg);
  color: var(--whiteColor);
  transition: var(--transition);
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box .detail_0ccdddd543b72ede .content .read-more_40b5904353a8af78:hover {
  color: var(--secondaryColor);
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box .detail_0ccdddd543b72ede .content .read-more_40b5904353a8af78:hover i {
  transform: unset;
  color: var(--secondaryColor);
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box .detail_0ccdddd543b72ede .content .read-more_40b5904353a8af78:hover::before {
  width: 100%;
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box span {
  font-size: 20px;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  width: 172px;
  transform: rotate(180deg);
  font-weight: 400;
  cursor: pointer;
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box span img {
  border-radius: 0px 30px;
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box.active {
  width: 70% !important;
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box.active .detail_0ccdddd543b72ede {
  opacity: 1;
  transition-delay: 0.2s;
  transform: none;
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box.active span {
  display: none;
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box:last-child {
  margin-right: 0;
}
.projects-box-info_aaa3aedaab049bb2 .main-box .box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 0px 30px;
  background: linear-gradient(180deg, rgba(46, 50, 65, 0) 0%, rgba(12, 11, 11, 0.85) 56.29%);
}

/*=========================================
Faq Area Style
===========================================*/
.faq-area_6d0d607cf6ff97f1 {
  background-color: #272b3a;
}

.faq-content_17a37d5b2880c034 {
  margin-bottom: 25px;
}
.faq-content_17a37d5b2880c034 .title {
  margin-bottom: 30px;
}
.faq-content_17a37d5b2880c034 .title span {
  color: #ff8408;
  margin-bottom: 10px;
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 500;
}
.faq-content_17a37d5b2880c034 .title h2 {
  font-size: 40px;
  line-height: 1.4;
  color: var(--whiteColor);
}
.faq-content_17a37d5b2880c034 p {
  color: #dae0f5;
  margin-bottom: 10px;
}
.faq-content_17a37d5b2880c034 h3 {
  max-width: 418px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--whiteColor);
}
.faq-content_17a37d5b2880c034 .icon_f1d327e33470f573 {
  width: 80px;
  height: 80px;
  margin-top: 35px;
  position: relative;
  line-height: 80px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  background-color: #2e3241;
}
.faq-content_17a37d5b2880c034 .icon_f1d327e33470f573 .shape_fdda5810e3da63d8 {
  top: -30px;
  right: -155px;
  position: absolute;
}

.faq-questions_535d2fb6366e5e69 {
  margin-bottom: 25px;
}
.faq-questions_535d2fb6366e5e69 .questions-content_2e706324ad42a25a .accordion-item_0323391a33cb8f4c {
  border: none;
  border-radius: unset;
  background-color: transparent;
  border-top: 1px solid #373b49;
}
.faq-questions_535d2fb6366e5e69 .questions-content_2e706324ad42a25a .accordion-item_0323391a33cb8f4c .accordion-button_27ae4ab0b68dc54b {
  box-shadow: unset;
  position: relative;
  border-radius: unset;
  padding: 20px 0 20px;
  background-color: transparent;
}
.faq-questions_535d2fb6366e5e69 .questions-content_2e706324ad42a25a .accordion-item_0323391a33cb8f4c .accordion-button_27ae4ab0b68dc54b span {
  color: var(--whiteColor);
  font-family: var(--heading-font-family);
  font-size: 16px;
  font-weight: 600;
}
.faq-questions_535d2fb6366e5e69 .questions-content_2e706324ad42a25a .accordion-item_0323391a33cb8f4c .accordion-button_27ae4ab0b68dc54b::after {
  right: 0;
  top: 20px;
  width: 15px;
  height: 15px;
  font-size: 14px;
  font-weight: 700;
  content: "\eb99";
  position: absolute;
  color: rgb(255, 132, 8);
  margin: auto !important;
  background-image: unset !important;
  font-family: "remixicon" !important;
}
.faq-questions_535d2fb6366e5e69 .questions-content_2e706324ad42a25a .accordion-item_0323391a33cb8f4c .accordion-button_27ae4ab0b68dc54b.collapsed::after {
  top: 19px;
  content: "\ea12";
  color: rgb(207, 217, 249);
}
.faq-questions_535d2fb6366e5e69 .questions-content_2e706324ad42a25a .accordion-item_0323391a33cb8f4c .accordion-button_27ae4ab0b68dc54b:focus {
  outline: 0;
  box-shadow: unset;
  border-color: unset;
  border-radius: unset;
}
.faq-questions_535d2fb6366e5e69 .questions-content_2e706324ad42a25a .accordion-item_0323391a33cb8f4c .accordion-body_b6739f38b2344fcd {
  padding: 0;
  color: #dae0f5;
  padding-bottom: 15px;
  background-color: transparent;
}
.faq-questions_535d2fb6366e5e69 .questions-content_2e706324ad42a25a .accordion-item_0323391a33cb8f4c:last-child {
  border-bottom: 1px solid #373b49;
}
.faq-questions_535d2fb6366e5e69.faqs-style_1f0266da881d89d4 .questions-content_2e706324ad42a25a .accordion-item_0323391a33cb8f4c {
  border-color: rgba(207, 217, 249, 0.5);
}
.faq-questions_535d2fb6366e5e69.faqs-style_1f0266da881d89d4 .questions-content_2e706324ad42a25a .accordion-item_0323391a33cb8f4c .accordion-button_27ae4ab0b68dc54b span {
  color: var(--blackColor);
}
.faq-questions_535d2fb6366e5e69.faqs-style_1f0266da881d89d4 .questions-content_2e706324ad42a25a .accordion-item_0323391a33cb8f4c .accordion-button_27ae4ab0b68dc54b.collapsed::after {
  color: var(--paragraphColor);
}
.faq-questions_535d2fb6366e5e69.faqs-style_1f0266da881d89d4 .questions-content_2e706324ad42a25a .accordion-item_0323391a33cb8f4c .accordion-body_b6739f38b2344fcd {
  color: var(--paragraphColor);
}
.faq-questions_535d2fb6366e5e69.faqs-style_1f0266da881d89d4 .questions-content_2e706324ad42a25a .accordion-item_0323391a33cb8f4c:last-child {
  border-color: rgba(207, 217, 249, 0.5);
}

.faq-info_1c919f16cbeb4821 {
  margin: auto;
  max-width: 1096px;
}

/*=========================================
Team Area Style
===========================================*/
.team-area_bac49f238441f455 {
  z-index: 1;
  position: relative;
  background-color: #272b3a;
}
.team-area_bac49f238441f455.pages-style_3be134bc74c47d0a {
  background-color: transparent;
}

.single-team-card_00ced76300b1a960 {
  position: relative;
  margin-bottom: 25px;
  transition: var(--transition);
}
.single-team-card_00ced76300b1a960 .image {
  margin-bottom: 25px;
}
.single-team-card_00ced76300b1a960 .image img {
  border-radius: 0px 30px;
}
.single-team-card_00ced76300b1a960 h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.single-team-card_00ced76300b1a960 p {
  color: rgb(218, 224, 245);
}
.single-team-card_00ced76300b1a960 .social-list_d15ca7f37f975e69 {
  top: 20px;
  left: 20px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: var(--transition);
}
.single-team-card_00ced76300b1a960 .social-list_d15ca7f37f975e69 ul li {
  margin-bottom: 10px;
  border-radius: 100%;
  background-color: var(--whiteColor);
}
.single-team-card_00ced76300b1a960 .social-list_d15ca7f37f975e69 ul li a {
  font-size: 22px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: var(--blackColor);
  transition: var(--transition);
  background-color: var(--whiteColor) !important;
}
.single-team-card_00ced76300b1a960 .social-list_d15ca7f37f975e69 ul li a:hover {
  background: linear-gradient(90deg, #6600FC 0%, #FA3988 50.09%, #FF8408 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.single-team-card_00ced76300b1a960 .social-list_d15ca7f37f975e69 ul li:last-child {
  margin-bottom: 0;
}
.single-team-card_00ced76300b1a960 .social-list_d15ca7f37f975e69 ul li:nth-child(2) a {
  font-size: 20px;
}
.single-team-card_00ced76300b1a960:hover .social-list_d15ca7f37f975e69 {
  opacity: 1;
  visibility: visible;
}
.single-team-card_00ced76300b1a960.team-style_23156b939cda9f7a h3 a {
  color: var(--blackColor);
}
.single-team-card_00ced76300b1a960.team-style_23156b939cda9f7a h3 a:hover {
  color: var(--primaryColor);
}
.single-team-card_00ced76300b1a960.team-style_23156b939cda9f7a p {
  color: var(--paragraphColor);
}

/*=========================================
Solutions Area Style
===========================================*/
.solutions-area_446fdf74a5846a34.pages-style_3be134bc74c47d0a {
  background-color: #fdfdff;
}

.solutions-info_333f6906c0e68e3b {
  padding: 100px;
  background-color: #fdfdff;
}
.solutions-info_333f6906c0e68e3b.pages-style_3be134bc74c47d0a {
  padding: 0;
}

.solutions-content_ac8164a0a07aaf29 h1 {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 0;
}

.solutions-button_eed4433e07e77815 {
  z-index: 1;
  position: relative;
}
.solutions-button_eed4433e07e77815 .demo_c2c6b9530ff8edda {
  padding: 15px 24px;
  padding-left: 48px;
  position: relative;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  color: var(--blackColor);
  transition: var(--transition);
  background-color: var(--whiteColor);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 600;
}
.solutions-button_eed4433e07e77815 .demo_c2c6b9530ff8edda::before {
  top: 50%;
  left: 25px;
  width: 13px;
  height: 13px;
  content: "";
  position: absolute;
  border-radius: 100%;
  display: inline-block;
  background-color: #FF8408;
  transform: translateY(-50%);
}
.solutions-button_eed4433e07e77815 .demo_c2c6b9530ff8edda::after {
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  content: "";
  z-index: -1;
  position: absolute;
  border-radius: 5px;
  transition: var(--transition);
  background: linear-gradient(96deg, #6600FC 0%, #FA3988 51.56%, #FF8408 100%);
}
.solutions-button_eed4433e07e77815 .demo_c2c6b9530ff8edda:hover {
  color: var(--whiteColor);
  background-color: transparent;
}

/*=========================================
Page Title Area Style
===========================================*/
.page-title-area_44b6b97644678532 {
  background-color: #f7ffff;
  padding-top: 105px;
  padding-bottom: 105px;
}

.page-title-content_3a3da5e6c2ebd0f8 h1 {
  font-size: 40px;
  margin-bottom: 15px;
}
.page-title-content_3a3da5e6c2ebd0f8 ul li {
  font-weight: 500;
  padding-right: 10px;
  position: relative;
  font-family: var(--heading-font-family);
  color: var(--secondaryColor);
}
.page-title-content_3a3da5e6c2ebd0f8 ul li a {
  color: var(--blackColor);
}
.page-title-content_3a3da5e6c2ebd0f8 ul li a:hover {
  color: var(--secondaryColor);
}
.page-title-content_3a3da5e6c2ebd0f8 ul li::before {
  content: "\ea6e";
  right: -6px;
  top: 50%;
  line-height: 1;
  position: absolute;
  color: var(--blackColor);
  transform: translateY(-50%);
  font-family: remixicon !important;
}
.page-title-content_3a3da5e6c2ebd0f8 ul li:last-child {
  padding-right: 0;
}
.page-title-content_3a3da5e6c2ebd0f8 ul li:last-child::before {
  display: none;
}

.single-pages-widget_9328d37d85924123 {
  padding: 45px;
  margin-bottom: 50px;
  border-radius: 0px 30px;
  background-color: rgb(253, 253, 255);
}
.single-pages-widget_9328d37d85924123 h3 {
  font-size: 20px;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 20px;
}
.single-pages-widget_9328d37d85924123 h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(207, 217, 249);
}
.single-pages-widget_9328d37d85924123.form_4d313fec150fba9b .form-group {
  position: relative;
}
.single-pages-widget_9328d37d85924123.form_4d313fec150fba9b .form-group .form-control_9a8210976e912278 {
  height: 55px;
  border: unset;
  box-shadow: unset;
  padding-left: 30px;
  border-radius: 100px;
  background-color: rgb(242, 244, 254);
}
.single-pages-widget_9328d37d85924123.form_4d313fec150fba9b .form-group button {
  top: 50%;
  right: 15px;
  border: unset;
  font-size: 20px;
  box-shadow: unset;
  position: absolute;
  background-color: unset;
  transform: translateY(-50%);
  color: rgb(102, 0, 252);
}
.single-pages-widget_9328d37d85924123.services_38afce693ae2bd4b a {
  font-weight: 600;
  margin-bottom: 18px;
  display: inline-block;
  color: var(--blackColor);
}
.single-pages-widget_9328d37d85924123.services_38afce693ae2bd4b a:hover {
  color: var(--primaryColor);
}
.single-pages-widget_9328d37d85924123.questions_bc98882c985dbbe2 h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.single-pages-widget_9328d37d85924123.questions_bc98882c985dbbe2 a {
  font-weight: 600;
  color: #ff8408;
  font-family: var(--heading-font-family);
}
.single-pages-widget_9328d37d85924123.questions_bc98882c985dbbe2 a:hover {
  color: var(--primaryColor);
}
.single-pages-widget_9328d37d85924123.latest-posts_1ec71386635a5d3b .post-card_5983c5e4b19bcc94 {
  margin-bottom: 25px;
}
.single-pages-widget_9328d37d85924123.latest-posts_1ec71386635a5d3b .post-card_5983c5e4b19bcc94 .image {
  flex: 0 0 auto;
  display: block;
  margin-right: 20px;
}
.single-pages-widget_9328d37d85924123.latest-posts_1ec71386635a5d3b .post-card_5983c5e4b19bcc94 .image img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
}
.single-pages-widget_9328d37d85924123.latest-posts_1ec71386635a5d3b .post-card_5983c5e4b19bcc94 .content ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 8px;
}
.single-pages-widget_9328d37d85924123.latest-posts_1ec71386635a5d3b .post-card_5983c5e4b19bcc94 .content ul li i {
  top: 1px;
  left: 0;
  line-height: 1;
  font-size: 20px;
  position: absolute;
  color: #ff8408;
}
.single-pages-widget_9328d37d85924123.latest-posts_1ec71386635a5d3b .post-card_5983c5e4b19bcc94 .content h4 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 0;
}
.single-pages-widget_9328d37d85924123.latest-posts_1ec71386635a5d3b .post-card_5983c5e4b19bcc94 .content h4 a {
  color: var(--blackColor);
}
.single-pages-widget_9328d37d85924123.latest-posts_1ec71386635a5d3b .post-card_5983c5e4b19bcc94 .content h4 a:hover {
  color: var(--primaryColor);
}
.single-pages-widget_9328d37d85924123.latest-posts_1ec71386635a5d3b .post-card_5983c5e4b19bcc94:last-child {
  margin-bottom: 0;
}
.single-pages-widget_9328d37d85924123.tags ul li {
  margin-right: 7px;
  margin-bottom: 10px;
}
.single-pages-widget_9328d37d85924123.tags ul li a {
  padding: 9px 20px;
  border-radius: 30px;
  display: inline-block;
  background-color: #eff2fd;
  color: var(--paragraphColor);
  border: 1px solid #eff2fd;
}
.single-pages-widget_9328d37d85924123.tags ul li a:hover {
  border-color: #CFD9F9;
  color: var(--blackColor);
  background-color: transparent;
}
.single-pages-widget_9328d37d85924123.tags ul li:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
.single-pages-widget_9328d37d85924123:last-child {
  margin-bottom: 0;
}

.services-details-left-sidebar_70744c2d272c0c27 {
  margin-bottom: 25px;
}

.services-details-right-sidebar_84fae250f67736dc {
  margin-left: 30px;
}
.services-details-right-sidebar_84fae250f67736dc h1 {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.services-details-right-sidebar_84fae250f67736dc .image {
  margin-bottom: 30px;
}
.services-details-right-sidebar_84fae250f67736dc .image img {
  border-radius: 0px 30px;
}
.services-details-right-sidebar_84fae250f67736dc .processing_2582b635d090b210 {
  margin-top: 25px;
}
.services-details-right-sidebar_84fae250f67736dc .processing-cards_40d9c09f23d4876a {
  margin-top: 30px;
}
.services-details-right-sidebar_84fae250f67736dc .service-details_8039abe6d1a8b99e {
  margin-top: 50px;
}

.blog-details-left-sidebar_b0ad966367b81e86 {
  margin-bottom: 25px;
}

.blog-details-right-sidebar_cbf0340e232918a3 {
  margin-left: 40px;
  margin-bottom: 25px;
}
.blog-details-right-sidebar_cbf0340e232918a3 .blog-info_0e2ee8c13dc4b431 {
  margin-bottom: 30px;
}
.blog-details-right-sidebar_cbf0340e232918a3 .blog-info_0e2ee8c13dc4b431 ul {
  margin-bottom: 15px;
}
.blog-details-right-sidebar_cbf0340e232918a3 .blog-info_0e2ee8c13dc4b431 ul li {
  padding-left: 25px;
  position: relative;
  margin-right: 25px;
}
.blog-details-right-sidebar_cbf0340e232918a3 .blog-info_0e2ee8c13dc4b431 ul li i {
  top: 1px;
  left: 0;
  line-height: 1;
  font-size: 20px;
  position: absolute;
  color: #ff8408;
}
.blog-details-right-sidebar_cbf0340e232918a3 .blog-info_0e2ee8c13dc4b431 ul li a {
  color: var(--paragraphColor);
  font-size: 16px;
  font-weight: 400;
}
.blog-details-right-sidebar_cbf0340e232918a3 .blog-info_0e2ee8c13dc4b431 ul li a:hover {
  color: var(--primaryColor);
}
.blog-details-right-sidebar_cbf0340e232918a3 .blog-info_0e2ee8c13dc4b431 ul li:last-child {
  margin-right: 0;
}
.blog-details-right-sidebar_cbf0340e232918a3 .blog-info_0e2ee8c13dc4b431 h1 {
  font-size: 40px;
  line-height: 1.4;
  margin-bottom: 15px;
}
.blog-details-right-sidebar_cbf0340e232918a3 .blog-info_0e2ee8c13dc4b431 .image {
  margin-top: 20px;
  margin-bottom: 25px;
}
.blog-details-right-sidebar_cbf0340e232918a3 .blog-info_0e2ee8c13dc4b431 .image img {
  border-radius: 0 30px;
}
.blog-details-right-sidebar_cbf0340e232918a3 .blog-info_0e2ee8c13dc4b431 blockquote {
  padding: 33px;
  font-weight: 500;
  line-height: 1.7;
  font-style: italic;
  border-radius: 0 30px;
  color: var(--blackColor);
  font-family: var(--body-font-family);
  background-color: rgba(255, 131, 8, 0.02);
  margin-top: 25px;
  margin-bottom: 25px;
}
.blog-details-right-sidebar_cbf0340e232918a3 .comments_20e279b04e1354a5 h1 {
  font-size: 40px;
  margin-bottom: 25px;
}
.blog-details-right-sidebar_cbf0340e232918a3 .comments_20e279b04e1354a5 .comment-card_e2b30d7227c5cf3f {
  margin-bottom: 25px;
}
.blog-details-right-sidebar_cbf0340e232918a3 .comments_20e279b04e1354a5 .comment-card_e2b30d7227c5cf3f .user_b651d3bd6a801d5c {
  margin-bottom: 20px;
}
.blog-details-right-sidebar_cbf0340e232918a3 .comments_20e279b04e1354a5 .comment-card_e2b30d7227c5cf3f .user_b651d3bd6a801d5c .image {
  flex: 0 0 auto;
  display: block;
  margin-right: 20px;
}
.blog-details-right-sidebar_cbf0340e232918a3 .comments_20e279b04e1354a5 .comment-card_e2b30d7227c5cf3f .user_b651d3bd6a801d5c .image img {
  width: 73px;
  height: 73px;
  border-radius: 100%;
}
.blog-details-right-sidebar_cbf0340e232918a3 .comments_20e279b04e1354a5 .comment-card_e2b30d7227c5cf3f .user_b651d3bd6a801d5c .content h3 {
  font-size: 20px;
  margin-bottom: 7px;
}
.blog-details-right-sidebar_cbf0340e232918a3 .comments_20e279b04e1354a5 .comment-card_e2b30d7227c5cf3f .reply_9e80409f64c51a51 {
  color: #1a3949;
  font-style: italic;
}
.blog-details-right-sidebar_cbf0340e232918a3 .comments_20e279b04e1354a5 .comment-card_e2b30d7227c5cf3f .reply_9e80409f64c51a51:hover {
  color: var(--primaryColor);
}
.blog-details-right-sidebar_cbf0340e232918a3 .leave-reply_7bf9024b25f670af h1 {
  font-size: 40px;
  margin-bottom: 10px;
}
.blog-details-right-sidebar_cbf0340e232918a3 .leave-reply_7bf9024b25f670af p {
  margin-bottom: 25px;
}
.blog-details-right-sidebar_cbf0340e232918a3 .leave-reply_7bf9024b25f670af form .form-group {
  margin-bottom: 20px;
}
.blog-details-right-sidebar_cbf0340e232918a3 .leave-reply_7bf9024b25f670af form .form-group .form-control_9a8210976e912278 {
  height: 55px;
  border: unset;
  box-shadow: unset;
  padding-left: 25px;
  border-radius: 30px;
  background-color: #f2f4fe;
}
.blog-details-right-sidebar_cbf0340e232918a3 .leave-reply_7bf9024b25f670af form .form-group .form-control_9a8210976e912278.textarea_ca3cd0ef86594495 {
  height: 155px;
  padding-top: 15px;
  border-radius: 15px;
}
.blog-details-right-sidebar_cbf0340e232918a3 .leave-reply_7bf9024b25f670af form .form-check_eed9b0206d1951b6 {
  margin-bottom: 20px;
}
.blog-details-right-sidebar_cbf0340e232918a3 .leave-reply_7bf9024b25f670af form .form-check_eed9b0206d1951b6 .form-check-input_5956199d7e1184cb {
  box-shadow: unset;
  border-radius: 100%;
  border: 2px solid #cfd9f9;
}
.blog-details-right-sidebar_cbf0340e232918a3 .leave-reply_7bf9024b25f670af form button {
  border: unset;
  margin-top: 15px;
  box-shadow: unset;
  padding: 15px 24px;
  padding-left: 48px;
  position: relative;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  color: var(--blackColor);
  transition: var(--transition);
  background-color: var(--whiteColor);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 600;
}
.blog-details-right-sidebar_cbf0340e232918a3 .leave-reply_7bf9024b25f670af form button::before {
  top: 50%;
  left: 25px;
  width: 13px;
  height: 13px;
  content: "";
  position: absolute;
  border-radius: 100%;
  display: inline-block;
  background-color: #FF8408;
  transform: translateY(-50%);
}
.blog-details-right-sidebar_cbf0340e232918a3 .leave-reply_7bf9024b25f670af form button::after {
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  content: "";
  z-index: -1;
  position: absolute;
  border-radius: 5px;
  transition: var(--transition);
  background: linear-gradient(96deg, #6600FC 0%, #FA3988 51.56%, #FF8408 100%);
}
.blog-details-right-sidebar_cbf0340e232918a3 .leave-reply_7bf9024b25f670af form button:hover {
  color: var(--whiteColor);
  background-color: transparent;
}

.login-info_fedec5948040419b {
  margin: auto;
  max-width: 558px;
}
.login-info_fedec5948040419b h1 {
  font-size: 40px;
  margin-bottom: 25px;
}
.login-info_fedec5948040419b form .form-group {
  margin-bottom: 20px;
}
.login-info_fedec5948040419b form .form-group .form-control_9a8210976e912278 {
  height: 55px;
  border: unset;
  box-shadow: unset;
  padding-left: 25px;
  border-radius: 30px;
  background-color: #f2f4fe;
}
.login-info_fedec5948040419b form .form-group .form-control_9a8210976e912278.textarea_ca3cd0ef86594495 {
  height: 155px;
  padding-top: 15px;
  border-radius: 15px;
}
.login-info_fedec5948040419b form .form-check_eed9b0206d1951b6 {
  margin-bottom: 20px;
}
.login-info_fedec5948040419b form .form-check_eed9b0206d1951b6 .form-check-input_5956199d7e1184cb {
  box-shadow: unset;
  border-radius: 100%;
  border: 2px solid #cfd9f9;
}
.login-info_fedec5948040419b form .default-btn_543c2dc237fe6a9e {
  width: 100%;
  margin-bottom: 25px;
}
.login-info_fedec5948040419b form p a {
  color: var(--primaryColor);
}
.login-info_fedec5948040419b form p a:hover {
  color: var(--paragraphColor);
}

.terms-conditions-content_a04d39355235fc9c {
  margin-bottom: 25px;
}
.terms-conditions-content_a04d39355235fc9c .title {
  margin-bottom: 25px;
}
.terms-conditions-content_a04d39355235fc9c .title h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.terms-conditions-content_a04d39355235fc9c .title p a {
  color: #92210f;
  text-decoration: none;
}
.terms-conditions-content_a04d39355235fc9c .title p a:hover {
  color: var(--blackColor);
}
.terms-conditions-content_a04d39355235fc9c .title ul li {
  margin-bottom: 10px;
}
.terms-conditions-content_a04d39355235fc9c .title ul li:last-child {
  margin-bottom: 0;
}
.terms-conditions-content_a04d39355235fc9c .title ul.general_ccf74711699b8b16 li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}
.terms-conditions-content_a04d39355235fc9c .title ul.general_ccf74711699b8b16 li:last-child {
  margin-bottom: 0;
}
.terms-conditions-content_a04d39355235fc9c .title ul.general_ccf74711699b8b16 li strong {
  left: 0;
  position: absolute;
}
.terms-conditions-content_a04d39355235fc9c .title ul.confidential_5763715fd35b4bb7 li {
  padding-left: 20px;
  position: relative;
}
.terms-conditions-content_a04d39355235fc9c .title ul.confidential_5763715fd35b4bb7 li a {
  color: #92210f;
  text-decoration: none;
}
.terms-conditions-content_a04d39355235fc9c .title ul.confidential_5763715fd35b4bb7 li a:hover {
  color: var(--blackColor);
}
.terms-conditions-content_a04d39355235fc9c .title ul.confidential_5763715fd35b4bb7 li::before {
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  position: absolute;
  border-radius: 100%;
  background-color: var(--blackColor);
}
.terms-conditions-content_a04d39355235fc9c .title strong {
  color: var(--blackColor);
}
.terms-conditions-content_a04d39355235fc9c .title:last-child {
  margin-bottom: 0;
}

.error-area_e9af931df4c1e86d {
  background-color: #e9fcff;
}

.error-content_a7b79998793ae582 {
  margin-bottom: 25px;
}
.error-content_a7b79998793ae582 h1 {
  line-height: 1;
  font-size: 200px;
  font-weight: 700;
  color: #92210f;
  margin-top: 15px;
  margin-bottom: 0;
}
.error-content_a7b79998793ae582 h1 span {
  color: var(--blackColor);
}
.error-content_a7b79998793ae582 h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.error-content_a7b79998793ae582 a {
  margin-top: 10px;
}

/*================================================
Footer Area Style
=================================================*/
.footer-area_81ec098352d4b000 {
  background-color: #1B2336;
}

.footer-info-area_8c86db493402c004 {
  padding-top: 80px;
  padding-bottom: 55px;
  border-bottom: 1px solid #242C3E;
}

.single-footer-info_5110aa9d6f28a56d {
  margin-bottom: 25px;
}
.single-footer-info_5110aa9d6f28a56d h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--whiteColor);
}
.single-footer-info_5110aa9d6f28a56d p {
  color: #d1d3d7;
}
.single-footer-info_5110aa9d6f28a56d ul li {
  color: #d1d3d7;
  margin-bottom: 12px;
}
.single-footer-info_5110aa9d6f28a56d ul li a {
  color: #d1d3d7;
  position: relative;
}
.single-footer-info_5110aa9d6f28a56d ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.5px;
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.single-footer-info_5110aa9d6f28a56d ul li a:hover {
  color: var(--whiteColor);
}
.single-footer-info_5110aa9d6f28a56d ul li a:hover::before {
  width: 100%;
}
.single-footer-info_5110aa9d6f28a56d ul li:last-child {
  margin-bottom: 0;
}
.single-footer-info_5110aa9d6f28a56d ul li strong {
  font-weight: 600;
  color: var(--whiteColor);
}

.col-lg-4_92c39dc9b82e43fd:nth-child(1) .single-footer-info_5110aa9d6f28a56d {
  max-width: 322px;
  margin-left: 25px;
}
.col-lg-4_92c39dc9b82e43fd:nth-child(1) .single-footer-info_5110aa9d6f28a56d .logo_2ccbff4684bce8e0 {
  margin-bottom: 25px;
  display: inline-block;
}
.col-lg-4_92c39dc9b82e43fd:nth-child(1) .single-footer-info_5110aa9d6f28a56d ul li {
  margin-bottom: 18px;
}
.col-lg-4_92c39dc9b82e43fd:nth-child(1) .single-footer-info_5110aa9d6f28a56d ul li:last-child {
  margin-bottom: 0;
}
.col-lg-4_92c39dc9b82e43fd:nth-child(2) .single-footer-info_5110aa9d6f28a56d {
  margin-left: 148px;
}
.col-lg-4_92c39dc9b82e43fd:nth-child(3) .single-footer-info_5110aa9d6f28a56d {
  margin-left: 110px;
}

.copyright-area_439097355e0e8534 {
  background-color: #1B2336;
  padding-top: 30px;
  padding-bottom: 30px;
}

.copyright-content_5ce1271e1eb8357c p {
  color: #d1d3d7;
  font-family: var(--heading-font-family);
}
.copyright-content_5ce1271e1eb8357c p strong {
  color: #ff8408;
}

/*================================================
Back to Top Style
=================================================*/
.go-top {
  top: 87%;
  z-index: 4;
  opacity: 0;
  right: -10%;
  width: 40px;
  height: 50px;
  cursor: pointer;
  position: fixed;
  line-height: 45px;
  border-radius: 5px;
  visibility: hidden;
  text-align: center;
  transition: var(--transition);
  background-color: var(--secondaryColor);
}
.go-top i {
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 25px;
  transition: 0.5s;
  position: absolute;
  color: var(--whiteColor);
  transform: translateY(-50%);
}
.go-top:hover {
  color: #ffffff;
  background: var(--blackColor);
}
.go-top:hover i {
  color: var(--whiteColor);
}
.go-top:hover i:first-child {
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.go-top:hover i:last-child {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.go-top:focus {
  color: #ffffff;
}
.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}
.go-top:focus i:first-child {
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.go-top:focus i:last-child {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.go-top.active {
  top: 93%;
  right: 2%;
  opacity: 1;
  visibility: visible;
  transform: translateY(-95%);
}/*# sourceMappingURL=style.css.map */