﻿/*
@File: Cyarb Theme Styles

Theme Name: Cyarb
Theme URI: http://themes.envytheme.com/cyarb/
Author: Envytheme
Author URI: http://envytheme.com
Description: Cyarb - Cyber Security Company WordPress Theme
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
Version: 1.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: cyarb
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

* This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
*/
/*================================================
Default CSS
=================================================*/
:root {
  --fontFamily: "Roboto", sans-serif;
  --headingFontFamily: "Jost", sans-serif;
  --mainColor: #ED1D61;
  --secondaryColor: #666666;
  --whiteColor: #ffffff;
  --blackColor: #000000;
  --blackColor2: #1C0531;
  --transition: .5s;
  --fontSize: 14px;
  --gradOne: #ed1e79;
  --gradTwo: #f10d66;
  --gradThree: #f30251;
  --gradFour: #f10a3c;
  --gradFive: #ed1c24;
  --pgradOne: #ED1D78;
  --pgradTwo: #ED1B25;
  --primaryGradientColor: linear-gradient(90deg, var(--pgradOne) 0%, var(--pgradTwo) 100%);
  --primaryGradientColorTwo: linear-gradient(135.5deg, #ED407E 1.15%, #8E42C9 50.99%, #5D7CE5 99.15%);
  --primaryGradientColorThree: linear-gradient(135deg, #6C42E4 0%, #00B0EA 100%);
}

body {
  margin: 0;
  padding: 0;
  color: var(--blackColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--blackColor);
  font-weight: 700;
  font-family: var(--headingFontFamily);
}

a {
  transition: var(--transition);
  color: var(--blackColor);
  text-decoration: none;
  outline: 0 !important;
}
a:hover {
  color: var(--mainColor);
  text-decoration: none;
}

:focus {
  outline: 0 !important;
}

.d-table {
  width: 100%;
  height: 100%;
}
.d-table-cell {
  vertical-align: middle;
}

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

p {
  color: var(--secondaryColor);
  size: var(--fontSize);
  margin-bottom: 15px;
  line-height: 1.9;
}
p:last-child {
  margin-bottom: 0;
}

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

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

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

.ptb-75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

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

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

.bg-f5f8ff {
  background-color: #f5f8ff;
}

.bg-F9F9F9 {
  background: #F9F9F9;
}

/*section-title*/
.section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 55px;
}
.section-title h1 {
  font-size: 48px;
  margin-bottom: 0;
}
.section-title h2 {
  font-size: 44px;
  margin-bottom: 0;
  margin-top: -4px;
}
.section-title h3 {
  font-size: 40px;
  margin-bottom: 0;
}
.section-title h4 {
  font-size: 35px;
  margin-bottom: 0;
}
.section-title h5 {
  font-size: 30px;
  margin-bottom: 0;
}
.section-title h6 {
  font-size: 25px;
  margin-bottom: 0;
}
.section-title p {
  max-width: 640px;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
}

/*default-btn*/
.default-btn {
  border: 0;
  z-index: 1;
  overflow: hidden;
  position: relative;
  padding: 11px 30px;
  border-radius: 30px;
  display: inline-block;
  color: var(--whiteColor);
  transition: var(--transition);
  box-shadow: 0 8px 35px rgba(237, 39, 117, 0.2509803922);
  background: linear-gradient(to bottom, var(--gradOne), var(--gradTwo), var(--gradThree), var(--gradFour), var(--gradFive));
  font-size: 16px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.default-btn::before {
  top: 0;
  left: 0;
  height: 0;
  content: "";
  z-index: -1;
  width: 25.25%;
  position: absolute;
  transition: 0.5s ease-in-out;
  background-color: var(--blackColor);
}
.default-btn::after {
  top: 0;
  left: 50%;
  height: 0;
  content: "";
  z-index: -1;
  width: 25.25%;
  position: absolute;
  transition: 0.5s ease-in-out;
  background-color: var(--blackColor);
}
.default-btn span {
  display: block;
}
.default-btn span::before {
  bottom: 0;
  height: 0;
  left: 25%;
  content: "";
  z-index: -1;
  width: 25.25%;
  position: absolute;
  transition: 0.5s ease-in-out;
  background-color: var(--blackColor);
}
.default-btn span::after {
  bottom: 0;
  left: 75%;
  height: 0;
  content: "";
  z-index: -1;
  width: 25.25%;
  position: absolute;
  transition: 0.5s ease-in-out;
  background-color: var(--blackColor);
}
.default-btn:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.default-btn:hover::before, .default-btn:hover::after {
  height: 100%;
}
.default-btn:hover span::before, .default-btn:hover span::after {
  height: 100%;
}

/*form-control*/
.form-control {
  height: 48px;
  border-radius: 5px;
  color: var(--blackColor);
  font-size: var(--fontSize);
  border: 1px solid #eeeeee;
  box-shadow: unset !important;
  padding-left: 15px;
  padding-right: 15px;
}
.form-control:focus {
  border-color: #d5cccc;
}

textarea.form-control {
  padding-top: 15px;
  min-height: auto;
  height: auto;
}

/*================================================
Header Area CSS
=================================================*/
/*================================================
Main Banner Area CSS
=================================================*/
.main-banner-area {
  z-index: 1;
  padding-top: 50px;
  position: relative;
}
.main-banner-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.main-banner-content h1 {
  font-size: 55px;
  margin-bottom: 18px;
}
.main-banner-content h2 {
  font-size: 50px;
  margin-bottom: 18px;
}
.main-banner-content h3 {
  font-size: 45px;
  margin-bottom: 18px;
}
.main-banner-content h4 {
  font-size: 40px;
  margin-bottom: 18px;
}
.main-banner-content h5 {
  font-size: 35px;
  margin-bottom: 18px;
}
.main-banner-content h6 {
  font-size: 30px;
  margin-bottom: 18px;
}
.main-banner-content p {
  font-size: 15px;
}
.main-banner-content .btn-box {
  margin-top: 30px;
}
.main-banner-content .btn-box .link-btn {
  color: var(--secondaryColor);
  text-decoration: underline;
  display: inline-block;
  padding-right: 13px;
  position: relative;
  margin-left: 20px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.main-banner-content .btn-box .link-btn:hover {
  color: var(--mainColor);
}
.main-banner-content .btn-box .link-btn i {
  top: 50%;
  right: -2px;
  font-size: 13px;
  position: absolute;
  transform: translateY(-50%);
}

.main-banner-image {
  text-align: center;
}

.banner-area {
  z-index: 1;
  position: relative;
  background-color: #f9f9f9;
  padding-top: 60px;
  padding-bottom: 60px;
}
.banner-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.banner-area .newsletter-form p {
  color: #000;
  margin-bottom: 0;
  margin-top: 5px;
  text-align: center;
}

.banner-content h1 {
  font-size: 60px;
  margin-bottom: 18px;
}
.banner-content h2 {
  font-size: 35px;
  margin-bottom: 18px;
}
.banner-content h3 {
  font-size: 32px;
  margin-bottom: 18px;
}
.banner-content h4 {
  font-size: 27px;
  margin-bottom: 18px;
}
.banner-content h5 {
  font-size: 22px;
  margin-bottom: 18px;
}
.banner-content h6 {
  font-size: 18px;
  margin-bottom: 18px;
}
.banner-content p {
  font-size: 14px;
  max-width: 720px;
}
.banner-content form {
  max-width: 700px;
  margin-top: 30px;
  position: relative;
}
.banner-content form .input-newsletter {
  width: 100%;
  height: 62px;
  display: block;
  padding-left: 25px;
  border-radius: 30px;
  border: 1px solid #C1C1C1;
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  font-size: 16px;
  font-family: var(--headingFontFamily);
}
.banner-content form .input-newsletter::-moz-placeholder {
  -moz-transition: var(--transition);
  transition: var(--transition);
  color: var(--secondaryColor);
}
.banner-content form .input-newsletter::placeholder {
  transition: var(--transition);
  color: var(--secondaryColor);
}
.banner-content form .input-newsletter:focus {
  border-color: var(--mainColor);
}
.banner-content form .input-newsletter:focus::-moz-placeholder {
  color: transparent;
}
.banner-content form .input-newsletter:focus::placeholder {
  color: transparent;
}
.banner-content form .default-btn {
  position: absolute;
  right: 10px;
  top: 8px;
}
.banner-content .btn-box {
  margin-top: 25px;
}
.banner-content .btn-box .default-btn {
  box-shadow: unset;
}
.banner-content .btn-box .link-btn {
  color: var(--secondaryColor);
  text-decoration: underline;
  display: inline-block;
  padding-right: 13px;
  position: relative;
  margin-left: 20px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.banner-content .btn-box .link-btn:hover {
  color: var(--mainColor);
}
.banner-content .btn-box .link-btn i {
  top: 50%;
  right: -2px;
  font-size: 13px;
  position: absolute;
  transform: translateY(-50%);
}

.banner-image {
  text-align: center;
  border-radius: 50%;
}
.banner-image img {
  border: 1px solid #eeeeee;
  border-radius: 50% !important;
  padding: 20px;
}

.home-slides .banner-image {
  padding-left: 50px;
}
.home-slides .banner-image img {
  animation: border-transform 10s linear infinite alternate forwards;
}
.home-slides.owl-theme .owl-nav {
  top: 50%;
  right: 0;
  margin-top: 0;
  position: absolute;
  transform: translateY(-50%);
}
.home-slides.owl-theme .owl-nav [class*=owl-] {
  padding: 0;
  width: 60px;
  height: 60px;
  margin: 5px 0;
  display: block;
  font-size: 25px;
  border-radius: 0;
  background: var(--whiteColor);
  transition: var(--transition);
}
.home-slides.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.owl-item.active .banner-item h1 {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}
.owl-item.active .banner-item p {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.7s;
}
.owl-item.active .banner-item .btn-box {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.9s;
}

@keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
.banner-wrapper-area {
  z-index: 1;
  position: relative;
  background-color: var(--blackColor);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 270px;
  padding-bottom: 75px;
}
.banner-wrapper-area::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  opacity: 0.3;
  position: absolute;
  background-color: #000000;
}
.banner-wrapper-area .shape1 {
  left: 6%;
  top: 17%;
}
.banner-wrapper-area .shape5 {
  right: 5%;
  top: 13%;
}
.banner-wrapper-area .shape4 {
  bottom: 35%;
  left: 40%;
}

.banner-wrapper-content h1 {
  font-size: 55px;
  margin-bottom: 18px;
  color: var(--whiteColor);
}
.banner-wrapper-content p {
  font-size: 15px;
  color: var(--whiteColor);
}
.banner-wrapper-content .btn-box {
  margin-top: 30px;
}
.banner-wrapper-content .btn-box .default-btn::before, .banner-wrapper-content .btn-box .default-btn::after {
  background-color: var(--whiteColor);
}
.banner-wrapper-content .btn-box .default-btn span::before, .banner-wrapper-content .btn-box .default-btn span::after {
  background-color: var(--whiteColor);
}
.banner-wrapper-content .btn-box .default-btn:hover {
  color: var(--mainColor);
}
.banner-wrapper-content .btn-box .link-btn {
  text-decoration: underline;
  color: var(--whiteColor);
  display: inline-block;
  padding-right: 13px;
  position: relative;
  margin-left: 20px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.banner-wrapper-content .btn-box .link-btn:hover {
  color: var(--mainColor);
}
.banner-wrapper-content .btn-box .link-btn i {
  top: 50%;
  right: -2px;
  font-size: 13px;
  position: absolute;
  transform: translateY(-50%);
}

.banner-wrapper-video {
  margin-left: 150px;
}
.banner-wrapper-video .video-btn {
  z-index: 1;
  width: 100px;
  height: 100px;
  font-size: 40px;
  position: relative;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.banner-wrapper-video .video-btn i {
  left: 0;
  right: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.banner-wrapper-video .video-btn::after, .banner-wrapper-video .video-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid var(--whiteColor);
}
.banner-wrapper-video .video-btn::before {
  animation: ripple 2s linear infinite;
}
.banner-wrapper-video .video-btn::after {
  animation: ripple 2s linear 1s infinite;
}

.banner-boxes-area {
  margin-top: 140px;
}
.banner-boxes-area .single-features-box {
  background-color: rgba(0, 0, 0, 0.5);
}
.banner-boxes-area .single-features-box .icon {
  background: linear-gradient(to bottom, var(--gradOne), var(--gradTwo), var(--gradThree), var(--gradFour), var(--gradFive));
}
.banner-boxes-area .single-features-box h3 {
  color: var(--whiteColor);
}
.banner-boxes-area .single-features-box h3 a {
  color: var(--whiteColor);
}
.banner-boxes-area .single-features-box p {
  color: var(--whiteColor);
  opacity: 0.9;
}
.banner-boxes-area .single-features-box:hover .icon {
  background-color: var(--whiteColor);
}

.shape1 {
  position: absolute;
  z-index: -1;
  left: 2%;
  top: 12%;
}
.shape1 img {
  animation: movebounce 5s linear infinite;
}

.shape2 {
  position: absolute;
  z-index: -1;
  left: 30%;
  top: 9%;
}
.shape2 img {
  animation: moveleftbounce 5s linear infinite;
}

.shape3 {
  position: absolute;
  z-index: -1;
  bottom: 7%;
  left: 2%;
}
.shape3 img {
  animation: movescale 3s linear infinite;
}

.shape4 {
  position: absolute;
  z-index: -1;
  bottom: 12%;
  left: 29%;
}
.shape4 img {
  animation: moveleftbounce 5s linear infinite;
}

.shape5 {
  position: absolute;
  z-index: -1;
  right: 2%;
  top: 15%;
}
.shape5 img {
  animation: movebounce 5s linear infinite;
}

.shape12 {
  right: 0;
  z-index: -1;
  bottom: 45px;
  position: absolute;
}
.shape12 img {
  animation: movebounce 5s linear infinite;
}

@keyframes movebounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes moveleftbounce {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes rotate3d {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes movescale {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@keyframes ripple {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/*================================================
Features Area CSS
=================================================*/
.single-features-box {
  position: relative;
  border-radius: 7px;
  padding: 30px 30px 30px 70px;
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 5px 10px 70px rgba(183, 186, 195, 0.1215686275);
  margin-left: 42.5px;
  margin-bottom: 25px;
}
.single-features-box .icon {
  top: 50%;
  width: 85px;
  height: 85px;
  left: -42.5px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
  transition: var(--transition);
  background-color: var(--mainColor);
  box-shadow: 5px 10px 30px rgba(38, 42, 55, 0.1215686275);
}
.single-features-box .icon img {
  left: 0;
  right: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}
.single-features-box h3 {
  transition: var(--transition);
  margin-bottom: 15px;
  font-size: 22px;
}
.single-features-box p {
  transition: var(--transition);
}
.single-features-box:hover {
  background-color: var(--mainColor);
}
.single-features-box:hover h3 {
  color: var(--whiteColor);
}
.single-features-box:hover h3 a {
  color: var(--whiteColor);
}
.single-features-box:hover p {
  color: var(--whiteColor);
}

/*================================================
About Area CSS
=================================================*/
.about-area {
  z-index: 1;
  position: relative;
}
.about-area .shape3 {
  bottom: 15%;
  left: 4%;
}
.about-area .shape4 {
  bottom: auto;
  left: auto;
  right: 3%;
  top: 36%;
}
.about-area .shape2 {
  bottom: 8%;
  left: auto;
  top: auto;
  right: 5%;
}
.about-area .container-fluid {
  max-width: 1900px;
  padding-left: 100px;
  padding-right: 100px;
}

.about-image {
  text-align: center;
  position: relative;
}
.about-image::before {
  animation: movebounce 5s linear infinite;
  position: absolute;
  width: 121px;
  height: 67px;
  content: "";
  right: 75px;
  top: 60px;
  background-image: url(../image/shape2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-image::after {
  animation: movebounce 5s linear infinite;
  position: absolute;
  width: 100px;
  height: 40px;
  bottom: 60px;
  content: "";
  left: 125px;
  background-image: url(../image/shape3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-content {
  max-width: 635px;
}
.about-content h1 {
  margin-bottom: 15px;
  font-size: 50px;
}
.about-content h2 {
  margin-bottom: 15px;
  font-size: 44px;
}
.about-content h3 {
  margin-bottom: 15px;
  font-size: 40px;
}
.about-content h4 {
  margin-bottom: 15px;
  font-size: 36px;
}
.about-content h5 {
  margin-bottom: 15px;
  font-size: 32px;
}
.about-content h6 {
  margin-bottom: 15px;
  font-size: 28px;
}
.about-content .features-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 30px;
  margin-bottom: 0;
}
.about-content .features-list li {
  z-index: 1;
  position: relative;
  margin-bottom: 20px;
  border-radius: 20px;
  padding: 30px 30px 30px 135px;
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
}
.about-content .features-list li .icon {
  background-color: var(--whiteColor);
  transition: var(--transition);
  transform: translateY(-50%);
  position: absolute;
  text-align: center;
  border-radius: 50%;
  height: 85px;
  width: 85px;
  left: 30px;
  z-index: 1;
  top: 50%;
}
.about-content .features-list li .icon img {
  left: 0;
  right: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  transition: var(--transition);
  margin-left: auto;
  margin-right: auto;
}
.about-content .features-list li .icon::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -1;
  border-radius: 50%;
  position: absolute;
  transition: var(--transition);
  background: linear-gradient(to left, var(--gradOne), var(--gradTwo), var(--gradThree), var(--gradFour), var(--gradFive));
}
.about-content .features-list li h3 {
  transition: var(--transition);
  margin-bottom: 12px;
  font-size: 22px;
}
.about-content .features-list li p {
  transition: var(--transition);
}
.about-content .features-list li:last-child {
  margin-bottom: 0;
}
.about-content .features-list li::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  content: "";
  visibility: hidden;
  position: absolute;
  border-radius: 20px;
  transition: var(--transition);
  background: linear-gradient(to left, var(--gradOne), var(--gradTwo), var(--gradThree), var(--gradFour), var(--gradFive));
}
.about-content .features-list li:hover .icon {
  background-color: var(--blackColor);
}
.about-content .features-list li:hover .icon::before {
  opacity: 0;
  visibility: hidden;
}
.about-content .features-list li:hover h3 {
  color: var(--whiteColor);
}
.about-content .features-list li:hover p {
  color: var(--whiteColor);
}
.about-content .features-list li:hover::before {
  opacity: 1;
  visibility: visible;
}

/*================================================
Team Area CSS
=================================================*/
.team-area {
  position: relative;
  z-index: 1;
}
.team-area .shape3 {
  bottom: auto;
  left: 13%;
  top: 24%;
}
.team-area .shape2 {
  top: 48%;
  right: 10%;
  left: auto;
}
.team-area .shape4 {
  bottom: auto;
  left: auto;
  right: 5%;
  top: -5%;
}

.single-team-member {
  margin-bottom: 25px;
  text-align: center;
}
.single-team-member .image {
  border-radius: 7px;
  overflow: hidden;
}
.single-team-member .image img {
  border-radius: 7px;
  transition: var(--transition);
}
.single-team-member .content {
  padding: 30px;
  margin-top: -30px;
  position: relative;
  border-radius: 30px;
  background-color: var(--whiteColor);
}
.single-team-member .content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.single-team-member .content h3 span {
  display: block;
  margin-top: 12px;
  color: var(--mainColor);
  font-size: 16px;
  font-weight: normal;
}
.single-team-member .content .social-links {
  padding-left: 0;
  list-style-type: none;
  margin-top: 18px;
  margin-bottom: 0;
}
.single-team-member .content .social-links li {
  display: inline-block;
  margin-right: 2px;
}
.single-team-member .content .social-links li a {
  width: 34px;
  height: 34px;
  display: block;
  border-radius: 50%;
  text-align: center;
  position: relative;
  color: var(--whiteColor);
  background-color: #7E7E7E;
}
.single-team-member .content .social-links li a i {
  left: 0;
  right: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.single-team-member .content .social-links li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.single-team-member:hover .image img {
  transform: scale(1.08);
}

/*================================================
Operation Center Area CSS
=================================================*/
.operation-center-area {
  z-index: 1;
  position: relative;
}
.operation-center-area .shape3 {
  bottom: 20%;
  z-index: 1;
  left: 13%;
}
.operation-center-area .shape4 {
  bottom: auto;
  left: auto;
  right: 5%;
  top: 25%;
}
.operation-center-area .shape2 {
  bottom: 15%;
  right: 10%;
  left: auto;
  top: auto;
}
.operation-center-area .shape6 {
  top: 0;
  left: 4%;
}

.operation-center-image {
  border-radius: 20px;
  margin-right: 10px;
  height: 100%;
  background-image: url(https://themes.envytheme.com/cyarb/wp-content/themes/cyarb/assets/img/operation-center.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.operation-center-image img {
  display: none;
  border-radius: 20px;
}

.operation-center-content {
  padding-left: 10px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.operation-center-content h2 {
  margin-bottom: 15px;
  font-size: 35px;
}
.operation-center-content .features-list {
  display: flex;
  padding-left: 0;
  flex-wrap: wrap;
  list-style-type: none;
  margin-bottom: 0;
  margin-left: calc(var(--bs-gutter-x) * -0.5);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
}
.operation-center-content .features-list li {
  flex: 0 0 auto;
  width: 50%;
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}
.operation-center-content .features-list li span {
  display: block;
  position: relative;
  padding-left: 40px;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}
.operation-center-content .features-list li span i {
  left: 0;
  top: 50%;
  width: 30px;
  height: 30px;
  font-size: 15px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
  color: var(--mainColor);
  background-color: #F5F8FF;
  transition: var(--transition);
}
.operation-center-content .features-list li span:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

/*================================================
Partner Area CSS
=================================================*/
.partner-title h4 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
}

.partners-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}
.partners-list .partner-item {
  margin-top: var(--bs-gutter-y);
  flex: 0 0 auto;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
}

.partner-item {
  text-align: center;
  overflow: hidden;
}
.partner-item img {
  transition: var(--transition);
}
.partner-item:hover img {
  transform: scale(0.9);
}

/*================================================
Services Area CSS
=================================================*/
.services-area {
  position: relative;
  z-index: 2;
}
.services-area .shape3 {
  bottom: auto;
  left: auto;
  right: 2%;
  top: 25%;
}
.services-area .shape1 {
  bottom: 8%;
  left: auto;
  top: auto;
  right: 5%;
}
.services-area.bg-image {
  background-image: url(https://themes.envytheme.com/cyarb/wp-content/themes/cyarb/assets/img/services/services-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.services-area.bg-image .section-title h2 {
  color: var(--whiteColor);
}
.services-area.bg-image .section-title p {
  color: var(--whiteColor);
}
.services-area.bg-image .view-more-box .default-btn::before, .services-area.bg-image .view-more-box .default-btn::after {
  background-color: var(--whiteColor);
}
.services-area.bg-image .view-more-box .default-btn span::before, .services-area.bg-image .view-more-box .default-btn span::after {
  background-color: var(--whiteColor);
}
.services-area.bg-image .view-more-box .default-btn:hover {
  color: var(--blackColor);
}
.services-area.bg-image .shape6 {
  left: 5%;
  top: auto;
  bottom: -8%;
}
.services-area .pagination-area {
  margin-top: 20px;
}

.single-services-box {
  padding: 40px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 5px;
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.single-services-box::before {
  left: 0;
  width: 0;
  bottom: 0;
  height: 3px;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: var(--mainColor);
}
.single-services-box .icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  margin-bottom: 25px;
  background-color: var(--mainColor);
  transition: var(--transition);
  box-shadow: 5px 10px 30px rgba(38, 42, 55, 0.1215686275);
}
.single-services-box .icon img {
  left: 0;
  right: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}
.single-services-box h3 {
  margin-bottom: 16px;
  font-size: 22px;
}
.single-services-box .link-btn {
  color: var(--secondaryColor);
  text-decoration: underline;
  display: inline-block;
  padding-right: 13px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.single-services-box .link-btn:hover {
  color: var(--mainColor);
}
.single-services-box .link-btn i {
  top: 50%;
  right: -2px;
  font-size: 13px;
  position: absolute;
  transform: translateY(-50%);
}
.single-services-box:hover {
  transform: translateY(-10px);
}
.single-services-box:hover::before {
  width: 100%;
}
.single-services-box:hover .icon {
  background-color: var(--mainColor);
  border-radius: 70% 30% 30% 70%/60% 40% 60% 40%;
}
.single-services-box.style-two .icon {
  background: linear-gradient(to bottom, var(--gradOne), var(--gradTwo), var(--gradThree), var(--gradFour), var(--gradFive));
}

.services-box {
  position: relative;
  border-radius: 7px;
  margin-bottom: 25px;
  background-color: var(--whiteColor);
}
.services-box .image {
  border-radius: 7px 7px 0 0;
  overflow: hidden;
}
.services-box .image img {
  border-radius: 7px 7px 0 0;
  transition: 0.3s;
}
.services-box .content {
  z-index: 1;
  margin-top: -42px;
  position: relative;
  padding: 0 35px 35px;
}
.services-box .content .icon {
  width: 85px;
  height: 85px;
  transition: 0.3s;
  border-radius: 50%;
  text-align: center;
  position: relative;
  margin-bottom: 25px;
  background: linear-gradient(to bottom, var(--gradOne), var(--gradTwo), var(--gradThree), var(--gradFour), var(--gradFive));
}
.services-box .content .icon img {
  left: 0;
  right: 0;
  top: 50%;
  margin-top: -1px;
  position: absolute;
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}
.services-box .content h3 {
  transition: 0.3s;
  margin-bottom: 18px;
  font-size: 22px;
}
.services-box .content p {
  margin-bottom: 0;
  transition: 0.3s;
}
.services-box .content .link-btn {
  color: var(--mainColor);
  text-decoration: underline;
  display: inline-block;
  padding-right: 13px;
  position: absolute;
  visibility: hidden;
  transition: 0.3s;
  bottom: 5px;
  left: 35px;
  opacity: 0;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.services-box .content .link-btn:hover {
  color: var(--mainColor);
}
.services-box .content .link-btn i {
  top: 50%;
  right: -2px;
  font-size: 13px;
  position: absolute;
  transform: translateY(-50%);
}
.services-box:hover .image img {
  transform: translateY(-28px);
}
.services-box:hover .content .icon {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transform: translateY(-28px);
}
.services-box:hover .content h3, .services-box:hover .content p {
  transform: translateY(-28px);
}
.services-box:hover .content .link-btn {
  opacity: 1;
  bottom: 25px;
  visibility: visible;
}

.view-more-box {
  text-align: center;
  margin-top: 20px;
}

.services-slides.owl-theme .single-services-box .icon {
  box-shadow: unset;
}
.services-slides.owl-theme .single-services-box .icon img {
  display: inline-block !important;
  width: auto !important;
}
.services-slides.owl-theme .single-services-box:hover {
  transform: unset;
}
.services-slides.owl-theme .single-services-box:hover .icon {
  box-shadow: 5px 10px 30px rgba(38, 42, 55, 0.1215686275);
}
.services-slides.owl-theme .owl-dots {
  margin-bottom: 35px;
  margin-top: 20px !important;
}
.services-slides.owl-theme .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  margin: 0 4px;
  border-radius: 50%;
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.services-slides.owl-theme .owl-dots .owl-dot:hover span, .services-slides.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.shape6 {
  position: absolute;
  z-index: -1;
  top: 36%;
  left: 2%;
}
.shape6 img {
  animation: movebounce 5s linear infinite;
}

.shape11 {
  position: absolute;
  z-index: -1;
  bottom: -3%;
  left: 10%;
}
.shape11 img {
  animation: moveleftbounce 5s linear infinite;
}

/*================================================
Services Details Area CSS
=================================================*/
.services-details-content h1 {
  word-wrap: break-word;
  line-height: 1.1;
  font-size: 95px;
  margin-bottom: 0;
  margin-top: -5px;
}
.services-details-content h2 {
  word-wrap: break-word;
  line-height: 1.1;
  font-size: 90px;
  margin-bottom: 0;
  margin-top: -5px;
}
.services-details-content h3 {
  word-wrap: break-word;
  line-height: 1.1;
  font-size: 85px;
  margin-bottom: 0;
  margin-top: -5px;
}
.services-details-content h4 {
  word-wrap: break-word;
  line-height: 1.1;
  font-size: 80px;
  margin-bottom: 0;
  margin-top: -5px;
}
.services-details-content h5 {
  word-wrap: break-word;
  line-height: 1.1;
  font-size: 75px;
  margin-bottom: 0;
  margin-top: -5px;
}
.services-details-content h6 {
  word-wrap: break-word;
  line-height: 1.1;
  font-size: 70px;
  margin-bottom: 0;
  margin-top: -5px;
}

.services-details-text p:last-child {
  margin-bottom: -7px;
}
.services-details-text p strong {
  color: var(--blackColor);
}

.services-details-image {
  margin-bottom: 40px;
}

/*================================================
Approach Area CSS
=================================================*/
.single-approach-box {
  padding: 35px;
  border-radius: 7px;
  margin-bottom: 25px;
  border: 1px solid #EBF1FF;
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.single-approach-box .icon {
  margin-bottom: 25px;
}
.single-approach-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.single-approach-box:hover {
  border-color: var(--mainColor);
}

/*================================================
Funfacts Area CSS
=================================================*/
.funfacts-area.bg-color {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 35px;
}
.funfacts-area.bg-color::before {
  top: 0;
  left: 0;
  bottom: 0;
  width: 90%;
  z-index: -1;
  content: "";
  position: absolute;
  border-radius: 0 20px 20px 0;
  background: linear-gradient(to bottom, var(--gradOne), var(--gradTwo), var(--gradThree), var(--gradFour), var(--gradFive));
}
.funfacts-area.bg-color::after {
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  content: "";
  z-index: -2;
  position: absolute;
  background-color: #f9f9f9;
}
.funfacts-area .container-fluid {
  max-width: 1290px;
  padding-left: 30px;
  margin-left: 0;
  margin-right: 0;
}

.single-funfacts-item {
  position: relative;
  margin-bottom: 25px;
  padding-left: 115px;
}
.single-funfacts-item .icon {
  left: 0;
  top: 50%;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  position: absolute;
  text-align: center;
  transform: translateY(-50%);
  background-color: #FF346A;
}
.single-funfacts-item .icon img {
  left: 0;
  right: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}
.single-funfacts-item h3 {
  line-height: 1;
  font-size: 48px;
  margin-bottom: 0;
  color: var(--whiteColor);
}
.single-funfacts-item .sign {
  position: relative;
  top: 1px;
}
.single-funfacts-item p {
  color: var(--whiteColor);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}

.single-funfacts-box {
  margin-bottom: 25px;
  position: relative;
  padding-left: 105px;
}
.single-funfacts-box .icon {
  left: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.single-funfacts-box h3 {
  line-height: 1;
  font-size: 55px;
  margin-bottom: 0;
}
.single-funfacts-box .sign {
  position: relative;
  top: 2px;
}
.single-funfacts-box p {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.single-funfacts-box.fbox2 h3 {
  color: var(--mainColor);
}

/*================================================
Web Security Area CSS
=================================================*/
.web-security-area {
  z-index: 1;
  position: relative;
  background-color: var(--blackColor);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.web-security-area.bg-image1 {
  background-image: url(https://themes.envytheme.com/cyarb/wp-content/themes/cyarb/assets/img/web-bg1.jpg);
}
.web-security-area.bg-image2 {
  background-image: url(https://themes.envytheme.com/cyarb/wp-content/themes/cyarb/assets/img/web-bg2.jpg);
}
.web-security-area::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -1;
  opacity: 0.2;
  position: absolute;
  background-color: #000000;
}
.web-security-area .shape4 {
  bottom: 5%;
  left: 12%;
}

.web-security-content {
  z-index: 1;
  padding: 90px;
  max-width: 645px;
  margin-left: auto;
  position: relative;
  border-radius: 7px;
  background-color: rgba(255, 255, 255, 0.9);
}
.web-security-content h1 {
  margin-bottom: 12px;
  font-size: 40px;
}
.web-security-content h2 {
  margin-bottom: 12px;
  font-size: 36px;
}
.web-security-content h3 {
  margin-bottom: 12px;
  font-size: 32px;
}
.web-security-content h4 {
  margin-bottom: 12px;
  font-size: 28px;
}
.web-security-content h5 {
  margin-bottom: 12px;
  font-size: 24px;
}
.web-security-content h6 {
  margin-bottom: 12px;
  font-size: 20px;
}
.web-security-content .features-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 0;
}
.web-security-content .features-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 27px;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.web-security-content .features-list li i {
  color: var(--mainColor);
  position: absolute;
  font-size: 20px;
  top: 3px;
  left: 0;
}
.web-security-content .features-list li:last-child {
  margin-bottom: 0;
}
.web-security-content .shape4 {
  bottom: 25%;
  left: auto;
  right: 15%;
}

.web-content {
  padding-right: 15px;
}
.web-content h1 {
  color: var(--whiteColor);
  margin-bottom: 18px;
  font-size: 50px;
}
.web-content h2 {
  color: var(--whiteColor);
  margin-bottom: 18px;
  font-size: 44px;
}
.web-content h3 {
  color: var(--whiteColor);
  margin-bottom: 18px;
  font-size: 40px;
}
.web-content h4 {
  color: var(--whiteColor);
  margin-bottom: 18px;
  font-size: 36px;
}
.web-content h5 {
  color: var(--whiteColor);
  margin-bottom: 18px;
  font-size: 32px;
}
.web-content h6 {
  color: var(--whiteColor);
  margin-bottom: 18px;
  font-size: 28px;
}
.web-content p {
  color: var(--whiteColor);
  max-width: 600px;
}
.web-content .features-list {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  color: var(--whiteColor);
  margin-bottom: 0;
  margin-top: -5px;
  margin-left: calc(var(--bs-gutter-x) * -0.5);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
}
.web-content .features-list li {
  flex: 0 0 auto;
  width: 50%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}
.web-content .features-list li span {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  position: relative;
  margin-top: 20px;
  display: block;
  z-index: 1;
  padding-top: 12px;
  padding-left: 55px;
  padding-right: 15px;
  padding-bottom: 12px;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.web-content .features-list li span i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: var(--whiteColor);
  color: var(--mainColor);
  position: absolute;
  margin-top: -2px;
  left: 15px;
  top: 50%;
}
.web-content .features-list li span::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  content: "";
  visibility: hidden;
  position: absolute;
  border-radius: 5px;
  transition: var(--transition);
  background: linear-gradient(to left, var(--gradOne), var(--gradTwo), var(--gradThree), var(--gradFour), var(--gradFive));
}
.web-content .features-list li span:hover::before {
  opacity: 1;
  visibility: visible;
}

.web-image {
  position: relative;
  padding-left: 15px;
  text-align: center;
}
.web-image::before {
  animation: moveleftbounce 5s linear infinite;
  position: absolute;
  width: 121px;
  height: 67px;
  content: "";
  right: 65px;
  top: 50px;
  background-image: url(../image/shape2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.web-image::after {
  animation: moveleftbounce 5s linear infinite;
  position: absolute;
  width: 160px;
  height: 63px;
  bottom: 45px;
  content: "";
  left: 55px;
  background-image: url(../image/shape7.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*================================================
Resources Area CSS
=================================================*/
.resources-area {
  position: relative;
  z-index: 1;
}
.resources-area .shape4 {
  bottom: 7%;
  left: auto;
  right: 7%;
}
.resources-area.bg-color::before {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  height: 50%;
  position: absolute;
  background-color: #F5F8FF;
}
.resources-area .pagination-area {
  margin-top: 20px;
}

.single-resources-box {
  margin-bottom: 25px;
}
.single-resources-box .image {
  border-radius: 7px;
  overflow: hidden;
}
.single-resources-box .image img {
  border-radius: 7px;
  transition: var(--transition);
}
.single-resources-box .content {
  margin-top: 20px;
}
.single-resources-box .content .category {
  margin-bottom: 17px;
  display: inline-block;
}
.single-resources-box .content .category a {
  background-color: rgba(237, 29, 97, 0.12);
  color: var(--mainColor);
  border-radius: 30px;
  padding: 4px 25px;
}
.single-resources-box .content .category a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.single-resources-box .content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.single-resources-box .content .link-btn {
  color: var(--mainColor);
  text-decoration: underline;
  display: inline-block;
  padding-right: 13px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.single-resources-box .content .link-btn:hover {
  color: var(--blackColor);
}
.single-resources-box .content .link-btn i {
  top: 50%;
  right: -2px;
  font-size: 13px;
  position: absolute;
  transform: translateY(-50%);
}
.single-resources-box:hover .image img {
  transform: scale(1.05);
}

.single-resources-item {
  border-radius: 7px;
  margin-bottom: 25px;
  background-color: #f8f8f8;
  transition: var(--transition);
}
.single-resources-item .image {
  border-radius: 7px;
  overflow: hidden;
}
.single-resources-item .image img {
  border-radius: 7px;
  transition: var(--transition);
}
.single-resources-item .content {
  padding: 30px;
}
.single-resources-item .content .category {
  margin-bottom: 17px;
  display: inline-block;
}
.single-resources-item .content .category a {
  color: var(--mainColor);
  background-color: rgba(237, 29, 97, 0.12);
  border-radius: 30px;
  padding: 4px 25px;
}
.single-resources-item .content .category a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.single-resources-item .content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.single-resources-item .content .link-btn {
  color: var(--mainColor);
  text-decoration: underline;
  display: inline-block;
  padding-right: 13px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.single-resources-item .content .link-btn:hover {
  color: var(--blackColor);
}
.single-resources-item .content .link-btn i {
  top: 50%;
  right: -2px;
  font-size: 13px;
  position: absolute;
  transform: translateY(-50%);
}
.single-resources-item:hover .image img {
  transform: scale(1.05);
}

.resources-box {
  margin-bottom: 25px;
}
.resources-box .image {
  border-radius: 7px;
  overflow: hidden;
}
.resources-box .image img {
  border-radius: 7px;
  transition: var(--transition);
}
.resources-box .content {
  padding: 30px;
  position: relative;
  border-radius: 7px;
  background-color: var(--whiteColor);
  box-shadow: 0 25px 50px 5px rgba(0, 0, 0, 0.1019607843);
  margin-top: -50px;
  margin-left: 20px;
  margin-right: 20px;
}
.resources-box .content .category {
  margin-bottom: 17px;
  display: inline-block;
}
.resources-box .content .category a {
  background-color: #f4f4f4;
  color: var(--mainColor);
  border-radius: 30px;
  padding: 4px 25px;
}
.resources-box .content .category a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.resources-box .content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.resources-box .content .link-btn {
  color: var(--secondaryColor);
  text-decoration: underline;
  display: inline-block;
  padding-right: 13px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.resources-box .content .link-btn:hover {
  color: var(--mainColor);
}
.resources-box .content .link-btn i {
  top: 50%;
  right: -2px;
  font-size: 13px;
  position: absolute;
  transform: translateY(-50%);
}
.resources-box:hover .image img {
  transform: scale(1.05);
}

.shape7 {
  position: absolute;
  z-index: -1;
  right: 4%;
  top: 25%;
}
.shape7 img {
  animation: movescale 3s linear infinite;
}

.resources-slides.owl-theme .owl-item .single-resources-item {
  background-color: transparent;
  transform: scale(0.95);
}
.resources-slides.owl-theme .owl-item.active.center .single-resources-item {
  background-color: var(--whiteColor);
  transform: scale(1);
}
.resources-slides.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
  margin-bottom: -5px;
}
.resources-slides.owl-theme .owl-dots .owl-dot span {
  width: 17px;
  height: 17px;
  margin: 0 3px;
  border-radius: 50%;
  border: 1px solid #AAAAAA;
  background: var(--whiteColor);
  transition: var(--transition);
}
.resources-slides.owl-theme .owl-dots .owl-dot:hover span, .resources-slides.owl-theme .owl-dots .owl-dot.active span {
  border-color: var(--mainColor);
  background-color: var(--mainColor);
}

/*================================================
Expert Support Area CSS
=================================================*/
.expert-suuport-area {
  position: relative;
  z-index: 1;
}
.expert-suuport-area .shape6 {
  top: 30%;
  left: 4%;
}
.expert-suuport-area .shape8 {
  right: 6%;
  top: 70%;
}

.expert-support-tabs {
  position: relative;
  z-index: 1;
}
.expert-support-tabs .nav-tabs {
  justify-content: center;
  border-bottom: none;
}
.expert-support-tabs .nav-tabs .nav-item {
  margin-left: 4px;
  margin-right: 4px;
}
.expert-support-tabs .nav-tabs .nav-item .nav-link {
  margin-bottom: 0;
  color: #808292;
  position: relative;
  border: 0 !important;
  background-color: #F5F5F5;
  border-radius: 5px !important;
  transition: var(--transition);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
  padding-top: 10px;
  padding-left: 25px;
  padding-right: 60px;
  padding-bottom: 10px;
}
.expert-support-tabs .nav-tabs .nav-item .nav-link i {
  top: 50%;
  right: 25px;
  position: absolute;
  transform: translateY(-50%);
  transition: var(--transition);
}
.expert-support-tabs .nav-tabs .nav-item .nav-link:hover, .expert-support-tabs .nav-tabs .nav-item .nav-link.active {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.expert-support-tabs .nav-tabs .nav-item .nav-link:hover i, .expert-support-tabs .nav-tabs .nav-item .nav-link.active i {
  color: var(--whiteColor);
}
.expert-support-tabs .nav-tabs .nav-item .nav-link.active i {
  transform: translateY(-50%) rotate(90deg);
  color: var(--whiteColor);
}
.expert-support-tabs::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  margin-top: 23px;
  position: absolute;
  border-radius: 7px;
  border: 1px dashed var(--mainColor);
}
.expert-support-tabs .tab-content {
  position: relative;
  padding-top: 50px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 50px;
}
.expert-support-tabs .tab-content .shape {
  bottom: 18%;
  right: 41.5%;
  position: absolute;
}
.expert-support-tabs .tab-content .shape img {
  animation: movebounce 5s linear infinite;
}
.expert-support-tabs .content {
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
}
.expert-support-tabs .content h3 {
  font-size: 22px;
  margin-bottom: 18px;
}
.expert-support-tabs .content .default-btn {
  margin-top: 10px;
}
.expert-support-tabs .content .features-list {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  color: var(--blackColor);
  margin-top: -8px;
  margin-bottom: 20px;
  margin-left: calc(var(--bs-gutter-x) * -0.5);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
}
.expert-support-tabs .content .features-list li {
  flex: 0 0 auto;
  width: 50%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}
.expert-support-tabs .content .features-list li span {
  position: relative;
  padding-left: 37px;
  margin-top: 15px;
  display: block;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.expert-support-tabs .content .features-list li span i {
  left: 0;
  top: 50%;
  width: 25px;
  height: 25px;
  font-size: 15px;
  line-height: 25px;
  text-align: center;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: rgba(237, 29, 91, 0.12);
  color: var(--mainColor);
  position: absolute;
  margin-top: -1px;
}
.expert-support-tabs .image {
  margin: 8px;
  height: 100%;
  margin-left: 30px;
  border-radius: 7px;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.expert-support-tabs .image img {
  border-radius: 7px;
  display: none;
}
.expert-support-tabs .image.bg1 {
  background-image: url(https://themes.envytheme.com/cyarb/wp-content/themes/cyarb/assets/img/tabs/tabs1.jpg);
}
.expert-support-tabs .image.bg2 {
  background-image: url(https://themes.envytheme.com/cyarb/wp-content/themes/cyarb/assets/img/tabs/tabs2.jpg);
}
.expert-support-tabs .image.bg3 {
  background-image: url(https://themes.envytheme.com/cyarb/wp-content/themes/cyarb/assets/img/tabs/tabs3.jpg);
}
.expert-support-tabs .image.bg4 {
  background-image: url(https://themes.envytheme.com/cyarb/wp-content/themes/cyarb/assets/img/tabs/tabs4.jpg);
}
.expert-support-tabs .image.bg5 {
  background-image: url(https://themes.envytheme.com/cyarb/wp-content/themes/cyarb/assets/img/tabs/tabs5.jpg);
}
.expert-support-tabs .image::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  margin: -8px;
  border-radius: 7px;
  position: absolute;
  border: 1px solid #eeeeee;
}

/*================================================
Feedback Area CSS
=================================================*/
.feedback-area {
  position: relative;
  z-index: 1;
}
.feedback-area .shape3 {
  bottom: 0;
}
.feedback-area.bg-image {
  background-image: url(https://themes.envytheme.com/cyarb/wp-content/themes/cyarb/assets/img/feedback-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.feedback-area.bg-image .section-title h2 {
  color: var(--whiteColor);
}
.feedback-area.bg-image .section-title p {
  color: var(--whiteColor);
}
.feedback-area.bg-image::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  opacity: 0.7;
  position: absolute;
  background-color: #000000;
}

.single-feedback-box {
  z-index: 1;
  padding: 40px;
  position: relative;
  border-radius: 5px;
  margin-bottom: 25px;
  border: 1px solid #f5f5f5;
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.single-feedback-box p {
  font-size: 15px;
}
.single-feedback-box .client-info {
  margin-top: 25px;
}
.single-feedback-box .client-info img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
}
.single-feedback-box .client-info .title {
  margin-left: 20px;
}
.single-feedback-box .client-info .title h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.single-feedback-box .client-info .title h3 span {
  color: var(--secondaryColor);
  font-size: 16px;
  font-weight: normal;
}
.single-feedback-box .client-info .title .rating {
  font-size: 16px;
  color: #eba400;
}
.single-feedback-box:hover {
  border-color: var(--mainColor);
}
.single-feedback-box.bg-color {
  border: 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.single-feedback-box.bg-f9f9f9 {
  background-color: #f9f9f9;
}
.single-feedback-box .quote {
  right: 35px;
  bottom: 30px;
  position: absolute;
  width: auto !important;
  display: inline-block !important;
}

.single-feedback-item {
  z-index: 1;
  padding: 50px;
  position: relative;
  border-radius: 7px;
  margin-bottom: 25px;
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.single-feedback-item p {
  font-size: 19px;
  line-height: 1.7;
}
.single-feedback-item .client-info {
  margin-top: 20px;
}
.single-feedback-item .client-info img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
}
.single-feedback-item .client-info .title {
  margin-left: 20px;
}
.single-feedback-item .client-info .title h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.single-feedback-item .client-info .title h3 span {
  color: var(--secondaryColor);
  font-size: 16px;
  font-weight: normal;
}
.single-feedback-item .client-info .title .rating {
  font-size: 16px;
  color: #eba400;
}
.single-feedback-item .quote {
  z-index: -1;
  right: 50px;
  bottom: 50px;
  position: absolute;
  width: auto !important;
}

.feedback-slides.owl-theme .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  margin: 0 4px;
  border-radius: 50%;
  border: 1px solid #aaaaaa;
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.feedback-slides.owl-theme .owl-dots .owl-dot:hover span, .feedback-slides.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.feedback-slides-two.owl-theme .owl-dots {
  margin-top: 20px !important;
}
.feedback-slides-two.owl-theme .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  margin: 0 4px;
  border-radius: 50%;
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.feedback-slides-two.owl-theme .owl-dots .owl-dot:hover span, .feedback-slides-two.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.shape8 {
  position: absolute;
  z-index: -1;
  right: 2%;
  top: 25%;
}
.shape8 img {
  animation: movescale 3s linear infinite;
}

/*================================================
Security Area CSS
=================================================*/
.security-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.security-area .container-fluid .row {
  margin-left: 0;
  margin-right: 0;
}
.security-area .container-fluid .row .col-lg-8, .security-area .container-fluid .row .col-lg-4 {
  padding-left: 0;
  padding-right: 0;
}

.security-image {
  height: 100%;
  background-image: url(https://themes.envytheme.com/cyarb/wp-content/themes/cyarb/assets/img/security-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.security-image img {
  display: none;
}

.security-content {
  margin-left: -280px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.security-content .content {
  z-index: 1;
  padding: 80px;
  border-radius: 7px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.93);
}
.security-content .content h2 {
  margin-bottom: 12px;
  font-size: 36px;
}
.security-content .content p {
  max-width: 540px;
}
.security-content .content .features-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 0;
}
.security-content .content .features-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 27px;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.security-content .content .features-list li i {
  color: var(--mainColor);
  position: absolute;
  font-size: 20px;
  top: 3px;
  left: 0;
}
.security-content .content .features-list li:last-child {
  margin-bottom: 0;
}
.security-content .content .shape4 {
  bottom: 12%;
  left: auto;
  right: 30%;
}
.security-content .content .shape2 {
  top: 29%;
  left: auto;
  right: 10%;
}

/*================================================
Blog Area CSS
=================================================*/
.blog-area {
  position: relative;
  z-index: 1;
}
.blog-area .shape2 {
  left: 1%;
  top: auto;
  bottom: 2%;
}
.blog-area .shape6 {
  top: 35%;
  right: 1%;
  left: auto;
  max-width: 70px;
}

.single-blog-post {
  margin-bottom: 25px;
  background-color: var(--whiteColor);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.single-blog-post .image {
  position: relative;
  overflow: hidden;
}
.single-blog-post .image img {
  transition: var(--transition);
  width: 100%;
}
.single-blog-post .image::before {
  width: 0;
  top: 50%;
  left: 50%;
  height: 0;
  opacity: 0;
  z-index: 2;
  content: "";
  display: block;
  position: absolute;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.2);
}
.single-blog-post .image::after {
  top: 0;
  left: -75%;
  z-index: 2;
  width: 50%;
  content: "";
  height: 100%;
  display: block;
  position: absolute;
  transform: skewX(-25deg);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
}
.single-blog-post .content {
  padding: 25px;
  position: relative;
}
.single-blog-post .content .meta {
  padding-left: 0;
  margin-bottom: 12px;
  list-style-type: none;
}
.single-blog-post .content .meta li {
  color: var(--secondaryColor);
  display: inline-block;
  position: relative;
  margin-right: 20px;
  padding-left: 20px;
}
.single-blog-post .content .meta li a {
  display: block;
  color: var(--secondaryColor);
}
.single-blog-post .content .meta li a:hover {
  color: var(--mainColor);
}
.single-blog-post .content .meta li i {
  left: 0;
  top: 2px;
  position: absolute;
  color: var(--mainColor);
}
.single-blog-post .content .meta li:last-child {
  margin-right: 0;
}
.single-blog-post .content h3 {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 14px;
}
.single-blog-post .content .link-btn {
  right: 0;
  opacity: 0;
  top: -25px;
  width: 50px;
  height: 50px;
  font-size: 20px;
  visibility: hidden;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  display: inline-block;
  color: var(--whiteColor);
  background: linear-gradient(to bottom, var(--gradOne), var(--gradTwo), var(--gradThree), var(--gradFour), var(--gradFive));
}
.single-blog-post .content .link-btn i {
  left: 0;
  right: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.single-blog-post:hover .image img {
  transform: scale(1.1);
}
.single-blog-post:hover .image::before {
  animation: circle 0.75s;
}
.single-blog-post:hover .image::after {
  animation: shine 0.75s;
}
.single-blog-post:hover .content .link-btn {
  visibility: visible;
  right: 25px;
  opacity: 1;
}

@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 200%;
    height: 200%;
    visibility: hidden;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-area {
  border-top: 1px solid #eeeeee;
}
.blog-details-area #comments .comment-list .comment-body .reply {
  margin-top: 0;
}

.blog-details-desc .post-thumb {
  margin-bottom: 25px;
}
.blog-details-desc h6 {
  margin-bottom: 18px;
}
.blog-details-desc h6:not(:first-child) {
  margin-top: 25px;
}
.blog-details-desc h5 {
  margin-bottom: 18px;
}
.blog-details-desc h5:not(:first-child) {
  margin-top: 25px;
}
.blog-details-desc h4 {
  margin-bottom: 18px;
}
.blog-details-desc h4:not(:first-child) {
  margin-top: 25px;
}
.blog-details-desc h3 {
  margin-bottom: 18px;
}
.blog-details-desc h3:not(:first-child) {
  margin-top: 25px;
}
.blog-details-desc h2 {
  margin-bottom: 18px;
}
.blog-details-desc h2:not(:first-child) {
  margin-top: 25px;
}
.blog-details-desc h1 {
  margin-bottom: 18px;
}
.blog-details-desc h1:not(:first-child) {
  margin-top: 25px;
}
.blog-details-desc .post-meta {
  margin-bottom: -10px;
}
.blog-details-desc .post-meta ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 0;
}
.blog-details-desc .post-meta ul li {
  color: var(--secondaryColor);
  display: inline-block;
  position: relative;
  margin-right: 20px;
  padding-left: 20px;
  margin-right: 20px;
  margin-bottom: 0;
}
.blog-details-desc .post-meta ul li a {
  display: block;
  color: var(--secondaryColor);
}
.blog-details-desc .post-meta ul li a:hover {
  color: var(--mainColor);
}
.blog-details-desc .post-meta ul li i {
  left: 0;
  top: 2px;
  position: absolute;
  color: var(--mainColor);
}
.blog-details-desc .post-meta ul li:last-child {
  margin-right: 0;
}
.blog-details-desc p a {
  color: var(--mainColor);
}
.blog-details-desc p a:hover {
  text-decoration: underline;
}
.blog-details-desc p strong {
  color: var(--blackColor);
}
.blog-details-desc ul, .blog-details-desc ol {
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog-details-desc ul li, .blog-details-desc ol li {
  color: var(--secondaryColor);
  margin-bottom: 15px;
}
.blog-details-desc ul li:last-child, .blog-details-desc ol li:last-child {
  margin-bottom: 0;
}
.blog-details-desc .wp-block-gallery.columns-3 {
  list-style-type: none;
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog-details-desc .wp-block-gallery.columns-3 li {
  margin-bottom: 20px;
}
.blog-details-desc .wp-block-gallery.columns-3 li:last-child {
  margin-bottom: 0;
}
.blog-details-desc .wp-block-gallery.columns-3 li figure {
  margin-bottom: 0;
}
.blog-details-desc .post-footer {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 30px;
  align-items: center;
  border-top: 1px solid #eeeeee;
}
.blog-details-desc .post-footer .post-tags {
  flex: 0 0 50%;
  max-width: 50%;
}
.blog-details-desc .post-footer .post-tags .sub {
  text-transform: uppercase;
  display: inline-block;
  font-weight: 500;
}
.blog-details-desc .post-footer .post-tags ul {
  display: inline-block;
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.blog-details-desc .post-footer .post-tags ul li {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 1px;
}
.blog-details-desc .post-footer .post-tags ul li a {
  color: var(--secondaryColor);
}
.blog-details-desc .post-footer .post-tags ul li a:hover {
  color: var(--mainColor);
}
.blog-details-desc .post-footer .post-tags ul li:not(:last-child)::after {
  content: ",";
}
.blog-details-desc .post-footer .article-share {
  flex: 0 0 50%;
  max-width: 50%;
  text-align: end;
}
.blog-details-desc .post-footer .article-share .social {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 0;
}
.blog-details-desc .post-footer .article-share .social li {
  margin-bottom: 0;
  display: inline-block;
  color: var(--blackColor);
}
.blog-details-desc .post-footer .article-share .social li span {
  display: inline-block;
  position: relative;
  margin-right: 3px;
  font-weight: 500;
}
.blog-details-desc .post-footer .article-share .social li a {
  width: 35px;
  height: 35px;
  display: block;
  line-height: 35px;
  border-radius: 50%;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  border: 1px solid var(--mainColor);
  text-align: center;
  margin-left: 2px;
}
.blog-details-desc .post-footer .article-share .social li a:hover {
  color: var(--mainColor);
  background-color: transparent;
}
.blog-details-desc .post-footer .article-share .social li a.facebook {
  background-color: #3b5998;
  color: var(--whiteColor);
  border-color: #3b5998;
}
.blog-details-desc .post-footer .article-share .social li a.facebook:hover {
  color: #3b5998;
  background-color: transparent;
}
.blog-details-desc .post-footer .article-share .social li a.twitter {
  background-color: #1da1f2;
  color: var(--whiteColor);
  border-color: #1da1f2;
}
.blog-details-desc .post-footer .article-share .social li a.twitter:hover {
  color: #1da1f2;
  background-color: transparent;
}
.blog-details-desc .post-footer .article-share .social li a.linkedin {
  background-color: #007bb5;
  color: var(--whiteColor);
  border-color: #007bb5;
}
.blog-details-desc .post-footer .article-share .social li a.linkedin:hover {
  color: #007bb5;
  background-color: transparent;
}
.blog-details-desc .post-footer .article-share .social li a.instagram {
  background-color: #c13584;
  color: var(--whiteColor);
  border-color: #c13584;
}
.blog-details-desc .post-footer .article-share .social li a.instagram:hover {
  color: #c13584;
  background-color: transparent;
}

blockquote, .blockquote {
  background-color: #f9f9f9;
  padding: 25px !important;
  margin-bottom: 20px;
  margin-top: 20px;
}
blockquote p, .blockquote p {
  line-height: 1.7;
  margin-bottom: 0;
  color: var(--blackColor);
  font-weight: 600;
  font-style: italic;
  font-size: 16px !important;
}
blockquote cite, .blockquote cite {
  display: block;
  font-weight: 600;
  margin-top: 10px;
  color: var(--mainColor);
}

.comments-area {
  margin-top: 30px;
  padding-top: 30px;
}
.comments-area .comments-title {
  font-size: 22px;
  margin-bottom: 30px;
  line-height: initial;
}
.comments-area ol, .comments-area ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.comments-area .comment-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.comments-area .children {
  margin-left: 20px;
}
.comments-area .comment-body {
  border-bottom: 1px dashed #eeeeee;
  color: var(--blackColor);
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}
.comments-area .comment-body .reply {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 0;
}
.comments-area .comment-body .reply a {
  border: 1px dashed #ded9d9;
  color: var(--secondaryColor);
  display: inline-block;
  border-radius: 30px;
  padding: 4px 15px;
  font-size: 13px;
  font-weight: 500;
}
.comments-area .comment-body .reply a:hover {
  color: var(--whiteColor);
  border-color: var(--mainColor);
  background-color: var(--mainColor);
}
.comments-area .comment-author {
  z-index: 2;
  font-size: 16px;
  margin-bottom: 6px;
  position: relative;
}
.comments-area .comment-author .avatar {
  top: 4px;
  width: 80px;
  left: -98px;
  position: absolute;
}
.comments-area .comment-author .says {
  display: none;
}
.comments-area .comment-author .fn {
  font-weight: 500;
}
.comments-area .comment-metadata {
  font-size: 14px;
  margin-bottom: 0.7em;
  color: var(--secondaryColor);
}
.comments-area .comment-respond .comment-reply-title {
  margin-bottom: 0;
  font-size: 22px;
  margin-top: -3px;
}
.comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
  display: inline-block;
}
.comments-area .comment-respond .comment-form {
  overflow: hidden;
}
.comments-area .comment-respond .comment-notes {
  font-style: italic;
  margin-top: 10px;
}
.comments-area .comment-respond .comment-notes .required {
  color: red;
}
.comments-area .comment-respond .comment-form-comment {
  float: left;
  width: 100%;
}
.comments-area .comment-respond input[type=date], .comments-area .comment-respond input[type=time], .comments-area .comment-respond input[type=datetime-local], .comments-area .comment-respond input[type=week], .comments-area .comment-respond input[type=month], .comments-area .comment-respond input[type=text], .comments-area .comment-respond input[type=email], .comments-area .comment-respond input[type=url], .comments-area .comment-respond input[type=password], .comments-area .comment-respond input[type=search], .comments-area .comment-respond input[type=tel], .comments-area .comment-respond input[type=number], .comments-area .comment-respond textarea {
  outline: 0;
  width: 100%;
  border: none;
  height: 50px;
  display: block;
  border-radius: 3px;
  padding: 0 15px 0 15px;
  color: var(--blackColor);
  font-size: var(--fontSize);
  background-color: #f9f9f9;
}
.comments-area .comment-respond input[type=date]::-moz-placeholder, .comments-area .comment-respond input[type=time]::-moz-placeholder, .comments-area .comment-respond input[type=datetime-local]::-moz-placeholder, .comments-area .comment-respond input[type=week]::-moz-placeholder, .comments-area .comment-respond input[type=month]::-moz-placeholder, .comments-area .comment-respond input[type=text]::-moz-placeholder, .comments-area .comment-respond input[type=email]::-moz-placeholder, .comments-area .comment-respond input[type=url]::-moz-placeholder, .comments-area .comment-respond input[type=password]::-moz-placeholder, .comments-area .comment-respond input[type=search]::-moz-placeholder, .comments-area .comment-respond input[type=tel]::-moz-placeholder, .comments-area .comment-respond input[type=number]::-moz-placeholder, .comments-area .comment-respond textarea::-moz-placeholder {
  color: var(--secondaryColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.comments-area .comment-respond input[type=date]::placeholder, .comments-area .comment-respond input[type=time]::placeholder, .comments-area .comment-respond input[type=datetime-local]::placeholder, .comments-area .comment-respond input[type=week]::placeholder, .comments-area .comment-respond input[type=month]::placeholder, .comments-area .comment-respond input[type=text]::placeholder, .comments-area .comment-respond input[type=email]::placeholder, .comments-area .comment-respond input[type=url]::placeholder, .comments-area .comment-respond input[type=password]::placeholder, .comments-area .comment-respond input[type=search]::placeholder, .comments-area .comment-respond input[type=tel]::placeholder, .comments-area .comment-respond input[type=number]::placeholder, .comments-area .comment-respond textarea::placeholder {
  color: var(--secondaryColor);
  transition: var(--transition);
}
.comments-area .comment-respond input[type=date]:focus::-moz-placeholder, .comments-area .comment-respond input[type=time]:focus::-moz-placeholder, .comments-area .comment-respond input[type=datetime-local]:focus::-moz-placeholder, .comments-area .comment-respond input[type=week]:focus::-moz-placeholder, .comments-area .comment-respond input[type=month]:focus::-moz-placeholder, .comments-area .comment-respond input[type=text]:focus::-moz-placeholder, .comments-area .comment-respond input[type=email]:focus::-moz-placeholder, .comments-area .comment-respond input[type=url]:focus::-moz-placeholder, .comments-area .comment-respond input[type=password]:focus::-moz-placeholder, .comments-area .comment-respond input[type=search]:focus::-moz-placeholder, .comments-area .comment-respond input[type=tel]:focus::-moz-placeholder, .comments-area .comment-respond input[type=number]:focus::-moz-placeholder, .comments-area .comment-respond textarea:focus::-moz-placeholder {
  color: transparent;
}
.comments-area .comment-respond input[type=date]:focus::placeholder, .comments-area .comment-respond input[type=time]:focus::placeholder, .comments-area .comment-respond input[type=datetime-local]:focus::placeholder, .comments-area .comment-respond input[type=week]:focus::placeholder, .comments-area .comment-respond input[type=month]:focus::placeholder, .comments-area .comment-respond input[type=text]:focus::placeholder, .comments-area .comment-respond input[type=email]:focus::placeholder, .comments-area .comment-respond input[type=url]:focus::placeholder, .comments-area .comment-respond input[type=password]:focus::placeholder, .comments-area .comment-respond input[type=search]:focus::placeholder, .comments-area .comment-respond input[type=tel]:focus::placeholder, .comments-area .comment-respond input[type=number]:focus::placeholder, .comments-area .comment-respond textarea:focus::placeholder {
  color: transparent;
}
.comments-area .comment-respond textarea {
  height: auto !important;
  padding-top: 15px;
}
.comments-area .comment-respond .comment-form-author {
  float: left;
  width: 50%;
  padding-right: 10px;
}
.comments-area .comment-respond .comment-form-email {
  width: 50%;
  float: left;
  padding-left: 12px;
}
.comments-area .comment-respond .comment-form-url {
  float: left;
  width: 100%;
}
.comments-area .comment-respond .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-top: 15px;
}
.comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  top: 5px;
  left: 0;
}
.comments-area .comment-respond .comment-form-cookies-consent label {
  margin: 0;
  display: inline-block;
  color: var(--secondaryColor);
  font-weight: normal;
  font-size: var(--fontSize);
}
.comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
  margin-top: 20px;
}
.comments-area .comment-respond .form-submit input {
  border: none;
  cursor: pointer;
  padding: 10px 30px;
  display: inline-block;
  color: var(--whiteColor);
  transition: var(--transition);
  background: var(--mainColor);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}
.comments-area .comment-respond .form-submit input:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

/*================================================
CTA Area CSS
=================================================*/
.cta-inner {
  z-index: 1;
  padding: 100px;
  text-align: center;
  border-radius: 7px;
  position: relative;
  background-color: var(--mainColor);
  background-image: url(../image/cta-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cta-inner h1 {
  font-size: 40px;
  max-width: 600px;
  color: var(--whiteColor);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.cta-inner h2 {
  font-size: 36px;
  max-width: 600px;
  color: var(--whiteColor);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.cta-inner h3 {
  font-size: 32px;
  max-width: 600px;
  color: var(--whiteColor);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.cta-inner h4 {
  font-size: 28px;
  max-width: 600px;
  color: var(--whiteColor);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.cta-inner h5 {
  font-size: 24px;
  max-width: 600px;
  color: var(--whiteColor);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.cta-inner h6 {
  font-size: 20px;
  max-width: 600px;
  color: var(--whiteColor);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.cta-inner .default-btn {
  background: var(--whiteColor);
  color: var(--mainColor);
}
.cta-inner .default-btn:hover {
  background-color: var(--whiteColor);
  color: var(--whiteColor);
}

.shape9 {
  position: absolute;
  z-index: -1;
  left: 7%;
  top: 25%;
}
.shape9 img {
  animation: movescale 8s linear infinite;
}

.shape10 {
  position: absolute;
  z-index: -1;
  right: 10px;
  bottom: 10px;
}
.shape10 img {
  animation: movescale 8s linear infinite;
}

/*================================================
Page Title Area CSS
=================================================*/
.page-title-area {
  background-color: #f9f9f9;
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 100px;
}
.page-title-area .shape4 {
  bottom: 12%;
  left: 10%;
}
.page-title-area .shape1 {
  top: 62%;
  left: auto;
  right: 30%;
}
.page-title-area .shape2 {
  left: 25%;
  top: 12%;
}

.page-title-content {
  text-align: center;
  text-transform: capitalize;
}
.page-title-content h1 {
  font-size: 45px;
  margin-bottom: 0;
}
.page-title-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 15px;
}
.page-title-content ul li {
  position: relative;
  display: inline-block;
  color: var(--secondaryColor);
  margin-left: 12px;
  margin-right: 12px;
  font-size: 17px;
  font-weight: 400;
  font-family: var(--headingFontFamily);
}
.page-title-content ul li a {
  color: var(--secondaryColor);
}
.page-title-content ul li a:hover {
  color: var(--mainColor);
}
.page-title-content ul li::before {
  top: 6px;
  width: 1px;
  content: "";
  height: 9px;
  right: -14px;
  position: absolute;
  transform: rotate(-45deg);
  transition: var(--transition);
  background-color: var(--secondaryColor);
}
.page-title-content ul li::after {
  top: 12px;
  margin: 0;
  border: 0;
  width: 1px;
  content: "";
  height: 9px;
  right: -14px;
  position: absolute;
  transform: rotate(45deg);
  transition: var(--transition);
  background-color: var(--secondaryColor);
}
.page-title-content ul li:last-child::after, .page-title-content ul li:last-child::before {
  display: none;
}
.page-title-content .sub-title {
  background-color: #ffeaf1;
  color: var(--mainColor);
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 5px;
  padding: 4px 25px;
}
.page-title-content .contact-form {
  padding: 40px;
  max-width: 1000px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}
.page-title-content .contact-form .form-group {
  margin-bottom: 30px;
  position: relative;
  padding-top: 12px;
}
.page-title-content .contact-form .form-group label {
  margin-bottom: 0;
  color: var(--blackColor);
  left: 10px;
  border-radius: 5px;
  top: 0;
  background-color: var(--whiteColor);
  position: absolute;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 15px;
  font-weight: 600;
}
.page-title-content .contact-form .form-group .form-control {
  height: 55px;
  border-radius: 5px;
  padding: 20px 20px 15px;
  background-color: var(--whiteColor) !important;
  border: 1px solid rgba(107, 124, 147, 0.15) !important;
  box-shadow: 0 2px 4px rgba(107, 124, 147, 0.06) !important;
}
.page-title-content .contact-form .form-group .form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.page-title-content .contact-form .form-group .form-control::placeholder {
  color: rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}
.page-title-content .contact-form .form-group .form-control:focus {
  border-color: var(--blackColor) !important;
}
.page-title-content .contact-form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.page-title-content .contact-form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.page-title-content .contact-form .form-group .form-control:hover {
  border-color: var(--mainColor) !important;
}
.page-title-content .contact-form .form-group .form-select {
  height: 55px;
  cursor: pointer;
  border-radius: 5px;
  padding: 18px 20px 15px;
  color: var(--secondaryColor);
  transition: var(--transition);
  background-color: var(--whiteColor);
  border: 1px solid rgba(107, 124, 147, 0.15);
  box-shadow: 0 2px 4px rgba(107, 124, 147, 0.06);
  font-family: var(--headingFontFamily);
  font-weight: 500;
  font-size: 15px;
}
.page-title-content .contact-form .form-group .form-select:focus {
  border-color: var(--blackColor) !important;
}
.page-title-content .contact-form .form-group .form-select:hover {
  border-color: var(--mainColor) !important;
}
.page-title-content .contact-form .default-btn {
  margin-top: 0;
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-sidebar {
  z-index: 1;
  position: relative;
  border-radius: 5px;
  background-color: var(--whiteColor);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.faq-sidebar ul {
  padding: 30px;
  margin-bottom: 0;
  list-style-type: none;
  font-family: var(--headingFontFamily);
}
.faq-sidebar ul li {
  margin-bottom: 18px;
  padding-bottom: 18px;
  color: var(--whiteColor);
  border-bottom: 1px solid #eeeeee;
}
.faq-sidebar ul li a {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
}
.faq-sidebar ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-accordion {
  background-color: var(--whiteColor);
  border: 1px solid #eeeeee;
  border-bottom: none;
}
.faq-accordion .accordion-item {
  background-color: transparent;
  border-radius: 0;
  border: none;
}
.faq-accordion .accordion-item .accordion-button {
  display: block;
  text-align: start;
  box-shadow: unset;
  padding: 20px 25px;
  position: relative;
  color: var(--blackColor);
  background-color: transparent;
  border-bottom: 1px solid #eeeeee;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.faq-accordion .accordion-item .accordion-button i {
  transform: translateY(-50%) rotate(180deg);
  transition: var(--transition);
  position: absolute;
  right: 25px;
  top: 50%;
}
.faq-accordion .accordion-item .accordion-button.collapsed i {
  transform: translateY(-50%) rotate(0);
}
.faq-accordion .accordion-item .accordion-button::after {
  display: none;
}
.faq-accordion .accordion-item .accordion-body {
  padding: 20px 25px;
  border-bottom: 1px solid #eeeeee;
}
.faq-accordion .accordion-item .accordion-body p strong {
  color: var(--blackColor);
}
.faq-accordion .accordion-item .accordion-body p a {
  color: var(--mainColor);
}
.faq-accordion .accordion-item .accordion-body p a:hover {
  text-decoration: underline;
}
.faq-accordion .accordion-item .accordion-body ul {
  margin-bottom: 15px;
}
.faq-accordion .accordion-item .accordion-body ul li {
  margin-bottom: 12px;
  color: var(--secondaryColor);
}
.faq-accordion .accordion-item .accordion-body ul li strong {
  color: var(--blackColor);
}
.faq-accordion .accordion-item .accordion-body ul li a {
  color: var(--mainColor);
}
.faq-accordion .accordion-item .accordion-body ul li a:hover {
  text-decoration: underline;
}
.faq-accordion .accordion-item .accordion-body ul li:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion-item .accordion-body ul:last-child {
  margin-bottom: 0;
}

/*================================================
Case Studies Details Area CSS
=================================================*/
.case-studies-details-area {
  border-top: 1px solid #eeeeee;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background: linear-gradient(to bottom, #fbffff, #f2f5f5, #f6f9f9, #d1f8fb, #c6f7fc) !important;
}

.case-studies-details-header .content {
  padding-left: 15px;
}
.case-studies-details-header .content h1 {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 36px;
}
.case-studies-details-header .content h2 {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 32px;
}
.case-studies-details-header .content h3 {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 28px;
}
.case-studies-details-header .content h4 {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 24px;
}
.case-studies-details-header .content h5 {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 20px;
}
.case-studies-details-header .content h6 {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 16px;
}
.case-studies-details-header .content p {
  max-width: 530px;
}
.case-studies-details-header .content .meta {
  border-radius: 10px;
  list-style-type: none;
  background-color: var(--whiteColor);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 0;
  margin-top: 25px;
}
.case-studies-details-header .content .meta li {
  border-right: 1px solid #eeeeee;
  color: var(--secondaryColor);
  display: inline-block;
  margin-right: 25px;
  position: relative;
  padding-top: 20px;
  padding-left: 45px;
  padding-right: 30px;
  padding-bottom: 20px;
}
.case-studies-details-header .content .meta li span {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: 2px;
  color: var(--mainColor);
}
.case-studies-details-header .content .meta li a {
  color: var(--secondaryColor);
}
.case-studies-details-header .content .meta li a:hover {
  color: var(--mainColor);
}
.case-studies-details-header .content .meta li i {
  position: absolute;
  font-size: 30px;
  line-height: 1;
  top: 22px;
  left: 0;
}
.case-studies-details-header .content .meta li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.case-studies-details-header .image {
  text-align: center;
}

.case-studies-details-desc {
  max-width: 1100px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}
.case-studies-details-desc .article-content {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px 0px;
  background-color: var(--whiteColor);
  border-radius: 10px;
  padding: 50px;
}
.case-studies-details-desc .article-content p {
  margin-bottom: 20px;
}
.case-studies-details-desc .article-content p a {
  text-decoration: underline;
}
.case-studies-details-desc .article-content p strong {
  font-weight: 600;
  color: var(--blackColor);
}
.case-studies-details-desc .article-content p:last-child {
  margin-bottom: 0;
}
.case-studies-details-desc .article-content h3 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 15px;
}
.case-studies-details-desc .article-content h3:first-child {
  margin-top: 0;
}
.case-studies-details-desc .article-content ul, .case-studies-details-desc .article-content ol {
  margin-bottom: 30px;
}
.case-studies-details-desc .article-content ul li, .case-studies-details-desc .article-content ol li {
  margin-bottom: 12px;
  color: var(--secondaryColor);
}
.case-studies-details-desc .article-content ul li a, .case-studies-details-desc .article-content ol li a {
  text-decoration: underline;
}
.case-studies-details-desc .article-content ul li strong, .case-studies-details-desc .article-content ol li strong {
  font-weight: 600;
  color: var(--blackColor);
}
.case-studies-details-desc .article-content ul li:last-child, .case-studies-details-desc .article-content ol li:last-child {
  margin-bottom: 0;
}
.case-studies-details-desc .article-content ul:last-child, .case-studies-details-desc .article-content ol:last-child {
  margin-bottom: 0;
}
.case-studies-details-desc .article-content .article-tags {
  margin-top: 30px;
}
.case-studies-details-desc .article-content .article-tags a {
  margin-right: 8px;
  border-radius: 30px;
  display: inline-block;
  padding: 5px 20px 6px;
  color: var(--blackColor);
  background-color: #f1f1f1;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}
.case-studies-details-desc .article-content .article-tags a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border-radius: 5px;
}
.case-studies-details-desc .article-content .article-tags a:last-child {
  margin-right: 0;
}
.case-studies-details-desc .article-content .wp-block-gallery.columns-3 {
  list-style-type: none;
  padding-left: 0;
  flex-wrap: wrap;
  display: flex;
  margin-bottom: 0;
  margin-top: 20px;
  margin-left: -10px;
  margin-right: -10px;
}
.case-studies-details-desc .article-content .wp-block-gallery.columns-3 li {
  margin-bottom: 20px;
  margin-right: 0;
  flex: 0 0 auto;
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
}
.case-studies-details-desc .article-content .wp-block-gallery.columns-3 li:last-child {
  margin-bottom: 0;
}
.case-studies-details-desc .article-content .wp-block-gallery.columns-3 li figure {
  margin-bottom: 0;
}
.case-studies-details-desc .article-content blockquote, .case-studies-details-desc .article-content .blockquote {
  margin-bottom: 0;
}

/*================================================
Pricing Area CSS
=================================================*/
.single-pricing-box {
  box-shadow: 0 30px 50px rgba(107, 124, 147, 0.15);
  background-color: var(--whiteColor);
  margin-bottom: 25px;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  padding: 30px;
}
.single-pricing-box .pricing-header h3 {
  margin-bottom: 8px;
  font-size: 22px;
}
.single-pricing-box .price {
  margin-top: 30px;
}
.single-pricing-box .price h4 {
  margin-bottom: 10px;
  font-size: 36px;
  line-height: 1;
}
.single-pricing-box .price h4 .pricing-tags {
  display: inline-block;
}
.single-pricing-box .price h4 .pricing-tags span {
  font-size: 36px;
  line-height: 1;
  color: var(--blackColor);
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.single-pricing-box .price h4 span {
  color: var(--blackColor);
  font-size: 15px;
  font-weight: normal;
}
.single-pricing-box .link-btn {
  width: 100%;
  display: block;
  margin-top: 25px;
  border-radius: 5px;
  padding: 13px 30px;
  text-align: center;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  box-shadow: 0 7px 18px 0 rgba(107, 124, 147, 0.25);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}
.single-pricing-box .link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 50px rgba(107, 124, 147, 0.15);
}
.single-pricing-box .features-list {
  margin-top: 35px;
}
.single-pricing-box .features-list h5 {
  font-size: var(--fontSize);
  letter-spacing: 1.5px;
  margin-bottom: 25px;
}
.single-pricing-box .features-list ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.single-pricing-box .features-list ul li {
  color: var(--secondaryColor);
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
}
.single-pricing-box .features-list ul li i {
  position: absolute;
  color: #0568FD;
  font-size: 13px;
  top: 3.5px;
  left: 0;
}
.single-pricing-box .features-list ul li i.lni-close {
  color: red;
}
.single-pricing-box .features-list ul li:last-child {
  margin-bottom: 0;
}
.single-pricing-box .ribbon {
  top: -10px;
  right: -25px;
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}
.single-pricing-box .ribbon span {
  text-transform: uppercase;
  color: var(--whiteColor);
  transform: rotate(45deg);
  background-color: red;
  text-align: center;
  position: absolute;
  font-size: 14px;
  display: block;
  width: 225px;
  left: -25px;
  top: 30px;
  padding-top: 6px;
  padding-bottom: 6px;
}

/*================================================
Terms & Condtions Area CSS
=================================================*/
.terms-conditions-content h6 {
  margin-bottom: 15px;
}
.terms-conditions-content h6:not(:first-child) {
  margin-top: 25px;
}
.terms-conditions-content h5 {
  margin-bottom: 15px;
}
.terms-conditions-content h5:not(:first-child) {
  margin-top: 25px;
}
.terms-conditions-content h4 {
  margin-bottom: 15px;
}
.terms-conditions-content h4:not(:first-child) {
  margin-top: 25px;
}
.terms-conditions-content h3 {
  margin-bottom: 15px;
}
.terms-conditions-content h3:not(:first-child) {
  margin-top: 25px;
}
.terms-conditions-content h2 {
  margin-bottom: 15px;
}
.terms-conditions-content h2:not(:first-child) {
  margin-top: 25px;
}
.terms-conditions-content h1 {
  margin-bottom: 15px;
}
.terms-conditions-content h1:not(:first-child) {
  margin-top: 25px;
}
.terms-conditions-content strong {
  color: var(--blackColor) !important;
}
.terms-conditions-content p a {
  color: var(--mainColor);
}
.terms-conditions-content p a:hover {
  text-decoration: underline;
}
.terms-conditions-content ul li {
  color: var(--secondaryColor);
  margin-bottom: 12px;
}
.terms-conditions-content ul li a {
  color: var(--mainColor);
}
.terms-conditions-content ul li a:hover {
  text-decoration: underline;
}
.terms-conditions-content ul li:last-child {
  margin-bottom: 0;
}
.terms-conditions-content ol li {
  color: var(--secondaryColor);
  margin-bottom: 12px;
}
.terms-conditions-content ol li a {
  color: var(--mainColor);
}
.terms-conditions-content ol li a:hover {
  text-decoration: underline;
}
.terms-conditions-content ol li:last-child {
  margin-bottom: 0;
}

/*================================================
Privacy Policy Area CSS
=================================================*/
.privacy-policy-content h6 {
  margin-bottom: 15px;
}
.privacy-policy-content h6:not(:first-child) {
  margin-top: 25px;
}
.privacy-policy-content h5 {
  margin-bottom: 15px;
}
.privacy-policy-content h5:not(:first-child) {
  margin-top: 25px;
}
.privacy-policy-content h4 {
  margin-bottom: 15px;
}
.privacy-policy-content h4:not(:first-child) {
  margin-top: 25px;
}
.privacy-policy-content h3 {
  margin-bottom: 15px;
}
.privacy-policy-content h3:not(:first-child) {
  margin-top: 25px;
}
.privacy-policy-content h2 {
  margin-bottom: 15px;
}
.privacy-policy-content h2:not(:first-child) {
  margin-top: 25px;
}
.privacy-policy-content h1 {
  margin-bottom: 15px;
}
.privacy-policy-content h1:not(:first-child) {
  margin-top: 25px;
}
.privacy-policy-content strong {
  color: var(--blackColor) !important;
}
.privacy-policy-content p a {
  color: var(--mainColor);
}
.privacy-policy-content p a:hover {
  text-decoration: underline;
}
.privacy-policy-content ul li {
  color: var(--secondaryColor);
  margin-bottom: 12px;
}
.privacy-policy-content ul li a {
  color: var(--mainColor);
}
.privacy-policy-content ul li a:hover {
  text-decoration: underline;
}
.privacy-policy-content ul li:last-child {
  margin-bottom: 0;
}
.privacy-policy-content ol li {
  color: var(--secondaryColor);
  margin-bottom: 12px;
}
.privacy-policy-content ol li a {
  color: var(--mainColor);
}
.privacy-policy-content ol li a:hover {
  text-decoration: underline;
}
.privacy-policy-content ol li:last-child {
  margin-bottom: 0;
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid #eeeeee;
}
.pagination-area .nav-links {
  display: flex;
  align-items: center;
}
.pagination-area .page-numbers {
  width: 45px;
  height: 45px;
  border: none;
  display: block;
  line-height: 45px;
  position: relative;
  text-align: center;
  border-radius: 50%;
  color: var(--paragraphColor);
  transition: var(--transition);
  background: linear-gradient(180deg, #ffffff 0%, #eaeef3 100%);
  box-shadow: 0 5px 15px 0 rgba(107, 124, 147, 0.15), 0 2px 4px 0 rgba(107, 124, 147, 0.2), inset 0 -2px 0 0 #c2cfde;
  font-size: 15px;
  font-weight: 700;
  margin-left: 5px;
  margin-right: 5px;
}
.pagination-area .page-numbers.next {
  margin-left: auto;
}
.pagination-area .page-numbers.previous {
  margin-right: auto;
}
.pagination-area .page-numbers:hover {
  color: var(--mainColor);
}
.pagination-area .page-numbers.current {
  background: var(--whiteColor);
  color: var(--mainColor);
}
.pagination-area .page-numbers:first-child {
  margin-left: 0;
}
.pagination-area .page-numbers:last-child {
  margin-right: 0;
}

/*================================================
Widget Area CSS
=================================================*/
.widget-area {
  padding-left: 15px;
}
.widget-area .widget {
  padding: 25px;
  margin-bottom: 25px;
  background-color: #f9f9f9;
}
.widget-area .widget .widget-title {
  margin-bottom: 25px;
  position: relative;
  font-size: 20px;
  z-index: 1;
}
.widget-area .widget .widget-title::before {
  left: 0;
  right: 0;
  top: 50%;
  content: "";
  height: 1px;
  z-index: -1;
  margin-top: 1px;
  position: absolute;
  transform: translateY(-50%);
  background-color: #eeeeee;
}
.widget-area .widget .widget-title span {
  background-color: #f9f9f9;
  padding-right: 15px;
}
.widget-area .widget:last-child {
  margin-bottom: 0;
}
.widget-area .widget_search form {
  position: relative;
}
.widget-area .widget_search form .search-field {
  width: 100%;
  height: 50px;
  display: block;
  border-radius: 0;
  padding: 0 15px 0 15px;
  font-size: var(--fontSize);
  border: 1px solid #eeeeee;
  transition: var(--transition);
  background-color: transparent;
}
.widget-area .widget_search form .search-field:focus {
  border-color: var(--mainColor);
}
.widget-area .widget_search form button {
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  border: none;
  font-size: 18px;
  position: absolute;
  color: var(--whiteColor);
  transition: var(--transition);
  background-color: var(--mainColor);
}
.widget-area .widget_search form button:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}
.widget-area .widget_author {
  padding: 25px;
  border: 1px solid #eeeeee;
}
.widget-area .widget_author h3 {
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 20px;
  text-transform: capitalize;
}
.widget-area .widget_author span {
  display: block;
  margin-bottom: 4px;
  color: var(--secondaryColor);
}
.widget-area .widget_follow_us ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.widget-area .widget_follow_us ul li {
  margin-bottom: 14px;
}
.widget-area .widget_follow_us ul li a {
  position: relative;
  display: inline-block;
  color: var(--secondaryColor);
}
.widget-area .widget_follow_us ul li a:hover {
  color: var(--mainColor);
}
.widget-area .widget_follow_us ul li a:hover::before {
  width: 100%;
}
.widget-area .widget_follow_us ul li a::before {
  left: 0;
  width: 0;
  bottom: 0;
  content: "";
  height: 1px;
  position: absolute;
  transition: var(--transition);
  background-color: var(--mainColor);
}
.widget-area .widget_follow_us ul li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_cyard_posts_thumb .item {
  margin-bottom: 20px;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
}
.widget-area .widget_cyard_posts_thumb .item .thumb {
  display: block;
  flex: 0 0 auto;
  width: 27%;
}
.widget-area .widget_cyard_posts_thumb .item .info {
  padding-left: 15px;
  flex: 0 0 auto;
  width: 73%;
}
.widget-area .widget_cyard_posts_thumb .item .info .title {
  line-height: 1.5;
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: 600;
}
.widget-area .widget_cyard_posts_thumb .item .info .title a {
  display: inline-block;
}
.widget-area .widget_cyard_posts_thumb .item .info .date {
  font-size: 15px;
  color: var(--secondaryColor);
}
.widget-area .widget_cyard_posts_thumb .item .info .star-rating {
  margin-top: 10px;
  font-size: 14px;
}
.widget-area .widget_cyard_posts_thumb .item .info .star-rating i {
  color: #f49f0b;
}
.widget-area .widget_cyard_posts_thumb .item .info .price {
  display: block;
  margin-top: 12px;
  font-weight: 500;
  color: var(--secondaryColor);
}
.widget-area .widget_cyard_posts_thumb .item:last-child {
  margin-bottom: 0;
}
.widget-area .widget_categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.widget-area .widget_categories ul li {
  margin-bottom: 14px;
}
.widget-area .widget_categories ul li a {
  position: relative;
  display: inline-block;
  color: var(--secondaryColor);
}
.widget-area .widget_categories ul li a:hover {
  color: var(--mainColor);
}
.widget-area .widget_categories ul li a:hover::before {
  width: 100%;
}
.widget-area .widget_categories ul li a::before {
  left: 0;
  width: 0;
  bottom: 0;
  content: "";
  height: 1px;
  position: absolute;
  transition: var(--transition);
  background-color: var(--mainColor);
}
.widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_tag_cloud .tagcloud {
  margin-bottom: -10px;
}
.widget-area .widget_tag_cloud .tagcloud a {
  font-size: 13px;
  padding: 5px 20px;
  border-radius: 30px;
  display: inline-block;
  color: var(--blackColor);
  border: 1px solid #ebeeee;
  margin-right: 8px;
  margin-bottom: 10px;
}
.widget-area .widget_tag_cloud .tagcloud a:hover {
  color: var(--mainColor);
  border-color: var(--mainColor);
}
.widget-area.right-sidebar {
  padding-left: 15px;
  padding-right: 0;
}

/*================================================
Contact Area CSS
=================================================*/
.single-contact-info-box {
  transition: var(--transition);
  background-color: #f8f8f8;
  margin-bottom: 25px;
  padding: 30px 40px 25px;
  text-align: center;
}
.single-contact-info-box i {
  line-height: 1;
  margin-bottom: 20px;
  color: var(--mainColor);
  background-color: #f5e9e9;
  font-size: 30px;
  border-radius: 50px;
  height: 65px;
  width: 65px;
  line-height: 65px;
}
.single-contact-info-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.single-contact-info-box p {
  margin-bottom: 2px;
}
.single-contact-info-box p a {
  color: var(--secondaryColor);
}
.single-contact-info-box p a:hover {
  color: var(--mainColor);
}
.single-contact-info-box p:last-child {
  margin-bottom: 0;
}
.single-contact-info-box:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: var(--whiteColor);
  transform: translateY(-10px);
}

.contact-form {
  padding: 50px;
  background-color: var(--whiteColor);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}
.contact-form label {
  display: block;
  margin-bottom: 10px;
  margin-top: -5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.contact-form .form-group {
  margin-bottom: 25px;
}
.contact-form .form-check {
  color: var(--secondaryColor);
}
.contact-form .form-check .form-check-input {
  margin-top: 0.29em;
  box-shadow: unset !important;
}
.contact-form .form-check .form-check-input[type=checkbox] {
  border-radius: 0;
}
.contact-form .form-check .form-check-input:checked {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}
.contact-form .form-check .form-check-input:focus {
  border-color: var(--mainColor);
}
.contact-form .default-btn {
  margin-top: 15px;
}
.contact-form .help-block.with-errors {
  color: red;
  margin-bottom: 0;
  margin-top: 12px;
}
.contact-form .wpcf7 form.invalid .wpcf7-response-output, .contact-form .wpcf7 form.unaccepted .wpcf7-response-output {
  line-height: 26px;
  border-radius: 5px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.contact-form #msgSubmit {
  margin: 0;
}
.contact-form #msgSubmit.text-danger {
  margin-top: 12px;
}
.contact-form #msgSubmit.text-success {
  margin-top: 12px;
}

.contact-info {
  z-index: 1;
  height: 100%;
  padding: 40px;
  position: relative;
  background-color: var(--mainColor);
  background-image: url(https://themes.envytheme.com/cyarb/wp-content/themes/cyarb/assets/img/security-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-info h3 {
  font-size: 22px;
  margin-bottom: 35px;
  color: var(--whiteColor);
}
.contact-info .info {
  padding-left: 0;
  margin-bottom: 40px;
  list-style-type: none;
}
.contact-info .info li {
  color: var(--whiteColor);
  margin-bottom: 18px;
  padding-left: 25px;
  position: relative;
  font-weight: 500;
  opacity: 0.95;
}
.contact-info .info li i {
  position: absolute;
  top: 3px;
  left: 0;
}
.contact-info .info li a {
  color: var(--whiteColor);
}
.contact-info .info li:last-child {
  margin-bottom: 0;
}
.contact-info .social-links {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: -10px;
}
.contact-info .social-links li {
  color: var(--whiteColor);
  margin-bottom: 18px;
  position: relative;
  font-weight: 500;
}
.contact-info .social-links li a {
  color: var(--whiteColor);
  position: relative;
  opacity: 0.95;
}
.contact-info .social-links li a::before {
  width: 0;
  bottom: 1px;
  content: "";
  height: 1px;
  position: absolute;
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.contact-info .social-links li a:hover {
  opacity: 1;
}
.contact-info .social-links li a:hover::before {
  width: 100%;
}
.contact-info .social-links li:last-child {
  margin-bottom: 0;
}
.contact-info::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  opacity: 0.8;
  position: absolute;
  background: #000000;
}

/*================================================
Profile Authentication Area CSS
=================================================*/
.login-form {
  padding-right: 15px;
}
.login-form h2 {
  margin-bottom: 30px;
  font-size: 36px;
}
.login-form form .form-group {
  margin-bottom: 25px;
}
.login-form form .form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 12px;
}
.login-form form .remember-me-wrap {
  margin-bottom: 0;
}
.login-form form .remember-me-wrap .form-check {
  margin-bottom: 0;
  color: var(--blackColor);
}
.login-form form .remember-me-wrap .form-check .form-check-input {
  margin-top: 0.15em;
  box-shadow: unset !important;
}
.login-form form .remember-me-wrap .form-check .form-check-input[type=checkbox] {
  border-radius: 0;
}
.login-form form .remember-me-wrap .form-check .form-check-input:checked {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}
.login-form form .remember-me-wrap .form-check .form-check-input:focus {
  border-color: var(--mainColor);
}
.login-form form .lost-your-password-wrap {
  text-align: end;
}
.login-form form .lost-your-password-wrap a {
  display: inline-block;
  position: relative;
  line-height: 1.5;
}
.login-form form .lost-your-password-wrap a::before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: #eeeeee;
}
.login-form form .lost-your-password-wrap a::after {
  left: 0;
  width: 0;
  bottom: 0;
  height: 1px;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: var(--mainColor);
}
.login-form form .lost-your-password-wrap a:hover::before {
  width: 0;
}
.login-form form .lost-your-password-wrap a:hover::after {
  width: 100%;
}
.login-form form button {
  border: none;
  display: block;
  margin-top: 20px;
  text-align: center;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  transition: var(--transition);
  border-radius: 5px;
  padding: 14px 30px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.login-form form button:hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

.register-form {
  padding-left: 15px;
}
.register-form h2 {
  margin-bottom: 30px;
  font-size: 36px;
}
.register-form form .form-group {
  margin-bottom: 25px;
}
.register-form form .form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 12px;
}
.register-form form .description {
  font-style: italic;
  font-size: 14.5px;
  margin-top: -10px;
  margin-bottom: 0;
}
.register-form form button {
  border: none;
  display: block;
  margin-top: 20px;
  text-align: center;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  transition: var(--transition);
  border-radius: 5px;
  padding: 14px 30px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.register-form form button:hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

/*================================================
Not Found Area CSS
=================================================*/
.not-found-area {
  border-top: 1px solid #eeeeee;
}

.not-found-content {
  text-align: center;
}
.not-found-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.not-found-content p {
  max-width: 500px;
  font-size: 18px;
  font-family: var(--headingFontFamily);
  margin-right: auto;
  margin-left: auto;
}
.not-found-content .default-btn {
  margin-top: 10px;
}

/*================================================
Footer Area CSS
=================================================*/
/*================================================
Go Top CSS
=================================================*/
.go-top {
  z-index: 4;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  line-height: 1;
  position: fixed;
  cursor: pointer;
  font-size: 38px;
  transition: 0.2s;
  visibility: hidden;
  color: var(--mainColor);
}
.go-top:hover {
  bottom: 25px;
}
.go-top.active {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}

.our-team .ptb-100 {
  padding-bottom: 70px;
}

.casi-single-partner .pb-100 {
  padding-bottom: 0;
}

.navbar-area.hide-wp-nav.is-sticky {
  margin-top: 32px;
}

.header-area.background-transparent-header.hide-wp-nav {
  margin-top: 32px;
}
.header-area.background-transparent-header.hide-wp-nav .is-sticky {
  margin-top: 32px;
}

.mobile-brand h2 {
  margin-bottom: 0;
}

.page-title-area {
  word-break: break-all;
  word-break: break-word;
}

.single-blog-post .content h3 {
  word-wrap: break-word;
}

/* WP Monster CSS */
.footer-area table {
  background: transparent;
}
.footer-area .single-footer-widget {
  margin-bottom: 25px;
}
.footer-area .single-footer-widget ul li ul {
  margin-top: 10px;
  padding-left: 20px;
}
.footer-area .single-footer-widget .wp-block-group__inner-container {
  padding: 0;
}
.footer-area .single-footer-widget .recentcomments .comment-author-link {
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
}
.footer-area .single-footer-widget .recentcomments a {
  font-weight: 600;
}
.footer-area .widget_rss ul li {
  margin-bottom: 20px;
}
.footer-area .widget_rss ul li::before {
  top: 10px;
}
.footer-area .widget_rss ul li:last-child {
  margin-bottom: 0;
}
.footer-area .widget_rss ul li .rsswidget {
  display: block;
  font-weight: 600;
  font-size: 15px;
}
.footer-area .widget_rss ul li .rss-date {
  font-size: 13px;
  margin: 10px 0 10px;
  display: block;
  text-transform: uppercase;
}
.footer-area .widget_rss ul li .rssSummary {
  line-height: 25px;
  font-size: 14px;
}
.footer-area .widget_rss ul li cite {
  font-weight: 500;
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 14px;
}
.footer-area .widget_text p img {
  margin: 10px 0;
}
.footer-area .widget_text .wp-caption-text {
  border: none;
  text-align: center;
  font-size: 14px;
}
.footer-area select {
  border: 1px solid #eee;
  width: 100%;
  height: 45px;
  padding: 5px 15px;
  color: #141414;
  font-weight: 600;
}
.footer-area .widget_tag_cloud .tagcloud a {
  display: inline-block;
  font-size: 14px !important;
  padding: 5px 10px;
  border: 1px solid #2c2929;
  margin-top: 8px;
  margin-right: 4px;
  text-transform: capitalize;
  color: v;
}
.footer-area ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-area ul li:last-child {
  margin-bottom: 0;
}
.footer-area table td, .footer-area table th {
  padding: 6px 5px;
  font-size: 13px;
  text-align: center;
  color: var(--blackColor);
}
.footer-area table caption {
  caption-side: top;
  font-weight: bold;
  padding-top: 0;
  color: var(--blackColor);
}
.footer-area .select {
  color: #333;
  margin-bottom: 0;
}
.footer-area span.post-count {
  float: right;
  font-size: 14px;
}
.footer-area .rsswidget {
  display: inline-block;
  color: var(--blackColor);
}
.footer-area .nice-select ul.list li {
  color: #555;
}

/*================================================
Fooetr Area CSS
=================================================*/
.single-footer-widget {
  margin-bottom: 25px;
}
.single-footer-widget table {
  background: transparent;
}
.single-footer-widget .logo p {
  margin-top: 18px;
  margin-bottom: 0;
}
.single-footer-widget .logo h2 {
  font-weight: bold;
  margin: 0;
  size: 24px;
  margin-top: -4px;
}
.single-footer-widget .logo img {
  max-width: 150px;
}
.single-footer-widget.widget_cyarb_logo_info p {
  margin-top: 0;
}
.single-footer-widget p {
  font-size: 14px;
  margin-top: 17px;
}
.single-footer-widget h3 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 700;
}
.single-footer-widget ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-footer-widget ul li {
  color: var(--secondaryColor);
  list-style-type: none;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.single-footer-widget ul li a {
  color: var(--secondaryColor);
}
.single-footer-widget ul li:last-child {
  margin-bottom: 0;
}

/* Blog Unit test all */
/*================================================
Sidebar Area CSS
=================================================*/
/* Widget sidebar */
.blog-sidebar {
  padding-left: 15px;
}
.blog-sidebar .widget {
  margin-top: 30px;
}
.blog-sidebar .widget:first-child {
  margin-top: 0;
}
.blog-sidebar .widget .wp-block-group__inner-container {
  padding: 0;
}
.blog-sidebar .widget {
  background-color: #f9f9f9;
}
.blog-sidebar .widget .widget-title {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
  margin-top: -5px;
  font-weight: 700;
  font-size: 22px;
  font-family: var(--headingFontFamily);
  color: var(--blackColor);
}
.blog-sidebar .widget .widget-title::before {
  padding-left: 15px;
  left: 0;
  right: 0;
  top: 50%;
  content: "";
  height: 1px;
  z-index: -1;
  margin-top: 1px;
  position: absolute;
  transform: translateY(-50%);
  background-color: #eeeeee;
}
.blog-sidebar .widget.widget_tag_cloud .widget-title {
  margin-bottom: 25px;
}
.blog-sidebar .widget ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
.blog-sidebar .widget ul li {
  position: relative;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 400;
}
.blog-sidebar .widget ul li:last-child {
  margin-bottom: -5px;
}
.blog-sidebar .widget ul li ul li {
  padding-left: 14px;
}
.blog-sidebar .widget ul li span {
  display: inline-block;
}
.blog-sidebar .widget ul li a {
  display: inline-block;
  color: var(--blackColor);
}
.blog-sidebar .widget ul li a:hover .post_count {
  border: 1px solid;
}
.blog-sidebar .widget ul li a .post_count {
  position: absolute;
  right: 0;
  border: 1px solid #eee;
  width: 25px;
  text-align: center;
  height: 25px;
  line-height: 25px;
  font-size: 13px;
  color: var(--secondaryColor);
}
.blog-sidebar .widget_search form {
  position: relative;
}
.blog-sidebar .widget_search form label {
  display: block;
  margin-bottom: 0;
}
.blog-sidebar .widget_search form .screen-reader-text {
  display: none;
}
.blog-sidebar .widget_search form .search-field {
  background-color: #ffffff;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  transition: var(--transition);
}
.blog-sidebar .widget_search form button {
  position: absolute;
  right: 0;
  outline: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  z-index: 1;
  border: none;
  color: #ffffff;
  background-color: transparent;
}
.blog-sidebar .widget_search form button::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  transition: var(--transition);
}
.blog-sidebar .widget_search form button::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.blog-sidebar .widget_search form button:hover::before {
  opacity: 0;
  visibility: hidden;
}
.blog-sidebar .widget_search form button:hover::after {
  opacity: 1;
  visibility: visible;
}
.blog-sidebar select {
  height: 45px;
  border: 1px solid #eee;
  width: 100%;
  color: #555;
  font-size: 13.5px;
  padding: 8px 15px;
}
.blog-sidebar .widget_categories ul li a {
  text-transform: capitalize;
}
.blog-sidebar .widget_categories ul li .children {
  margin-top: 10px;
}
.blog-sidebar .widget_pages ul li.page_item_has_children > a {
  margin-bottom: 10px;
  display: inline-block;
}
.blog-sidebar .widget_pages ul li a {
  text-transform: capitalize;
}
.blog-sidebar .widget_rss ul li {
  margin-bottom: 20px;
}
.blog-sidebar .widget_rss ul li::before {
  top: 10px;
}
.blog-sidebar .widget_rss ul li:last-child {
  margin-bottom: 0;
}
.blog-sidebar .widget_rss ul li .rsswidget {
  display: block;
  color: #222222;
  font-weight: bold;
  font-size: 15px;
}
.blog-sidebar .widget_rss ul li .rss-date {
  font-size: 13px;
  margin: 3px 0 10px;
  display: block;
}
.blog-sidebar .widget_rss ul li .rssSummary {
  color: #555;
  line-height: 25px;
  font-size: 14px;
}
.blog-sidebar .widget_rss ul li cite {
  font-weight: bold;
  display: block;
  margin-top: 10px;
  font-style: normal;
  color: #222;
  font-size: 13.5px;
}
.blog-sidebar .widget_rss .widget-title .rsswidget {
  display: inline-block;
}
.blog-sidebar .tagcloud a {
  display: inline-block;
  font-weight: 400;
  font-size: 13px !important;
  padding: 5px 20px;
  border-radius: 30px;
  display: inline-block;
  color: var(--secondaryColor);
  border: 1px solid #ebeeee;
  margin-right: 8px;
  margin-bottom: 10px;
  position: relative;
}
.blog-sidebar .tagcloud a:hover, .blog-sidebar .tagcloud a:focus {
  color: var(--mainColor);
  border-color: var(--mainColor);
}
.blog-sidebar .widget_text p img {
  margin: 10px 0;
}
.blog-sidebar .widget_text .wp-caption-text {
  border: none;
  text-align: center;
  font-size: 14px;
}
.blog-sidebar .calendar_wrap table {
  text-align: center;
  margin-bottom: 0;
}
.blog-sidebar .calendar_wrap table #prev a, .blog-sidebar .calendar_wrap table #next a {
  text-decoration: underline;
}
.blog-sidebar .calendar_wrap table #prev a:hover, .blog-sidebar .calendar_wrap table #next a:hover {
  text-decoration: none;
}
.blog-sidebar .calendar_wrap table td, .blog-sidebar .calendar_wrap table th {
  padding: 8px 5px;
}
.blog-sidebar .calendar_wrap caption {
  padding-top: 0;
  caption-side: top;
  font-weight: 600;
}
.blog-sidebar .widget_nav_menu .sub-menu {
  margin-top: 8px;
}
.blog-sidebar .widget_recent_comments .recentcomments {
  color: #484848;
}
.blog-sidebar .widget_recent_comments .recentcomments .comment-author-link {
  font-weight: bold;
  font-size: 14px;
}
.blog-sidebar .widget_recent_comments .recentcomments a {
  font-weight: 600;
}
.blog-sidebar .widget_media_gallery .gallery {
  margin: 0;
}
.blog-sidebar .widget_media_gallery .gallery .gallery-item {
  margin: 0;
}
.blog-sidebar .widget_recent_entries ul li .post-date {
  display: block;
  font-size: 12px;
  color: #767676;
}
.blog-sidebar p {
  font-size: 15px;
}
.blog-sidebar span.post-count {
  float: right;
  font-size: 15px;
  color: var(--secondaryColor);
}

.nice-select {
  height: 45px;
  border: 1px solid #eee;
  width: 100%;
  color: #555;
  font-size: 13.5px;
  float: none;
  white-space: normal;
}
.nice-select span.current {
  display: block;
  margin-top: 3px;
  font-size: 15px;
}
.nice-select ul.list {
  padding: 0 !important;
  margin: 0 !important;
  list-style-type: none !important;
  border-radius: 0;
  width: 100%;
  overflow-y: auto;
}
.nice-select ul.list li {
  list-style-type: none !important;
  font-size: 14px;
  padding: 8px 15px !important;
  line-height: 1 !important;
  margin: 0 !important;
  min-height: auto;
  text-transform: capitalize;
}
.nice-select ul.list li::before {
  display: none;
}

.widget_text form br {
  display: none;
}

/* End Widget sidebar */
/* WP core style */
.alignnone {
  display: block;
  margin-bottom: 15px;
}

.aligncenter, div.aligncenter {
  display: block;
  margin: 15px auto 15px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption.alignnone {
  margin: 15px auto 10px;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 14px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.screen-reader-text {
  display: none;
}

.gallery-caption {
  z-index: 100000;
}

.bypostauthor {
  z-index: 100000;
}

/* End WP core style */
.blog-area {
  position: relative;
  z-index: 1;
}

.single-blog-post {
  margin-bottom: 25px;
}
.single-blog-post .image {
  position: relative;
  overflow: hidden;
}
.single-blog-post .image img {
  transition: var(--transition);
}
.single-blog-post .image::before {
  width: 0;
  top: 50%;
  left: 50%;
  height: 0;
  opacity: 0;
  z-index: 2;
  content: "";
  display: block;
  position: absolute;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.2);
}
.single-blog-post .image::after {
  top: 0;
  left: -75%;
  z-index: 2;
  width: 50%;
  content: "";
  height: 100%;
  display: block;
  position: absolute;
  transform: skewX(-25deg);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
}
.single-blog-post .content {
  margin-bottom: 20px;
}
.single-blog-post .content .meta {
  padding-left: 0;
  margin-bottom: 12px;
  list-style-type: none;
}
.single-blog-post .content .meta li {
  color: var(--secondaryColor);
  display: inline-block;
  position: relative;
  margin-right: 20px;
}
.single-blog-post .content .meta li a {
  display: block;
  color: var(--secondaryColor);
}
.single-blog-post .content .meta li a:hover {
  color: var(--mainColor);
}
.single-blog-post .content .meta li:last-child {
  margin-right: 0;
}
.single-blog-post .content .meta li:last-child::before {
  display: none;
}
.single-blog-post .content h3 {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 12px;
}
.single-blog-post:hover .image img {
  transform: scale(1.1);
}
.single-blog-post:hover .image::before {
  animation: circle 0.75s;
}
.single-blog-post:hover .image::after {
  animation: shine 0.75s;
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-area {
  position: relative;
  z-index: 1;
}

.blog-details .post-thumb {
  margin-bottom: 25px;
}
.blog-details h4 {
  margin-bottom: 18px;
  word-wrap: break-word;
}
.blog-details .blog-details-content {
  background-color: #ffffff;
  border-top: none;
  overflow: hidden;
}
.blog-details .blog-details-content .entry-meta li span a {
  font-weight: 400;
}
.blog-details .blog-details-content .entry-meta li i {
  font-style: normal;
}
.blog-details .blog-details-content .entry-meta li a {
  text-decoration: none;
}
.blog-details .blog-details-content h3 {
  margin-bottom: 15px;
  font-size: 23px;
  font-weight: 700;
}
.blog-details .blog-details-content .category {
  padding: 0;
  margin: 20px 0 0;
  border-top: 1px solid #eee;
  list-style-type: none;
  clear: both;
}
.blog-details .blog-details-content .category li {
  display: inline-block;
  margin-bottom: 0;
  margin-top: 10px;
}
.blog-details .blog-details-content .category li span.icon-book {
  font-weight: 600;
  color: #323232;
  font-size: 20px;
  margin-right: 5px;
  position: relative;
  top: 2px;
}
.blog-details .blog-details-content .category li span.icon-book i {
  font-style: normal;
  font-size: 16px;
}
.blog-details .blog-details-content .category li:last-child span {
  display: none;
}
.blog-details .blog-details-content .category li a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: capitalize;
  color: var(--secondaryColor);
}
.blog-details .post-footer {
  display: flex;
  flex-wrap: wrap;
  margin-top: 25px;
  padding-top: 30px;
  align-items: center;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 30px;
}
.blog-details .post-footer .post-tags {
  flex: 0 0 50%;
  max-width: 50%;
}
.blog-details .post-footer .post-tags .sub {
  text-transform: uppercase;
  display: inline-block;
  font-weight: 600;
  margin-right: 3px;
}
.blog-details .post-footer .post-tags ul {
  display: inline-block;
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.blog-details .post-footer .post-tags ul li {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 1px;
}
.blog-details .post-footer .post-tags ul li a {
  color: var(--secondaryColor);
}
.blog-details .post-footer .post-tags ul li a:hover {
  color: var(--mainColor);
}
.blog-details .post-footer .post-tags ul li:not(:last-child)::after {
  content: ",";
}
.blog-details .post-footer .post-tags.post-tags-space {
  max-width: 100%;
  flex: 0 0 100%;
  display: flex;
}
.blog-details .post-footer .article-share {
  flex: 0 0 50%;
  max-width: 50%;
  text-align: end;
}
.blog-details .post-footer .article-share .social {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 0;
}
.blog-details .post-footer .article-share .social li {
  margin-bottom: 0;
  display: inline-block;
  color: var(--blackColor);
}
.blog-details .post-footer .article-share .social li span {
  display: inline-block;
  position: relative;
  margin-right: 3px;
  font-weight: 600;
  text-transform: uppercase;
}
.blog-details .post-footer .article-share .social li a {
  width: 35px;
  height: 35px;
  display: block;
  line-height: 35px;
  border-radius: 50%;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  border: 1px solid var(--mainColor);
  text-align: center;
  margin-left: 2px;
}
.blog-details .post-footer .article-share .social li a:hover {
  color: var(--mainColor);
  background-color: transparent;
}
.blog-details .post-footer .article-share .social li a.facebook {
  background-color: #3b5998;
  color: var(--whiteColor);
  border-color: #3b5998;
}
.blog-details .post-footer .article-share .social li a.facebook:hover {
  color: #3b5998;
  background-color: transparent;
}
.blog-details .post-footer .article-share .social li a.twitter {
  background-color: #1da1f2;
  color: var(--whiteColor);
  border-color: #1da1f2;
}
.blog-details .post-footer .article-share .social li a.twitter:hover {
  color: #1da1f2;
  background-color: transparent;
}
.blog-details .post-footer .article-share .social li a.linkedin {
  background-color: #007bb5;
  color: var(--whiteColor);
  border-color: #007bb5;
}
.blog-details .post-footer .article-share .social li a.linkedin:hover {
  color: #007bb5;
  background-color: transparent;
}
.blog-details .post-footer .article-share .social li a.instagram {
  background-color: #c13584;
  color: var(--whiteColor);
  border-color: #c13584;
}
.blog-details .post-footer .article-share .social li a.instagram:hover {
  color: #c13584;
  background-color: transparent;
}

.entry-meta {
  padding-left: 0;
  margin-bottom: 17px;
  list-style-type: none;
  text-transform: capitalize;
}
.entry-meta li {
  position: relative;
  display: inline-block;
  margin-right: 21px;
  color: var(--secondaryColor);
}
.entry-meta li a {
  display: inline-block;
  color: var(--secondaryColor);
}
.entry-meta li i {
  margin-right: 10px;
}
.entry-meta li:last-child {
  margin-right: 0;
}
.entry-meta li:last-child::before {
  display: none;
}

blockquote, .blockquote {
  background-color: #f9f9f9;
  padding: 25px !important;
  position: relative;
  margin-bottom: 20px;
  margin-top: 20px;
}
blockquote p, .blockquote p {
  line-height: 1.7;
  margin-bottom: 0;
  color: var(--blackColor);
  font-weight: 600;
  font-style: italic;
  font-size: 16px !important;
}
blockquote cite, .blockquote cite {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: var(--mainColor);
}

/*================================================
Pagination Area CSS
=================================================*/
.pages-links {
  margin: 15px 0;
}
.pages-links .page-links-title {
  padding-right: 5px;
  font-weight: 500;
}
.pages-links .post-page-numbers {
  width: 45px;
  height: 45px;
  margin: 0 3px;
  display: inline-block;
  background-color: #ffffff;
  line-height: 48px;
  box-shadow: 0 2px 10px 0 #d8dde6;
  font-size: 18px;
  font-weight: 700;
}
.pages-links .post-page-numbers.current, .pages-links .post-page-numbers:hover, .pages-links .post-page-numbers:focus {
  color: #ffffff;
  box-shadow: 0 2px 10px 0 #d8dde6;
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eeeeee;
}
.pagination-area .nav-links {
  display: flex;
  align-items: center;
}
.pagination-area .page-numbers {
  width: 45px;
  height: 45px;
  border: none;
  display: inline-block;
  line-height: 45px;
  position: relative;
  text-align: center;
  border-radius: 50%;
  color: var(--paragraphColor);
  transition: var(--transition);
  background: linear-gradient(180deg, #ffffff 0%, #eaeef3 100%);
  box-shadow: 0 5px 15px 0 rgba(107, 124, 147, 0.15), 0 2px 4px 0 rgba(107, 124, 147, 0.2), inset 0 -2px 0 0 #c2cfde;
  font-size: 15px;
  font-weight: 700;
  margin-left: 5px;
  margin-right: 5px;
}
.pagination-area .page-numbers.next {
  margin-left: auto;
}
.pagination-area .page-numbers.previous {
  margin-right: auto;
}
.pagination-area .page-numbers:hover {
  color: var(--mainColor);
}
.pagination-area .page-numbers.current {
  background: var(--whiteColor);
  color: var(--mainColor);
}
.pagination-area .page-numbers:first-child {
  margin-left: 0;
}
.pagination-area .page-numbers:last-child {
  margin-right: 0;
}

/* Unit test pages style 
====================================================================*/
/* Sticky Post */
.sticky .post-content-two {
  padding-left: 60px;
  background: #343a40;
  margin-top: 0;
}
.sticky .post-content-two h3::before {
  font-family: "Font Awesome 5 Free";
  content: "\f08d";
  position: absolute;
  left: -30px;
  top: 2px;
  font-size: 25px;
  font-weight: 600;
  color: #ffffff;
}
.sticky .post-content-two .meta li {
  color: #ffffff !important;
}
.sticky .post-content-two .meta li a {
  color: #ffffff !important;
}
.sticky .post-content-two .meta li::before {
  background: #fff !important;
}
.sticky .post-content-two h3 {
  position: relative;
}
.sticky .post-content-two h3 a {
  color: #ffffff;
}
.sticky .post-content-two p {
  color: #ffffff;
}

/* End Sticky Post */
/* Page Markup And Formatting */
.page-main-content {
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}
.page-main-content h1 {
  font-size: 35px;
  margin-bottom: 15px;
  font-weight: 800;
}
.page-main-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 800;
}
.page-main-content h3 {
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: 800;
}
.page-main-content h4 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 800;
}
.page-main-content h5 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 800;
}
.page-main-content h6 {
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: 800;
}
.page-main-content p {
  margin-top: 18px;
  margin-bottom: 18px;
}
.page-main-content p:first-child {
  margin-top: -4px;
}
.page-main-content p:last-child {
  margin-bottom: 0;
}
.page-main-content .entry-content a {
  text-decoration: underline;
  display: inline-block;
}
.page-main-content .entry-content a:hover {
  text-decoration: none;
}
.page-main-content footer.entry-footer {
  clear: both;
}
.page-main-content footer.entry-footer .edit-link {
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
}
.page-main-content dl, .page-main-content ol, .page-main-content ul {
  margin-top: 20px;
  margin-bottom: 20px;
}
.page-main-content dt {
  margin-bottom: 5px;
  color: #0d1028;
}
.page-main-content dd {
  margin: 0 1rem 1rem;
  line-height: 1.8;
}
.page-main-content ul {
  list-style: disc;
  padding-left: 20px;
}
.page-main-content ul li {
  list-style: disc;
  line-height: 1.8;
  margin-bottom: 5px;
}
.page-main-content ul li ul {
  margin: 5px 0 0;
  list-style-type: circle;
}
.page-main-content ul li ul li {
  list-style-type: circle;
}
.page-main-content ol {
  padding-left: 20px;
}
.page-main-content ol li {
  line-height: 1.8;
  margin-bottom: 5px;
}
.page-main-content ol li ol {
  margin: 5px 0 0;
}
.page-main-content b, .page-main-content strong {
  color: #212529;
}
.page-main-content dfn, .page-main-content cite, .page-main-content em, .page-main-content i {
  font-style: italic;
}
.page-main-content code, .page-main-content kbd, .page-main-content tt, .page-main-content var {
  font-size: 0.88889em;
  font-family: Menlo, monaco, Consolas, Lucida Console, monospace;
}
.page-main-content kbd {
  background-color: #f1f0f0;
}
.page-main-content mark, .page-main-content ins {
  background: #fff9c0;
  text-decoration: none;
}
.page-main-content pre {
  font-size: 0.88889em;
  font-family: "Courier 10 Pitch", Courier, monospace;
  line-height: 1.8;
  overflow: auto;
}
.page-main-content abbr, .page-main-content acronym {
  border-bottom: 1px dotted #484848;
  cursor: help;
}

address {
  margin: 20px 0;
  font-style: italic;
  line-height: 30px;
}

table {
  margin: 0 0 2rem;
  border-collapse: collapse;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  background: #ffffff;
}
table td, table th {
  padding: 10px 15px;
  border: 1px solid #d3dbe2;
  font-size: 13px;
}
table td a {
  font-weight: 600;
}
table th a {
  text-decoration: underline;
}
table th a:hover {
  text-decoration: none;
}

/* End Page Markup And Formatting */
/* cyarb posts thumb */
.widget_cyarb_posts_thumbs {
  position: relative;
  overflow: hidden;
}
.widget_cyarb_posts_thumbs .item {
  overflow: hidden;
  margin-bottom: 20px;
  align-items: center;
  border-bottom: 1px solid #DFEDEE;
  padding-bottom: 15px;
}
.widget_cyarb_posts_thumbs .item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
.widget_cyarb_posts_thumbs .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  position: relative;
  width: 80px;
  margin-right: 15px;
}
.widget_cyarb_posts_thumbs .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
  border-radius: 5px;
}
.widget_cyarb_posts_thumbs .item .info {
  overflow: hidden;
}
.widget_cyarb_posts_thumbs .item .info time {
  display: block;
  text-transform: capitalize;
  color: var(--secondaryColor);
  font-size: 14px;
}
.widget_cyarb_posts_thumbs .item .info .title {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 7px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.widget_cyarb_posts_thumbs .item .info .title a {
  color: var(--blackColor);
}

/* End cyarb posts thumb */
/* HTML Tags and Formatting */
.blog-details .blog-details-content .entry-meta {
  margin-top: 10px;
}
.blog-details .blog-details-content h1 {
  font-size: 40px;
  margin-bottom: 18px;
}
.blog-details .blog-details-content h2 {
  font-size: 35px;
  margin-bottom: 15px;
}
.blog-details .blog-details-content h3 {
  font-size: 30px;
  margin-bottom: 15px;
}
.blog-details .blog-details-content h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.blog-details .blog-details-content h5 {
  font-size: 16px;
  margin-bottom: 15px;
}
.blog-details .blog-details-content h6 {
  font-size: 14px;
  margin-bottom: 15px;
}
.blog-details .blog-details-content p {
  line-height: 1.8;
}
.blog-details .blog-details-content p a {
  text-decoration: underline;
  display: inline-block;
}
.blog-details .blog-details-content p a:hover {
  text-decoration: none;
}
.blog-details .blog-details-content .entry-content a {
  text-decoration: underline;
}
.blog-details .blog-details-content .entry-content a:hover {
  text-decoration: none;
}
.blog-details .blog-details-content dl, .blog-details .blog-details-content ol, .blog-details .blog-details-content ul {
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog-details .blog-details-content dl a, .blog-details .blog-details-content ol a, .blog-details .blog-details-content ul a {
  text-decoration: underline;
  display: inline-block;
}
.blog-details .blog-details-content dl a:hover, .blog-details .blog-details-content ol a:hover, .blog-details .blog-details-content ul a:hover {
  text-decoration: none;
}
.blog-details .blog-details-content dt {
  margin-bottom: 5px;
  color: var(--blackColor);
}
.blog-details .blog-details-content dd {
  margin: 0 1rem 1rem;
  font-size: 15px;
  line-height: 26px;
}
.blog-details .blog-details-content dd a {
  text-decoration: underline;
  display: inline-block;
}
.blog-details .blog-details-content dd a:hover {
  text-decoration: none;
}
.blog-details .blog-details-content ul {
  list-style: disc;
  padding-left: 20px;
}
.blog-details .blog-details-content ul li {
  list-style: disc;
  line-height: 1.8;
  margin-bottom: 10px;
  color: var(--secondaryColor);
}
.blog-details .blog-details-content ul li ul {
  margin: 10px 0 0;
  list-style-type: circle;
}
.blog-details .blog-details-content ul li ul li {
  list-style-type: circle;
}
.blog-details .blog-details-content ul li ol {
  margin: 10px 0 0;
  list-style-type: circle;
}
.blog-details .blog-details-content ul li ol li {
  list-style-type: decimal;
}
.blog-details .blog-details-content ul li ol li ul li {
  list-style-type: circle;
}
.blog-details .blog-details-content ul li:last-child {
  margin-bottom: 0;
}
.blog-details .blog-details-content ol {
  padding-left: 20px;
}
.blog-details .blog-details-content ol li {
  line-height: 1.8;
  margin-bottom: 10px;
  color: var(--secondaryColor);
}
.blog-details .blog-details-content ol li ol, .blog-details .blog-details-content ol li ul {
  margin: 10px 0 0;
}
.blog-details .blog-details-content b, .blog-details .blog-details-content strong {
  font-weight: 600;
  color: #212529;
}
.blog-details .blog-details-content dfn, .blog-details .blog-details-content cite, .blog-details .blog-details-content em, .blog-details .blog-details-content i {
  font-style: italic;
}
.blog-details .blog-details-content code, .blog-details .blog-details-content kbd, .blog-details .blog-details-content tt, .blog-details .blog-details-content var {
  font-size: 0.88889em;
  font-family: Menlo, monaco, Consolas, Lucida Console, monospace;
}
.blog-details .blog-details-content kbd {
  background-color: #eee;
}
.blog-details .blog-details-content mark, .blog-details .blog-details-content ins {
  background: #fff9c0;
  text-decoration: none;
  color: #000;
  padding: 0 5px;
}
.blog-details .blog-details-content pre {
  font-size: 0.88889em;
  font-family: "Courier 10 Pitch", Courier, monospace;
  line-height: 1.8;
  overflow: auto;
}
.blog-details .blog-details-content abbr, .blog-details .blog-details-content acronym {
  border-bottom: 1px dotted #484848;
  cursor: help;
}
.blog-details .blog-details-content i.fa {
  font-style: normal;
}
.blog-details .blog-details-content ul.entry-meta {
  margin: 0 0 18px;
  padding: 0;
}
.blog-details .blog-details-content ul.entry-meta li {
  margin-bottom: 0;
}
.blog-details .blog-details-content ul.entry-meta li a {
  text-transform: capitalize;
  color: var(--secondaryColor);
}
.blog-details .blog-details-content ul.entry-meta li span a {
  text-decoration: none;
}
.blog-details .blog-details-content iframe, .blog-details .blog-details-content video {
  width: 100%;
}

/* End HTML Tags and Formatting */
/* main page: Comments */
.comments-area .comment-content h1 {
  font-size: 30px;
  margin-bottom: 15px;
}
.comments-area .comment-content h2 {
  font-size: 25px;
  margin-bottom: 15px;
}
.comments-area .comment-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.comments-area .comment-content h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
.comments-area .comment-content h5 {
  font-size: 16px;
  margin-bottom: 15px;
}
.comments-area .comment-content h6 {
  font-size: 14px;
  margin-bottom: 15px;
}
.comments-area .comment-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 14px;
}
.comments-area .comment-content p:last-child {
  margin-bottom: 0;
}
.comments-area .comment-content .entry-content a {
  text-decoration: underline;
}
.comments-area .comment-content .entry-content a:hover {
  text-decoration: none;
}
.comments-area .comment-content dl, .comments-area .comment-content ol, .comments-area .comment-content ul {
  margin-top: 20px;
  margin-bottom: 20px;
}
.comments-area .comment-content dt {
  margin-bottom: 5px;
}
.comments-area .comment-content dd {
  margin: 0 1rem 1rem;
  font-size: 15px;
  line-height: 26px;
}
.comments-area .comment-content ul {
  list-style: disc;
  padding-left: 20px;
}
.comments-area .comment-content ul li {
  list-style: disc;
  line-height: 1.8;
  margin-bottom: 10px;
}
.comments-area .comment-content ul li ul {
  margin: 10px 0 0;
  list-style-type: circle;
}
.comments-area .comment-content ul li ul li {
  list-style-type: circle;
}
.comments-area .comment-content ol {
  padding-left: 20px;
}
.comments-area .comment-content ol li {
  line-height: 1.8;
  margin-bottom: 10px;
  list-style-type: decimal;
}
.comments-area .comment-content ol li ol {
  margin: 10px 0 0;
}
.comments-area .comment-content b, .comments-area .comment-content strong {
  font-weight: 600;
  color: #212529;
}
.comments-area .comment-content dfn, .comments-area .comment-content cite, .comments-area .comment-content em, .comments-area .comment-content i {
  font-style: italic;
}
.comments-area .comment-content code, .comments-area .comment-content kbd, .comments-area .comment-content tt, .comments-area .comment-content var {
  font-size: 0.88889em;
  font-family: Menlo, monaco, Consolas, Lucida Console, monospace;
}
.comments-area .comment-content kbd {
  background-color: #fafafa;
}
.comments-area .comment-content mark, .comments-area .comment-content ins {
  background: #fff9c0;
  text-decoration: none;
  color: #000;
  padding: 0 6px;
}
.comments-area .comment-content pre {
  font-size: 0.88889em;
  font-family: "Courier 10 Pitch", Courier, monospace;
  line-height: 1.8;
  overflow: auto;
  background: #fafafa;
  color: var(--blackColor);
}
.comments-area .comment-content abbr, .comments-area .comment-content acronym {
  border-bottom: 1px dotted #484848;
  cursor: help;
}

/* End main page: Comments */
/* Comments list style */
#comments {
  clear: both;
  overflow: hidden;
  list-style: none;
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}
#comments .comment-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#comments .comment-list .children {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#comments .comment-list:before {
  display: none;
}
#comments .comment-list .comment-body {
  border-bottom: 1px dashed #eeeeee;
  color: var(--blackColor);
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
  margin-left: 65px;
}
#comments .comment-list .comment-body a {
  text-decoration: underline;
  display: inline-block;
}
#comments .comment-list .comment-body a:hover {
  text-decoration: none;
}
#comments .comment-list .comment-body .comment-content img {
  margin: 5px 0;
}
#comments .comment-list .comment-body .reply {
  margin-top: 20px;
}
#comments .comment-list .comment-body .reply a {
  border: 1px dashed #ded9d9;
  color: var(--secondaryColor);
  background: #ffffff;
  display: inline-flex;
  padding: 10px 20px;
  line-height: 1;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}
#comments .comment-list .comment-body .reply a:hover {
  color: #ffffff;
}
#comments .comment-author {
  font-size: 15px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  clear: both;
}
#comments .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
}
#comments .comment-author .says {
  display: none;
}
#comments .comment-author b.fn {
  font-weight: 600;
  color: var(--blackColor);
}
#comments .comment-author b.fn a {
  color: var(--blackColor);
  text-decoration: none;
  text-transform: capitalize;
}
#comments .comment-meta {
  margin-bottom: 1em;
}
#comments .comment-metadata {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1818em;
  text-transform: uppercase;
}
#comments .comment-metadata a {
  text-decoration: none !important;
  display: inline-block;
}
#comments .comment-metadata a.comment-edit-link {
  color: #222;
  margin-left: 1em;
}
#comments .comment-reply-link {
  font-weight: 600;
  position: relative;
}
#comments .comment-reply-link .icon {
  color: #222;
  left: -2em;
  height: 1em;
  position: absolute;
  top: 0;
  width: 1em;
}
#comments .children {
  padding-left: 10px !important;
}
#comments .children .comment-author .avatar {
  height: 30px;
  left: -45px;
  width: 30px;
}
#comments .bypostauthor > .comment-body > .comment-meta > .comment-author .avatar {
  border: 1px solid #575757;
  padding: 2px;
}
#comments .no-comments,
#comments .comment-awaiting-moderation {
  color: #767676;
  font-size: 14px;
  font-size: 0.875rem;
  font-style: italic;
}
#comments .comments-pagination {
  margin: 2em 0 3em;
}

.comments-area .comment-list .comment .comment-respond {
  margin-bottom: 30px;
}

.comments-title {
  position: relative;
  margin-bottom: 25px !important;
  font-size: 22px !important;
  line-height: 1.5;
  font-weight: 700;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
  margin-top: -8px;
}
.comments-title::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 13px;
  height: 25px;
  width: 3px;
  transform: translateY(-50%);
}

/* End Comments list style */
/* Comment form */
.comment-respond {
  background: #ffffff;
  padding: 0;
  clear: both;
}
.comment-respond .comment-reply-title {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 25px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
  margin-bottom: 15px;
  position: relative;
}
.comment-respond .comment-reply-title::before {
  content: "";
  height: 25px;
  width: 3px;
  left: -30px;
  position: absolute;
  top: 13px;
  transform: translateY(-50%);
}
.comment-respond .comment-reply-title #cancel-comment-reply-link {
  font-size: 14px;
  color: red;
  display: inline-block;
  margin-left: 10px;
}
.comment-respond label {
  display: block;
  margin-bottom: 10px;
  color: var(--blackColor);
  font-weight: 600;
}
.comment-respond input[type=date], .comment-respond input[type=time], .comment-respond input[type=datetime-local], .comment-respond input[type=week], .comment-respond input[type=month], .comment-respond input[type=text], .comment-respond input[type=email], .comment-respond input[type=url], .comment-respond input[type=password], .comment-respond input[type=search], .comment-respond input[type=tel], .comment-respond input[type=number], .comment-respond textarea {
  background-image: none;
  border: 1px solid #f9f9f9;
  border-radius: 3px;
  color: var(--blackColor);
  font-size: var(--fontSize);
  background-color: #f9f9f9;
  padding: 0.625em 15px;
  width: 100%;
  height: 45px;
  font-size: 14px;
}
.comment-respond textarea {
  height: auto !important;
}
.comment-respond .form-submit {
  text-align: left;
}
.comment-respond .form-submit input {
  border: none;
  color: #ffffff;
  padding: 20px 30px;
  display: inline-block;
  cursor: pointer;
  outline: 0;
  border-radius: 0;
  text-transform: capitalize;
  transition: 0.5s;
  font-weight: 600;
  font-size: 16px;
  font-family: var(--headingFontFamily);
}
.comment-respond .form-submit input:hover, .comment-respond .form-submit input:focus {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}
.comment-respond input:focus, .comment-respond textarea:focus {
  outline: 0;
}
.comment-respond p {
  line-height: 1;
  margin-bottom: 0;
  margin-top: 25px;
}
.comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  line-height: 20px;
  font-weight: normal;
  font-size: 13.4px;
}
.comment-respond p.comment-notes {
  line-height: 26px;
  font-size: 14px;
  margin-top: 5px;
}
.comment-respond p.comment-form-comment {
  float: left;
  width: 100%;
}
.comment-respond p.comment-form-author {
  width: 50%;
  float: left;
  padding-right: 12px;
}
.comment-respond p.comment-form-email {
  width: 50%;
  float: left;
  padding-left: 12px;
}
.comment-respond p.comment-form-url {
  float: left;
  width: 100%;
}
.comment-respond p.comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
}
.comment-respond p.comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 3px;
}
.comment-respond p.form-submit {
  float: left;
  width: 100%;
}
.comment-respond p.logged-in-as {
  line-height: 26px;
  font-size: 15px;
  margin-top: 5px;
}
.comment-respond p.logged-in-as a {
  display: inline-block;
  text-decoration: underline;
  font-size: 13.5px;
}
.comment-respond p.logged-in-as a:hover {
  text-decoration: none;
}

.parent .comment-respond p.form-submit, .depth-1 .comment-respond p.form-submit {
  margin-bottom: 30px;
}

/* End Comment form */
/* Unit test all post style */
.wp-block-image {
  margin-bottom: 20px;
}
.wp-block-image figcaption {
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
}
.wp-block-image figcaption a {
  text-decoration: underline;
  display: inline-block;
}
.wp-block-image figcaption a:hover {
  text-decoration: none;
}

.wp-block-button {
  margin-bottom: 1.5em;
}
.wp-block-button .wp-block-button__link {
  font-size: 16px;
  border-radius: 5px;
}
.wp-block-button .wp-block-button__link br {
  display: none;
}
.wp-block-button .wp-block-button__link:hover {
  background-color: #222;
  color: #fff;
}

.wp-block-cover .wp-block-cover-text {
  color: #fff !important;
}

.is-style-outline .wp-block-button__link {
  background-color: transparent !important;
  font-size: 16px;
  border-radius: 5px;
}
.is-style-outline .wp-block-button__link:hover {
  background-color: transparent;
  color: #222 !important;
  border-color: #222;
}

pre.wp-block-code {
  border: 1px solid #eee;
  padding: 10px 15px;
}

pre.wp-block-preformatted {
  background-color: #fafafa;
  padding: 20px;
  margin: 20px 0;
}

.wp-block-pullquote {
  border-top: 4px solid #555d66;
  border-bottom: 4px solid #555d66;
  color: #40464d;
  border-color: transparent;
  border-width: 2px;
  padding: 0;
}
.wp-block-pullquote blockquote {
  color: #111;
  border: none;
  margin-right: 0;
  padding-left: 0;
}
.wp-block-pullquote blockquote p {
  font-size: 2.25em;
  font-style: italic;
}
.wp-block-pullquote blockquote cite {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  text-transform: none;
  color: #767676;
  font-size: 15px;
  font-style: normal;
}

.wp-block-table.is-style-stripes td {
  border-color: #767676;
}

.wp-block-verse {
  font-family: "Poppins", sans-serif !important;
  font-size: 16px !important;
}

.wp-block-columns {
  margin-top: 20px;
  margin-bottom: 20px;
}

.wp-block-media-text {
  margin-top: 30px;
  margin-bottom: 30px;
}
.wp-block-media-text .has-large-font-size {
  font-size: 25px;
  margin-top: 0 !important;
}

.page-links {
  margin-top: 20px;
  margin-bottom: 20px;
  clear: both;
}
.page-links span.page-links-title {
  font-weight: 500;
  font-size: 20px;
  padding-right: 10px;
}
.page-links .post-page-numbers {
  width: 35px;
  height: 35px;
  border-radius: 25px;
  background-color: #ffffff;
  border: 1px solid #eee;
  font-size: 15px;
  line-height: 35px;
  color: #0a0c19;
  text-align: center;
  display: inline-block;
  margin-left: 5px;
  text-decoration: none !important;
}
.page-links .post-page-numbers:hover {
  color: #ffffff;
}
.page-links .current {
  color: #ffffff;
}

.wp-block-archives-list {
  padding: 0 !important;
}
.wp-block-archives-list li {
  list-style: none !important;
}
.wp-block-archives-list li a:hover {
  text-decoration: underline;
}

.wp-block-categories-list {
  padding: 0 !important;
}
.wp-block-categories-list li {
  list-style: none !important;
}
.wp-block-categories-list li a {
  text-transform: capitalize;
}
.wp-block-categories-list li a:hover {
  text-decoration: underline;
}
.wp-block-categories-list li span.post-count {
  padding-left: 8px;
  float: right;
}
.wp-block-categories-list li .children li a {
  position: relative;
}
.wp-block-categories-list li .children li a::before {
  content: "-";
  position: absolute;
  left: -13px;
  top: -2px;
}

.wp-block-archives-dropdown {
  margin-bottom: 20px;
}
.wp-block-archives-dropdown select {
  height: 45px;
  border: 1px solid #eee;
  width: 100%;
  font-size: 14px;
  padding: 8px 15px;
  color: #555;
}

.wp-block-latest-comments {
  padding: 0 !important;
}
.wp-block-latest-comments .wp-block-latest-comments__comment-meta a {
  font-weight: 600;
  text-decoration: underline;
}
.wp-block-latest-comments .wp-block-latest-comments__comment-meta a:hover {
  text-decoration: none;
}

.wp-block-latest-posts li a {
  font-weight: 400;
}

.wp-block-gallery {
  padding: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.wp-block-gallery .blocks-gallery-item {
  margin-bottom: 15px !important;
}
.wp-block-gallery .blocks-gallery-grid {
  padding: 0 !important;
  margin-top: 6px !important;
  margin-bottom: 5px !important;
}

.wp-block-cover {
  margin-top: 30px;
  margin-bottom: 30px;
}
.wp-block-cover p.wp-block-cover-text {
  font-weight: bold;
  margin-bottom: 20px !important;
  font-size: 30px !important;
  line-height: 1.5;
}
.wp-block-cover p.wp-block-cover-text strong {
  color: #fff;
}

.wp-block-cover.has-background-dim.alignleft {
  margin-top: 0;
}

.wp-block-cover.has-background-dim-60.has-background-dim .wp-block-cover-text a {
  color: #fff;
}

.wp-block-file a {
  text-decoration: underline;
  font-size: 15px;
}
.wp-block-file a:hover {
  text-decoration: none;
}
.wp-block-file .wp-block-file__button {
  border-radius: 4px !important;
  font-size: 14px !important;
  font-weight: 500;
  display: table;
  margin: 10px 0 0;
}
.wp-block-file .wp-block-file__button:hover {
  background-color: #000 !important;
  color: #fff;
}

.wp-block-quote.is-style-large {
  border: none;
  padding-left: 0;
  margin: 20px 0;
}

.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color p {
  color: #ffffff;
}
.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color cite {
  display: none;
}
.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color blockquote {
  max-width: 80%;
  background: transparent;
}

.wp-block-gallery.alignwide {
  width: 100%;
}

.wp-caption .wp-caption-text {
  font-size: 15px;
  line-height: 20px;
  margin: 0;
  text-align: center;
  padding: 12px 0 0;
}
.wp-caption .wp-caption-text a {
  text-decoration: underline;
  display: inline-block;
}
.wp-caption .wp-caption-text a:hover {
  text-decoration: none;
}

.has-very-light-gray-color.has-very-light-gray-color {
  color: #fff;
}

.is-style-squared .wp-block-button__link {
  border-radius: 0 !important;
}

/* End Unit test all post style */
/* Post Format: Gallery */
.gallery {
  margin: 30px -1.1666667% 0;
}

.gallery-item {
  display: inline-block;
  max-width: 33.33%;
  padding: 0 1.1400652% 2.2801304%;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-1 .gallery-item {
  max-width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-icon img {
  margin: 0 auto;
}

.gallery-caption {
  display: block;
  font-size: 14px;
  font-style: italic;
  line-height: 1.6153846154;
  padding-top: 0.5384615385em;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}

/* End Post Format: Gallery */
/* Post password form style */
.post-password-form label {
  font-weight: 600;
}
.post-password-form label input {
  border: 1px solid #ccc;
  height: 45px;
  margin: 0 10px;
  padding: 5px 15px;
}
.post-password-form input[type=submit] {
  border: 1px solid;
  color: #fff;
  height: 45px;
  padding: 5px 20px;
  font-weight: 600;
  cursor: pointer;
}
.post-password-form input[type=submit]:hover {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}

/* End Post password form style */
/* Pingback style */
.comments-area .comment-list .trackback .comment-body {
  margin-left: 0 !important;
}
.comments-area .comment-list .trackback .comment-body a {
  text-decoration: underline;
}
.comments-area .comment-list .trackback .comment-body a:hover {
  text-decoration: none;
}
.comments-area .comment-list .pingback .comment-body {
  margin-left: 0 !important;
}

/* End Pingback style */
/* Comment navigation */
.comment-navigation .nav-links {
  overflow: hidden;
  margin-bottom: 25px;
}
.comment-navigation .nav-links .nav-previous {
  float: left;
}
.comment-navigation .nav-links .nav-previous a {
  border: 1px solid #eee;
  padding: 7px 18px;
  font-size: 14px;
  text-transform: capitalize;
  background: #fff;
  display: block;
}
.comment-navigation .nav-links .nav-previous a:hover {
  color: #fff;
}
.comment-navigation .nav-links .nav-next {
  float: right;
}
.comment-navigation .nav-links .nav-next a {
  border: 1px solid #eee;
  background: #fff;
  padding: 7px 18px;
  font-size: 14px;
  text-transform: capitalize;
  display: block;
}
.comment-navigation .nav-links .nav-next a:hover {
  color: #fff;
}

/* End Comment navigation */
/* Post search not found form */
.no-results .alert .page-title {
  margin: 0;
  font-size: 20px;
}
.no-results h1.page-title {
  font-size: 22px;
  font-weight: 600;
  margin-top: -3px;
}

.search-form {
  position: relative;
}
.search-form .search-field {
  background-color: #ffffff;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  transition: var(--transition);
}
.search-form .search-submit {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  outline: 0;
  border: none;
  color: #ffffff;
  height: 50px;
  padding: 0 20px;
  transition: var(--transition);
  text-transform: capitalize;
  font-weight: 600;
  font-size: 15px;
}
.search-form .search-submit:hover {
  color: #ffffff;
  background: var(--blackColor);
}
.search-form label {
  display: block;
}

/* End Post search not found form */
/*learn-more-btn*/
.learn-more-btn {
  display: inline-block;
  position: relative;
  color: var(--secondaryColor);
  font-size: 15px;
  font-weight: 600;
}
.learn-more-btn i {
  margin-left: 2px;
  position: relative;
  top: -0.6px;
}
.learn-more-btn i::before {
  font-size: 11px;
}
.learn-more-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.learn-more-btn:hover::before {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.archive-description p {
  color: #ffffff;
}

.blocks-gallery-caption {
  margin-bottom: 8px;
}

.wp-block-group__inner-container {
  padding: 30px;
}

.wp-block-archives-list li span.post-count {
  padding-left: 8px;
  float: right;
}

.wp-block-categories-dropdown {
  margin-bottom: 20px;
}
.wp-block-categories-dropdown select {
  height: 45px;
  border: 1px solid #eee;
  width: 100%;
  font-size: 14px;
  padding: 8px 15px;
  color: #555;
}

.wp-block-tag-cloud a {
  display: inline-block;
  font-weight: 600;
  font-size: 12.5px !important;
  padding: 6px 13px;
  border: 1px dashed #eeeeee;
  position: relative;
  color: #393953 !important;
  text-decoration: none !important;
  margin-top: 8px;
  margin-right: 4px;
}
.wp-block-tag-cloud a:hover, .wp-block-tag-cloud a:focus {
  color: #ffffff !important;
}

.wp-block-search {
  margin-bottom: 30px;
  position: relative;
}
.wp-block-search label {
  display: block;
  margin-bottom: 10px;
}
.wp-block-search .screen-reader-text {
  display: none;
}
.wp-block-search .wp-block-search__button {
  color: #ffffff;
}
.wp-block-search .wp-block-search__input {
  background-color: #ffffff;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  max-width: 100%;
  display: block;
  outline: 0;
  transition: var(--transition);
}
.wp-block-search button {
  position: absolute;
  right: 0;
  outline: 0;
  bottom: 0;
  height: 50px;
  width: 80px;
  z-index: 1;
  border: none;
  border-radius: 30px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.wp-block-search button:hover {
  color: #ffffff;
}

table td, table th {
  text-align: center;
}

.single-blog-post .content.post-content-two h3 {
  margin-bottom: 0;
}
.single-blog-post .content.post-content-two p {
  margin-top: 12px;
}

.post-content-two {
  padding: 20px;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
}

.wp-calendar-nav-prev {
  position: relative;
  top: 5px;
}

.cyard-responsive-nav .cyard-responsive-menu.mean-container .mean-nav ul li a {
  text-transform: capitalize;
}

.wpcf7-not-valid-tip {
  margin-top: 5px;
}

.wpcf7-list-item {
  margin: 0 0 0 0;
}

.blog-details .blog-details-content pre {
  margin-bottom: 0;
}

.widget_block .wp-block-group__inner-container {
  padding: 0;
}

.widget_block .wp-block-group__inner-container h2 {
  margin-bottom: 20px;
  position: relative;
  font-size: 22px;
}

.blog-sidebar .wp-block-latest-comments {
  margin-bottom: 0;
}

.blog-sidebar .wp-block-latest-comments .wp-block-latest-comments__comment-author {
  color: #000000;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
}

.blog-sidebar .wp-block-latest-comments .wp-block-latest-comments__comment-link {
  color: #222222;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  display: inline !important;
  line-height: 22px;
}

.blog-sidebar .wp-block-latest-comments .wp-block-latest-comments__comment:last-child {
  margin-bottom: 0;
}

.blog-sidebar .widget_search .wp-block-search__button {
  width: 100px;
  font-weight: 400;
  border-radius: 0;
}

.blog-sidebar .wp-block-search__label {
  display: none !important;
}

.single-footer-widget .social-links {
  margin-top: 17px;
}
.single-footer-widget .social-links li {
  margin-bottom: 0;
}

.cyard-nav .navbar .navbar-nav .nav-item a {
  text-transform: capitalize;
}

.blog-details-content .wp-calendar-nav {
  margin-bottom: 10px;
}
.blog-details-content .wp-calendar-table {
  margin-bottom: 0;
}

.page-area .comments-area .comment-respond {
  margin-top: 0;
}

.blog-details .post-footer .post-tags ul li a {
  text-transform: capitalize;
}

.expert-bg .bg-f5f8ff {
  border-top: 1px solid #e6e6e6;
}

.blog-sidebar .widget.widget_cyarb_author_info {
  padding: 0;
}

.wp-block-search__button-outside.wp-block-search__text-button.wp-block-search {
  margin-bottom: 0;
}

.wp-block-search button {
  border-radius: 0;
}
.wp-block-search button:hover {
  background-color: var(--blackColor) !important;
  transition: var(--transition);
}

.wp-block-search__inside-wrapper {
  margin-bottom: 15px;
}

.contact-form .form-control {
  background-color: #f9f9f9;
}

.border-bg .bg-f5f8ff {
  border-top: none;
}

.footer-area.pd-0 {
  padding-top: 0;
}

.copyright-area.pd-0 {
  margin-top: 0;
}

.widget_cyarb_logo_info h3 {
  font-size: 34px;
  margin-top: -4px;
}

.footer-area.footer-top-padding {
  padding-top: 0;
}

.copyright-area.footer-top-padding {
  margin-top: 0;
}

.et-demo-options-toolbar {
  position: fixed;
  top: 50%;
  width: 40px;
  right: 0;
  line-height: 60px;
  border: 1px solid #eee;
  border-right: 0;
  border-radius: 5px 0 0 5px;
  z-index: 99999;
  background: #fff;
  text-align: center;
  box-shadow: -3px 0 10px -2px rgba(0, 0, 0, 0.1);
}
.et-demo-options-toolbar a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #111;
}
.et-demo-options-toolbar a:focus, .et-demo-options-toolbar a:hover {
  color: #111 !important;
}

[class*=hint--] {
  position: relative;
  display: inline-block;
}

[class*=hint--]:before,
[class*=hint--]:after {
  position: absolute;
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  transition: 0.3s ease;
  transition-delay: 0ms;
}

[class*=hint--]:hover:before,
[class*=hint--]:hover:after {
  visibility: visible;
  opacity: 1;
}

[class*=hint--]:hover:before,
[class*=hint--]:hover:after {
  transition-delay: 0.1s;
}

[class*=hint--]:before {
  content: "";
  position: absolute;
  background: 0 0;
  border: 7px solid transparent;
  z-index: 1000001;
}

[class*=hint--]:after {
  background: #000;
  color: #fff;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 15px;
  white-space: nowrap;
  border-radius: 5px;
}

[class*=hint--][aria-label]:after {
  content: attr(aria-label);
}

[class*=hint--][data-hint]:after {
  content: attr(data-hint);
}

[aria-label=""]:before,
[aria-label=""]:after,
[data-hint=""]:before,
[data-hint=""]:after {
  display: none !important;
}

.hint--top-left:before {
  border-top-color: #000;
}

.hint--top-right:before {
  border-top-color: #000;
}

.hint--top:before {
  border-top-color: #000;
}

.hint--bottom-left:before {
  border-bottom-color: #000;
}

.hint--bottom-right:before {
  border-bottom-color: #000;
}

.hint--bottom:before {
  border-bottom-color: #000;
}

.hint--left:before {
  border-left-color: #000;
}

.hint--right:before {
  border-right-color: #000;
}

.hint--top:before {
  margin-bottom: -13px;
}

.hint--top:before,
.hint--top:after {
  bottom: 100%;
  left: 50%;
}

.hint--top:before {
  left: calc(50% - 7px);
}

.hint--top:after {
  transform: translateX(-50%);
}

.hint--top:hover:before {
  transform: translateY(-8px);
}

.hint--top:hover:after {
  transform: translateX(-50%) translateY(-8px);
}

.hint--bottom:before {
  margin-top: -13px;
}

.hint--bottom:before,
.hint--bottom:after {
  top: 100%;
  left: 50%;
}

.hint--bottom:before {
  left: calc(50% - 7px);
}

.hint--bottom:after {
  transform: translateX(-50%);
}

.hint--bottom:hover:before {
  transform: translateY(8px);
}

.hint--bottom:hover:after {
  transform: translateX(-50%) translateY(8px);
}

.hint--right:before {
  margin-left: -13px;
  margin-bottom: -7px;
}

.hint--right:after {
  margin-bottom: -15px;
}

.hint--right:before,
.hint--right:after {
  left: 100%;
  bottom: 50%;
}

.hint--right:hover:before {
  transform: translateX(8px);
}

.hint--right:hover:after {
  transform: translateX(8px);
}

.hint--left:before {
  margin-right: -13px;
  margin-bottom: -7px;
}

.hint--left:after {
  margin-bottom: -15px;
}

.hint--left:before,
.hint--left:after {
  right: 100%;
  bottom: 50%;
}

.hint--left:hover:before {
  transform: translateX(-8px);
}

.hint--left:hover:after {
  transform: translateX(-8px);
}

.hint--top-left:before {
  margin-bottom: -13px;
}

.hint--top-left:before,
.hint--top-left:after {
  bottom: 100%;
  left: 50%;
}

.hint--top-left:before {
  left: calc(50% - 7px);
}

.hint--top-left:after {
  transform: translateX(-100%);
}

.hint--top-left:after {
  margin-left: 14px;
}

.hint--top-left:hover:before {
  transform: translateY(-8px);
}

.hint--top-left:hover:after {
  transform: translateX(-100%) translateY(-8px);
}

.hint--top-right:before {
  margin-bottom: -13px;
}

.hint--top-right:before,
.hint--top-right:after {
  bottom: 100%;
  left: 50%;
}

.hint--top-right:before {
  left: calc(50% - 7px);
}

.hint--top-right:after {
  transform: translateX(0);
}

.hint--top-right:after {
  margin-left: -14px;
}

.hint--top-right:hover:before {
  transform: translateY(-8px);
}

.hint--top-right:hover:after {
  transform: translateY(-8px);
}

.hint--bottom-left:before {
  margin-top: -13px;
}

.hint--bottom-left:before,
.hint--bottom-left:after {
  top: 100%;
  left: 50%;
}

.hint--bottom-left:before {
  left: calc(50% - 7px);
}

.hint--bottom-left:after {
  transform: translateX(-100%);
}

.hint--bottom-left:after {
  margin-left: 14px;
}

.hint--bottom-left:hover:before {
  transform: translateY(8px);
}

.hint--bottom-left:hover:after {
  transform: translateX(-100%) translateY(8px);
}

.hint--bottom-right:before {
  margin-top: -13px;
}

.hint--bottom-right:before,
.hint--bottom-right:after {
  top: 100%;
  left: 50%;
}

.hint--bottom-right:before {
  left: calc(50% - 7px);
}

.hint--bottom-right:after {
  transform: translateX(0);
}

.hint--bottom-right:after {
  margin-left: -14px;
}

.hint--bottom-right:hover:before {
  transform: translateY(8px);
}

.hint--bottom-right:hover:after {
  transform: translateY(8px);
}

[class*=hint--]:after {
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.hint--white:after {
  color: #111;
  background-color: #fff;
  text-shadow: 0 -1px 0px #bfbfbf;
}

.hint--white.hint--top-left:before {
  border-top-color: #fff;
}

.hint--white.hint--top-right:before {
  border-top-color: #fff;
}

.hint--white.hint--top:before {
  border-top-color: #fff;
}

.hint--white.hint--bottom-left:before {
  border-bottom-color: #fff;
}

.hint--white.hint--bottom-right:before {
  border-bottom-color: #fff;
}

.hint--white.hint--bottom:before {
  border-bottom-color: #fff;
}

.hint--white.hint--left:before {
  border-left-color: #fff;
}

.hint--white.hint--right:before {
  border-right-color: #fff;
}

.hint--rounded:after {
  border-radius: 4px;
}

.hint--no-animate:before,
.hint--no-animate:after {
  transition-duration: 0ms;
}

.hint--bounce:before,
.hint--bounce:after {
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
}

/*================================================
About Area CSS
=================================================*/
.about-area2 {
  z-index: 1;
  position: relative;
}
.about-area2 .shape3 {
  bottom: 15%;
  left: 4%;
}
.about-area2 .shape4 {
  bottom: auto;
  left: auto;
  right: 3%;
  top: 36%;
}
.about-area2 .shape2 {
  bottom: 8%;
  left: auto;
  top: auto;
  right: 5%;
}

.about-image2 {
  border-radius: 20px;
  margin-right: 10px;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-image2 img {
  display: none;
  border-radius: 20px;
}

.about-content2 {
  padding-left: 10px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.about-content2 h2 {
  margin-bottom: 15px;
  font-size: 36px;
}
.about-content2 .features-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 30px;
  margin-bottom: 0;
}
.about-content2 .features-list li {
  position: relative;
  margin-bottom: 20px;
  border-radius: 20px;
  padding: 30px 30px 30px 140px;
  background-color: var(--whiteColor);
  box-shadow: 5px 10px 30px #f6f4f4;
}
.about-content2 .features-list li img {
  transition: var(--transition);
  transform: translateY(-50%);
  position: absolute;
  left: 30px;
  top: 50%;
}
.about-content2 .features-list li h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.about-content2 .features-list li:last-child {
  margin-bottom: 0;
}

.white-header.hide-wp-nav {
  margin-top: 32px;
}
.white-header.hide-wp-nav .is-sticky {
  margin-top: 32px;
}
.white-header .navbar-brand h2 {
  color: #fff;
}

.hide-wp-nav .navbar-area.cyard-new-navbar-area.is-sticky {
  margin-top: 32px;
}

/*body-with-black-color*/
.body-with-black-color {
  background-color: #1C0531;
}
.body-with-black-color .section-title h2 {
  color: var(--whiteColor);
}
.body-with-black-color .section-title p {
  color: #ABA8AE;
}
.body-with-black-color .section-title-wrap .wrap-title h2 {
  color: var(--whiteColor);
}
.body-with-black-color .safer-world-card {
  border: 1px solid #241036;
}
.body-with-black-color .safer-world-card .safer-world-content h3 a {
  color: var(--whiteColor);
}
.body-with-black-color .safer-world-card .safer-world-content p {
  color: #ABA8AE;
}
.body-with-black-color .safer-world-card:hover {
  background: #241036;
}
.body-with-black-color .safer-world-slides .owl-item.active.center .safer-world-card {
  background: #241036;
}
.body-with-black-color .approach-style-list-tabs .nav .nav-item .nav-link {
  padding: 30px 45px;
}
.body-with-black-color .approach-style-list-tabs .nav .nav-item .nav-link h3 {
  color: var(--whiteColor);
}
.body-with-black-color .approach-style-list-tabs .nav .nav-item .nav-link p {
  color: #ABA8AE;
}
.body-with-black-color .approach-style-list-tabs .nav .nav-item .nav-link:hover, .body-with-black-color .approach-style-list-tabs .nav .nav-item .nav-link.active {
  background-color: #241036;
}
.body-with-black-color .cyber-defenses-list-tabs .nav .nav-item .nav-link {
  background: transparent;
  border: 1px solid #603364;
  color: var(--whiteColor);
}
.body-with-black-color .cyber-defenses-content h3 {
  color: var(--whiteColor);
}
.body-with-black-color .cyber-defenses-content p {
  color: #ABA8AE;
}
.body-with-black-color .cyber-defenses-content .cyber-list li {
  color: var(--whiteColor);
}
.body-with-black-color .get-privacy-card {
  background-color: transparent;
  border: 1px solid #241036;
  padding: 30px;
}
.body-with-black-color .get-privacy-card .get-privacy-content h3 a {
  color: var(--whiteColor);
}
.body-with-black-color .get-privacy-card .get-privacy-content p {
  color: #ABA8AE;
}
.body-with-black-color .get-privacy-card:hover {
  background-color: #241036;
}
.body-with-black-color .keep-world-area {
  background-color: #1C0531;
}

/*default-btn-two*/
.default-btn-two {
  border: 1px solid var(--mainColor);
  z-index: 1;
  overflow: hidden;
  position: relative;
  padding: 15px 30px;
  border-radius: 5px;
  display: inline-block;
  color: var(--whiteColor);
  transition: var(--transition);
  background: var(--primaryGradientColor);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.default-btn-two::before {
  top: 0;
  left: 0;
  height: 0;
  content: "";
  z-index: -1;
  width: 100%;
  position: absolute;
  transition: 0.5s ease-in-out;
  background: var(--primaryGradientColorTwo);
  border-radius: 5px;
}
.default-btn-two:hover {
  color: var(--whiteColor);
  background: var(--primaryGradientColor);
}
.default-btn-two:hover::before {
  height: 100%;
}

/*optional-btn*/
.optional-btn {
  z-index: 1;
  overflow: hidden;
  position: relative;
  padding: 15px 30px;
  border-radius: 5px;
  display: inline-block;
  color: var(--whiteColor);
  transition: var(--transition);
  border: 1px solid #603364;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.optional-btn::before {
  top: 0;
  left: 0;
  height: 0;
  content: "";
  z-index: -1;
  width: 100%;
  position: absolute;
  transition: 0.5s ease-in-out;
  background: var(--primaryGradientColorTwo);
  border-radius: 5px;
}
.optional-btn:hover {
  color: var(--whiteColor);
}
.optional-btn:hover::before {
  height: 100%;
}

/*================================================
Section Title Wrap CSS
=================================================*/
.section-title-wrap {
  margin-bottom: 55px;
}
.section-title-wrap .wrap-title h2 {
  font-size: 50px;
  margin-bottom: 0;
  line-height: 1.4;
}
.section-title-wrap .wrap-btn {
  text-align: end;
}

/*================================================
New Main Banner Slides Area CSS
=================================================*/
.new-main-banner-slides-item {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding-top: 250px;
  padding-bottom: 250px;
}
.new-main-banner-slides-item .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.new-main-banner-slides-item::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #1C0531;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0.77;
  z-index: -1;
}

.new-main-banner-slides-content {
  max-width: 830px;
}
.new-main-banner-slides-content .sub-title {
  font-weight: bold;
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 18px;
}
.new-main-banner-slides-content h1 {
  font-size: 95px;
  color: var(--whiteColor);
  margin-bottom: 12px;
}
.new-main-banner-slides-content p {
  color: #C5C3C8;
  margin-bottom: 0;
}
.new-main-banner-slides-content .banner-btn-box {
  padding: 0;
  margin-top: 35px;
  margin-bottom: 0;
}
.new-main-banner-slides-content .banner-btn-box li {
  list-style-type: none;
  display: inline-block;
  margin-right: 25px;
}
.new-main-banner-slides-content .banner-btn-box li:last-child {
  margin-right: 0;
}

.thumbs-wrap {
  position: relative;
  z-index: 1;
}
.thumbs-wrap .owl-thumbs {
  position: absolute;
  bottom: 400px;
  right: 50px;
}
.thumbs-wrap .owl-thumbs .owl-thumb-item {
  transition: var(--transition);
  margin-bottom: 30px;
}
.thumbs-wrap .owl-thumbs .owl-thumb-item:last-child {
  margin-bottom: 0;
}
.thumbs-wrap .owl-thumbs .owl-thumb-item span {
  font-weight: 500;
  font-size: 18px;
  color: var(--whiteColor);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  display: inline-block;
  font-family: var(--headingFontFamily);
  padding-bottom: 10px;
  position: relative;
}
.thumbs-wrap .owl-thumbs .owl-thumb-item span::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 2px;
  background: var(--primaryGradientColor);
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: var(--transition);
}
.thumbs-wrap .owl-thumbs .owl-thumb-item.active span, .thumbs-wrap .owl-thumbs .owl-thumb-item:hover span {
  color: var(--mainColor);
}
.thumbs-wrap .owl-thumbs .owl-thumb-item.active span::before, .thumbs-wrap .owl-thumbs .owl-thumb-item:hover span::before {
  width: 100%;
  opacity: 1;
}

/*================================================
Safer World Area CSS
=================================================*/
.safer-world-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.safer-world-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.safer-world-card {
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  transition: var(--transition);
  border: 1px solid #FFF3F8;
  transform: scale(0.9);
}
.safer-world-card .safer-world-image {
  overflow: hidden;
  border-radius: 10px;
}
.safer-world-card .safer-world-image a img {
  display: inline-block;
  border-radius: 10px;
  transition: var(--transition);
}
.safer-world-card .safer-world-content {
  margin-top: 30px;
}
.safer-world-card .safer-world-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.safer-world-card .safer-world-content h3 a {
  color: var(--blackColor);
}
.safer-world-card .safer-world-content p {
  margin-bottom: 18px;
}
.safer-world-card .safer-world-content .safer-world-btn {
  font-weight: bold;
  background: var(--mainColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition);
}
.safer-world-card:hover {
  background: #FFF3F8;
}
.safer-world-card:hover .safer-world-image a img {
  transform: scale(1.1);
}
.safer-world-card:hover .safer-world-content .safer-world-btn {
  letter-spacing: 1px;
}

.safer-world-slides.owl-theme .owl-nav {
  margin-top: 0;
}
.safer-world-slides.owl-theme .owl-nav [class*=owl-] {
  margin: 0 10px;
  padding: 0;
  background: linear-gradient(129.37deg, #603364 8.09%, #7F3668 100%);
  color: var(--whiteColor);
  border-radius: 50%;
  transition: var(--transition);
  display: inline-block;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  font-size: 20px;
  position: absolute;
  left: 50px;
  top: 45%;
  transform: translateY(-45%);
}
.safer-world-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  right: 50px;
  left: auto;
}
.safer-world-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: var(--whiteColor);
  background: var(--primaryGradientColor);
}
.safer-world-slides .owl-item.active.center .safer-world-card {
  background: #FFF3F8;
  transform: scale(1);
}

.safer-world-shape {
  position: absolute;
  left: -150px;
  top: -150px;
  z-index: -1;
}

.safer-world-shape-2 {
  position: absolute;
  right: -150px;
  top: -150px;
  z-index: -1;
}

/*================================================
Funfacts Style Two Area CSS
=================================================*/
.funfacts-style-two-area {
  background: var(--primaryGradientColor);
}

.single-funfacts-card {
  margin-bottom: 25px;
  position: relative;
  padding-left: 105px;
  transition: var(--transition);
}
.single-funfacts-card .icon {
  left: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.single-funfacts-card .icon i {
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 80px;
  background: #ef6a77;
  color: var(--whiteColor);
  font-size: 40px;
  border-radius: 50px;
  text-align: center;
}
.single-funfacts-card h3 {
  line-height: 1;
  font-size: 55px;
  margin-bottom: 10px;
  color: var(--whiteColor);
}
.single-funfacts-card .sign {
  position: relative;
  top: 1.5px;
  left: 5px;
}
.single-funfacts-card p {
  color: var(--whiteColor);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.single-funfacts-card:hover {
  transform: translateY(-5px);
}

.inner-funfacts-box-style {
  padding-top: 100px;
  padding-bottom: 75px;
  padding-left: 30px;
  padding-right: 30px;
  background: var(--primaryGradientColor);
  border-radius: 30px;
}

/*================================================
Approach Style Two Area CSS
=================================================*/
.approach-style-two-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.approach-style-list-tabs .nav {
  padding: 0;
  list-style-type: none;
  display: block;
  border: none;
  margin-bottom: 0;
}
.approach-style-list-tabs .nav .nav-item {
  display: inline-block;
  margin-bottom: 20px;
}
.approach-style-list-tabs .nav .nav-item:last-child {
  margin-bottom: 0;
}
.approach-style-list-tabs .nav .nav-item .nav-link {
  border: none;
  padding: 25px;
  position: relative;
  border-radius: 5px;
}
.approach-style-list-tabs .nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--primaryGradientColor);
  transition: var(--transition);
  border-radius: 50px;
}
.approach-style-list-tabs .nav .nav-item .nav-link h3 {
  font-size: 24px;
  margin-bottom: 18px;
}
.approach-style-list-tabs .nav .nav-item .nav-link p {
  margin-bottom: 0;
}
.approach-style-list-tabs .nav .nav-item .nav-link:hover, .approach-style-list-tabs .nav .nav-item .nav-link.active {
  background-color: #FAF4FF;
}
.approach-style-list-tabs .nav .nav-item .nav-link:hover::before, .approach-style-list-tabs .nav .nav-item .nav-link.active::before {
  height: 100%;
}

.approach-style-tabs-image img {
  border-radius: 10px;
}

.approach-style-tabs-content {
  padding-left: 35px;
}
.approach-style-tabs-content .number {
  font-size: 100px;
  margin-bottom: 25px;
  font-weight: bold;
  background: linear-gradient(to right, #603364, #683466, #703567, #773568, #7f3668);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition);
  line-height: 1;
  opacity: 0.5;
  font-family: var(--headingFontFamily);
  font-style: italic;
}
.approach-style-tabs-content h4 {
  font-size: 35px;
  margin-bottom: 18px;
  background: var(--primaryGradientColorTwo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.approach-style-tabs-content p {
  margin-bottom: 20px;
}
.approach-style-tabs-content .approach-btn {
  font-weight: bold;
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition);
}
.approach-style-tabs-content .approach-btn:hover {
  letter-spacing: 1px;
}

.approach-style-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

/*================================================
Keep World Area CSS
=================================================*/
.keep-world-area {
  background-color: #221638;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.keep-world-area .section-title {
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 55px;
}
.keep-world-area .section-title h2 {
  color: var(--whiteColor);
}
.keep-world-area.with-transparent {
  background-color: transparent;
}

.keep-world-card {
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}
.keep-world-card h3 {
  line-height: 1;
  font-size: 50px;
  margin-bottom: 5px;
  color: var(--whiteColor);
}
.keep-world-card .sign {
  position: relative;
  top: 2px;
  left: 5px;
  font-size: 45px;
}
.keep-world-card p {
  color: var(--whiteColor);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.keep-world-card .keep-world-shape {
  position: absolute;
  right: -40px;
  top: -140px;
}
.keep-world-card .keep-world-shape-2 {
  position: absolute;
  left: -40px;
  bottom: -140px;
}

.keep-world-rectangle-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  z-index: -1;
  opacity: 50%;
}
.keep-world-rectangle-shape img {
  width: 100%;
}

.keep-world-circle-dot {
  position: absolute;
  top: 25%;
  left: 20%;
  transform: translateY(-25%) translateX(-20%);
  animation: animationFramesOne 10s infinite linear;
}

.keep-world-circle-dot-2 {
  position: absolute;
  top: 25%;
  right: 20%;
  transform: translateY(-25%) translateX(-20%);
  animation: animationFramesOne 20s infinite linear;
}

/*================================================
Testimonials Area CSS
=================================================*/
.single-testimonials-card {
  padding: 65px 100px;
  background: linear-gradient(129.37deg, #603364 8.09%, #7F3668 100%);
  border-radius: 30px;
  position: relative;
}
.single-testimonials-card p {
  font-size: 25px;
  color: var(--whiteColor);
}
.single-testimonials-card .client-info {
  margin-top: 30px;
}
.single-testimonials-card .client-info img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
}
.single-testimonials-card .client-info .title {
  margin-left: 20px;
}
.single-testimonials-card .client-info .title h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--mainColor);
  font-weight: 600;
}
.single-testimonials-card .client-info .title h3 span {
  color: var(--whiteColor);
  font-size: 15px;
  font-weight: normal;
}
.single-testimonials-card .client-info .title .rating {
  font-size: 16px;
  color: #eba400;
}
.single-testimonials-card .quote-shape {
  position: absolute;
  right: 65px;
  bottom: 65px;
}

.testimonials-slides.owl-theme .owl-dots {
  margin-top: 0 !important;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 55px;
}
.testimonials-slides.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 8px;
  border-radius: 50%;
  border: 1px solid #aaaaaa;
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.testimonials-slides.owl-theme .owl-dots .owl-dot:hover span, .testimonials-slides.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

/*================================================
Team Style Two Area CSS
=================================================*/
.single-team-card {
  margin-bottom: 25px;
  transition: var(--transition);
}
.single-team-card .team-image {
  position: relative;
  text-align: center;
}
.single-team-card .team-image img {
  border-radius: 15px;
}
.single-team-card .team-image .social-links {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding-left: 0;
  list-style-type: none;
  opacity: 0;
  transition: var(--transition);
  margin-top: 0;
  margin-bottom: 0;
}
.single-team-card .team-image .social-links li {
  display: inline-block;
  margin-right: 2px;
}
.single-team-card .team-image .social-links li a {
  width: 34px;
  height: 34px;
  display: block;
  border-radius: 50%;
  text-align: center;
  position: relative;
  color: var(--whiteColor);
  background-color: #7E7E7E;
}
.single-team-card .team-image .social-links li a i {
  left: 0;
  right: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.single-team-card .team-image .social-links li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.single-team-card .content {
  margin-top: 25px;
  position: relative;
  padding-right: 70px;
}
.single-team-card .content h3 {
  font-size: 22px;
  margin-bottom: 0;
}
.single-team-card .content span {
  color: #6F6B73;
  display: inline-block;
  margin-top: 15px;
}
.single-team-card .content .icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single-team-card .content .icon i {
  display: inline-block;
  height: 55px;
  width: 55px;
  line-height: 55px;
  background: #E6DFE7;
  color: var(--blackColor);
  text-align: center;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  transition: var(--transition);
}
.single-team-card:hover {
  transform: translateY(-5px);
}
.single-team-card:hover .team-image {
  position: relative;
  text-align: center;
}
.single-team-card:hover .team-image img {
  border-radius: 15px;
}
.single-team-card:hover .team-image .social-links {
  bottom: 30px;
  opacity: 1;
}
.single-team-card:hover .content .icon i {
  background: var(--mainColor);
  color: var(--whiteColor);
}

/*================================================
How We Work Area CSS
=================================================*/
.how-we-work-inner-box {
  background: var(--primaryGradientColorTwo);
  padding: 100px 50px 0;
  border-radius: 30px;
  overflow: hidden;
}
.how-we-work-inner-box .section-title h2 {
  color: var(--whiteColor);
}
.how-we-work-inner-box .how-we-work-video {
  text-align: center;
  position: relative;
}
.how-we-work-inner-box .how-we-work-video .video-btn {
  z-index: 1;
  width: 100px;
  height: 100px;
  font-size: 40px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  transition: var(--transition);
}
.how-we-work-inner-box .how-we-work-video .video-btn i {
  left: 0;
  right: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  margin: auto;
}
.how-we-work-inner-box .how-we-work-video .video-btn::after, .how-we-work-inner-box .how-we-work-video .video-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid var(--mainColor);
}
.how-we-work-inner-box .how-we-work-video .video-btn::before {
  animation: ripple 2s linear infinite;
}
.how-we-work-inner-box .how-we-work-video .video-btn::after {
  animation: ripple 2s linear 1s infinite;
}
.how-we-work-inner-box .how-we-work-video .video-btn:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.how-we-work-inner-box .how-we-work-video video.background-video {
  max-width: 1050px;
  margin: auto;
  border-radius: 30px 30px;
  margin-bottom: -45px;
}

/*================================================
Pricing Style Two Area CSS
=================================================*/
.single-pricing-card {
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
  background-color: var(--whiteColor);
  margin-bottom: 25px;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: var(--transition);
  border: 1px solid var(--whiteColor);
}
.single-pricing-card .pricing-header h3 {
  margin-bottom: 8px;
  font-size: 22px;
}
.single-pricing-card .price {
  margin-top: 30px;
}
.single-pricing-card .price h4 {
  margin-bottom: 10px;
  font-size: 36px;
  line-height: 1;
}
.single-pricing-card .price h4 .pricing-tags {
  display: inline-block;
}
.single-pricing-card .price h4 .pricing-tags span {
  font-size: 36px;
  line-height: 1;
  color: var(--blackColor);
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.single-pricing-card .price h4 span {
  color: var(--blackColor);
  font-size: 15px;
  font-weight: normal;
}
.single-pricing-card .link-btn {
  width: 100%;
  display: block;
  margin-top: 25px;
  border-radius: 5px;
  padding: 15px 30px;
  text-align: center;
  color: var(--whiteColor);
  background: var(--primaryGradientColor);
  box-shadow: 0 7px 18px 0 rgba(107, 124, 147, 0.25);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}
.single-pricing-card .link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 50px rgba(107, 124, 147, 0.15);
}
.single-pricing-card .link-btn.blue-gradient {
  background: var(--primaryGradientColorThree);
}
.single-pricing-card .features-list {
  margin-top: 35px;
}
.single-pricing-card .features-list h5 {
  font-size: var(--fontSize);
  letter-spacing: 1.5px;
  margin-bottom: 25px;
}
.single-pricing-card .features-list ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.single-pricing-card .features-list ul li {
  color: var(--secondaryColor);
  margin-bottom: 14px;
  padding-left: 20px;
  position: relative;
}
.single-pricing-card .features-list ul li i {
  position: absolute;
  color: #0568FD;
  font-size: 12px;
  top: 3.5px;
  left: 0;
}
.single-pricing-card .features-list ul li i.lni-close {
  color: red;
}
.single-pricing-card .features-list ul li:last-child {
  margin-bottom: 0;
}
.single-pricing-card .ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
}
.single-pricing-card .ribbon span {
  background: var(--primaryGradientColorTwo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--headingFontFamily);
  font-weight: 600;
}
.single-pricing-card:hover {
  border: 1px solid var(--mainColor);
  transform: translateY(-5px);
}

/*================================================
CTA Style Two Area CSS
=================================================*/
.cta-style-two-area {
  background: var(--primaryGradientColor);
}

.cta-inner-box-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner-box-content h2 {
  font-size: 50px;
  max-width: 730px;
  color: var(--whiteColor);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 35px;
  line-height: 1.4;
}
.cta-inner-box-content .default-btn-two {
  background: linear-gradient(90deg, #FC884E 0%, #F34178 100%);
}
.cta-inner-box-content .shape9 {
  max-width: 100px;
}
.cta-inner-box-content .shape10 {
  max-width: 150px;
}

/*================================================
Get Privacy Area CSS
=================================================*/
.get-privacy-area {
  overflow: hidden;
}
.get-privacy-area .container-fluid {
  overflow: hidden;
  left: calc((100% - 1320px) / 2);
  position: relative;
}
.get-privacy-area .container-fluid .get-privacy-slides.owl-theme .owl-nav {
  margin-top: 0;
}
.get-privacy-area .container-fluid .get-privacy-slides.owl-theme .owl-nav [class*=owl-] {
  left: -20px;
  top: 40%;
  transform: translateY(-40%);
}
.get-privacy-area .container-fluid .get-privacy-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  right: 22%;
  transform: translateX(-22%);
  left: auto;
}

.get-privacy-card {
  margin-bottom: 25px;
  padding: 25px;
  border-radius: 0 15px 15px 15px;
  transition: var(--transition);
  background-color: #F3F3F3;
}
.get-privacy-card .get-privacy-image {
  overflow: hidden;
  border-radius: 0 15px 15px 15px;
}
.get-privacy-card .get-privacy-image a img {
  display: inline-block;
  border-radius: 0 15px 15px 15px;
  transition: var(--transition);
}
.get-privacy-card .get-privacy-content {
  margin-top: 30px;
}
.get-privacy-card .get-privacy-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.4;
}
.get-privacy-card .get-privacy-content h3 a {
  color: var(--blackColor);
}
.get-privacy-card:hover {
  background: #FFF3F8;
}
.get-privacy-card:hover .get-privacy-image a img {
  transform: scale(1.1);
}
.get-privacy-card:hover .get-privacy-content h3 a {
  color: var(--mainColor);
}

.get-privacy-slides.owl-theme .owl-nav {
  margin-top: 0;
}
.get-privacy-slides.owl-theme .owl-nav [class*=owl-] {
  margin: 0 10px;
  padding: 0;
  background: linear-gradient(129.37deg, #603364 8.09%, #7F3668 100%);
  color: var(--whiteColor);
  border-radius: 50%;
  transition: var(--transition);
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  position: absolute;
  left: -50px;
  top: 40%;
  transform: translateY(-40%);
}
.get-privacy-slides.owl-theme .owl-nav [class*=owl-] i {
  position: relative;
  left: -2px;
}
.get-privacy-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  right: -50px;
  left: auto;
}
.get-privacy-slides.owl-theme .owl-nav [class*=owl-].owl-next i {
  position: relative;
  right: -2px;
  left: auto;
}
.get-privacy-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: var(--whiteColor);
  background: var(--primaryGradientColor);
}

/*================================================
Partner Style Two Area CSS
=================================================*/
.partner-slides .partner-item-card {
  text-align: center;
  overflow: hidden;
}
.partner-slides .partner-item-card img {
  transition: var(--transition);
}
.partner-slides .partner-item-card:hover img {
  transform: scale(0.9);
}

/*================================================
New Main Banner Wrap Slides Area CSS
=================================================*/
.new-main-banner-wrap-slides-item {
  background-image: url(https://themes.envytheme.com/cyarb/wp-content/themes/cyarb/assets/img/new-main-banner/new-banner-4.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding-top: 230px;
  padding-bottom: 290px;
}
.new-main-banner-wrap-slides-item::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #1C0531;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0.5;
  z-index: -1;
}

.new-main-banner-wrap-slides-content {
  max-width: 855px;
  margin: auto;
  text-align: center;
}
.new-main-banner-wrap-slides-content h1 {
  font-size: 80px;
  color: var(--whiteColor);
  margin-bottom: 20px;
}
.new-main-banner-wrap-slides-content p {
  color: #C5C3C8;
  max-width: 665px;
  margin: auto;
}
.new-main-banner-wrap-slides-content .banner-btn-box {
  padding: 0;
  margin-top: 35px;
  margin-bottom: 0;
}
.new-main-banner-wrap-slides-content .banner-btn-box li {
  list-style-type: none;
  display: inline-block;
  margin-right: 25px;
}
.new-main-banner-wrap-slides-content .banner-btn-box li:last-child {
  margin-right: 0;
}
.new-main-banner-wrap-slides-content .banner-btn-box li .optional-btn {
  border: 1px solid #00B0EA;
}
.new-main-banner-wrap-slides-content .banner-btn-box li .optional-btn::before {
  background: var(--primaryGradientColorThree);
}

.new-main-home-wrap-slides.owl-theme .owl-nav {
  margin-top: 0;
}
.new-main-home-wrap-slides.owl-theme .owl-nav [class*=owl-] {
  margin: 0 10px;
  padding: 0;
  background: linear-gradient(129.37deg, #603364 8.09%, #7F3668 100%);
  color: var(--whiteColor);
  border-radius: 50%;
  transition: var(--transition);
  display: inline-block;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  font-size: 20px;
  position: absolute;
  left: 65px;
  top: 45%;
  transform: translateY(-45%);
}
.new-main-home-wrap-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  right: 65px;
  left: auto;
}
.new-main-home-wrap-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: var(--whiteColor);
  background: var(--primaryGradientColor);
}

/*================================================
Cyard Features Area CSS
=================================================*/
.cyard-features-area {
  position: relative;
  z-index: 1;
  margin-top: -100px;
}

.single-cyard-features-card {
  margin-bottom: 25px;
  background: var(--primaryGradientColorThree);
  border-radius: 20px;
  overflow: hidden;
  padding: 30px 30px 30px 135px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.single-cyard-features-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 0%;
  transition: all 0.5s ease-in-out;
  background: var(--primaryGradientColor);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transform: scale(1.5);
}
.single-cyard-features-card .icon {
  position: absolute;
  top: 30px;
  left: 30px;
}
.single-cyard-features-card .icon i {
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 80px;
  background: rgba(255, 255, 255, 0.3);
  color: var(--whiteColor);
  font-size: 40px;
  border-radius: 50px;
  text-align: center;
  transition: var(--transition);
}
.single-cyard-features-card h3 {
  margin-bottom: 15px;
  font-size: 24px;
}
.single-cyard-features-card h3 a {
  color: var(--whiteColor);
}
.single-cyard-features-card p {
  color: var(--whiteColor);
}
.single-cyard-features-card .features-btn {
  color: var(--whiteColor);
  font-weight: 500;
  font-size: 15px;
  font-family: var(--headingFontFamily);
  letter-spacing: 1px;
}
.single-cyard-features-card .features-btn i {
  position: relative;
  top: 1px;
}
.single-cyard-features-card:hover {
  transform: translateY(-5px);
}
.single-cyard-features-card:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.single-cyard-features-card.icon-pad-none {
  padding: 30px 30px 30px 30px;
}

/*================================================
Cyber Defenses Area CSS
=================================================*/
.cyber-defenses-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cyber-defenses-list-tabs .nav {
  padding: 0;
  list-style-type: none;
  display: block;
  border: none;
  margin-bottom: 50px;
  text-align: center;
}
.cyber-defenses-list-tabs .nav .nav-item {
  display: inline-block;
  margin-right: 20px;
}
.cyber-defenses-list-tabs .nav .nav-item:last-child {
  margin-right: 0;
}
.cyber-defenses-list-tabs .nav .nav-item .nav-link {
  display: inline-block;
  background: var(--whiteColor);
  border: 1px solid #EEEEEE;
  padding: 15px 30px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  color: var(--secondaryColor);
  font-weight: 500;
  font-family: var(--headingFontFamily);
  font-size: 15px;
}
.cyber-defenses-list-tabs .nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(129.37deg, #603364 8.09%, #7F3668 100%);
  transition: var(--transition);
  border-radius: 5px;
  z-index: -1;
}
.cyber-defenses-list-tabs .nav .nav-item .nav-link:hover, .cyber-defenses-list-tabs .nav .nav-item .nav-link.active {
  color: var(--whiteColor);
}
.cyber-defenses-list-tabs .nav .nav-item .nav-link:hover::before, .cyber-defenses-list-tabs .nav .nav-item .nav-link.active::before {
  height: 100%;
}

.cyber-defenses-content {
  max-width: 550px;
}
.cyber-defenses-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.cyber-defenses-content p {
  margin-bottom: 0;
}
.cyber-defenses-content .cyber-list {
  padding: 0;
  margin-top: 25px;
  margin-bottom: 25px;
}
.cyber-defenses-content .cyber-list li {
  color: var(--blackColor);
  font-weight: 500;
  font-family: var(--headingFontFamily);
  list-style-type: none;
  margin-bottom: 25px;
  position: relative;
  padding-left: 32px;
  font-size: 15px;
}
.cyber-defenses-content .cyber-list li:last-child {
  margin-bottom: 0;
}
.cyber-defenses-content .cyber-list li i {
  display: inline-block;
  height: 22px;
  width: 22px;
  line-height: 22px;
  background: var(--primaryGradientColor);
  color: var(--whiteColor);
  text-align: center;
  border-radius: 50px;
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 0;
}
.cyber-defenses-content .cyber-btn {
  margin-top: 25px;
}

.cyber-defenses-image {
  text-align: end;
}

.cyber-defenses-shape {
  position: absolute;
  right: 0;
  top: 10%;
  transform: translateY(-10%);
  z-index: -1;
}

/*================================================
Infrastructure Area CSS
=================================================*/
.infrastructure-area {
  background: #F9F9F9;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.single-infrastructure-card {
  background: var(--whiteColor);
  border-radius: 10px;
  padding: 30px 30px 30px 155px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 25px;
}
.single-infrastructure-card.icon-pad-none {
  padding: 30px 30px 30px 30px;
}
.single-infrastructure-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 0%;
  transition: all 0.5s ease-in-out;
  background: var(--primaryGradientColor);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transform: scale(1.5);
}
.single-infrastructure-card .icon {
  position: absolute;
  top: 30px;
  left: 30px;
}
.single-infrastructure-card .icon i {
  display: inline-block;
  height: 95px;
  width: 95px;
  line-height: 95px;
  background: var(--primaryGradientColorTwo);
  color: var(--whiteColor);
  font-size: 40px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
}
.single-infrastructure-card h3 {
  margin-bottom: 15px;
  font-size: 24px;
}
.single-infrastructure-card h3 a {
  color: var(--blackColor);
}
.single-infrastructure-card p {
  transition: var(--transition);
}
.single-infrastructure-card:hover {
  transform: translateY(-5px);
}
.single-infrastructure-card:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.single-infrastructure-card:hover h3 a {
  color: var(--whiteColor);
}
.single-infrastructure-card:hover p {
  color: var(--whiteColor);
}

.infrastructure-shape {
  position: absolute;
  left: -50px;
  bottom: -150px;
  z-index: -1;
}

/*================================================
Cyard Cybersecurity Area CSS
=================================================*/
.cyard-cybersecurity-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cyard-cybersecurity-image {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.cyard-cybersecurity-image img {
  border-radius: 20px;
  transition: var(--transition);
}
.cyard-cybersecurity-image:hover img {
  transform: scale(1.2);
}
.cyard-cybersecurity-image .cybersecurity-shape {
  position: absolute;
  left: 25px;
  bottom: 35px;
  animation: movescale 3s linear infinite;
}

.cyard-cybersecurity-content {
  padding-left: 45px;
}
.cyard-cybersecurity-content h2 {
  margin-bottom: 20px;
  font-size: 50px;
}
.cyard-cybersecurity-content p {
  margin-bottom: 0;
}
.cyard-cybersecurity-content .features-list {
  padding: 0;
  margin-top: 30px;
  margin-bottom: 0;
}
.cyard-cybersecurity-content .features-list li {
  list-style-type: none;
  margin-bottom: 25px;
}
.cyard-cybersecurity-content .features-list li:last-child {
  margin-bottom: 0;
}
.cyard-cybersecurity-content .features-list li span {
  position: relative;
  padding-left: 40px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}
.cyard-cybersecurity-content .features-list li span i {
  left: 0;
  top: 50%;
  width: 30px;
  height: 30px;
  font-size: 15px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
  color: var(--mainColor);
  background-color: #F2F2F2;
  transition: var(--transition);
}
.cyard-cybersecurity-content .features-list li span:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.cybersecurity-shape-2 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

/*================================================
Explore Area CSS
=================================================*/
.single-explore-card {
  margin-bottom: 25px;
  transition: var(--transition);
}
.single-explore-card .explore-image {
  overflow: hidden;
  border-radius: 15px;
}
.single-explore-card .explore-image a img {
  display: inline-block;
  border-radius: 15px;
  transition: var(--transition);
}
.single-explore-card .explore-content {
  margin-top: 30px;
}
.single-explore-card .explore-content span {
  display: block;
  margin-bottom: 20px;
}
.single-explore-card .explore-content span a {
  display: inline-block;
  padding: 10px 15px;
  background-color: #FFEBEC;
  color: var(--mainColor);
  font-weight: 500;
  font-family: var(--headingFontFamily);
  border-radius: 10px;
}
.single-explore-card .explore-content span a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.single-explore-card .explore-content h3 {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.single-explore-card .explore-content h3 a {
  color: var(--blackColor);
}
.single-explore-card .explore-content p {
  margin-bottom: 18px;
}
.single-explore-card .explore-content .explore-btn {
  font-weight: bold;
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition);
}
.single-explore-card:hover {
  transform: translateY(-5px);
}
.single-explore-card:hover .explore-image a img {
  transform: scale(1.2);
}
.single-explore-card:hover .explore-content .explore-btn {
  letter-spacing: 1px;
}

/*================================================
New Main Banner Black Area CSS
=================================================*/
.new-main-banner-black-area {
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 150px;
}
.new-main-banner-black-area .container-fluid {
  overflow: hidden;
  padding-left: 30px;
  padding-right: 0;
}

.new-main-banner-black-content {
  max-width: 780px;
  z-index: 1;
  position: relative;
}
.new-main-banner-black-content .sub-title {
  font-weight: bold;
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 20px;
}
.new-main-banner-black-content h1 {
  font-size: 75px;
  color: var(--whiteColor);
  margin-bottom: 25px;
}
.new-main-banner-black-content p {
  color: #C5C3C8;
  margin-bottom: 0;
  max-width: 700px;
}
.new-main-banner-black-content .banner-btn-box {
  padding: 0;
  margin-top: 35px;
  margin-bottom: 0;
}
.new-main-banner-black-content .banner-btn-box li {
  list-style-type: none;
  display: inline-block;
  margin-right: 25px;
}
.new-main-banner-black-content .banner-btn-box li:last-child {
  margin-right: 0;
}

.new-main-banner-black-image {
  position: absolute;
  right: 0;
  top: 100px;
  max-width: 875px;
}

.new-main-banner-line-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: -100px;
}
.new-main-banner-line-shape img {
  width: 100%;
}

/* Start "Cloud Security Demo" & "Application Security" CSS
============================================================*/
.bg-FAF4FF {
  background-color: #FAF4FF;
}

.navbar-style-with-little-gap .cyard-nav {
  padding: 10px 0;
}
.navbar-style-with-little-gap .cyard-nav .navbar .navbar-nav {
  margin-left: auto;
  margin-right: 50px;
}
.navbar-style-with-little-gap .cyard-nav .navbar .others-option {
  margin-left: unset;
}
.navbar-style-with-little-gap .cyard-nav .navbar .others-option .option-item .search-cart li .search-icon {
  font-size: 23.5px;
}
.navbar-style-with-little-gap .cyard-nav .navbar .others-option .option-item .default-btn-two {
  background: var(--primaryGradientColorTwo);
  border: none;
}
.navbar-style-with-little-gap .cyard-nav .navbar .others-option .option-item .default-btn-two::before {
  background: var(--primaryGradientColorThree);
}
.navbar-style-with-little-gap.navbar-absolute {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 9;
  background-color: transparent;
}
.navbar-style-with-little-gap.navbar-absolute.hide-wp-nav {
  top: 32px;
}
.navbar-style-with-little-gap.navbar-absolute.is-sticky {
  position: fixed;
  background-color: var(--blackColor2) !important;
}
.navbar-style-with-little-gap.navbar-absolute.is-sticky.hide-wp-nav {
  top: 0;
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-brand h2 {
  margin-bottom: 0;
  color: var(--whiteColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item a {
  color: #EDEDED;
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item a:hover, .navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item a.active {
  color: var(--mainColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item a:hover::after, .navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item a:hover::before, .navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item a.active::after, .navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item a.active::before {
  background-color: var(--mainColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-toggle::before {
  background-color: #EDEDED;
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-toggle::after {
  background-color: #EDEDED;
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item:hover a, .navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item.active a {
  color: var(--mainColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item:hover a::after, .navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item:hover a::before, .navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item.active a::after, .navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item.active a::before {
  background-color: var(--mainColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: var(--secondaryColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li a::before {
  background-color: var(--mainColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover {
  color: var(--mainColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover::before {
  transform: scaleY(1);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--mainColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active::before {
  transform: scaleY(1);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-toggle::before {
  background-color: var(--secondaryColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-toggle::after {
  background-color: var(--secondaryColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: var(--secondaryColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover {
  color: var(--mainColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--secondaryColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover {
  color: var(--mainColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--secondaryColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover {
  color: var(--mainColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: var(--mainColor);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a::before {
  transform: scaleY(1);
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .others-option .option-item .search-cart li .search-icon {
  color: #EDEDED;
}
.navbar-style-with-little-gap.navbar-absolute .cyard-nav .navbar .others-option .option-item .search-cart li .search-icon:hover {
  color: var(--mainColor);
}

/*================================================
Cloud Security Banner Area CSS
=================================================*/
.cloud-security-banner-area {
  overflow: hidden;
}
.cloud-security-banner-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.cloud-security-banner-inner {
  background-color: var(--blackColor2);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cloud-security-banner-inner .wrap-shape1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.cloud-security-banner-inner .wrap-shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.cloud-security-banner-content {
  padding: 250px 100px;
}
.cloud-security-banner-content .sub-title {
  font-size: 18px;
  font-weight: 700;
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 15px;
}
.cloud-security-banner-content h1 {
  font-size: 75px;
  color: var(--whiteColor);
  margin-bottom: 25px;
}
.cloud-security-banner-content p {
  color: #C5C3C8;
  margin-bottom: 0;
  max-width: 700px;
}
.cloud-security-banner-content .banner-btn-box {
  padding: 0;
  margin-top: 35px;
  margin-bottom: 0;
}
.cloud-security-banner-content .banner-btn-box li {
  list-style-type: none;
  display: inline-block;
  margin-right: 25px;
}
.cloud-security-banner-content .banner-btn-box li:last-child {
  margin-right: 0;
}

.cloud-security-banner-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  margin-left: -15px;
}

/*================================================
CS Partner Area CSS
=================================================*/
.cs-partner-area {
  overflow: hidden;
}

.cs-partner-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.cs-partner-title span {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
  color: var(--secondaryColor);
  display: inline-block;
  background-color: var(--whiteColor);
  padding: 0 10px;
}
.cs-partner-title .cs-partner-before {
  position: relative;
  z-index: 1;
  float: left;
}
.cs-partner-title .cs-partner-before::before {
  position: absolute;
  content: "";
  top: 6px;
  left: -30px;
  width: 335px;
  height: 2px;
  background-color: #ededed;
  z-index: -1;
}
.cs-partner-title .cs-partner-before::after {
  position: absolute;
  content: "";
  top: 17px;
  left: -30px;
  width: 320px;
  height: 2px;
  background-color: #ededed;
  z-index: -1;
}
.cs-partner-title .cs-partner-after {
  position: relative;
  z-index: 1;
  float: right;
}
.cs-partner-title .cs-partner-after::before {
  position: absolute;
  content: "";
  top: 6px;
  right: -30px;
  width: 320px;
  height: 2px;
  background-color: #ededed;
  z-index: -1;
}
.cs-partner-title .cs-partner-after::after {
  position: absolute;
  content: "";
  top: 17px;
  right: -30px;
  width: 335px;
  height: 2px;
  background-color: #ededed;
  z-index: -1;
}

.cs-partner-card {
  text-align: center;
}

/*================================================
CS About Area CSS
=================================================*/
.cs-about-area {
  overflow: hidden;
}

.cs-about-content {
  padding-left: 35px;
  position: relative;
}
.cs-about-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
}
.cs-about-content p {
  font-family: var(--headingFontFamily);
  margin-bottom: 0;
}
.cs-about-content .box {
  background-color: #FAF4FF;
  padding: 25px 30px;
  border-left: 2px solid var(--mainColor);
  margin-top: 25px;
}
.cs-about-content .box p {
  background: linear-gradient(129deg, #603364 8.09%, #7F3668 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
}
.cs-about-content .extra-big {
  color: var(--blackColor2);
  font-size: 17px;
  margin-top: 30px;
}
.cs-about-content .about-btn {
  display: flex;
  align-items: center;
  margin-top: 35px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.cs-about-content .about-btn li {
  list-style-type: none;
  margin-right: 70px;
}
.cs-about-content .about-btn li .fun-facts h3 {
  font-size: 32px;
  margin-bottom: 7px;
  line-height: 1;
  background: linear-gradient(136deg, #ED407E 1.15%, #8E42C9 50.99%, #5D7CE5 99.15%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cs-about-content .about-btn li .fun-facts p {
  background: linear-gradient(129deg, #603364 8.09%, #7F3668 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  font-size: 17px;
}
.cs-about-content .about-btn li:last-child {
  margin-right: 0;
}
.cs-about-content .wrap-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

/*================================================
CS Services Area CSS
=================================================*/
.cs-services-area {
  overflow: hidden;
}
.cs-services-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.cs-services-inner {
  background-color: var(--blackColor2);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cs-services-inner .section-title h2 {
  color: var(--whiteColor);
}
.cs-services-inner .section-title p {
  font-family: var(--headingFontFamily);
  color: #B6B6B6;
}
.cs-services-inner .wrap-shape1 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  width: 100%;
}
.cs-services-inner .wrap-shape1 img {
  width: 100%;
}
.cs-services-inner .wrap-shape2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  z-index: -1;
  width: 100%;
}
.cs-services-inner .wrap-shape2 img {
  width: 100%;
}

.cs-services-inner-items .item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 35px;
  margin-bottom: 35px;
}
.cs-services-inner-items .item .cs-services-left {
  display: flex;
  align-items: center;
}
.cs-services-inner-items .item .cs-services-left .image a img {
  max-width: 290px;
  border-radius: 105px;
}
.cs-services-inner-items .item .cs-services-left .title {
  margin-left: 35px;
  max-width: 100px;
}
.cs-services-inner-items .item .cs-services-left .title h3 {
  font-size: 23.5px;
  margin-bottom: 0;
}
.cs-services-inner-items .item .cs-services-left .title h3 a {
  color: var(--whiteColor);
}
.cs-services-inner-items .item .cs-services-left .title h3 a span {
  display: block;
}
.cs-services-inner-items .item .cs-services-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 100px;
}
.cs-services-inner-items .item .cs-services-right .content p {
  color: #B6B6B6;
  font-family: var(--headingFontFamily);
  max-width: 425px;
}
.cs-services-inner-items .item .cs-services-right .arrow-btn {
  display: flex;
  margin-left: 25px;
}
.cs-services-inner-items .item .cs-services-right .arrow-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border: 1px solid var(--whiteColor);
  border-radius: 50px;
  position: relative;
}
.cs-services-inner-items .item .cs-services-right .arrow-btn a img {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
}
.cs-services-inner-items .item .cs-services-right .arrow-btn a:hover {
  background-color: var(--mainColor);
  border: 1px solid var(--mainColor);
}
.cs-services-inner-items .item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 35px;
}
.cs-services-inner-items .item:last-child {
  margin-bottom: 0;
}

.cs-services-all-btn {
  text-align: center;
  margin-top: 65px;
}

.team-style-two-area .section-title {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.team-style-two-area .section-title h2 {
  font-size: 50px;
}

/*================================================
CS Testimonials Area CSS
=================================================*/
.cs-testimonials-inner {
  border-radius: 30px;
  background: linear-gradient(136deg, #ED407E 1.15%, #8E42C9 50.99%, #5D7CE5 99.15%);
  padding: 100px;
}

.cs-testimonials-item .cs-testimonials-content {
  max-width: 850px;
}
.cs-testimonials-item .cs-testimonials-content h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--whiteColor);
  margin-bottom: 15px;
}
.cs-testimonials-item .cs-testimonials-content p {
  font-size: 22.5px;
  color: var(--whiteColor);
  margin-bottom: 0;
  font-family: var(--headingFontFamily);
  font-weight: 400;
}
.cs-testimonials-item .cs-testimonials-content .info {
  display: flex;
  align-items: center;
  margin-top: 70px;
}
.cs-testimonials-item .cs-testimonials-content .info .image img {
  max-width: 75px;
  border-radius: 50%;
}
.cs-testimonials-item .cs-testimonials-content .info .title {
  margin-left: 20px;
}
.cs-testimonials-item .cs-testimonials-content .info .title h4 {
  font-size: 18px;
  margin-bottom: 0;
  color: var(--whiteColor);
}
.cs-testimonials-item .cs-testimonials-content .info .title span {
  font-size: 14px;
  color: #E9E9E9;
  font-weight: 500;
  display: block;
  margin-top: 12px;
  font-family: var(--headingFontFamily);
}
.cs-testimonials-item .cs-testimonials-quote {
  text-align: end;
}

.cs-testimonials-slides.owl-theme .owl-dots {
  display: flex;
  justify-content: center;
}
.cs-testimonials-slides.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 8px;
  border-radius: 50%;
  border: 1px solid #aaaaaa;
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.cs-testimonials-slides.owl-theme .owl-dots .owl-dot:hover span, .cs-testimonials-slides.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}
.cs-testimonials-slides.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 15px;
}

/*================================================
CS Video Area CSS
=================================================*/
.cs-video-area {
  overflow: hidden;
}
.cs-video-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.cs-video-wrap .video-wrap {
  display: flex;
  max-width: 100%;
}

/*================================================
CS Fun Facts Area CSS
=================================================*/
.cs-fun-facts-area {
  overflow: hidden;
}

.cs-fun-facts-inner {
  border-bottom: 1px solid #e9e1e1;
}

.cs-fun-facts-card {
  display: flex;
  align-items: center;
}
.cs-fun-facts-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--mainColor);
  height: 80px;
  width: 80px;
  border-radius: 50%;
  position: relative;
  transition: var(--transition);
}
.cs-fun-facts-card .icon img {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
}
.cs-fun-facts-card .content {
  margin-left: 20px;
}
.cs-fun-facts-card .content h3 {
  line-height: 1;
  font-size: 55px;
  margin-bottom: 2.5px;
}
.cs-fun-facts-card .content h3 .sign {
  position: relative;
  top: 1.5px;
  left: 5px;
}
.cs-fun-facts-card .content p {
  font-weight: 500;
  font-family: var(--headingFontFamily);
  margin-bottom: 0;
}
.cs-fun-facts-card:hover .icon {
  background-color: var(--secondaryColor);
}

/*================================================
CTA Style Two Area
=================================================*/
.cta-style-two-area.cs-cta-little-gap {
  margin: 0 30px;
}
.cta-style-two-area.cs-cta-little-gap .cta-inner-box-content .default-btn-two {
  background: linear-gradient(136deg, #ED407E 1.15%, #8E42C9 50.99%, #5D7CE5 99.15%);
}
.cta-style-two-area.cs-cta-little-gap .cta-inner-box-content .default-btn-two::before {
  background: var(--primaryGradientColorThree);
}
.cta-style-two-area.cs-cta-little-gap .cta-inner-box-content .shape9 {
  max-width: 130px;
  top: 55%;
  left: 2%;
  transform: translateY(-55%) translateX(-2%);
}
.cta-style-two-area.cs-cta-little-gap .cta-inner-box-content .shape10 {
  max-width: 145px;
  right: 0;
  bottom: 0;
}

/*================================================
Application Security Banner Area
=================================================*/
.application-security-banner-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 320px;
  padding-bottom: 370px;
}
.application-security-banner-area .background-video {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  z-index: -11;
  max-width: unset !important;
}
.application-security-banner-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--blackColor2);
  opacity: 0.7;
  z-index: -1;
}

.application-security-banner-content {
  text-align: center;
  max-width: 1110px;
  margin: auto;
}
.application-security-banner-content .sub-title {
  font-size: 18px;
  font-weight: 700;
  background: var(--primaryGradientColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 15px;
}
.application-security-banner-content h1 {
  font-size: 85px;
  color: var(--whiteColor);
  margin-bottom: 25px;
}
.application-security-banner-content p {
  color: #C5C3C8;
  max-width: 700px;
  margin: auto;
}
.application-security-banner-content .banner-btn-box {
  padding: 0;
  margin-top: 35px;
  margin-bottom: 0;
}
.application-security-banner-content .banner-btn-box li {
  list-style-type: none;
  display: inline-block;
  margin-right: 25px;
}
.application-security-banner-content .banner-btn-box li:last-child {
  margin-right: 0;
}

/*================================================
AS Features Area
=================================================*/
.as-features-inner {
  border-radius: 15px;
  background: var(--whiteColor);
  box-shadow: 0px 469px 131px 0px rgba(168, 168, 168, 0), 0px 300px 120px 0px rgba(168, 168, 168, 0.01), 0px 169px 101px 0px rgba(168, 168, 168, 0.05), 0px 75px 75px 0px rgba(168, 168, 168, 0.09), 0px 19px 41px 0px rgba(168, 168, 168, 0.1);
  padding: 100px 80px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: -150px;
}

.as-features-card .icon {
  margin-bottom: 30px;
}
.as-features-card h3 {
  font-size: 23.5px;
  margin-bottom: 12px;
}
.as-features-card p {
  margin-bottom: 0;
  font-family: var(--headingFontFamily);
  max-width: 315px;
}

/*================================================
AS Services Area
=================================================*/
.as-services-area {
  background-color: #FAF4FF;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.as-services-area .section-title p {
  font-family: var(--headingFontFamily);
}

.as-services-card {
  margin-bottom: 25px;
  background-color: var(--whiteColor);
  border-radius: 10px;
  padding: 25px;
  transition: var(--transition);
}
.as-services-card .services-image {
  border-radius: 10px;
  overflow: hidden;
}
.as-services-card .services-image a img {
  border-radius: 10px;
  transition: var(--transition);
}
.as-services-card .services-content {
  margin-top: 30px;
}
.as-services-card .services-content h3 {
  font-size: 23.5px;
  margin-bottom: 12px;
}
.as-services-card .services-content p {
  margin-bottom: 25px;
  font-family: var(--headingFontFamily);
}
.as-services-card:hover {
  transform: translateY(-5px);
}
.as-services-card:hover .services-image a img {
  transform: scale(1.1);
}

.as-services-all-btn {
  text-align: center;
  margin-top: 35px;
}

.as-services-shape1 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  width: 100%;
}
.as-services-shape1 img {
  width: 100%;
}

.as-services-shape2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  z-index: -1;
  width: 100%;
}
.as-services-shape2 img {
  width: 100%;
}

/*================================================
AS Choose Area
=================================================*/
.as-choose-area {
  overflow: hidden;
}

.as-choose-content h2 {
  font-size: 42px;
  margin-bottom: 12px;
}
.as-choose-content p {
  font-family: var(--headingFontFamily);
  margin-bottom: 0;
}
.as-choose-content .inner-items {
  margin-top: 35px;
}
.as-choose-content .inner-items .item {
  border-radius: 15px;
  background-color: #FAF4FF;
  display: flex;
  align-items: center;
  padding: 30px;
  margin-bottom: 10px;
}
.as-choose-content .inner-items .item .title {
  margin-left: 25px;
}
.as-choose-content .inner-items .item .title h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.as-choose-content .inner-items .item .title p {
  font-family: var(--headingFontFamily);
  font-size: 18px;
}
.as-choose-content .inner-items .item:last-child {
  margin-bottom: 0;
}
.as-choose-content .extra-big {
  color: var(--blackColor2);
  font-size: 17px;
  margin-top: 25px;
}
.as-choose-content .choose-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
  margin-top: 30px;
  margin-bottom: 0;
}
.as-choose-content .choose-btn li {
  list-style-type: none;
  margin-right: 20px;
}
.as-choose-content .choose-btn li:last-child {
  margin-right: 0;
}

.as-choose-images {
  padding-left: 50px;
}
.as-choose-images .image-one {
  margin-top: 285px;
}
.as-choose-images .image-one img {
  border-radius: 15px;
}
.as-choose-images .image-two img {
  border-radius: 15px;
}

/*================================================
AS Testimonials Area CSS
=================================================*/
.as-testimonials-inner {
  border-radius: 30px;
  background: linear-gradient(136deg, #ED407E 1.15%, #8E42C9 50.99%, #5D7CE5 99.15%);
  padding: 100px;
  position: relative;
  z-index: 1;
}
.as-testimonials-inner .as-testimonials-quote {
  position: absolute;
  right: 50px;
  top: 100px;
  z-index: -1;
}

.as-testimonials-item {
  max-width: 850px;
  margin: auto;
  text-align: center;
}
.as-testimonials-item .quote {
  margin-bottom: 35px;
}
.as-testimonials-item .quote img {
  width: auto;
  margin: auto;
}
.as-testimonials-item h3 {
  font-size: 30px;
  font-weight: 600;
  color: var(--whiteColor);
  margin-bottom: 15px;
}
.as-testimonials-item p {
  font-size: 22.5px;
  color: var(--whiteColor);
  margin-bottom: 0;
  font-family: var(--headingFontFamily);
  font-weight: 400;
}
.as-testimonials-item .info {
  display: flex;
  align-items: center;
  margin-top: 30px;
  justify-content: center;
}
.as-testimonials-item .info .image img {
  max-width: 75px;
  border-radius: 50%;
}
.as-testimonials-item .info .title {
  margin-left: 20px;
}
.as-testimonials-item .info .title h4 {
  font-size: 18px;
  margin-bottom: 0;
  color: var(--whiteColor);
}
.as-testimonials-item .info .title span {
  font-size: 14px;
  color: #E9E9E9;
  font-weight: 500;
  display: block;
  margin-top: 12px;
  font-family: var(--headingFontFamily);
}

.as-testimonials-slides.owl-theme .owl-nav {
  margin-top: 0;
}
.as-testimonials-slides.owl-theme .owl-nav [class*=owl-] {
  margin: 0;
  padding: 0;
  background: transparent;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 34px;
  width: 34px;
  height: 24px;
}
.as-testimonials-slides.owl-theme .owl-nav [class*=owl-].owl-prev {
  background-image: url(../image/left.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.as-testimonials-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  right: 0;
  left: auto;
  background-image: url(../image/right.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.as-testimonials-slides.owl-theme .owl-nav [class*=owl-] span {
  display: none;
}

/*================================================
AS Case Studies Area CSS
=================================================*/
.as-case-studies-area .section-title {
  max-width: 790px;
}
.as-case-studies-area .section-title h2 {
  font-size: 50px;
}
.as-case-studies-area .section-title p {
  font-family: var(--headingFontFamily);
  max-width: 585px;
}

.as-case-studies-card {
  margin-bottom: 25px;
}
.as-case-studies-card .image {
  overflow: hidden;
}
.as-case-studies-card .image img {
  transition: var(--transition);
}
.as-case-studies-card .content {
  margin-top: 27px;
}
.as-case-studies-card .content h3 {
  font-size: 23.5px;
  margin-bottom: 12px;
}
.as-case-studies-card .content p {
  margin-bottom: 0;
  font-family: var(--headingFontFamily);
}
.as-case-studies-card:hover .image img {
  transform: scale(1.1);
}

/*================================================
CTA Area CSS
=================================================*/
.cta-area.extra-big-border-radius .cta-inner {
  border-radius: 15px;
}
.cta-area.extra-big-border-radius .cta-inner h2 {
  font-size: 50px;
  max-width: 735px;
  line-height: 1.3;
}
.cta-area.extra-big-border-radius .cta-inner .default-btn {
  background: linear-gradient(136deg, #ED407E 1.15%, #8E42C9 50.99%, #5D7CE5 99.15%);
  padding: 15px 30px;
  border-radius: 5px;
  color: var(--whiteColor);
}
.cta-area.extra-big-border-radius .cta-inner .default-btn::before {
  background: var(--primaryGradientColorThree);
  width: 100%;
}
.cta-area.extra-big-border-radius .cta-inner .default-btn::after {
  display: none;
}
.cta-area.extra-big-border-radius .cta-inner .default-btn span::before, .cta-area.extra-big-border-radius .cta-inner .default-btn span::after {
  display: none;
}

/*================================================
AS Blog Area CSS
=================================================*/
.as-blog-area {
  overflow: hidden;
}

.as-blog-items .item {
  border-radius: 15px;
  background: var(--whiteColor);
  padding: 25px;
  margin-bottom: 25px;
}
.as-blog-items .item .post-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
  border-radius: 15px;
}
.as-blog-items .item .post-image .link-btn {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  position: absolute;
}
.as-blog-items .item .post-content {
  padding: 30px 5px 30px 20px;
}
.as-blog-items .item .post-content .top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.as-blog-items .item .post-content .top .title {
  max-width: 425px;
}
.as-blog-items .item .post-content .top .title .tag-btn {
  display: inline-flex;
  padding: 5.5px 15px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #6F6B73;
  color: #6F6B73;
  transition: var(--transition);
  border-radius: 50px;
  font-family: var(--headingFontFamily);
  margin-bottom: 15px;
}
.as-blog-items .item .post-content .top .title .tag-btn:hover {
  border: 1px solid var(--mainColor);
}
.as-blog-items .item .post-content .top .title h3 {
  font-size: 23.5px;
  margin-bottom: 0;
  line-height: 1.4;
}
.as-blog-items .item .post-content .top .arrow-btn {
  margin-left: 25px;
}
.as-blog-items .item .post-content .with-gap {
  margin-top: 155px;
  font-family: var(--headingFontFamily);
  max-width: 455px;
}
.as-blog-items .item:last-child {
  margin-bottom: 0;
}

.as-blog-all-btn {
  text-align: center;
  margin-top: 65px;
}

/*================================================
Footer Area Area
=================================================*/
.footer-area.cs-footer-little-gap {
  margin: 0 30px;
}
.footer-area.cs-footer-little-gap .single-footer-widget .newsletter-box {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.footer-area.cs-footer-little-gap .single-footer-widget .newsletter-box button {
  background-color: transparent;
  background: var(--primaryGradientColor);
  border-radius: 5px;
  padding-top: 12px;
  padding-bottom: 12px;
  transition: 0.7s;
}
.footer-area.cs-footer-little-gap .single-footer-widget .newsletter-box button:hover {
  background: var(--primaryGradientColorThree);
}
.footer-area.cs-footer-little-bg-gap .single-footer-widget .newsletter-box {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.footer-area.cs-footer-little-bg-gap .single-footer-widget .newsletter-box button {
  background-color: transparent;
  background: var(--primaryGradientColor);
  border-radius: 5px;
  padding-top: 12px;
  padding-bottom: 12px;
  transition: 0.7s;
}
.footer-area.cs-footer-little-bg-gap .single-footer-widget .newsletter-box button:hover {
  background: var(--primaryGradientColorThree);
}

/* End "Cloud Security Demo" & "Application Security" CSS
=========================================================*/
/* Start "Government Cyber Defense , Threat Intelligence Analysis &  AI-Powered Security" CSS
============================================================*/
.gd-btn {
  font-size: 14px;
  font-weight: 400;
  padding: 12px 20px;
  box-shadow: unset;
}

.container-fluid.gd-container-fluid {
  max-width: 1620px;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
}

.government-defense-top-header {
  padding: 15px 0;
  background-color: transparent;
  position: relative;
  z-index: 2;
}

.gd-header-widget .contact-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.gd-header-widget .contact-list li {
  display: inline-block;
  padding-right: 30px;
  color: var(--mainColor);
}
.gd-header-widget .contact-list li:last-child {
  padding-right: 0;
}
.gd-header-widget .contact-list li a {
  color: var(--whiteColor);
}
.gd-header-widget .contact-list li a:hover {
  color: var(--mainColor);
}
.gd-header-widget .social-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  position: relative;
}
.gd-header-widget .social-links::before {
  content: "";
  position: absolute;
  top: -4px;
  right: -34px;
  height: 30px;
  width: 1px;
  opacity: 0.2;
  background-color: rgb(255, 255, 255);
}
.gd-header-widget .social-links li {
  display: inline-block;
  margin-right: 20px;
}
.gd-header-widget .social-links li:last-child {
  margin-right: 0;
}
.gd-header-widget .social-links li a {
  color: var(--whiteColor);
}
.gd-header-widget .social-links li a svg {
  width: 18px;
  fill: var(--whiteColor);
}
.gd-header-widget .social-links li a:hover {
  color: var(--mainColor);
}
.gd-header-widget .social-links li a:hover svg {
  fill: var(--mainColor);
}
.gd-header-widget .support-link {
  margin-left: 60px;
  color: var(--whiteColor);
}
.gd-header-widget .support-link img {
  position: relative;
  margin-right: 4px;
  top: -2px;
}
.gd-header-widget .support-link i {
  margin-right: 4px;
  color: var(--mainColor);
}

.government-defense-navbar {
  position: relative;
  z-index: 2;
  background-color: transparent;
}
.government-defense-navbar.is-sticky {
  background-color: transparent !important;
}
.government-defense-navbar.is-sticky::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000000 !important;
  opacity: 0.7;
}
.government-defense-navbar .navbar-nav {
  border-radius: 100px;
  padding-left: 70px !important;
  padding-right: 70px;
  background: var(--whiteColor);
}
.government-defense-navbar .cyard-nav .navbar .navbar-nav .nav-item {
  margin-left: 18px;
  margin-right: 18px;
}
.government-defense-navbar .cyard-nav .navbar .navbar-nav .nav-item a {
  color: #000000;
}
.government-defense-navbar .cyard-nav .navbar .navbar-nav .nav-item .dropdown-toggle::before {
  height: 6px;
  top: 41.5px;
  right: 2px;
  background-color: #000000;
}
.government-defense-navbar .cyard-nav .navbar .navbar-nav .nav-item .dropdown-toggle::after {
  right: 6px;
  width: 1px;
  height: 6px;
  top: 41.5px;
  background-color: #000000;
}
.government-defense-navbar .cyard-nav .navbar .navbar-nav .nav-item .dropdown-toggle.active {
  color: var(--mainColor);
}
.government-defense-navbar .cyard-nav .navbar .navbar-nav .nav-item .dropdown-toggle.active::before {
  background-color: var(--mainColor);
}
.government-defense-navbar .cyard-nav .navbar .navbar-nav .nav-item .dropdown-toggle.active::after {
  background-color: var(--mainColor);
}
.government-defense-navbar .cyard-nav .navbar .navbar-nav .nav-item .dropdown-toggle:hover {
  color: var(--mainColor);
}
.government-defense-navbar .cyard-nav .navbar .navbar-nav .nav-item .dropdown-toggle:hover::before {
  background-color: var(--mainColor);
}
.government-defense-navbar .cyard-nav .navbar .navbar-nav .nav-item .dropdown-toggle:hover::after {
  background-color: var(--mainColor);
}
.government-defense-navbar .cyard-nav .navbar .navbar-nav .nav-item.active .dropdown-toggle::before {
  background-color: var(--mainColor);
}
.government-defense-navbar .cyard-nav .navbar .navbar-nav .nav-item.active .dropdown-toggle::after {
  background-color: var(--mainColor);
}
.government-defense-navbar .cyard-nav .navbar .navbar-nav .nav-item:hover .dropdown-toggle::before {
  background-color: var(--mainColor);
}
.government-defense-navbar .cyard-nav .navbar .navbar-nav .nav-item:hover .dropdown-toggle::after {
  background-color: var(--mainColor);
}
.government-defense-navbar .cyard-nav .navbar .others-option {
  margin-left: 100px;
}
.government-defense-navbar .cyard-nav .navbar .others-option .option-item .search-cart li {
  padding-right: 40px;
  position: relative;
}
.government-defense-navbar .cyard-nav .navbar .others-option .option-item .search-cart li::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 52px;
  height: 30px;
  width: 1px;
  opacity: 0.2;
  background-color: rgb(255, 255, 255);
}
.government-defense-navbar .cyard-nav .navbar .others-option .option-item .search-cart li:last-child {
  padding-right: 0;
}
.government-defense-navbar .cyard-nav .navbar .others-option .option-item .search-cart li:last-child::before {
  display: none;
}
.government-defense-navbar .cyard-nav .navbar .others-option .option-item .search-cart li i {
  color: var(--whiteColor);
}
.government-defense-navbar .cyard-nav .navbar .others-option .option-item .search-cart li a {
  position: relative;
}
.government-defense-navbar .cyard-nav .navbar .others-option .option-item .search-cart li a::before {
  content: "0";
  position: absolute;
  top: -5px;
  right: -5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  color: var(--whiteColor);
  font-size: 12px;
  text-align: center;
  line-height: 17px;
  background-color: rgb(237, 29, 97);
}
.government-defense-navbar .cyard-nav .navbar .others-option .option-item .default-btn {
  border: 1px solid var(--mainColor);
  box-shadow: unset;
  background-color: transparent;
  color: var(--whiteColor);
  font-size: 14px;
  font-weight: 400;
  padding: 10px 20px;
}

.others-option-for-responsive-new .option-inner .others-option .option-item {
  margin-bottom: 0;
}
.others-option-for-responsive-new .option-inner .others-option .option-item .cart-btn {
  display: inline-block;
  position: relative;
  top: 0;
  font-size: 18px;
  color: var(--blackColor);
}
.others-option-for-responsive-new .option-inner .others-option .option-item .cart-btn span {
  position: absolute;
  right: -4px;
  top: -4px;
  width: 14px;
  height: 14px;
  text-align: center;
  line-height: 13.9px;
  border-radius: 50%;
  color: var(--whiteColor);
  background-color: red;
  font-size: 9px;
  font-weight: 600;
}
.others-option-for-responsive-new .option-inner .others-option .option-item .cart-btn::before {
  top: 6px;
  right: -15px;
  width: 1px;
  content: "";
  height: 16px;
  position: absolute;
  background-color: #cdbebe;
}
.others-option-for-responsive-new .option-inner .others-option .option-item .search-cart li .search-icon {
  margin-left: 7px;
  margin-right: 15px;
}
.others-option-for-responsive-new .option-inner .others-option .option-item .default-btn {
  padding: 8px 19px;
}

.government-defense-hero-area {
  padding: 200px 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -137px;
  position: relative;
  z-index: 1;
}
.government-defense-hero-area .hero-shape1 {
  position: absolute;
  left: 0;
  right: 0;
  top: 136px;
  margin: auto;
  z-index: -1;
  text-align: center;
}

.government-defense-hero-content {
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.government-defense-hero-content h1 {
  color: var(--whiteColor);
  font-size: 100px;
  margin-bottom: -5px;
}
.government-defense-hero-content h1 img {
  margin-left: -10px;
  margin-right: -14px;
  position: relative;
  top: -5px;
}
.government-defense-hero-content p {
  color: var(--whiteColor);
  font-size: 14px;
}
.government-defense-hero-content .round-text {
  width: 130px;
  height: 130px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.government-defense-hero-content .round-text .icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  transition: var(--transition);
  margin-left: auto;
  margin-right: auto;
  background-color: rgb(237, 29, 97);
}
.government-defense-hero-content .round-text .round-text {
  transition: var(--transition);
}
.government-defense-hero-content .round-text:hover .icon {
  background-color: #000000;
}
.government-defense-hero-content .round-text:hover .round-text {
  transform: rotate(90deg);
}
.government-defense-hero-content .video-widget {
  margin-top: -73px;
}
.government-defense-hero-content .video-widget img {
  width: 696px;
  height: 349px;
  border-radius: 350px 350px 0 0;
}

.gd-hero-item {
  margin-top: -128px;
  padding-bottom: 50px;
}
.gd-hero-item .hero-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 15px;
  border: 0px solid rgba(216, 216, 216, 0);
  background: radial-gradient(231% 135.8% at 0.9% 2.98%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(21px);
          backdrop-filter: blur(21px);
}
.gd-hero-item .hero-item .icon {
  width: 57px;
  height: 57px;
  flex-shrink: 0;
  text-align: center;
  line-height: 57px;
  margin-right: 10px;
  border-radius: 10px;
  background: #D5E7F3;
}
.gd-hero-item .hero-item span {
  color: var(--whiteColor);
  font-size: 14px;
}
.gd-hero-item .hero-item p {
  color: var(--whiteColor);
  font-size: 14px;
  margin-bottom: 0;
}

.government-defense-about-area {
  border-radius: 150px 150px 0px 0px;
  background: #D5E7F3;
  padding-top: 80px;
  margin-top: -200px;
  position: relative;
  z-index: 2;
}
.government-defense-about-area .gd-about-heading {
  max-width: 875px;
  margin-left: 150px;
  margin-bottom: 40px;
}
.government-defense-about-area .gd-about-heading h2 {
  color: #000000;
  font-size: 44px;
  margin-bottom: 0;
}

.gd-about-image {
  padding-right: 100px;
}
.gd-about-image .image img {
  border-radius: 25px;
}
.gd-about-image ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-left: 150px;
  margin-top: 50px;
}
.gd-about-image ul li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #666;
}
.gd-about-image ul li:last-child {
  margin-bottom: 0;
}
.gd-about-image ul li .icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-right: 10px;
  line-height: 32px;
  position: relative;
  top: -3px;
  font-size: 14px;
  border-radius: 50%;
  color: rgb(237, 29, 97);
  text-align: center;
  background-color: rgb(255, 255, 255);
}

.gd-about-content {
  max-width: 650px;
}
.gd-about-content h4 {
  color: #000;
  font-size: 22px;
  margin-bottom: 16px;
}
.gd-about-content .first-p {
  margin-bottom: 20px;
}
.gd-about-content p {
  color: #666;
  font-size: 14px;
}
.gd-about-content .default-btn {
  margin-bottom: 50px;
  border: 1px solid #ED1D61;
  background: linear-gradient(86deg, #E91B25 0%, #ED1D61 100%);
}
.gd-about-content .about-card {
  border-radius: 25px;
  background: var(--whiteColor);
  padding: 25px 30px 21px 30px;
}
.gd-about-content .about-card h5 {
  color: #000;
  font-size: 22px;
  margin-bottom: 20px;
}
.gd-about-content .about-card .image {
  width: 122px;
  height: 123px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.government-defense-service-area {
  background: #D5E7F3;
}

.inner-gd-service-area {
  padding-top: 80px;
  position: relative;
  border-radius: 150px 150px 0px 0px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.inner-gd-service-area .gd-service-heading {
  margin-bottom: 40px;
}
.inner-gd-service-area .gd-service-heading h2 {
  color: var(--whiteColor);
  font-size: 44px;
  max-width: 875px;
  margin-bottom: 0;
}
.inner-gd-service-area .gd-service-heading .default-btn {
  border: 1px solid #ED1D61;
  background: transparent;
}
.inner-gd-service-area .gd-service-tab .nav-link {
  text-align: start;
  padding: 0;
  background-color: transparent;
  padding-bottom: 21px;
  margin-bottom: 21px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  color: var(--whiteColor);
  font-family: var(--headingFontFamily);
  font-size: 22px;
  font-weight: 700;
}
.inner-gd-service-area .gd-service-tab .nav-link:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.inner-gd-service-area .gd-service-tab .nav-link span {
  color: #ED1D61;
  font-size: 14px;
  margin-right: 20px;
  font-weight: 400;
  position: relative;
  top: -2px;
}
.inner-gd-service-area .gd-service-tab .nav-link.active {
  color: #ED1D61;
}
.inner-gd-service-area .gd-service-tab .nav-link.active span {
  color: var(--whiteColor);
}
.inner-gd-service-area .service-shape1 {
  position: absolute;
  left: 35px;
  bottom: 30px;
}

.gd-service-tab-widget .image {
  margin-bottom: 20px;
}
.gd-service-tab-widget .image img {
  border-radius: 20px;
}
.gd-service-tab-widget p {
  font-size: 14px;
  color: var(--whiteColor);
}
.gd-service-tab-widget h2 {
  font-size: 44px;
  margin-right: 30px;
  color: var(--whiteColor);
}
.gd-service-tab-widget .default-btn {
  margin-left: 112px;
  margin-top: 40px;
  border: 1px solid #ED1D61;
  background: transparent;
}
.gd-service-tab-widget .ml-30 {
  margin-left: 30px;
}

.government-defense-choose-area {
  background-color: #000000;
}
.government-defense-choose-area .inner-gd-choose {
  padding-top: 90px;
  background-color: #EEE6F3;
  border-radius: 150px 150px 0px 0px;
}
.government-defense-choose-area .gd-choose-heading {
  margin-left: auto;
  margin-right: auto;
  max-width: 1320px;
  margin-bottom: 40px;
  text-align: center;
}
.government-defense-choose-area .gd-choose-heading h2 {
  color: #000000;
  font-size: 44px;
  margin-bottom: 0;
}

.gd-choose-image {
  padding-right: 100px;
}
.gd-choose-image img {
  border-radius: 25px;
}

.gd-choose-content {
  padding-left: 15px;
  margin-top: 12px;
}
.gd-choose-content h4 {
  color: #000;
  font-size: 22px;
  margin-bottom: 25px;
}
.gd-choose-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 35px;
}
.gd-choose-content ul li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #666;
}
.gd-choose-content ul li:last-child {
  margin-bottom: 0;
}
.gd-choose-content ul li strong {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  margin-right: 4px;
}
.gd-choose-content ul li .icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-right: 10px;
  line-height: 32px;
  position: relative;
  top: -3px;
  font-size: 14px;
  border-radius: 50%;
  color: rgb(237, 29, 97);
  text-align: center;
  background-color: rgb(255, 255, 255);
}
.gd-choose-content .help-emergency {
  padding-right: 160px;
}
.gd-choose-content h5 {
  color: #000;
  font-size: 22px;
  margin-bottom: 18px;
}
.gd-choose-content .item a {
  color: #ED1D61;
  font-weight: 700;
  font-size: 22px;
}

.government-defense-threats-area {
  background-color: #EEE6F3;
}

.inner-gd-threats-widget {
  padding: 40px 18px 40px 48px;
  background-color: var(--whiteColor);
}
.inner-gd-threats-widget h3 {
  color: #000;
  font-size: 44px;
  text-align: center;
  margin-bottom: 35px;
}
.inner-gd-threats-widget .col-lg-3:nth-child(1) .gd-threats-widget {
  margin-right: 20px;
}
.inner-gd-threats-widget .col-lg-3:nth-child(2) .gd-threats-widget {
  margin-left: -15px;
}
.inner-gd-threats-widget .col-lg-3:nth-child(3) .gd-threats-widget {
  margin-right: 10px;
}
.inner-gd-threats-widget .col-lg-3:nth-child(4) .gd-threats-widget {
  border: none;
}

.gd-threats-widget {
  border-right: solid 1px rgb(216, 216, 216);
}
.gd-threats-widget h4 {
  color: #000;
  font-size: 22px;
  padding-right: 40px;
  margin-bottom: 25px;
}
.gd-threats-widget p {
  color: #666;
  font-weight: 400;
  font-family: var(--headingFontFamily);
  font-size: 14px;
}
.gd-threats-widget p span {
  color: #ED1D61;
  font-weight: 700;
}

.government-defense-solution-area {
  background-color: #EEE6F3;
}
.government-defense-solution-area .solution-heading {
  margin-bottom: 40px;
  max-width: 985px;
}
.government-defense-solution-area .solution-heading h2 {
  color: var(--whiteColor);
  font-size: 44px;
  margin-bottom: 0;
}

.inner-gd-solution {
  padding-top: 90px;
  position: relative;
  border-radius: 150px 150px 0px 0px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.inner-gd-solution .solution-shape1 {
  position: absolute;
  right: 150px;
  top: 140px;
}

.gd-solution-widget {
  border-radius: 25px;
  padding: 22px 30px;
  border: 1px solid #282828;
}
.gd-solution-widget span {
  color: var(--whiteColor);
  font-size: 14px;
  display: block;
  margin-bottom: -10px;
}
.gd-solution-widget .image {
  width: 106px;
  height: 100px;
  margin-bottom: 45px;
  margin-left: auto;
}
.gd-solution-widget h3 {
  color: var(--whiteColor);
  font-size: 22px;
  margin-bottom: 0;
  padding-right: 15px;
}

.gd-solution-image img {
  border-radius: 25px;
}

.gd-funfact-widget h3 {
  color: #ED1D61;
  font-size: 44px;
  margin-bottom: 15px;
}
.gd-funfact-widget p {
  color: #D5E7F3;
  font-size: 14px;
}
.gd-funfact-widget p img {
  position: relative;
  margin-right: 8px;
  top: -2px;
}

.government-defense-projects-area {
  background-color: #000000;
}
.government-defense-projects-area .inner-gd-project-area {
  padding-top: 90px;
  background-color: #E7EEE6;
  border-radius: 150px 150px 0px 0px;
}
.government-defense-projects-area .gd-project-heading {
  margin-bottom: 40px;
}
.government-defense-projects-area .gd-project-heading h2 {
  color: #000000;
  font-size: 44px;
  max-width: 875px;
  margin-bottom: 0;
}
.government-defense-projects-area .gd-project-heading .default-btn {
  color: #000000;
  border: 1px solid #ED1D61;
  background: transparent;
}
.government-defense-projects-area .gd-project-heading .default-btn:hover {
  color: var(--whiteColor);
}
.government-defense-projects-area .owl-item {
  transition: var(--transition);
}
.government-defense-projects-area .owl-item.center .gd-project-box h3 {
  opacity: 1;
}
.government-defense-projects-area .owl-theme .owl-dots .owl-dot {
  margin-top: 25px !important;
}
.government-defense-projects-area .owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 4px;
  border-radius: 50%;
  border: 1px solid rgb(237, 29, 97);
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.government-defense-projects-area .owl-theme .owl-dots .owl-dot:hover span, .government-defense-projects-area .owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.gd-project-box h3 {
  color: #000;
  font-family: var(--headingFontFamily);
  font-size: 22px;
  font-weight: 700;
  opacity: 0;
  transition: var(--transition);
}
.gd-project-box h3 a {
  color: #000;
}
.gd-project-box .image {
  margin-bottom: 20px;
}
.gd-project-box .image img {
  border-radius: 25px;
}

.government-defense-partner-area {
  background-color: #E7EEE6;
}

.inner-gd-partners {
  border-radius: 25px;
  padding: 40px 50px 50px 50px;
  background: var(--whiteColor);
}
.inner-gd-partners h4 {
  color: #000;
  font-size: 44px;
  text-align: center;
  margin-bottom: 40px;
}

.government-defense-testimonial-area {
  background-color: #E7EEE6;
}

.inner-gd-testimonial-area {
  padding-top: 90px;
  padding-bottom: 295px;
  border-radius: 150px 150px 0px 0px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.inner-gd-testimonial-area .gd-testimonial-heading {
  margin-bottom: 40px;
  max-width: 985px;
}
.inner-gd-testimonial-area .gd-testimonial-heading h2 {
  color: var(--whiteColor);
  font-size: 44px;
  margin-bottom: 0;
}

.gd-testimonial-widget {
  border-radius: 25px;
  background: #0F0F0F;
  padding: 50px 50px;
}
.gd-testimonial-widget .icon {
  width: 38px;
  height: 29px;
  margin-bottom: 25px;
}
.gd-testimonial-widget h5 {
  color: var(--whiteColor);
  font-size: 22px;
  margin-bottom: 82px;
}
.gd-testimonial-widget p {
  color: var(--whiteColor);
  font-size: 14px;
  margin-bottom: 20px;
}
.gd-testimonial-widget .user-details .image {
  width: 75px;
  height: 75px;
  flex-shrink: 0;
  margin-right: 20px;
}
.gd-testimonial-widget .user-details .image img {
  border-radius: 50%;
}
.gd-testimonial-widget .user-details h6 {
  color: var(--whiteColor);
  font-size: 18px;
  margin-bottom: 0;
}

.inner-gd-testimonial-area {
  position: relative;
}
.inner-gd-testimonial-area .gd-testimonial-image {
  margin-left: -145px;
}
.inner-gd-testimonial-area .gd-testimonial-image img {
  border-radius: 25px;
}
.inner-gd-testimonial-area .gd-testimonial-slider-widget {
  margin-left: -95px;
}
.inner-gd-testimonial-area .gd-testimonial-slider-widget .owl-theme .owl-nav {
  margin-top: 0;
}
.inner-gd-testimonial-area .gd-testimonial-slider-widget .owl-theme .owl-nav [class*=owl-] {
  margin: 0 10px;
  padding: 0;
  background: transparent;
  color: var(--whiteColor);
  border-radius: 50%;
  transition: var(--transition);
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 44px;
  text-align: center;
  font-size: 20px;
  position: absolute;
  bottom: -95px;
  border: solid 1px rgb(237, 29, 97);
}
.inner-gd-testimonial-area .gd-testimonial-slider-widget .owl-theme .owl-nav [class*=owl-].owl-prev {
  margin-left: -55px;
}
.inner-gd-testimonial-area .gd-testimonial-slider-widget .owl-theme .owl-nav [class*=owl-].owl-prev::before {
  content: url(../image/left-arrow.png);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
.inner-gd-testimonial-area .gd-testimonial-slider-widget .owl-theme .owl-nav [class*=owl-].owl-next {
  margin-left: 5px;
}
.inner-gd-testimonial-area .gd-testimonial-slider-widget .owl-theme .owl-nav [class*=owl-].owl-next::before {
  content: url(../image/right-arrow.png);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
.inner-gd-testimonial-area .gd-testimonial-slider-widget .owl-theme .owl-nav [class*=owl-]:hover {
  color: var(--whiteColor);
  background: var(--primaryGradientColor);
}
.inner-gd-testimonial-area .testimonial-shape {
  position: absolute;
  right: 148px;
  top: 90px;
}

.gd-blog-heading {
  margin-bottom: 40px;
}
.gd-blog-heading h2 {
  color: #000000;
  font-size: 44px;
  max-width: 870px;
  margin-bottom: 0;
}
.gd-blog-heading .default-btn {
  color: #000000;
  border: 1px solid #ED1D61;
  background-color: transparent;
}
.gd-blog-heading .default-btn:hover {
  color: var(--whiteColor);
}

.government-defense-blog-area {
  margin-top: -180px;
  padding-top: 90px;
  position: relative;
  z-index: 1;
  border-radius: 150px 150px 0px 0px;
  background-color: rgb(242, 230, 230);
}

.gd-blog-widget {
  border-radius: 25px;
  padding: 20px 30px 30px 30px;
  background: var(--whiteColor);
}
.gd-blog-widget ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 18px;
}
.gd-blog-widget ul li {
  display: inline-block;
  color: #666;
  font-size: 14px;
  position: relative;
  margin-right: 22px;
}
.gd-blog-widget ul li:last-child {
  margin-right: 0;
}
.gd-blog-widget ul li:last-child::before {
  display: none;
}
.gd-blog-widget ul li a {
  color: var(--mainColor);
}
.gd-blog-widget ul li::before {
  content: "";
  position: absolute;
  right: -14px;
  transform: rotate(28deg);
  top: 3px;
  height: 15px;
  width: 1px;
  background-color: #666;
}
.gd-blog-widget h3 {
  color: #000;
  font-size: 22px;
  padding-top: 25px;
  margin-bottom: 40px;
}
.gd-blog-widget .default-btn {
  color: #000000;
  border: 1px solid #ED1D61;
  background-color: transparent;
}
.gd-blog-widget .default-btn:hover {
  color: var(--whiteColor);
}
.gd-blog-widget .image {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}
.gd-blog-widget .image img {
  transition: var(--transition);
  border-radius: 25px;
}
.gd-blog-widget .image::before {
  width: 0;
  top: 50%;
  left: 50%;
  height: 0;
  opacity: 0;
  z-index: 2;
  content: "";
  display: block;
  position: absolute;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.2);
}
.gd-blog-widget .image::after {
  top: 0;
  left: -75%;
  z-index: 2;
  width: 50%;
  content: "";
  height: 100%;
  display: block;
  position: absolute;
  transform: skewX(-25deg);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
}
.gd-blog-widget:hover .image img {
  transform: scale(1.1);
}
.gd-blog-widget:hover .image::before {
  animation: circle 0.75s;
}
.gd-blog-widget:hover .image::after {
  animation: shine 0.75s;
}

.government-defense-contact-area {
  background-color: rgb(242, 230, 230);
}

.inner-gd-contact-area {
  position: relative;
  border-radius: 150px 150px 0px 0px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 90px;
  padding-bottom: 350px;
  z-index: 1;
}
.inner-gd-contact-area .gd-contact-heading {
  text-align: center;
  max-width: 975px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 90px;
}
.inner-gd-contact-area .gd-contact-heading h1 {
  color: var(--whiteColor);
  font-size: 75px;
  margin-bottom: 20px;
}
.inner-gd-contact-area .gd-contact-content {
  padding-right: 100px;
}
.inner-gd-contact-area .gd-contact-content h2 {
  color: var(--whiteColor);
  font-size: 44px;
  margin-bottom: 0;
}
.inner-gd-contact-area .contact-shape1 {
  position: absolute;
  bottom: 340px;
  left: 29%;
}
.inner-gd-contact-area .contact-shape2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: -1;
}

.gd-contact-form .form-group {
  margin-bottom: 20px;
}
.gd-contact-form .form-group label {
  color: #D5E7F3;
  font-size: 14px;
  margin-bottom: 10px;
}
.gd-contact-form .form-group label span {
  color: #D5E7F3;
}
.gd-contact-form .form-group .form-control {
  height: 48px;
  border-radius: 5px;
  border: none;
  background: #141414;
  color: var(--whiteColor);
}
.gd-contact-form .form-group textarea {
  height: 150px !important;
}
.gd-contact-form .default-btn {
  border: 1px solid #ED1D61;
  background: transparent;
  margin-top: 20px;
}
.gd-contact-form .default-btn::before {
  background: var(--blackColor);
}
.gd-contact-form .default-btn::after {
  background: var(--blackColor);
}
.gd-contact-form label span {
  color: #D5E7F3;
  margin-left: 5px;
}
.gd-contact-form .wpcf7-response-output {
  color: #fff;
}

.government-defense-footer-area {
  border-radius: 150px 150px 0px 0px;
  margin-top: -250px !important;
  position: relative;
  z-index: 1;
  background-color: var(--whiteColor);
}
.government-defense-footer-area .single-footer-widget {
  margin-bottom: 0;
}
.government-defense-footer-area .single-footer-widget .custom-links li {
  position: relative;
  padding-left: 15px;
}
.government-defense-footer-area .single-footer-widget .custom-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  height: 3px;
  width: 3px;
  background-color: rgb(102, 102, 102);
}
.government-defense-footer-area .single-footer-widget .custom-links li a {
  color: rgb(102, 102, 102);
}
.government-defense-footer-area .single-footer-widget .footer-contact-info li span {
  color: var(--mainColor);
}
.government-defense-footer-area .col-lg-3:nth-child(2) .single-footer-widget {
  margin-left: 200px;
}
.government-defense-footer-area .col-lg-3:nth-child(3) .single-footer-widget {
  margin-left: 80px;
}
.government-defense-footer-area .subscribe-shape {
  position: absolute;
  right: 150px;
  bottom: 40px;
  z-index: -1;
}
.government-defense-footer-area .copyright-area {
  margin-top: 0;
  border-top: none;
  padding-top: 15px;
  padding-bottom: 0;
}

.gd-subscribe-widget {
  border-radius: 15px;
  background: #ED1D61;
  padding: 25px 30px 25px 40px;
  margin-top: 90px;
}
.gd-subscribe-widget .gd-subscribe-content h4 {
  color: var(--whiteColor);
  font-size: 22px;
  margin-bottom: 5px;
}
.gd-subscribe-widget .gd-subscribe-content p {
  color: var(--whiteColor);
  font-size: 14px;
}
.gd-subscribe-widget .gd-subscribe-input {
  position: relative;
  padding-right: 140px;
}
.gd-subscribe-widget .gd-subscribe-input .form-control {
  border-radius: 5px;
  padding-left: 20px;
  font-size: 14px;
  height: 48px;
  color: var(--whiteColor);
  border: 1px solid var(--whiteColor);
  background: rgba(255, 255, 255, 0.1);
}
.gd-subscribe-widget .gd-subscribe-input .form-control:focus {
  box-shadow: unset;
}
.gd-subscribe-widget .gd-subscribe-input .form-control:focus::-moz-placeholder {
  color: transparent;
}
.gd-subscribe-widget .gd-subscribe-input .form-control:focus::placeholder {
  color: transparent;
}
.gd-subscribe-widget .gd-subscribe-input .form-control::-moz-placeholder {
  color: var(--whiteColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.gd-subscribe-widget .gd-subscribe-input .form-control::placeholder {
  color: var(--whiteColor);
  transition: var(--transition);
}
.gd-subscribe-widget .gd-subscribe-input .default-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  color: #000000;
  background: var(--whiteColor) !important;
}
.gd-subscribe-widget .gd-subscribe-input .default-btn:hover {
  color: var(--whiteColor);
}
.gd-subscribe-widget .mchimp-errmessage {
  color: var(--whiteColor);
  margin-bottom: 0;
  margin-top: 15px;
}
.gd-subscribe-widget .mchimp-sucmessage {
  color: var(--whiteColor);
  margin-bottom: 0;
  margin-top: 15px;
}

.intelligence-navbar .navbar-nav {
  background: #0F0F0F;
}
.intelligence-navbar .cyard-nav .navbar .navbar-nav .nav-item a {
  color: var(--whiteColor);
}

.cyard-new-navbar-five .cyard-responsive-nav .logo {
  width: 124px;
}
.cyard-new-navbar-five .cyard-responsive-nav .mean-container a.meanmenu-reveal {
  top: 5px;
}

.cyard-new-navbar-area .cyard-responsive-nav .logo {
  width: 124px;
}
.cyard-new-navbar-area .cyard-responsive-nav .mean-container a.meanmenu-reveal {
  top: 5px;
}

.intelligence-hero-area {
  position: relative;
  margin-top: -137px;
  padding-top: 230px;
  z-index: 1;
  background-color: #000000;
}
.intelligence-hero-area .intelligence-hero-shape1 {
  position: absolute;
  right: 0;
  z-index: -1;
  top: 0;
}
.intelligence-hero-area .intelligence-hero-shape2 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.intelligence-hero-area::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 325px;
  background-color: var(--whiteColor);
}

.intelligence-hero-content .title-tags {
  color: var(--whiteColor);
  font-size: 80px;
  line-height: 1.1;
  margin-bottom: 0;
}

.intelligence-hero-widget {
  max-width: 315px;
  margin-left: auto;
}
.intelligence-hero-widget .round-text {
  width: 108px;
  height: 108px;
  padding: 5px;
  margin-left: auto;
  border-radius: 50%;
  margin-right: auto;
  border: solid 1px #333;
  background-color: #0F0F0F;
  position: relative;
  margin-bottom: 15px;
}
.intelligence-hero-widget .round-text .icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  text-align: center;
  line-height: 50px;
  transition: var(--transition);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  background-color: rgb(237, 29, 97);
}
.intelligence-hero-widget .round-text .round-text-image {
  transition: var(--transition);
}
.intelligence-hero-widget .round-text:hover .icon {
  background-color: #000000;
}
.intelligence-hero-widget .round-text:hover .round-text-image {
  transform: rotate(90deg);
}
.intelligence-hero-widget p {
  color: var(--whiteColor);
}

.intelligence-hero-image-widget {
  margin-top: 95px;
  text-align: center;
  position: relative;
}
.intelligence-hero-image-widget img {
  border-radius: 25px;
}
.intelligence-hero-image-widget .experience-widget {
  position: absolute;
  width: 130px;
  height: 130px;
  bottom: -60px;
  left: 15%;
  flex-shrink: 0;
  text-align: center;
  padding: 20px;
  border-radius: 50%;
  background-color: rgb(237, 29, 97);
}
.intelligence-hero-image-widget .experience-widget h2 {
  color: var(--whiteColor);
  font-size: 44px;
  margin-bottom: -6px;
}
.intelligence-hero-image-widget .experience-widget p {
  font-size: 14px;
  line-height: 1.2;
  color: var(--whiteColor);
}

.intelligence-about-heading h3 {
  color: #000;
  font-size: 44px;
  margin-bottom: 0;
  max-width: 760px;
}

.intelligence-about-content {
  max-width: 425px;
  margin-left: auto;
}
.intelligence-about-content p {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.intelligence-mission-widget {
  margin-top: 50px;
}
.intelligence-mission-widget .about-card {
  border-radius: 25px;
  background: #E7EEE6;
  padding: 25px 30px 21px 30px;
}
.intelligence-mission-widget .about-card.style2 {
  background: #EEE6F3;
}
.intelligence-mission-widget .about-card h5 {
  color: #000;
  font-size: 22px;
  margin-bottom: 20px;
}
.intelligence-mission-widget .about-card .image {
  width: 122px;
  height: 123px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.intelligence-mission-widget .intelligence-mission-image img {
  border-radius: 25px;
}
.intelligence-mission-widget .content {
  padding-left: 25px;
  margin-bottom: 40px;
}
.intelligence-mission-widget .content h5 {
  color: #000;
  font-size: 22px;
  margin-bottom: 5px;
}
.intelligence-mission-widget .content a {
  color: #ED1D61;
  font-size: 22px;
  font-weight: 700;
}

.intelligence-partners-area {
  margin-top: -60px;
  position: relative;
  z-index: -1;
}

.intelligence-solutions-area {
  background: #F7F6FB;
}
.intelligence-solutions-area .intelligence-solution-heading {
  margin-bottom: 50px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.intelligence-solutions-area .intelligence-solution-heading h2 {
  color: #000;
  font-size: 44px;
  margin-bottom: 0;
}

.intelligence-image-widget {
  margin-bottom: -40px;
}
.intelligence-image-widget .item {
  max-width: 230px;
  margin-left: auto;
  margin-right: 85px;
  margin-bottom: -86px;
}
.intelligence-image-widget .item .icon {
  width: 57px;
  height: 57px;
  flex-shrink: 0;
  margin-right: 10px;
  line-height: 57px;
  border-radius: 10px;
  background: #000;
  text-align: center;
}
.intelligence-image-widget .image {
  margin-bottom: -35px;
}
.intelligence-image-widget .default-btn {
  position: relative;
  top: -60px;
  left: 100px;
}

.intelligence-solution-content {
  margin-left: -30px;
}
.intelligence-solution-content .sc-card {
  border-radius: 25px;
  padding: 25px 30px;
  position: relative;
  transition: var(--transition);
  background: var(--whiteColor);
}
.intelligence-solution-content .sc-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.intelligence-solution-content .sc-card h3 a {
  color: #000000;
}
.intelligence-solution-content .sc-card p {
  color: #666;
  transition: var(--transition);
  font-size: 14px;
  margin-bottom: 20px;
}
.intelligence-solution-content .sc-card .icon {
  width: 100px;
  height: 100px;
  text-align: center;
  line-height: 100px;
  margin-left: auto;
  transition: var(--transition);
  border-radius: 15px;
  border: 1px solid #CCC;
  background: #F7F6FB;
}
.intelligence-solution-content .sc-card .icon img {
  transition: var(--transition);
  filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7461%) hue-rotate(82deg) brightness(91%) contrast(108%);
}
.intelligence-solution-content .sc-card span {
  color: rgba(0, 0, 0, 0.2);
  font-size: 22px;
  transition: var(--transition);
  font-family: var(--headingFontFamily);
  font-weight: 700;
}
.intelligence-solution-content .sc-card:hover {
  border-color: var(#000000);
  background-color: rgb(0, 0, 0);
}
.intelligence-solution-content .sc-card:hover h3 a {
  color: #ED1D61;
  text-decoration: underline;
}
.intelligence-solution-content .sc-card:hover p {
  color: #D5E7F3;
}
.intelligence-solution-content .sc-card:hover .icon {
  border: 1px solid #333;
  background: #0F0F0F;
}
.intelligence-solution-content .sc-card:hover .icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(129deg) brightness(97%) contrast(109%);
}
.intelligence-solution-content .sc-card:hover span {
  color: rgba(255, 255, 255, 0.2);
}

.intelligence-chart-widget h2 {
  color: #000;
  font-size: 44px;
  margin-bottom: 35px;
}
.intelligence-chart-widget .chart-widget p {
  text-align: center;
  color: #000;
  font-weight: 700;
  margin-bottom: -5px;
  font-size: 14px;
}
.intelligence-chart-widget .chart-widget #chart {
  margin-bottom: -15px;
}

.intelligence-content-widget .widget {
  padding-left: 112px;
}
.intelligence-content-widget .widget h4 {
  color: #000;
  font-size: 22px;
  margin-bottom: 20px;
}
.intelligence-content-widget .widget ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 32px;
}
.intelligence-content-widget .widget ul li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #666;
}
.intelligence-content-widget .widget ul li:last-child {
  margin-bottom: 0;
}
.intelligence-content-widget .widget ul li span {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  margin-right: 4px;
}
.intelligence-content-widget .widget ul li .icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-right: 10px;
  line-height: 32px;
  position: relative;
  top: -3px;
  font-size: 14px;
  border-radius: 50%;
  color: var(--whiteColor);
  text-align: center;
  background-color: rgb(237, 29, 97);
}
.intelligence-content-widget .tag {
  border-radius: 20px;
  background: #F2E6E6;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  padding: 22px 48px;
  margin-bottom: 25px;
}
.intelligence-content-widget h3 {
  color: #000;
  font-size: 22px;
  margin-bottom: 28px;
}
.intelligence-content-widget .heatmap-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}
.intelligence-content-widget .heatmap-list li {
  display: flex;
  color: #666;
  font-size: 14px;
  margin-bottom: 18px;
  align-items: center;
}
.intelligence-content-widget .heatmap-list li:last-child {
  margin-bottom: 0;
}
.intelligence-content-widget .heatmap-list li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-right: 15px;
}
.intelligence-content-widget .heatmap-list li strong {
  color: #000;
  font-weight: 700;
}
.intelligence-content-widget .widget-card {
  border-radius: 20px;
  padding: 20px 20px 38px 27px;
}
.intelligence-content-widget .widget-card.style1 {
  background: #E7EEE6;
}
.intelligence-content-widget .widget-card.style2 {
  background: #EEE6F3;
}
.intelligence-content-widget .widget-card h5 {
  color: #000;
  font-family: var(--fontFamily);
  font-size: 14px;
}
.intelligence-content-widget .widget-card h5 span {
  font-weight: 400;
}
.intelligence-content-widget .widget-card p {
  color: #666;
  font-size: 14px;
}
.intelligence-content-widget .widget-card p span {
  color: #ED1D61;
}

.intelligence-case-studies-area {
  background-color: #000000;
  position: relative;
  padding-bottom: 70px;
  z-index: 1;
  overflow: hidden;
}
.intelligence-case-studies-area .Intelligence-case-studies-heading {
  margin-bottom: 40px;
}
.intelligence-case-studies-area .Intelligence-case-studies-heading h2 {
  color: var(--whiteColor);
  font-size: 44px;
  max-width: 760px;
  margin-bottom: 0;
}
.intelligence-case-studies-area .Intelligence-case-studies-heading .default-btn {
  border: 1px solid #ED1D61;
  background-color: transparent;
}
.intelligence-case-studies-area .case-studies-shape1 {
  position: absolute;
  top: 0;
  z-index: -1;
}
.intelligence-case-studies-area .case-studies-shape2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.intelligence-case-studies-area .case-studies-shape3 {
  position: absolute;
  bottom: -200px;
  left: 0;
  z-index: -1;
}

.Intelligence-case-image-widget {
  margin-left: -140px;
  padding-top: 100px;
}

.intelligence-case-content .accordion-item {
  background-color: transparent;
  border: none;
  margin-bottom: 25px;
  position: relative;
}
.intelligence-case-content .accordion-item:last-child {
  margin-bottom: 0;
}
.intelligence-case-content .accordion-item:last-child::before {
  display: none;
}
.intelligence-case-content .accordion-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 112px;
  right: 0;
  height: 1px;
  background: #282828;
}
.intelligence-case-content .accordion-item .accordion-button {
  background-color: transparent;
  box-shadow: unset;
  font-size: 22px;
  padding: 0;
  font-family: var(--headingFontFamily);
  font-weight: 700;
}
.intelligence-case-content .accordion-item .accordion-button:not(.collapsed) a {
  color: var(--mainColor);
  text-decoration: underline;
}
.intelligence-case-content .accordion-item .accordion-button:not(.collapsed) span {
  color: var(--whiteColor);
}
.intelligence-case-content .accordion-item .accordion-button::before {
  display: none;
}
.intelligence-case-content .accordion-item .accordion-button::after {
  display: none;
}
.intelligence-case-content .accordion-item .accordion-button:focus {
  box-shadow: unset;
}
.intelligence-case-content .accordion-item .accordion-button span {
  color: var(--mainColor);
  margin-right: 8px;
}
.intelligence-case-content .accordion-item .accordion-button a {
  color: var(--whiteColor);
}
.intelligence-case-content .accordion-item .accordion-button strong {
  color: var(--whiteColor);
  font-family: Jost;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  margin-right: 52px;
  margin-bottom: 50px;
  line-height: 52.8px; /* 120% */
}
.intelligence-case-content .accordion-item .accordion-body {
  padding: 0 0 40px 100px;
  margin-top: -10px;
  position: relative;
}
.intelligence-case-content .accordion-item .accordion-body .image img {
  border-radius: 25px;
}
.intelligence-case-content .accordion-item .accordion-body .accordion-list {
  padding-left: 112px;
  list-style: none;
  padding-top: 20px;
  margin-bottom: 0;
}
.intelligence-case-content .accordion-item .accordion-body .accordion-list li {
  margin-bottom: 15px;
  color: #D5E7F3;
  font-size: 14px;
}
.intelligence-case-content .accordion-item .accordion-body .accordion-list li strong {
  font-weight: 700;
  color: var(--whiteColor);
}
.intelligence-case-content .accordion-item .accordion-body .accordion-list li:last-child {
  margin-bottom: 0;
}
.intelligence-case-content .accordion-item .accordion-body .link {
  position: absolute;
  width: 35px;
  height: 35px;
  transition: var(--transition);
  right: 0;
  top: -66px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  background-color: rgb(237, 29, 97);
}

.intelligence-heading-area {
  margin-bottom: -40px;
}
.intelligence-heading-area h2 {
  color: #000;
  font-size: 44px;
  margin-bottom: 0;
  max-width: 760px;
}
.intelligence-heading-area p {
  max-width: 425px;
  margin-top: 80px;
  color: #666;
  font-size: 14px;
}

.intelligence-choose-card {
  border-radius: 25px;
  padding: 20px 25px;
  border: 1px solid #D5E7F3;
}
.intelligence-choose-card span {
  color: #000;
  font-size: 14px;
}
.intelligence-choose-card .icon {
  width: 100px;
  height: 100px;
  margin-top: -15px;
  margin-left: auto;
  margin-bottom: 20px;
}
.intelligence-choose-card h3 {
  color: #000;
  font-size: 22px;
  margin-bottom: 12px;
}
.intelligence-choose-card p {
  color: #666;
  font-size: 14px;
}
.intelligence-choose-card.style2 {
  margin-top: 75px;
}
.intelligence-choose-card.style3 {
  margin-top: 150px;
}
.intelligence-choose-card.style4 {
  margin-top: 225px;
}

.intelligence-choose-image {
  margin-top: 25px;
}
.intelligence-choose-image img {
  border-radius: 25px;
}

.intelligence-fun-fact-area {
  margin-top: -100px;
}

.intelligence-funfact-widget h3 {
  color: #ED1D61;
  font-size: 44px;
  margin-bottom: 15px;
}
.intelligence-funfact-widget p {
  color: #666666;
  font-size: 14px;
}
.intelligence-funfact-widget p img {
  position: relative;
  margin-right: 8px;
  top: -2px;
}
.intelligence-funfact-widget.style1 {
  padding-left: 14px;
}

.intelligence-testimonial-area {
  overflow: hidden;
  background-color: #0F0F0F;
  position: relative;
}
.intelligence-testimonial-area .intelligence-testimonial-shape {
  position: absolute;
  right: 0;
  top: -165px;
}

.intelligence-testimonial-image {
  margin-left: -155px;
}

.intelligence-testimonial-widget {
  padding-left: 60px;
  position: relative;
}
.intelligence-testimonial-widget h2 {
  color: var(--whiteColor);
  font-size: 44px;
  margin-bottom: 30px;
  margin-right: -50px;
}
.intelligence-testimonial-widget .icon {
  width: 74px;
  height: 56px;
  margin-bottom: 90px;
}
.intelligence-testimonial-widget p {
  color: var(--whiteColor);
  font-size: 14px;
  margin-bottom: 25px;
}
.intelligence-testimonial-widget .details {
  display: flex;
  align-items: center;
}
.intelligence-testimonial-widget .details .image {
  width: 75px;
  height: 75px;
  flex-shrink: 0;
}
.intelligence-testimonial-widget .details .image img {
  border-radius: 50%;
}
.intelligence-testimonial-widget .details h5 {
  color: var(--whiteColor);
  font-size: 18px;
  margin-bottom: 0;
  margin-left: 20px;
}
.intelligence-testimonial-widget .owl-dots {
  position: relative;
  margin-top: -88px !important;
  left: 263px;
}
.intelligence-testimonial-widget .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 4px;
  border-radius: 50%;
  border: 1px solid rgb(237, 29, 97);
  transition: var(--transition);
  background-color: #000000;
}
.intelligence-testimonial-widget .owl-dots .owl-dot:hover span, .intelligence-testimonial-widget .owl-dots .owl-dot.active span {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.intelligence-blog-card {
  position: relative;
}
.intelligence-blog-card .image {
  margin-bottom: 25px;
  overflow: hidden;
  transition: var(--transition);
  border-radius: 25px;
  position: relative;
}
.intelligence-blog-card .image img {
  border-radius: 25px;
  transition: var(--transition);
}
.intelligence-blog-card .image::before {
  width: 0;
  top: 50%;
  left: 50%;
  height: 0;
  opacity: 0;
  z-index: 2;
  content: "";
  display: block;
  position: absolute;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.2);
}
.intelligence-blog-card .image::after {
  top: 0;
  left: -75%;
  z-index: 2;
  width: 50%;
  content: "";
  height: 100%;
  display: block;
  position: absolute;
  transform: skewX(-25deg);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
}
.intelligence-blog-card h3 {
  color: #000;
  font-size: 22px;
  margin-bottom: 24px;
}
.intelligence-blog-card .content .icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  margin-right: 15px;
  background-color: #000000;
  border-radius: 50%;
  text-align: center;
  line-height: 48px;
}
.intelligence-blog-card .content .icon img {
  border-radius: 50% !important;
}
.intelligence-blog-card .content a {
  color: var(--mainColor);
}
.intelligence-blog-card .content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.intelligence-blog-card .content ul li {
  display: inline-block;
  padding-right: 25px;
  color: #666;
  font-size: 14px;
  position: relative;
}
.intelligence-blog-card .content ul li::before {
  content: "";
  position: absolute;
  right: 10px;
  transform: rotate(28deg);
  top: 3px;
  height: 15px;
  width: 1px;
  background-color: #666;
}
.intelligence-blog-card .content ul li:last-child {
  padding-right: 0;
}
.intelligence-blog-card .content ul li:last-child::before {
  display: none;
}
.intelligence-blog-card.style1 {
  position: relative;
}
.intelligence-blog-card.style1::before {
  content: "";
  position: absolute;
  right: -125px;
  bottom: 0;
  top: 0;
  width: 1px;
  background: #D5E7F3;
}
.intelligence-blog-card:hover .image img {
  transform: scale(1.1);
}
.intelligence-blog-card:hover .image::before {
  animation: circle 0.75s;
}
.intelligence-blog-card:hover .image::after {
  animation: shine 0.75s;
}

.intelligence-blog-area .g-5 {
  --bs-gutter-x: 248px;
}

.intelligence-contact-heading {
  text-align: center;
  max-width: 975px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 90px;
}
.intelligence-contact-heading h1 {
  color: #000000;
  font-size: 75px;
  margin-bottom: 20px;
}

.intelligence-contact-content {
  padding-right: 100px;
}
.intelligence-contact-content h2 {
  color: #000000;
  font-size: 44px;
  margin-bottom: 0;
}

.intelligence-contact-area {
  background-color: #F7F6FB;
  position: relative;
  z-index: 1;
}
.intelligence-contact-area .intelligence-contact-shape2 {
  position: absolute;
  bottom: 140px;
  left: 34%;
}
.intelligence-contact-area .intelligence-contact-shape1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: -1;
}

.intelligence-contact-form .input-widget label {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}
.intelligence-contact-form .input-widget .form-control {
  height: 48px;
  border-radius: 5px;
  border: 1px solid #D5E7F3;
  background: #FFF;
}
.intelligence-contact-form .input-widget textarea {
  height: 150px !important;
}
.intelligence-contact-form .default-btn {
  margin-top: 20px;
  color: #000000;
  border: 1px solid #ED1D61;
  background: #F7F6FB;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 20px;
  box-shadow: unset;
}
.intelligence-contact-form .default-btn:hover {
  color: var(--whiteColor);
}
.intelligence-contact-form .form-group {
  margin-bottom: 20px;
}
.intelligence-contact-form .form-group label {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}
.intelligence-contact-form .form-group .form-control {
  height: 48px;
  border-radius: 5px;
  border: 1px solid #D5E7F3;
  background: #FFF;
}
.intelligence-contact-form .form-group textarea {
  height: 150px !important;
}
.intelligence-contact-form label span {
  margin-left: 5px;
}

.intelligence-footer-area {
  background-color: rgb(0, 0, 0);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.intelligence-footer-area .single-footer-widget {
  margin-bottom: 0;
}
.intelligence-footer-area .single-footer-widget .custom-links li {
  position: relative;
  padding-left: 15px;
}
.intelligence-footer-area .single-footer-widget .custom-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  height: 3px;
  width: 3px;
  background-color: #D5E7F3;
}
.intelligence-footer-area .single-footer-widget .custom-links li a {
  color: #D5E7F3;
}
.intelligence-footer-area .single-footer-widget .footer-contact-info li {
  color: #D5E7F3;
}
.intelligence-footer-area .single-footer-widget .footer-contact-info li span {
  color: var(--mainColor);
}
.intelligence-footer-area .single-footer-widget .footer-contact-info li a {
  color: #D5E7F3;
}
.intelligence-footer-area .single-footer-widget p {
  color: #D5E7F3;
}
.intelligence-footer-area .single-footer-widget h3 {
  color: var(--whiteColor);
}
.intelligence-footer-area .col-lg-3:nth-child(2) .single-footer-widget {
  margin-left: 200px;
}
.intelligence-footer-area .col-lg-3:nth-child(3) .single-footer-widget {
  margin-left: 80px;
}
.intelligence-footer-area .subscribe-shape {
  position: absolute;
  right: 150px;
  bottom: 40px;
  z-index: -1;
}
.intelligence-footer-area .copyright-area {
  margin-top: 0;
  border-top: none;
  padding-top: 35px;
  padding-bottom: 35px;
}
.intelligence-footer-area .copyright-area a {
  color: var(--mainColor);
}
.intelligence-footer-area .footer-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.powered-header .gd-header-widget .contact-list li a {
  color: #666;
}
.powered-header .gd-header-widget .social-links li a {
  color: rgb(102, 102, 102);
}
.powered-header .gd-header-widget .social-links::before {
  opacity: 0.2;
  background: #666;
}
.powered-header .gd-header-widget .support-link {
  color: rgb(102, 102, 102);
}

.powered-navbar.is-sticky {
  background-color: var(--whiteColor) !important;
}
.powered-navbar .cyard-nav .navbar .others-option .option-item .search-cart li i {
  color: rgb(0, 0, 0);
}
.powered-navbar .cyard-nav .navbar .others-option .option-item .search-cart li::before {
  opacity: 0.2;
  background: #000;
}
.powered-navbar .cyard-nav .navbar .others-option .option-item .default-btn {
  color: #000;
}
.powered-navbar .cyard-nav .navbar .others-option .option-item .default-btn:hover {
  color: var(--whiteColor);
}

.powered-hero-area {
  padding-top: 305px;
  padding-bottom: 240px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -137px;
  position: relative;
  z-index: 1;
}
.powered-hero-area .powered-hero-shape {
  position: absolute;
  top: 175px;
  z-index: -1;
  right: 29%;
}

.powered-hero-content .title-tags {
  color: #000;
  line-height: 1.1;
  font-size: 100px;
  margin-bottom: 35px;
}
.powered-hero-content .title-tags span {
  color: var(--mainColor);
}
.powered-hero-content ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.powered-hero-content ul li {
  margin-right: 55px;
  display: flex;
  font-size: 14px;
  align-items: center;
  font-weight: 700;
  color: #666;
}
.powered-hero-content ul li:last-child {
  margin-bottom: 0;
}
.powered-hero-content ul li .icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-right: 10px;
  line-height: 32px;
  position: relative;
  top: -3px;
  font-size: 14px;
  border-radius: 50%;
  color: rgb(237, 29, 97);
  text-align: center;
  background-color: rgb(255, 255, 255);
}

.powered-hero-widget {
  max-width: 350px;
  margin-left: auto;
  margin-bottom: 50px;
}
.powered-hero-widget p {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.powered-about-area {
  position: relative;
}
.powered-about-area .powered-about-heading {
  margin-bottom: 30px;
  max-width: 875px;
}
.powered-about-area .powered-about-heading h2 {
  color: #000;
  font-size: 44px;
  font-weight: 700;
}
.powered-about-area .powered-shape {
  position: absolute;
  top: 117px;
  right: 300px;
}

.powered-about-image-widget .icon-content {
  border-radius: 25px;
  background: #F2E6E6;
  display: flex;
  align-items: center;
  padding: 40px 20px;
  max-width: 535px;
  position: relative;
  z-index: 1;
}
.powered-about-image-widget .icon-content .icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  margin-right: 15px;
}
.powered-about-image-widget .icon-content p {
  color: #000;
  font-size: 14px;
  font-weight: 700;
}
.powered-about-image-widget .image {
  padding-left: 112px;
  margin-top: -55px;
}
.powered-about-image-widget .image img {
  border-radius: 25px;
}

.powered-about-content {
  padding-left: 100px;
}
.powered-about-content h4 {
  color: #000;
  font-size: 22px;
  margin-bottom: 15px;
}
.powered-about-content .button-content {
  margin-top: 20px;
  margin-bottom: 70px;
}
.powered-about-content .button-content .contact {
  margin-left: 50px;
}
.powered-about-content .button-content .contact h6 {
  color: #000;
  font-size: 14px;
  margin-bottom: 5px;
}
.powered-about-content .button-content .contact a {
  color: #ED1D61;
  font-size: 22px;
  font-weight: 700;
}
.powered-about-content .last-p {
  max-width: 425px;
  margin-left: auto;
}
.powered-about-content .last-p span {
  color: var(--mainColor);
}
.powered-about-content p {
  font-size: 14px;
}

.powered-services-area {
  background: #ED1D61;
  position: relative;
}
.powered-services-area .powered-service-heading {
  margin-bottom: 30px;
}
.powered-services-area .powered-service-heading h2 {
  color: var(--whiteColor);
  font-size: 44px;
  margin-bottom: 0;
  max-width: 870px;
}
.powered-services-area .powered-service-heading .default-btn {
  color: #000000;
  background-color: var(--whiteColor);
}
.powered-services-area .powered-service-heading .default-btn:hover {
  color: var(--whiteColor);
}
.powered-services-area .owl-dots {
  position: relative;
  margin-top: 40px !important;
}
.powered-services-area .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 4px;
  border-radius: 50%;
  border: 1px solid var(--whiteColor);
  transition: var(--transition);
  background-color: transparent;
}
.powered-services-area .owl-dots .owl-dot:hover span, .powered-services-area .owl-dots .owl-dot.active span {
  background-color: var(--whiteColor);
  border-color: var(--whiteColor);
}
.powered-services-area .powered-service-shape {
  position: absolute;
  right: 0;
  top: 110px;
}

.powered-service-card .image {
  padding-bottom: 20px;
}
.powered-service-card .image img {
  border-radius: 25px;
}
.powered-service-card h3 {
  font-size: 22px;
  margin-bottom: 22px;
}
.powered-service-card h3 a {
  color: var(--whiteColor);
}
.powered-service-card p {
  color: var(--whiteColor);
  font-size: 14px;
}

.powered-partner-heading h4 {
  font-size: 14px;
  margin-bottom: 0;
}

.powered-partners-area {
  background: #D5E7F3;
}
.powered-partners-area .owl-stage-outer {
  padding-left: 50px;
  margin-right: -175px;
}

.powered-security-heading {
  text-align: center;
  margin-bottom: 35px;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}
.powered-security-heading h2 {
  color: #000;
  font-size: 44px;
  margin-bottom: 0;
}

.powered-security-card {
  width: 312px;
  height: 312px;
  position: relative;
  border-radius: 50%;
  padding: 100px 55px 100px 40px;
}
.powered-security-card.style1 {
  background: #E7EEE6;
}
.powered-security-card.style2 {
  border: 1px solid #D5E7F3;
  background-color: var(--whiteColor);
  margin-left: -85px;
  z-index: 1;
}
.powered-security-card.style3 {
  background: rgb(238, 230, 243);
  margin-left: -85px;
  margin-right: -50px;
  z-index: 2;
}
.powered-security-card.style4 {
  border: 1px solid #D5E7F3;
  background-color: var(--whiteColor);
  margin-left: -60px;
  margin-right: -80px;
  z-index: 3;
}
.powered-security-card.style5 {
  background: #F2E6E6;
  margin-left: -50px;
  z-index: 4;
}
.powered-security-card h4 {
  color: #000;
  font-size: 18px;
  margin-top: 14px;
}

.powered-protect-area {
  position: relative;
}
.powered-protect-area .powered-protect-heading {
  margin-bottom: 35px;
  max-width: 990px;
}
.powered-protect-area .powered-protect-heading h2 {
  color: #000;
  font-size: 44px;
  margin-bottom: 0;
}
.powered-protect-area .powered-protect-shape {
  position: absolute;
  right: 300px;
  top: 0;
}

.powered-protect-image {
  padding-right: 100px;
}
.powered-protect-image img {
  border-radius: 25px;
}
.powered-protect-image .protect-box {
  width: 312px;
  height: 207px;
  position: relative;
  right: -100px;
  top: -100px;
  margin-left: auto;
  padding: 25px 30px 30px 30px;
  text-align: center;
  border-radius: 25px;
  background: #D5E7F3;
}
.powered-protect-image .protect-box h4 {
  color: #000;
  font-family: var(--fontFamily);
  font-size: 22px;
  margin-bottom: 20px;
}

.powered-protect-item-widget {
  padding-left: 40px;
}
.powered-protect-item-widget .protect-item {
  display: flex;
  padding-bottom: 25px;
  margin-bottom: 25px;
  position: relative;
}
.powered-protect-item-widget .protect-item::before {
  content: "";
  position: absolute;
  left: 83px;
  right: 0;
  bottom: 0;
  border-bottom: solid 1px rgb(213, 231, 243);
}
.powered-protect-item-widget .protect-item .icon {
  flex-shrink: 0;
  margin-right: 22px;
}
.powered-protect-item-widget .protect-item h4 {
  color: #000;
  font-size: 22px;
  margin-bottom: 14px;
}
.powered-protect-item-widget .protect-item p {
  font-size: 14px;
  margin-bottom: 12px;
}
.powered-protect-item-widget .protect-item ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.powered-protect-item-widget .protect-item ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}
.powered-protect-item-widget .protect-item ul li .round {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  margin-right: 10px;
  color: var(--whiteColor);
  text-align: center;
  line-height: 34px;
  background-color: var(--mainColor);
}

.powered-success-area {
  background-color: #000000;
}
.powered-success-area .success-heading {
  text-align: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.powered-success-area .success-heading h2 {
  color: var(--whiteColor);
  font-size: 44px;
  margin-bottom: 0;
}
.powered-success-area .g-5 {
  --bs-gutter-y: 43px;
  --bs-gutter-x: 43px;
}

.powered-success-card.style1 {
  padding-bottom: 80px;
}
.powered-success-card.style1 h3 {
  padding-right: 50px;
}
.powered-success-card.style2 {
  padding-bottom: 80px;
}
.powered-success-card.style2 h3 {
  padding-right: 50px;
}
.powered-success-card.style3 {
  margin-left: 90px;
}
.powered-success-card .image {
  padding-bottom: 30px;
}
.powered-success-card .image img {
  border-radius: 25px;
}
.powered-success-card h3 {
  color: var(--whiteColor);
  font-size: 22px;
  margin-bottom: 0;
}
.powered-success-card h3 a {
  color: var(--whiteColor);
}

.one-click {
  display: inline-flex;
  padding: 10px 20px;
  justify-content: center;
  margin-top: 40px;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  border-radius: 50px;
  border: 1px solid rgba(237, 29, 97, 0.3);
}
.one-click a {
  color: var(--mainColor);
  text-decoration: underline;
}

.powered-testimonial-area {
  position: relative;
  overflow: hidden;
}
.powered-testimonial-area .powered-testimonial-heading {
  max-width: 875px;
  margin-bottom: 45px;
}
.powered-testimonial-area .powered-testimonial-heading h2 {
  color: #000;
  font-size: 44px;
  margin-bottom: 0;
}
.powered-testimonial-area .powered-testimonial-image {
  margin-left: 5px;
}
.powered-testimonial-area .powered-testimonial-image img {
  border-radius: 20px;
  margin-left: -5px;
}
.powered-testimonial-area .powered-testimonial-shape1 {
  position: absolute;
  right: 0;
  top: 105px;
}

.powered-testimonial-content {
  position: relative;
}
.powered-testimonial-content p {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  max-width: 425px;
  margin-bottom: 40px;
}
.powered-testimonial-content .details {
  display: flex;
  align-items: center;
}
.powered-testimonial-content .details .image {
  width: 75px;
  height: 75px;
  flex-shrink: 0;
  margin-right: 20px;
}
.powered-testimonial-content .details .image img {
  border-radius: 50%;
}
.powered-testimonial-content .details h5 {
  font-size: 18px;
  margin-bottom: 0;
}
.powered-testimonial-content .details span {
  display: block;
}

.powered-testimonial-widget {
  position: relative;
}
.powered-testimonial-widget .icon {
  width: 104px;
  height: 104px;
  text-align: center;
  padding: 35px 0;
  top: -281px;
  right: 0;
  z-index: 2;
  background-color: rgb(2, 11, 15);
  position: absolute;
  border-radius: 50%;
}
.powered-testimonial-widget .icon img {
  width: 45.321px;
  margin-left: auto;
  margin-right: auto;
}
.powered-testimonial-widget .owl-dots {
  position: relative;
  margin-top: -33px !important;
  left: 263px;
}
.powered-testimonial-widget .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 4px;
  border-radius: 50%;
  border: 1px solid rgb(237, 29, 97);
  transition: var(--transition);
  background-color: transparent;
}
.powered-testimonial-widget .owl-dots .owl-dot:hover span, .powered-testimonial-widget .owl-dots .owl-dot.active span {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.inner-powered-help {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 100px 100px 100px;
  text-align: center;
  border-radius: 25px;
}
.inner-powered-help h2 {
  color: var(--whiteColor);
  font-size: 75px;
  padding-left: 50px;
  margin-right: 50px;
  margin-bottom: 30px;
}

.powered-blog-card {
  border-radius: 25px;
  padding: 30px;
}
.powered-blog-card.bg1 {
  background: #EEE6F3;
}
.powered-blog-card.bg2 {
  background: #E7EEE6;
}
.powered-blog-card.bg3 {
  background: #F2E6E6;
}
.powered-blog-card .tags {
  padding-bottom: 100px;
}
.powered-blog-card .tags .tags-item {
  display: inline-flex;
  padding: 2px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--whiteColor);
  font-size: 14px;
  border-radius: 50px;
  background: #000;
}
.powered-blog-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}
.powered-blog-card h3 {
  font-size: 22px;
  margin-bottom: 22px;
  margin-bottom: 25px;
}
.powered-blog-card h3 a {
  color: #000;
}
.powered-blog-card .content .icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  margin-right: 15px;
  background-color: #000000;
  border-radius: 50%;
  text-align: center;
  line-height: 48px;
}
.powered-blog-card .content .icon img {
  border-radius: 50%;
}
.powered-blog-card .content a {
  color: var(--mainColor);
}
.powered-blog-card .content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.powered-blog-card .content ul li {
  display: inline-block;
  padding-right: 25px;
  color: #666;
  font-size: 14px;
  position: relative;
}
.powered-blog-card .content ul li::before {
  content: "";
  position: absolute;
  right: 10px;
  transform: rotate(28deg);
  top: 3px;
  height: 15px;
  width: 1px;
  background-color: #666;
}
.powered-blog-card .content ul li:last-child {
  padding-right: 0;
}
.powered-blog-card .content ul li:last-child::before {
  display: none;
}

.powered-contact-area {
  background-color: rgb(194, 194, 255);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.powered-contact-area .powered-contact-shape2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  margin-left: auto;
  margin-right: auto;
}
.powered-contact-area .powered-contact-shape {
  position: absolute;
  bottom: -250px;
  left: 14%;
}

.powered-contact-form .form-group {
  margin-bottom: 20px;
}
.powered-contact-form .form-group label {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}
.powered-contact-form .form-group .form-control {
  height: 48px;
  border-radius: 5px;
  border: 1px solid #000;
  background: transparent;
}
.powered-contact-form .form-group textarea {
  height: 150px !important;
}
.powered-contact-form .default-btn {
  margin-top: 20px;
  color: #000000;
  border: 1px solid #ED1D61;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
}
.powered-contact-form .default-btn:hover {
  color: var(--whiteColor);
}
.powered-contact-form label span {
  margin-left: 5px;
}

.powered-subscribe-widget {
  margin-top: 0;
  margin-bottom: 90px;
  background-color: #0F0F0F;
}
.powered-subscribe-widget .gd-subscribe-input .form-control {
  border: 1px solid #282828;
  background: #000;
}
.powered-subscribe-widget .gd-subscribe-input .default-btn {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.powered-copyright-area {
  margin-top: 90px !important;
  border-top: solid 1px rgb(40, 40, 40) !important;
}

.intelligence-footer-area .powered-footer-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

.second-service-details-area {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 230px;
  margin-top: -137px;
  text-align: center;
  padding-bottom: 125px;
}
.second-service-details-area h2 {
  color: var(--whiteColor);
  font-size: 45px;
  margin-bottom: 15px;
}
.second-service-details-area ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.second-service-details-area ul li {
  display: inline-block;
  margin-right: 20px;
  color: var(--whiteColor);
  font-size: 14px;
  position: relative;
}
.second-service-details-area ul li::before {
  content: "";
  position: absolute;
  right: -12px;
  top: 4px;
  width: 1px;
  height: 15px;
  background-color: var(--whiteColor);
  transform: rotate(25deg);
}
.second-service-details-area ul li a {
  color: var(--whiteColor);
}
.second-service-details-area ul li:last-child {
  margin-right: 0;
}
.second-service-details-area ul li:last-child::before {
  display: none;
}

.second-service-overview-area h2 {
  color: #000;
  font-size: 44px;
  margin-bottom: 0;
}
.second-service-overview-area .content {
  margin-left: -30px;
}
.second-service-overview-area .image-widget {
  margin-top: 40px;
  margin-bottom: 40px;
}
.second-service-overview-area .image-widget img {
  border-radius: 20px;
}
.second-service-overview-area .detection-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.second-service-overview-area .detection-list li {
  color: #000;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 15px;
}
.second-service-overview-area .detection-list li span {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}
.second-service-overview-area .detection-list li p {
  margin-left: 20px;
  font-size: 14px;
  color: #000;
}
.second-service-overview-area .second-image-widget {
  margin-top: 40px;
  margin-bottom: 40px;
}
.second-service-overview-area .second-image-widget img {
  border-radius: 25px;
}
.second-service-overview-area .benefits-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 60px;
}
.second-service-overview-area .benefits-list li {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #666;
  font-size: 16px;
  margin-bottom: 14px;
}
.second-service-overview-area .benefits-list li:last-child {
  margin-bottom: 0;
}
.second-service-overview-area .benefits-list li .icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  margin-right: 10px;
  color: var(--whiteColor);
  text-align: center;
  line-height: 34px;
  background-color: var(--mainColor);
}
.second-service-overview-area .contact .ml-90 {
  margin-left: 90px;
}
.second-service-overview-area .contact h5 {
  color: #000;
  font-size: 22px;
  margin-bottom: 8px;
}
.second-service-overview-area .contact a {
  color: var(--mainColor);
  font-size: 22px;
  font-weight: 700;
}

/* End "Government Cyber Defense , Threat Intelligence Analysis &  AI-Powered Security" CSS
=========================================================*//*# sourceMappingURL=style.css.map */