@import "pages-css/navbar.css";
@import "pages-css/home-one.css";
@import "pages-css/home-two.css";
@import "pages-css/home-three.css";
@import "pages-css/inner-banner.css";
@import "pages-css/contact.css";
@import "pages-css/faq.css";
@import "pages-css/blog-details.css";
@import "pages-css/service-details.css";
@import "pages-css/project-details.css";
@import "pages-css/team.css";
@import "pages-css/author.css";
@import "pages-css/pagination.css";
@import "pages-css/error.css";
@import "pages-css/coming-soon.css";
@import "pages-css/footer.css";
@import "https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap";
@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&display=swap');
:root {
  --headerFonts: "Poppins", sans-serif;
  --bodyFonts: "Wix Madefor Text", sans-serif;
  --orangeColor: #2bbefe;
  --lightColor: #f88240;
  --greenColor: #bb3ce9;
  --titleColor: #144684;
  --bodyColor: #2f2d2d;
  --whiteColor: #ffffff;
  --fontSize: 16px;
  --transition: 0.5s;
}
body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-size: var(--fontSize);
  font-family: var(--bodyFonts);
  font-weight: 400;
  overflow-x: clip;
}
p {
  line-height: 1.8;
  color: var(--bodyColor);
  margin-bottom: 10px;
  font-size:16px;
}
.footer-widget .footer-list li  i , .footer-widget .footer-list li  svg{
    color: #fff;
}
p:last-child {
  margin-bottom: 0;
}
 .choose-content-left .choose-item p , .choose-content-left .choose-item h4{
    color: #fff;
}
.choose-content-left .choose-item h3{
    background: linear-gradient(135deg, rgb(43, 190, 254), rgb(187, 60, 233));
    color: #fff;
    padding: 15px;
    border-radius: 10px;
}
.choose-content-left .choose-item{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    border: 2px solid transparent;
    background: linear-gradient(#071a358a, #071a35) padding-box, linear-gradient(135deg, #2bbefe, #bb3ce9) border-box;
    padding: 20px;
    border-radius: 20px;
    height:100%;
 }
 a.navbar-brand img {
    width: auto;
    height:75px;
}
 .service-article-content , .project-article-content , .blog-article-content {
     text-align:justify;
 }
a {
  display: inline-block;
  transition: var(--transition);
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: none;
}
button {
  outline: 0;
}
button:focus {
  outline: 0;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  font-family: var(--headerFonts);
  color: var(--titleColor);
  line-height: 1.4;
}
h3 {
  font-size: 20px;
}
.d-table {
  width: 100%;
  height: 100%;
}
.d-table-cell {
  display: table-cell;
  vertical-align: middle;
}
img {
  max-width: 100%;
}
.pt-150 {
  padding-top: 150px;
}
.ptb-100 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.pt-100 {
  padding-top: 50px;
}
.pb-100 {
  padding-bottom: 50px !important;
}
.ptb-70 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.pt-70 {
  padding-top: 50px;
}
.pb-70 {
  padding-bottom: 50px;
}
.pt-45 {
  padding-top: 45px;
}
.pt-20 {
  padding-top: 20px;
}
.pl-20 {
  padding-left: 20px;
}
.pr-20 {
  padding-right: 20px;
}
.pb-10 {
  padding-bottom: 10px;
}
.ml-20 {
  margin-left: 20px;
}
.border-radius-5 {
  border-radius: 5px !important;
}
.border-radius-50 {
  border-radius: 50px !important;
}
.default-btn {
  padding: 10px 30px;
  color: var(--whiteColor);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: capitalize;
  background-color: #2bbefe;
  border: none;
  outline: none;
  font-size:14px;
  font-weight: 500;
  display: inline-flex;
    align-items: center;
    gap: 10px;
}
.default-btn i {
    align-items: center;
    display: flex;
    
}
.default-btn.outline {
    border: 1px solid white;
    background: none;
    color: #fff;
}
.default-btn.outline:hover {
    color:#fff;
    border: 1px solid #bb3ce9;
}

.default-btn::before {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--greenColor);
  left: 0;
  right: 0;
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
}
.default-btn:hover {
  color: var(--whiteColor);
}
.default-btn:hover::before {
  width: 100%;
  opacity: 1;
}
.default-btn.two {
  background-color: var(--greenColor);
}
.default-btn.two:hover {
  color: var(--whiteColor);
}
.default-btn.two:hover::before {
  background-color: var(--orangeColor);
}
.section-title .sp-title {
  padding-bottom: 22px;
  display: inline-block;
  line-height: 0;
  font-size: 15px;
  color: var(--greenColor);
  padding-left: 0;
  position: relative;
  font-weight: 500;
}
.section-title .sp-title::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  height: 2px;
  width: 50px;
  background-color: var(--greenColor);
  display: none;
}
.section-title .sp-title::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 0;
  height: 15px;
  width: 10%;
  background-color: var(--whiteColor);
  animation: MOVE-BG 2s linear infinite;
}
.section-title .sp-title2 {
  padding-bottom: 20px;
  line-height: 0;
  font-size: 15px;
  color: var(--lightColor);
  padding-left: 0;
  position: relative;
  font-weight: 500;
  display: inline-block;
}
.section-title .sp-title2::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  height: 2px;
  width: 50px;
  background-color: var(--lightColor);
  display: none;
}
.section-title .sp-title2::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 0;
  height: 15px;
  width: 10%;
  background-color: var(--whiteColor);
  animation: MOVE-BG 2s linear infinite;
}
.section-title h2 {
  /*font-size: 40px;
  font-weight: 500;
  margin-top: 0;
  line-height: 1.2;
  color: var(--titleColor);
  margin-bottom: 0;*/
  margin: 0 0 18px;
    color: rgb(7 60 125 / 95%);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}
.section-title h2 span {
    background: linear-gradient(90deg, #2bbefe 0%, #bb3ce9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title p {
  padding-bottom: 15px;
  margin-bottom: 0;
}
@keyframes MOVE-BG {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(88px);
  }
}
.desktop-nav .navbar .navbar-nav .nav-item a {
    color:white;
}
.work-area::before {
  background-image: url(../images/work-img/work-bg.jpg);
}
.testimonial-area::before {
  background-image: url(../images/testimonial/testimonial-bg.jpg);
}
.terms-conditions-img {
  margin-bottom: 30px;
}
.single-content {
  margin-bottom: 30px;
}
.single-content h3 {
  font-size: 24px;
  margin-top:15px;
  margin-bottom: 15px;
  font-weight: 500;
}
.single-content p {
  margin-bottom: 0;
}
.gallery-photo-item {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.gallery-photo-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  opacity: 0.1;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  background-color: var(--titleColor);
}
.gallery-photo-item::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  opacity: 0.1;
  background-color: var(--titleColor);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
}
.gallery-photo-item .photo-button {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.gallery-photo-item .photo-button h3 {
  color: var(--whiteColor);
  margin-bottom: 20px;
  opacity: 0;
  transition: var(--transition);
  transition-delay: 0.1s;
}
.gallery-photo-item .photo-button .photo-icon {
  width: 40px;
  height: 40px;
  line-height: 45px;
  background-color: var(--whiteColor);
  font-size: 20px;
  color: var(--orangeColor);
  margin-bottom: 0;
  opacity: 0;
  transition: var(--transition);
  transition-delay: 0.2s;
  border-radius: 50px;
  position: relative;
  z-index: 1;
}
.gallery-photo-item .photo-button .photo-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--whiteColor);
  animation: ripple 2s infinite ease-in-out;
  border-radius: 50px;
}
.gallery-photo-item .photo-button .photo-icon:hover {
  background-color: var(--orangeColor);
  color: var(--whiteColor);
  border-radius: 50px;
}
.gallery-photo-item .photo-button .photo-icon:hover::before {
  border-color: var(--orangeColor);
}
.gallery-photo-item:hover::before {
  opacity: 0.8;
  transform: scaleY(1);
}
.gallery-photo-item:hover::after {
  opacity: 0.8;
  transform: scaleY(1);
}
.gallery-photo-item:hover .photo-button h3 {
  opacity: 1;
}
.gallery-photo-item:hover .photo-button .photo-icon {
  opacity: 1;
}
.categories-title {
  margin-bottom: 30px;
}
.categories-title h3 {
  font-size: 24px;
  color: var(--titleColor);
}
.categories-title h3 span {
  color: var(--bodyColor);
  font-size: 17px;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: var(--orangeColor);
}
.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 100px auto;
}
.double-bounce1 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--whiteColor);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2s infinite ease-in-out;
}
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--whiteColor);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2s infinite ease-in-out;
  animation-delay: -1s;
}
@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
.go-top {
  position: fixed;
  top: 70%;
  right: 3%;
  opacity: 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--whiteColor);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  background: var(--orangeColor);
  border-radius: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  z-index: 100;
  transition: 0.5s;
}
.go-top i {
  transition: 0.5s;
  vertical-align: middle;
}
.go-top:hover {
  background-color: var(--titleColor);
}
.go-top:hover i {
  transform: translateY(-5px);
}
.go-top.active {
  top: 95%;
  transform: translateY(-95%);
  opacity: 1;
  visibility: visible;
}
.buy-now-btn {
  right: 20px;
  z-index: 99;
  top: 50%;
  position: fixed;
  transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: var(--whiteColor);
  background-color: #82b440;
  padding: 10px 20px 10px 42px;
  box-shadow: 0 1px 20px 1px #82b440;
  font-size: 13px;
  font-weight: 600;
}
.buy-now-btn img {
  top: 50%;
  left: 20px;
  width: 15px;
  position: absolute;
  transform: translateY(-50%);
}
.buy-now-btn:hover {
  color: var(--whiteColor);
  background-color: #94be5d;
}
@keyframes ripple {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes help-animation {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes animationFramesOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes movebounce-up {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-120px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes move-to {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(50px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes running-in {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, 150px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
@keyframes leaves {
  0% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes leaves {
  0% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes waving-line {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -200px 0;
  }
}
@keyframes rotated360 {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(-360deg);
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 15px;
    overflow-x:hidden;
  }
  .ptb-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pt-100 {
    padding-top: 30px;
  }
  .ptb-70 {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .pb-100 {
    padding-bottom: 50px !important;
  }
  .pt-70 {
    padding-top: 30px;
  }
  .pb-70 {
    padding-bottom: 30px;
  }
  .pt-45 {
    padding-top: 30px;
  }
  .pb-10 {
    padding-bottom: 0;
  }
  .pl-20 {
    padding-left: 0;
  }
  .pr-20 {
    padding-right: 0;
  }
  .ml-20 {
    margin-left: 20px;
  }
  .default-btn {
    padding: 8px 20px;
  }
  .section-title .sp-title {
    font-size: 14px;
    padding-left: 0;
    display: block;
    padding-bottom: 15px;
  }
  .section-title .sp-title::before {
    display: none;
  }
  .section-title .sp-title::after {
    display: none;
  }
  .section-title .sp-title2 {
    font-size: 14px;
    padding-left: 0;
    display: block;
    padding-bottom: 15px;
  }
  .section-title .sp-title2::before {
    display: none;
  }
  .section-title .sp-title2::after {
    display: none;
  }
  .section-title h2 {
    font-size: 24px;
  }
  .section-title p {
    padding-top: 10px;
  }
  .ps-2 {
    padding-left: 0 !important;
  }
  .ps-3 {
    padding-left: 0 !important;
  }
  .ps-5 {
    padding-left: 0 !important;
  }
  .ps-0 {
    padding-left: 15px !important;
  }
  .pe-0 {
    padding-right: 15px !important;
  }
  .p-0 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .go-top .active {
    top: 85%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area .container-fluid {
    width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .banner-area-two .container-fluid {
    width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .banner-area-three .container-fluid {
    width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  body {
    font-size: 15px;
  }
  .ptb-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pt-100 {
    padding-top: 50px;
  }
  .ptb-70 {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .pb-100 {
    padding-bottom: 50px !important;
  }
  .pt-70 {
    padding-top: 50px;
  }
  .pb-70 {
    padding-bottom: 20px;
  }
  .pt-45 {
    padding-top: 30px;
  }
  .pb-10 {
    padding-bottom: 0;
  }
  .pl-20 {
    padding-left: 0;
  }
  .pr-20 {
    padding-right: 0;
  }
  .ml-20 {
    margin-left: 20px;
  }
  .default-btn {
    padding: 8px 20px;
  }
  .section-title h2 {
    font-size: 26px;
  }
  .section-title p {
    padding-top: 10px;
  }
  .ps-2 {
    padding-left: 0 !important;
  }
  .ps-3 {
    padding-left: 0 !important;
  }
  .ps-5 {
    padding-left: 0 !important;
  }
  .ps-0 {
    padding-left: 15px !important;
  }
  .pe-0 {
    padding-right: 15px !important;
  }
  .p-0 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ps-2 {
    padding-left: 0 !important;
  }
  .ps-3 {
    padding-left: 0 !important;
  }
  .ps-5 {
    padding-left: 0 !important;
  }
  .section-title h2 {
    font-size: 32px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1299px) {
  .ps-2 {
    padding-left: 0 !important;
  }
  .ps-3 {
    padding-left: 0 !important;
  }
  .ps-5 {
    padding-left: 0 !important;
  }
  .container-fluid {
    width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media only screen and (min-width: 1350px) and (max-width: 1439px) {
  .container-fluid {
    width: 1320px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .banner-slider .owl-nav {
    margin-top: 0;
    width: 1320px !important;
    position: absolute;
  }
}
@media only screen and (min-width: 1440px) and (max-width: 1799px) {
  .container-fluid {
    width: 1460px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .banner-slider .owl-nav {
    margin-top: 0;
    width: 1460px !important;
    position: absolute;
  }
}
@media only screen and (min-width: 1300px) {
  .container {
    max-width: 1320px !important;
  }
}
@media only screen and (min-width: 1800px) {
  .container-fluid {
    width: 1640px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .banner-slider .owl-nav {
    margin-top: 0;
    width: 1760px !important;
    position: absolute;
  }
}
.author-profile {
    background: var(--orangeColor);
    padding: 35px 30px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 35px;
  }
  .author-profile h3 {
    color: var(--whiteColor);
    margin-bottom: 10px;
    font-size: 22px;
  }
  .author-profile img {
    border-radius: 50%;
    margin-bottom: 15px;
  }
  .author-profile p {
    margin-bottom: 17px;
    color: var(--whiteColor);
    font-weight: 600;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .author-profile .profile-social-link {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .author-profile .profile-social-link li {
    display: inline-block;
    margin-right: 5px;
  }
  .author-profile .profile-social-link li a i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 20px;
    text-align: center;
    color: var(--orangeColor);
    background-color: var(--whiteColor);
    transition: var(--transition);
  }
  .author-profile .profile-social-link li a:hover i {
    background-color: var(--greenColor);
    color: var(--whiteColor);
    border-radius: 50px;
  }
  
  .blog-article-content {
    margin-bottom: 20px;
  }
  .blog-article-content img {
    margin-bottom: 25px;
  }
  .blog-article-content .content ul {
    list-style-type: none;
    margin-left: 0;
    padding: 0;
  }
  .blog-article-content .content ul li {
    display: inline-block;
    font-size: 14px;
    color: var(--bodyColor);
    margin-right: 10px;
  }
  .blog-article-content .content ul li:last-child {
    margin-right: 0;
  }
  .blog-article-content .content ul li i {
    color: var(--greenColor);
    font-size: 18px;
    margin-right: 5px;
    position: relative;
    top: 2px;
    transition: var(--transition);
  }
  .blog-article-content .content ul li a {
    color: var(--bodyColor);
    transition: var(--transition);
  }
  .blog-article-content .content ul li a i {
    color: var(--greenColor);
    transition: var(--transition);
  }
  .blog-article-content .content ul li a:hover {
    color: var(--orangeColor);
  }
  .blog-article-content .content ul li a:hover i {
    color: var(--titleColor);
  }
  .blog-article-content .content ul li:hover {
    color: var(--orangeColor);
  }
  .blog-article-content .content ul li:hover i {
    color: var(--titleColor);
  }
  .blog-article-content .content h3 {
    margin-top: 12px;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight:700;
  }
  .blog-article-content .content p {
    margin-bottom: 15px;
  }
  .blog-article-content .content p:last-child {
    margin-bottom: 0;
  }
  .article-content-area .blockquote {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    margin-top: 30px;
    background-color: #f3f0fb;
    padding: 20px 30px 40px;
  }
  .article-content-area .blockquote p {
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
  .article-content-area .blockquote i {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 35px;
    color: var(--orangeColor);
  }
  .blog-benefit-content {
    margin-bottom: 30px;
  }
  .blog-benefit-content h3 {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .blog-benefit-content ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  .blog-benefit-content ul li {
    display: block;
    font-size: 16px;
    padding-left: 23px;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    transition: var(--transition);
  }
  .blog-benefit-content ul li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: var(--orangeColor);
    border-radius: 50px;
    transition: var(--transition);
  }
  .blog-benefit-content ul li:hover {
    color: var(--greenColor);
  }
  .blog-benefit-content ul li:hover::before {
    background-color: var(--orangeColor);
    border-radius: 0;
  }
  .blog-benefit-content p {
    margin-bottom: 15px;
  }
  .article-share {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 15px 0;
    border-top: 1px solid #f2f1f1;
    border-bottom: 1px solid #f2f1f1;
  }
  .article-share .article-tag ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .article-share .article-tag ul li {
    color: var(--blueColor);
    margin-right: 5px;
    display: inline-block;
  }
  .article-share .article-tag ul li.title {
    font-weight: 500;
  }
  .article-share .article-tag ul li a {
    color: var(--bodyColor);
  }
  .article-share .article-tag ul li a:hover {
    color: var(--orangeColor);
  }
  .article-share .article-social-icon {
    float: right;
  }
  .article-share .article-social-icon .social-icon {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  .article-share .article-social-icon .social-icon li {
    font-size: 18px;
    color: var(--titleColor);
    display: inline-block;
    margin-right: 10px;
  }
  .article-share .article-social-icon .social-icon li.title {
    font-weight: 500;
  }
  .article-share .article-social-icon .social-icon li:last-child {
    margin-right: 0;
  }
  .article-share .article-social-icon .social-icon li a i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: #e7e5e3;
    border-radius: 0;
    text-align: center;
    color: var(--orangeColor);
    font-size: 20px;
    transition: var(--transition);
  }
  .article-share .article-social-icon .social-icon li a:hover i {
    background-color: var(--orangeColor);
    color: var(--whiteColor);
    border-radius: 50px;
  }
  .comments-wrap .comment-title {
    margin-bottom: 30px;
  }
  .comments-wrap .comment-title .title {
    font-size: 22px;
    margin-bottom: 0;
    color: var(--blueColor);
  }
  .comments-wrap .comment-form {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .comments-wrap .comment-form li {
    position: relative;
    padding-left: 80px;
    margin-bottom: 30px;
  }
  .comments-wrap .comment-form li.pl-80 {
    padding-left: 125px;
  }
  .comments-wrap .comment-form li.pl-80 img {
    left: 40px;
  }
  .comments-wrap .comment-form li img {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
  }
  .comments-wrap .comment-form li h3 {
    margin-bottom: 5px;
    font-size: 19px;
    font-weight: 500;
  }
  .comments-wrap .comment-form li span {
    color: var(--orangeColor);
    font-size: 15px;
  }
  .comments-wrap .comment-form li p {
    margin-top: 10px;
    margin-bottom: 15px;
  }
  .comments-wrap .comment-form li a {
    padding: 5px 18px;
    background-color: #f3f4f5;
    color: var(--titleColor);
    border-radius: 0;
    font-size: 15px;
    display: inline-block;
  }
  .comments-wrap .comment-form li a:hover {
    background-color: var(--orangeColor);
    color: var(--whiteColor);
  }
  .comments-form {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .comments-form .contact-form {
    max-width: 100%;
  }
  .comments-form .contact-form .form-group label {
    margin-bottom: 20px;
    color: var(--blueColor);
  }
  .comments-form .title {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--blueColor);
  }
  .comments-form .default-btn {
    width: unset;
    border: none;
    box-shadow: none;
  }
  .search-widget {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
    background-color: #f2f1f1;
    padding: 15px;
  }
  .search-widget .search-form {
    position: relative;
    margin: 0 auto;
    border-radius: 0;
    border: none;
    width: 100%;
    background-color: var(--whiteColor);
  }
  .search-widget .search-form .form-control {
    background-color: var(--whiteColor);
    border-radius: 0;
    border: none;
    height: 50px;
    line-height: 50px;
    margin: 0;
    border: 0;
    padding: 0 25px;
    color: var(--titleColor);
  }
  .search-widget .search-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border: none;
  }
  .search-widget .search-form button {
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    color: var(--orangeColor);
    height: 50px;
    line-height: 53px;
    font-size: 22px;
    padding: 0 15px;
    transition: var(--transition);
  }
  .search-widget .search-form button:hover {
    color: var(--whiteColor);
    background: var(--orangeColor);
  }
  .side-bar-categories {
    margin-bottom: 35px;
  }
  .side-bar-categories ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
  }
  .side-bar-categories ul li {
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
  }
  .side-bar-categories ul li a {
    display: inline-block;
    color: var(--titleColor);
    font-weight: 400;
    padding: 15px;
    font-weight: 500;
    background-color: #f2f1f1;
    width: 100%;
    border-radius: 3px;
    position: relative;
    z-index: 1;
  }
  .side-bar-categories ul li a::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--orangeColor);
    transition: var(--transition);
    opacity: 0;
  }
  .side-bar-categories ul li a i {
    color: var(--orangeColor);
    float: right;
    position: relative;
    top: 3px;
  }
  .side-bar-categories ul li:hover a {
    color: var(--whiteColor);
  }
  .side-bar-categories ul li:hover a::before {
    opacity: 1;
    width: 100%;
  }
  .side-bar-categories ul li:hover a i {
    color: var(--whiteColor);
  }
  .side-bar-widget {
    margin-bottom: 35px;
    background-color: #f6f4f4;
    padding: 25px;
  }
  .side-bar-widget .title {
    font-size: 20px;
    color: var(--titleColor);
    margin-bottom: 20px;
    font-weight:700;
  }
  .side-bar-widget .widget-popular-post {
    position: relative;
    overflow: hidden;
  }
  .side-bar-widget .widget-popular-post .item {
    overflow: hidden;
    margin-bottom: 12px;
        display: flex;
    flex-direction: row;
    align-items: center;
  }
  .side-bar-widget .widget-popular-post .item:last-child {
    margin-bottom: 0;
  }
  .side-bar-widget .widget-popular-post .item .thumb {
    float: left;
    overflow: hidden;
    position: relative;
    margin-right: 15px;
  }
  .side-bar-widget .widget-popular-post .item .thumb .full-image {
    width: 85px;
    height: 85px;
    display: inline-block;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center center !important;
    position: relative;
    background-color: var(--whiteColor);
  }
  .side-bar-widget .widget-popular-post .item .thumb .full-image.bg1 {
    background-image: url(../../images/blog/blog-img3.jpg);
  }
  .side-bar-widget .widget-popular-post .item .thumb .full-image.bg2 {
    background-image: url(../../images/blog/blog-img4.jpg);
  }
  .side-bar-widget .widget-popular-post .item .thumb .full-image.bg3 {
    background-image: url(../../images/blog/blog-img5.jpg);
  }
  .side-bar-widget .widget-popular-post .item .thumb .full-image.bg4 {
    background-image: url(../../images/blog/blog-img6.jpg);
  }
  .side-bar-widget .widget-popular-post .item .info {
    overflow: hidden;
    padding: 6px 0;
  }
  .side-bar-widget .widget-popular-post .item .info .title-text {
    margin-bottom: 10px;
    line-height: 1.2;
    font-size: 17px;
    font-weight: 500;
    max-width: 245px;
  }
  .side-bar-widget .widget-popular-post .item .info .title-text a {
    display: inline-block;
    color: var(--titleColor);
  }
  .side-bar-widget .widget-popular-post .item .info .title-text a:hover {
    color: var(--orangeColor);
  }
  .side-bar-widget .widget-popular-post .item .info .read-btn {
    font-size: 14px;
    color: var(--orangeColor);
    display: inline-block;
    font-weight: 600;
    position: relative;
    z-index: 1;
  }
  .side-bar-widget .widget-popular-post .item .info .read-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    background-color: var(--greenColor);
    opacity: 0;
    transition: var(--transition);
    transform: scale(0);
  }
  .side-bar-widget .widget-popular-post .item .info .read-btn:hover {
    color: var(--greenColor);
  }
  .side-bar-widget .widget-popular-post .item .info .read-btn:hover::before {
    transform: scale(1);
    opacity: 1;
  }
  .side-bar-widget .side-bar-widget-tag {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .side-bar-widget .side-bar-widget-tag li {
    display: inline-block;
    padding: 8px 25px;
    margin: 5px;
    transition: 0.7s;
    color: var(--bodyColor);
    font-size: 14px;
    font-weight: 600;
    background-color: var(--whiteColor);
  }
  .side-bar-widget .side-bar-widget-tag li a {
    color: var(--bodyColor);
  }
  .side-bar-widget .side-bar-widget-tag li:hover {
    background-color: var(--orangeColor);
  }
  .side-bar-widget .side-bar-widget-tag li:hover a {
    color: var(--whiteColor);
  }
  @media only screen and (max-width: 767px) {
    .blog-article-content .content h3 {
      font-size: 25px;
    }
    .article-content-area .blockquote {
      padding: 20px 27px 40px;
    }
    .article-content-area .blockquote p {
      font-size: 16px;
    }
    .article-content-area .blockquote i {
      font-size: 30px;
    }
    .article-share .article-tag {
      margin-bottom: 15px;
    }
    .article-share .article-social-icon {
      float: none;
    }
    .comments-wrap .comment-form li {
      padding-left: 0;
    }
    .comments-wrap .comment-form li.pl-80 {
      padding-left: 0;
    }
    .comments-wrap .comment-form li.pl-80 img {
      left: 0;
    }
    .comments-wrap .comment-form li img {
      position: inherit;
      margin-bottom: 15px;
    }
  }
  .coming-soon-area {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: var(--orangeColor);
  }
  .coming-soon-area .coming-soon-content {
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    padding: 50px 30px;
    background-color: transparent;
    border: 3px solid var(--whiteColor);
  }
  .coming-soon-area .coming-soon-content h1 {
    margin-bottom: 0;
    color: var(--whiteColor);
    font-size: 50px;
  }
  .coming-soon-area .coming-soon-content p {
    font-size: 16px;
    max-width: 600px;
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    color: var(--whiteColor);
  }
  .coming-soon-area .coming-soon-content #timer {
    margin-top: 40px;
  }
  .coming-soon-area .coming-soon-content #timer div {
    display: inline-block;
    color: var(--whiteColor);
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 10px;
    font-size: 35px;
    font-weight: 700;
    background-color: transparent;
    border-radius: 5px;
    border: 2px solid var(--whiteColor);
  }
  .coming-soon-area .coming-soon-content #timer div span {
    display: block;
    text-transform: capitalize;
    margin-top: -15px;
    font-size: 16px;
    font-weight: 400;
    color: var(--whiteColor);
  }
  .coming-soon-area .coming-soon-content #timer div:last-child {
    margin-right: 0;
  }
  .coming-soon-area .coming-soon-content #timer div:last-child::before {
    display: none;
  }
  .coming-soon-area .coming-soon-content #timer div:first-child {
    margin-left: 0;
  }
  .coming-soon-area .coming-soon-content #timer div::before {
    content: "";
    position: absolute;
    right: -50px;
    top: -10px;
    font-size: 70px;
    color: #fff;
  }
  .coming-soon-area .coming-soon-content .newsletter-form {
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
  }
  .coming-soon-area .coming-soon-content .newsletter-form .input-newsletter {
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    background-color: var(--whiteColor);
    padding-left: 15px;
    color: var(--whiteColor);
    outline: 0;
    transition: 0.5s;
    border-radius: 0;
    border: 1px solid #ccc;
    color: #5d5d5d;
  }
  .coming-soon-area
    .coming-soon-content
    .newsletter-form
    .input-newsletter:focus {
    border-color: var(--greenColor);
  }
  .coming-soon-area .coming-soon-content .newsletter-form .default-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    padding: 0 30px;
    text-transform: uppercase;
    outline: 0;
    color: #fff;
    transition: 0.5s;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
  }
  .coming-soon-area .coming-soon-content .newsletter-form .default-btn::before {
    border-radius: 0;
    background-color: var(--titleColor);
  }
  .coming-soon-area .coming-soon-content .newsletter-form .default-btn:hover {
    color: #fff;
    background-color: #190f3c;
  }
  .coming-soon-area #validator-newsletter {
    text-align: left;
    color: #dc3545 !important;
  }
  @media only screen and (max-width: 767px) {
    .coming-soon-area .coming-soon-content {
      padding-top: 30px;
      padding-bottom: 20px;
      padding-left: 15px;
      padding-right: 15px;
      border-radius: 0;
      animation: none;
    }
    .coming-soon-area .coming-soon-content h1 {
      font-size: 30px;
      line-height: 1.1;
      margin-top: 0;
    }
    .coming-soon-area .coming-soon-content p {
      font-size: 14px;
      margin-top: 15px;
    }
    .coming-soon-area .coming-soon-content #timer {
      margin-top: 30px;
    }
    .coming-soon-area .coming-soon-content #timer div {
      font-size: 30px;
      margin-left: 5px;
      margin-right: 5px;
      margin-bottom: 15px;
    }
    .coming-soon-area .coming-soon-content #timer div span {
      font-size: 14px;
      margin-top: -5px;
    }
    .coming-soon-area .coming-soon-content #timer div::before {
      display: none;
    }
    .coming-soon-area .coming-soon-content .newsletter-form {
      margin-top: 20px;
      margin-bottom: 20px;
    }
    .coming-soon-area .coming-soon-content .newsletter-form .input-newsletter {
      height: 55px;
      padding-left: 13px;
      font-size: 15px;
    }
    .coming-soon-area .coming-soon-content .newsletter-form .default-btn {
      position: relative;
      font-size: 14px;
      margin-top: 15px;
      width: 100%;
      height: 50px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .coming-soon-area .coming-soon-content {
      padding-top: 30px;
      padding-bottom: 50px;
      padding-left: 15px;
      padding-right: 15px;
      border-radius: 0;
      animation: none;
    }
    .coming-soon-area .coming-soon-content h1 {
      font-size: 45px;
      line-height: 1.1;
      margin-top: 0;
    }
    .coming-soon-area .coming-soon-content p {
      font-size: 16px;
      margin-top: 15px;
    }
  }
  .contact-map iframe {
    display: block;
    width: 100%;
    height: 550px;
    margin-bottom: 30px;
  }
  .contact-widget-form .contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight:800;
  }
  .contact-widget-form .contact-form .default-btn {
    width: 100%;
    justify-content:center;
    text-align: center;
    border-radius:5px;
  }
  .contact-card {
    margin-bottom: 0px;
    padding: 35px;
    text-align: center;
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #2bbefe, #bb3ce9) border-box;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    border-radius:10px;
  }
  .contact-card i {
    width: 60px;
    height: 60px;
    line-height: 63px;
    text-align: center;
    display: inline-block;
    font-size: 26px;
    background-color: transparent;
    color: var(--orangeColor);
    border-radius: 50px;
    border: 1px solid var(--orangeColor);
    margin-bottom: 15px;
    transition: var(--transition);
  }
  .contact-card h3 {
    margin-bottom: 10px;
    transition: var(--transition);
  }
  .contact-card p {
    margin-bottom: 5px;
  }
  .contact-card p:last-child {
    margin-bottom: 0;
  }
  .contact-card p a {
    color: var(--bodyColor);
  }
  .contact-card p a:hover {
    color: var(--orangeColor);
  }
  .contact-card p:hover {
    color: var(--orangeColor);
  }
  .contact-card:hover i {
    background-color: var(--orangeColor);
    color: var(--whiteColor);
  }
  .contact-card:hover h3 {
    color: var(--orangeColor);
  }
  .user-all-form .contact-form {
    padding: 30px;
    background-color: var(--whiteColor);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  }
  .user-all-form .contact-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .user-all-form .contact-form .form-group label {
    margin-bottom: 15px;
    color: var(--titleColor);
  }
  .user-all-form .contact-form .default-btn {
    width: 100%;
    text-align: center;
    border-radius: 0;
  }
  .user-all-form .contact-form .account-desc {
    margin-top: 20px;
    font-weight: 500;
  }
  .user-all-form .contact-form .account-desc a {
    color: var(--orangeColor);
  }
  .user-all-form .contact-form .account-desc a:hover {
    color: var(--greenColor);
  }
  .user-img {
    margin-bottom: 30px;
  }
  @media only screen and (max-width: 767px) {
    .contact-card {
      padding: 30px 10px;
    }
    .contact-form .agree-label label a.forget {
      position: inherit;
      right: 0;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .contact-card {
      padding: 30px 10px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-card {
      padding: 30px 10px;
    }
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .contact-card {
      padding: 30px 10px;
    }
    .contact-card h3 {
      font-size: 19px;
    }
    .contact-card p {
      font-size: 14px;
    }
  }
  .error-area {
    padding-top: 80px;
  }
  .error-area .error-content {
    text-align: center;
    position: relative;
  }
  .error-area .error-content img {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .error-area .error-content h3 {
    margin-bottom: 20px;
    position: relative;
    color: var(--titleColor);
    font-size: 35px;
  }
  .error-area .error-content p {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  @media only screen and (max-width: 767px) {
    .error-area {
      padding-top: 40px;
    }
    .error-area .error-content img {
      margin-bottom: 20px;
    }
    .error-area .error-content h3 {
      font-size: 26px;
    }
    .error-area .error-content p {
      font-size: 16px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .error-area {
      padding-top: 40px;
    }
    .error-area .error-content img {
      margin-bottom: 20px;
    }
    .error-area .error-content h3 {
      font-size: 26px;
    }
    .error-area .error-content p {
      font-size: 16px;
    }
  }
  .widget-popular-post img{
      max-width:100px;
      height:100%;
  }
    .widget-popular-post a{
        height:100%;
    }
  .faq-accordion {
    /*max-width: 610px;*/
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  .faq-accordion .accordion {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  .faq-accordion .accordion .accordion-item {
    border-radius: 15px;
    display: block;
    background-color: #fff;
    margin-bottom: 15px;
    border: none;
  }
  .faq-accordion .accordion .accordion-item:last-child {
    margin-bottom: 0;
  }
  .faq-accordion .accordion .accordion-title {
    padding: 15px 60px 12px 20px;
    color: var(--titleColor);
    background-color: #f4f3f3;
    text-decoration: none;
    position: relative;
    display: block;
    font-size: 17px;
    font-weight: 600;
  }
  .faq-accordion .accordion .accordion-title i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    transition: 0.5s;
    font-size: 20px;
    width: 35px;
    height: 35px;
    color: var(--orangeColor);
    border-radius: 50px;
    border: none;
    text-align: center;
    line-height: 35px;
    background-color: transparent;
  }
  .faq-accordion .accordion .accordion-title.active {
    background-color: var(--orangeColor);
    color: var(--whiteColor);
  }
  .faq-accordion .accordion .accordion-title.active i {
    color: var(--whiteColor);
  }
  .faq-accordion .accordion .accordion-title.active i::before {
    content: "\eb8b";
  }
  .faq-accordion .accordion .accordion-content {
    display: none;
    position: relative;
    margin-top: 10px;
    padding-bottom: 0;
    padding-right: 20px;
    padding-left: 20px;
  }
  .faq-accordion .accordion .accordion-content p {
    line-height: 1.8;
  }
  .faq-accordion .accordion .accordion-content.show {
    display: block;
  }
  @media only screen and (max-width: 767px) {
    .faq-accordion {
      max-width: 100%;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq-accordion {
      max-width: 100%;
    }
  }
  .footer-area-bg {
    background-color: #000213;
  }
  .footer-area-bg-two {
    position: relative;
    z-index: 1;
  }
  .footer-area-bg-two::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000213;
  }
  .footer-contact {
    background-color: #03082d;
    padding: 20px 20px 20px 100px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 30px;
  }
  .footer-contact .icon {
    position: absolute;
    top: 20px;
    left: 20px;
  }
  .footer-contact .icon i {
    width: 55px;
    height: 55px;
    line-height: 65px;
    text-align: center;
    background-color: var(--orangeColor);
    color: var(--whiteColor);
    font-size: 26px;
    border-radius: 5px;
    transition: var(--transition);
    display: inline-block;
  }
  .footer-contact .content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .footer-contact .content h3 a {
    color: var(--whiteColor);
    margin-bottom: 0;
    transition: var(--transition);
  }
  .footer-contact .content p {
    color: var(--whiteColor);
    margin: 0;
  }
  .footer-contact .right {
    font-size: 50px;
    color: #181c3c;
    position: absolute;
    z-index: -1;
    top: 17px;
    right: 20px;
  }
  .footer-contact:hover .icon i {
    background-color: var(--greenColor);
    border-radius: 50px;
  }
  .footer-contact:hover .content h3 a {
    color: var(--orangeColor);
  }
  .footer-widget {
    margin-bottom: 30px;
  }
  .footer-widget .footer-logo {
    margin-bottom: 20px;
    position: relative;
    top: -5px;
  }
  .footer-widget h3 {
    margin-top: 0;
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--whiteColor);
    line-height: 1.2;
  }
  .footer-widget h3.title {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .footer-widget p {
    margin-bottom: 25px;
    color: var(--whiteColor);
  }
  .footer-widget .social-link {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  .footer-widget .social-link li {
    display: inline-block;
    margin-right: 10px;
  }
  .footer-widget .social-link li:last-child {
    margin-right: 0;
  }
  .footer-widget .social-link li a i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #e7e5e3;
    border-radius: 0;
    text-align: center;
    color: var(--orangeColor);
    font-size: 24px;
    transition: var(--transition);
  }
  .footer-widget .social-link li a:hover i {
    background-color: var(--orangeColor);
    color: var(--whiteColor);
    border-radius: 50px;
  }
  .footer-widget .footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-widget .footer-list li {
    display: block;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .footer-widget .footer-list li i {
      background: linear-gradient(90deg, #2bbefe 0%, #bb3ce9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-top:5px;
  }
  .footer-widget .footer-list li:last-child {
    margin-bottom: 10px;
  }
  .footer-widget .footer-list li a {
    color: var(--whiteColor);
  }
  .footer-widget .footer-list li a:hover {
    color: var(--orangeColor);
    letter-spacing: 0.25px;
  }
  .footer-widget .footer-list li:hover a {
    color: var(--orangeColor);
    letter-spacing: 0.25px;
  }
  .newsletter-area .newsletter-form {
    position: relative;
  }
  .newsletter-area .newsletter-form .form-control {
    background: #0e1125;
    border-radius: 5px;
    height: 60px;
    line-height: 60px;
    margin: 0;
    border-radius: 5px;
    border: none;
    padding: 0 25px;
    max-width: 100%;
    color: var(--whiteColor);
  }
  .newsletter-area .newsletter-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border: none;
  }
  .newsletter-area .newsletter-form .subscribe-btn {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--orangeColor);
    color: var(--whiteColor);
    padding: 11px 16px;
    font-size: 24px;
    border: 0;
    transition: var(--transition);
    border-radius: 0 5px 5px 0;
    text-align: center;
  }
  .newsletter-area .newsletter-form .subscribe-btn:hover {
    background-color: var(--greenColor);
  }
  .newsletter-area .newsletter-form .validation-danger {
    font-size: 18px;
    margin-top: 5px;
    color: red;
  }
  .footer-top-two {
    background-color: #f5f4f4;
    padding: 50px;
    border-radius: 30px;
  }
  .footer-contact-two {
    background-color: var(--whiteColor);
    padding: 20px 20px 20px 90px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 5px;
  }
  .footer-contact-two .icon {
    position: absolute;
    top: 20px;
    left: 20px;
  }
  .footer-contact-two .icon i {
    width: 50px;
    height: 50px;
    line-height: 55px;
    text-align: center;
    background-color: var(--orangeColor);
    color: var(--whiteColor);
    font-size: 24px;
    border-radius: 5px;
    transition: var(--transition);
    display: inline-block;
  }
  .footer-contact-two .content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .footer-contact-two .content h3 a {
    color: var(--titleColor);
    margin-bottom: 0;
    transition: var(--transition);
  }
  .footer-contact-two .content p {
    color: var(--bodyColor);
    margin: 0;
  }
  .footer-contact-two .right {
    font-size: 50px;
    color: #f0f0f0;
    position: absolute;
    z-index: -1;
    top: 17px;
    right: 20px;
  }
  .footer-contact-two:hover .icon i {
    background-color: var(--greenColor);
    border-radius: 50px;
  }
  .footer-contact-two:hover .content h3 a {
    color: var(--orangeColor);
  }
  .copyright-area {
    border-top: 1px solid #1f1747;
    padding: 15px 0;
  }
  .copy-right-text p {
    color: var(--whiteColor);
    margin-bottom: 0;
  }
  .copy-right-text p a {
    color: var(--orangeColor);
  }
  .copy-right-text p a:hover {
    color: var(--greenColor);
  }
  @media only screen and (max-width: 767px) {
    .footer-top-two {
      padding: 30px 10px 10px;
      border-radius: 10px;
    }
    .footer-contact-two {
      margin-bottom: 20px;
    }
    .footer-contact {
      background-color: #03082d;
      padding: 10px 10px 10px 70px;
    }
    .footer-contact .icon {
      position: absolute;
      top: 10px;
      left: 10px;
    }
    .footer-contact .icon i {
      width: 45px;
      height: 45px;
      line-height: 55px;
      font-size: 20px;
    }
    .footer-contact .content h3 {
      font-size: 15px;
    }
    .footer-contact .content p {
      font-size: 13px;
    }
    .footer-contact .right {
      font-size: 30px;
      top: 14px;
      right: 20px;
    }
    .footer-contact-two {
      padding: 10px 10px 10px 64px;
    }
    .footer-contact-two .icon {
      position: absolute;
      top: 10px;
      left: 10px;
    }
    .footer-contact-two .icon i {
      width: 45px;
      height: 45px;
      line-height: 55px;
      font-size: 20px;
    }
    .footer-contact-two .content h3 {
      font-size: 15px;
    }
    .footer-contact-two .content p {
      font-size: 13px;
    }
    .footer-contact-two .right {
      font-size: 30px;
      top: 14px;
      right: 20px;
    }
    .footer-widget h3 {
      margin-bottom: 15px;
    }
    .footer-widget p {
      margin-bottom: 15px;
    }
    .footer-widget .footer-list li {
      margin-bottom: 10px;
    }
    .footer-widget .social-link li a i {
      width: 30px;
      height: 30px;
      line-height: 30px;
      font-size: 20px;
    }
    .newsletter-area .newsletter-form {
      position: relative;
    }
    .newsletter-area .newsletter-form .form-control {
      height: 50px;
      line-height: 50px;
    }
    .newsletter-area .newsletter-form .subscribe-btn {
      padding: 9px 16px;
      font-size: 20px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-top-two {
      padding: 30px 10px 10px;
      border-radius: 10px;
    }
    .footer-contact-two {
      margin-bottom: 20px;
    }
    .footer-contact {
      background-color: #03082d;
      padding: 10px 10px 10px 70px;
    }
    .footer-contact .icon {
      position: absolute;
      top: 10px;
      left: 10px;
    }
    .footer-contact .icon i {
      width: 45px;
      height: 45px;
      line-height: 55px;
      font-size: 20px;
    }
    .footer-contact .content h3 {
      font-size: 15px;
    }
    .footer-contact .content p {
      font-size: 13px;
    }
    .footer-contact .right {
      font-size: 30px;
      top: 14px;
      right: 20px;
    }
    .footer-contact-two {
      padding: 10px 10px 10px 64px;
    }
    .footer-contact-two .icon {
      position: absolute;
      top: 10px;
      left: 10px;
    }
    .footer-contact-two .icon i {
      width: 45px;
      height: 45px;
      line-height: 55px;
      font-size: 20px;
    }
    .footer-contact-two .content h3 {
      font-size: 15px;
    }
    .footer-contact-two .content p {
      font-size: 13px;
    }
    .footer-contact-two .right {
      font-size: 30px;
      top: 14px;
      right: 20px;
    }
    .footer-widget h3 {
      margin-bottom: 15px;
    }
    .footer-widget p {
      margin-bottom: 15px;
    }
    .footer-widget .footer-list li {
      margin-bottom: 10px;
    }
    .footer-widget .social-link li a i {
      width: 30px;
      height: 30px;
      line-height: 30px;
      font-size: 20px;
    }
    .newsletter-area .newsletter-form {
      position: relative;
    }
    .newsletter-area .newsletter-form .form-control {
      height: 50px;
      line-height: 50px;
    }
    .newsletter-area .newsletter-form .subscribe-btn {
      padding: 9px 16px;
      font-size: 20px;
    }
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer-contact {
      background-color: #03082d;
      padding: 10px 10px 10px 70px;
    }
    .footer-contact .icon {
      position: absolute;
      top: 10px;
      left: 10px;
    }
    .footer-contact .icon i {
      width: 45px;
      height: 45px;
      line-height: 55px;
      font-size: 20px;
    }
    .footer-contact .content h3 {
      font-size: 15px;
    }
    .footer-contact .content p {
      font-size: 13px;
    }
    .footer-contact .right {
      font-size: 30px;
      top: 14px;
      right: 20px;
    }
    .footer-top-two {
      padding: 30px 10px;
      border-radius: 10px;
    }
    .footer-contact-two {
      padding: 10px 10px 10px 64px;
    }
    .footer-contact-two .icon {
      position: absolute;
      top: 10px;
      left: 10px;
    }
    .footer-contact-two .icon i {
      width: 45px;
      height: 45px;
      line-height: 55px;
      font-size: 20px;
    }
    .footer-contact-two .content h3 {
      font-size: 15px;
    }
    .footer-contact-two .content p {
      font-size: 13px;
    }
    .footer-contact-two .right {
      font-size: 30px;
      top: 14px;
      right: 20px;
    }
  }
  @media only screen and (min-width: 1200px) and (max-width: 1299px) {
    .footer-contact {
      padding: 15px 15px 18px 85px;
    }
    .footer-contact .icon {
      position: absolute;
      top: 15px;
      left: 15px;
    }
    .footer-contact .content {
      margin-top: 5px;
    }
    .footer-contact .content h3 {
      font-size: 17px;
    }
    .footer-contact .content p {
      font-size: 14px;
    }
    .footer-top-two {
      padding: 30px 10px;
      border-radius: 10px;
    }
    .footer-contact-two {
      padding: 15px 15px 18px 85px;
    }
    .footer-contact-two .icon {
      position: absolute;
      top: 15px;
      left: 15px;
    }
    .footer-contact-two .content {
      margin-top: 5px;
    }
    .footer-contact-two .content h3 {
      font-size: 17px;
    }
    .footer-contact-two .content p {
      font-size: 14px;
    }
  }
  .top-header {
    padding: 10px 0;
  }
  .top-header-bg {
    background-color: #f0eeee;
  }
  .header-left {
    float: left;
  }
  .header-left ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
  }
  .header-left ul li {
    display: inline-block;
    text-align: left;
    position: relative;
    padding-left: 25px;
    margin-right: 25px;
    font-weight: 400;
    font-size: 15px;
  }
  .header-left ul li:last-child {
    margin-right: 0;
  }
  .header-left ul li i {
    color: #fff;
    font-size: 17px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 55%;
    transition: 0.5s;
    transform: translateY(-50%);
    line-height: 1;
  }
  .header-left ul li a {
    color: #fff;
  }
  .header-left ul li:hover i {
    color: var(--greenColor);
  }
  .header-left ul li:hover a {
    color: var(--titleColor);
  }
  .header-left-color ul li a {
    color: var(--whiteColor);
  }
  .header-left-color ul li:hover a {
    color: var(--orangeColor);
  }
  .header-right {
    float: right;
  }
  .header-right ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  .header-right ul li {
    display: inline-block;
    margin-right: 10px;
  }
  .header-right ul li:last-child {
    margin-right: 0;
  }
  .header-right ul li a i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: var(--whiteColor);
    border-radius: 50px;
    text-align: center;
    color: var(--orangeColor);
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.3);
  }
  .header-right ul li a:hover i {
    color: var(--whiteColor);
    background-color: var(--orangeColor);
  }
  .banner-area {
    background-color: #f9f7f7;
    padding: 70px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .banner-area::before {
    content: "";
    left: 0;
    position: absolute;
    background-color: var(--whiteColor);
    height: 20%;
    bottom: -60px;
    transform: skewY(175deg);
    width: 100%;
    z-index: 1;
  }
  .banner-content {
    max-width: 620px;
    padding-top: 60px;
  }
  .banner-content h1 {
    font-size: 42px;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.2;
    color:white;
  }
  .banner-content p {
    font-size: 16px;
    margin-bottom: 25px;
    color:white;
  }
  .banner-content .banner-btn .two {
    margin-left: 20px;
  }
  .banner-img {
    position: relative;
    z-index: 1;
    max-width: 550px;
    margin: 0 auto;
  }
  .banner-img .banner-img-box img {
    border-radius: 50%;
    border: 15px solid var(--whiteColor);
  }
  .banner-img .circle1 {
    position: absolute;
    z-index: -1;
    top: 120px;
    right: -135px;
    height: 52%;
    width: 100%;
    border-radius: 400px 400px 0 0;
    background-color: var(--orangeColor);
    transform: rotate(100deg);
  }
  .banner-img .circle2 {
    position: absolute;
    z-index: -1;
    bottom: 120px;
    left: -135px;
    height: 52%;
    width: 100%;
    border-radius: 0 0 400px 400px;
    background-color: var(--orangeColor);
    transform: rotate(100deg);
  }
  .banner-img .banner-img-shape img:nth-child(1) {
    position: absolute;
    z-index: -1;
    bottom: 60px;
    right: 0;
    max-width: 400px;
  }
  .banner-img .banner-img-shape img:nth-child(2) {
    position: absolute;
    z-index: -1;
    top: -50px;
    left: 20px;
    animation: animationFramesOne 6s infinite linear;
  }
  .banner-img .banner-img-shape img:nth-child(3) {
    position: absolute;
    z-index: -1;
    top: 25%;
    left: -80px;
    animation: animationFramesOne 15s linear infinite;
  }
  .banner-img .banner-img-shape img:nth-child(4) {
    position: absolute;
    z-index: -1;
    top: 60%;
    left: -80px;
    animation: rotated360 6s infinite linear;
  }
  .banner-img .banner-img-shape img:nth-child(5) {
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 110px;
    animation: rotated360 6s infinite linear;
  }
  .banner-img .banner-img-shape img:nth-child(6) {
    position: absolute;
    z-index: -1;
    top: 15%;
    right: 5px;
    animation: sk-bounce 6s infinite linear;
  }
  .banner-shape {
    position: absolute;
    z-index: -1;
    top: -40px;
    left: -5px;
  }
  .banner-shape img {
    max-width: 140px;
  }
  .about-area {
    margin-bottom: 50px;
    margin-top: 50px;
  }
  .about-img {
    position: relative;
    z-index: 1;
  }
  .about-img .line {
    position: absolute;
    z-index: -1;
    top: 60px;
    left: -30px;
    display:none;
  }
  .about-content {
    max-width: 610px;
  }
  .about-content .section-title {
    margin-bottom: 20px;
  }
  .about-content .about-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  .about-content .about-list li {
    display: block;
    font-size: 18px;
    color: var(--titleColor);
    margin-bottom: 10px;
    font-weight: 500;
    transition: var(--transition);
  }
  .about-content .about-list li i {
    color: var(--orangeColor);
    margin-right: 5px;
    position: relative;
    top: 3px;
    transition: var(--transition);
  }
  .about-content .about-list li:hover {
    color: var(--orangeColor);
    letter-spacing: 0.25px;
    margin-left: 2px;
  }
  .about-content .about-list li:hover i {
    color: var(--titleColor);
  }
  .about-content .default-btn {
    margin-top: 15px;
  }
  .choose-area {
    margin-bottom: 40px;
  }
  .choose-area .section-title {
    margin-bottom: 40px;
  }
  .choose-leftside {
    max-width: 750px;
    position: relative;
    z-index: 1;
  }
  .choose-card {
    margin-bottom: 40px;
    padding: 74px 30px 65px;
    position: relative;
    z-index: 1;
    background-color: transparent;
    margin-right: 10px;
  }
  .choose-card::before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    background-color: #fbf9f9;
    height: 100%;
    width: 100%;
    transform: skewY(165deg);
    z-index: -1;
    border-radius: 5px;
  }
  .choose-card::after {
    content: "";
    bottom: -20px;
    right: -20px;
    position: absolute;
    background-color: transparent;
    height: 100%;
    width: 100%;
    transform: skewY(165deg);
    z-index: -2;
    border: 2px solid var(--greenColor);
    opacity: 0;
    transition: var(--transition);
  }
  .choose-card h3 {
    margin-bottom: 15px;
  }
  .choose-card p {
    margin-bottom: 0;
  }
  .choose-card i {
    font-size: 50px;
    position: absolute;
    top: 52px;
    right: 20px;
    color: var(--orangeColor);
    line-height: 1;
  }
  .choose-card .circle {
    position: absolute;
    z-index: -1;
    top: -30px;
    right: -15px;
    height: 50px;
    width: 80px;
    border-radius: 0 0 150px 150px;
    background-color: var(--orangeColor);
    transform: rotate(89deg);
  }
  .choose-card:hover::after {
    opacity: 1;
  }
  .choose-bg {
    position: absolute;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
  }
  .work-area {
    position: relative;
    z-index: 1;
    padding: 30px 0;
    margin-bottom: 100px;
  }
  .work-area::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    height: 100%;
    width: 40%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .work-area::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    height: 100%;
    width: 40%;
    background-color: var(--greenColor);
    opacity: 0.9;
  }
  .work-content .section-title {
    margin-bottom: 30px;
  }
  .work-content .content {
    padding-left: 55px;
    position: relative;
    margin-bottom: 20px;
  }
  .work-content .content .number {
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 500;
    color: var(--whiteColor);
    background: linear-gradient(135deg, #2bbefe, #bb3ce9);
    text-align: center;
    transition: var(--transition);
  }
  .work-content .content h3 {
    margin-bottom: 10px;
    color: rgb(7 60 125 / 95%);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
  }
  .work-content .content h3 a {
    color: var(--titleColor);
    display: block;
    transition: var(--transition);
  }
  .work-content .content p {
    margin-bottom: 0;
    max-width: 530px;
  }
  .work-content .content:hover .number {
    background-color: var(--greenColor);
    animation: bounce 1s;
  }
  .work-content .content:hover h3 a {
    color: var(--orangeColor);
  }
  .work-img {
    position: relative;
    z-index: 1;
    margin-right: 140px;
  }
  .work-img img:nth-child(2) {
    display: none;
  }
  .work-img .line {
    position: absolute;
    z-index: -1;
    top: 60px;
    right: -100px;
  }
  .work-area-mt {
    margin-top: 100px;
  }
  .testimonial-area {
    position: relative;
    z-index: 1;
  }
  .testimonial-area::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .testimonial-area::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background-color: #fdfcfb;
    opacity: 0.9;
  }
  .testimonial-slider {
    position: relative;
  }
  .testimonial-slider .owl-nav {
    margin-top: 0;
  }
  .testimonial-slider .owl-nav .owl-prev {
    position: absolute;
    top: -60px;
    right: 60px;
    font-size: 17px !important;
    transition: 0.7s;
    text-align: center;
    width: 45px;
    height: 45px;
    line-height: 45px !important;
    border-radius: 0 !important;
    background-color: #f0efef !important;
    color: var(--titleColor) !important;
    transition: var(--transition);
  }
  .testimonial-slider .owl-nav .owl-prev i {
    position: relative;
    top: 2px;
    right: 3px;
  }
  .testimonial-slider .owl-nav .owl-prev:hover {
    color: var(--whiteColor) !important;
    background-color: var(--orangeColor) !important;
  }
  .testimonial-slider .owl-nav .owl-next {
    position: absolute;
    top: -60px;
    right: 0;
    font-size: 17px !important;
    transition: 0.7s;
    text-align: center;
    width: 45px;
    height: 45px;
    line-height: 45px !important;
    border-radius: 0 !important;
    background-color: #f0efef !important;
    color: var(--titleColor) !important;
    transition: var(--transition);
  }
  .testimonial-slider .owl-nav .owl-next i {
    position: relative;
    top: 3px;
    left: 3px;
  }
  .testimonial-slider .owl-nav .owl-next:hover {
    color: var(--whiteColor) !important;
    background-color: var(--orangeColor) !important;
  }
  .testimonial-slider .testimonial-item {
    margin-top: 40px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .testimonial-item {
    background-color: var(--whiteColor);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 20px 20px;
    position: relative;
    height:100%;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
  }
  .testimonial-item .content {
    padding-left: 80px;
    position: relative;
    margin-bottom: 40px;
  }
  .testimonial-item .content img {
    position: absolute;
    top: -3px;
    left: 0;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
  }
  .testimonial-item .content h3 {
    margin-bottom: 0;
    font-size: 19px;
    font-weight:600;
  }
  .testimonial-item .content span {
    color: var(--orangeColor);
    font-size: 15px;
  }
  .testimonial-item p {
    margin-bottom: 15px;
  }
  .testimonial-item .rating {
    font-size: 18px;
    color: #144684;
    border-top: 1px solid #eeeeee;
    padding-top: 15px;
    margin-bottom: 15px;
    margin-top:auto;
  }
  .testimonial-item .rating i {
    display: inline-block;
  }
  .testimonial-item .quote {
    position: absolute;
    bottom: 45px;
    right: 30px;
    font-size: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin-left: auto;
    flex: 0 0 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(43, 190, 254), rgb(187, 60, 233));
  }
  .blog-card {
    margin-bottom: 30px;
    background-color: var(--whiteColor);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: var(--transition);
  }
  .blog-card a {
    display: block;
  }
  .blog-card .content {
    padding: 20px 0 10px;
  }
  .blog-card .content ul {
    list-style-type: none;
    margin-left: 0;
    padding: 0;
  }
  .blog-card .content ul li {
    display: inline-block;
    font-size: 14px;
    color: var(--bodyColor);
    margin-right: 10px;
  }
  .blog-card .content ul li:last-child {
    margin-right: 0;
  }
  .blog-card .content ul li i {
    color: var(--greenColor);
    font-size: 18px;
    margin-right: 5px;
    position: relative;
    top: 2px;
    transition: var(--transition);
  }
  .blog-card .content ul li a {
    color: var(--bodyColor);
    transition: var(--transition);
  }
  .blog-card .content ul li a i {
    color: var(--greenColor);
    transition: var(--transition);
  }
  .blog-card .content ul li a:hover {
    color: var(--orangeColor);
  }
  .blog-card .content ul li a:hover i {
    color: var(--titleColor);
  }
  .blog-card .content ul li:hover {
    color: var(--orangeColor);
  }
  .blog-card .content ul li:hover i {
    color: var(--titleColor);
  }
  .blog-card .content h3 {
    margin-bottom: 10px;
    font-size: 22px;
  }
  .blog-card .content h3 a {
    color: var(--titleColor);
    transition: var(--transition);
  }
  .blog-card .content p {
    margin-bottom: 10px;
    display: block;
  }
  .blog-card .content .read-btn {
    font-size: 15px;
    color: var(--orangeColor);
    display: inline-block;
    font-weight: 600;
    position: relative;
    z-index: 1;
  }
  .blog-card .content .read-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    background-color: var(--greenColor);
    opacity: 0;
    transition: var(--transition);
    transform: scale(0);
  }
  .blog-card:hover {
    transform: translate(-10px);
  }
  .blog-card:hover .content h3 a {
    color: var(--orangeColor);
  }
  .blog-card:hover .read-btn {
    color: var(--greenColor);
  }
  .blog-card:hover .read-btn::before {
    transform: scale(1);
    opacity: 1;
  }
  .blog-left-content {
    margin-bottom: 40px;
    background-color: var(--whiteColor);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 17px 17px 17px 190px;
    transition: var(--transition);
    position: relative;
  }
  .blog-left-content .blog-left-img {
    position: absolute;
    top: 17px;
    left: 17px;
  }
  .blog-left-content .blog-left-img a {
    display: block;
  }
  .blog-left-content .blog-left-img a img {
    max-width: 150px;
  }
  .blog-left-content .content {
    vertical-align: middle;
    margin: 7px 0;
  }
  .blog-left-content .content ul {
    list-style-type: none;
    margin: 0 0 8px;
    padding: 0;
  }
  .blog-left-content .content ul li {
    display: inline-block;
    font-size: 14px;
    color: var(--bodyColor);
    margin-right: 10px;
  }
  .blog-left-content .content ul li:last-child {
    margin-right: 0;
  }
  .blog-left-content .content ul li i {
    color: var(--greenColor);
    font-size: 18px;
    margin-right: 5px;
    position: relative;
    top: 2px;
    transition: var(--transition);
  }
  .blog-left-content .content ul li a {
    color: var(--bodyColor);
    transition: var(--transition);
  }
  .blog-left-content .content ul li a i {
    color: var(--greenColor);
    transition: var(--transition);
  }
  .blog-left-content .content ul li a:hover {
    color: var(--orangeColor);
  }
  .blog-left-content .content ul li a:hover i {
    color: var(--titleColor);
  }
  .blog-left-content .content ul li:hover {
    color: var(--orangeColor);
  }
  .blog-left-content .content ul li:hover i {
    color: var(--titleColor);
  }
  .blog-left-content .content h3 {
    margin-bottom: 8px;
    font-size: 19px;
  }
  .blog-left-content .content h3 a {
    color: var(--titleColor);
    transition: var(--transition);
  }
  .blog-left-content .content p {
    margin-bottom: 8px;
    display: block;
  }
  .blog-left-content .content .read-btn {
    font-size: 15px;
    color: var(--orangeColor);
    display: inline-block;
    font-weight: 600;
    position: relative;
    z-index: 1;
  }
  .blog-left-content .content .read-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    background-color: var(--greenColor);
    opacity: 0;
    transition: var(--transition);
    transform: scale(0);
  }
  .blog-left-content:hover {
    transform: translateX(10px);
  }
  .blog-left-content:hover .content h3 a {
    color: var(--orangeColor);
  }
  .blog-left-content:hover .read-btn {
    color: var(--greenColor);
  }
  .blog-left-content:hover .read-btn::before {
    transform: scale(1);
    opacity: 1;
  }
  .blog-card-two {
    margin-bottom: 30px;
    background-color: var(--whiteColor);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-radius:10px;
  }
  .blog-card-two a {
    display: block;
  }
  .blog-card-two a img {
     border-radius:10px;
  }
  .blog-card-two .content {
    padding: 30px 20px;
  }
  .blog-card-two .content ul {
    list-style-type: none;
    margin-left: 0;
    padding: 0;
  }
  .blog-card-two .content ul li {
    display: inline-block;
    font-size: 14px;
    color: var(--bodyColor);
    margin-right: 10px;
  }
  .blog-card-two .content ul li:last-child {
    margin-right: 0;
  }
  .blog-card-two .content ul li i {
    color: var(--greenColor);
    font-size: 18px;
    margin-right: 5px;
    position: relative;
    top: 2px;
    transition: var(--transition);
  }
  .blog-card-two .content ul li a {
    color: var(--bodyColor);
    transition: var(--transition);
  }
  .blog-card-two .content ul li a i {
    color: var(--greenColor);
    transition: var(--transition);
  }
  .blog-card-two .content ul li a:hover {
    color: var(--orangeColor);
  }
  .blog-card-two .content ul li a:hover i {
    color: var(--titleColor);
  }
  .blog-card-two .content ul li:hover {
    color: var(--orangeColor);
  }
  .blog-card-two .content ul li:hover i {
    color: var(--titleColor);
  }
  .blog-card-two .content h3 {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .blog-card-two .content h3 a {
    color: var(--titleColor);
    transition: var(--transition);
    font-weight: 800;
  }
  .blog-card-two .content .read-btn {
    font-size: 15px;
    color: var(--orangeColor);
    display: inline-block;
    font-weight: 600;
    position: relative;
    z-index: 1;
  }
  .blog-card-two .content .read-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    background-color: var(--greenColor);
    opacity: 0;
    transition: var(--transition);
    transform: scale(0);
  }
  .blog-card-two:hover {
    transform: translateY(-10px);
  }
  .blog-card-two:hover .content h3 a {
    color: var(--orangeColor);
  }
  .blog-card-two:hover .read-btn {
    color: var(--greenColor);
  }
  .blog-card-two:hover .read-btn::before {
    transform: scale(1);
    opacity: 1;
  }
  .services-area-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    background-image: url(../../images/services/service-bg.jpg);
  }
  .services-area-bg::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #fdfcfb;
    opacity: 0.9;
  }
  #sidebar {
    height: 0;
    position: fixed;
    padding: 0;
    margin-right: 0;
    top: 38%;
    right: -8px;
    bottom: 0;
    z-index: 999;
    transform: translateY(-50%);
}
.social {
  margin-bottom: 1px;
  padding: 0 15px 0 0;
  display: inline-block;
  height: auto;
  -moz-transition-property: right;
  -moz-transition-duration: 0.2s;
  -moz-transition-delay: 0.2s;
  -ms-transition-property: right;
  -ms-transition-duration: 0.2s;
  -ms-transition-delay: 0.2s;
  cursor: pointer;
  background: #2bbefe;
  width: 100%;
  position: relative;
  right: -104px;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  display: flex;
  align-items: center;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.social i {
  padding: 10px;
  width: 48px;
  height: 48px;
  color: #fff;
  line-height: 28px;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.social p i {
  right: 30px;
  vertical-align: middle;
  font-size: 20px;
  float: left;
  margin-right: 0px;
}
.social:hover {
  right: -30px;
  background: #bb3ce9;
  color: #d5812a;
}
.social p {
  color: #fff;
  /* margin-bottom: 0; */
  font-size: 14px;
  line-height: 48px;
  opacity: 1;
  margin-bottom: 0;
}
  .services-area .service-btn {
    float: right;
  }
  .services-slider {
    position: relative;
  }
  .services-slider .owl-nav {
    margin-top: 0;
  }
  .services-slider .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
    font-size: 17px !important;
    transition: 0.7s;
    text-align: center;
    width: 45px;
    height: 45px;
    line-height: 45px !important;
    border-radius: 0 !important;
    background-color: #f0efef !important;
    color: var(--titleColor) !important;
    transition: var(--transition);
  }
  .services-slider .owl-nav .owl-prev i {
    position: relative;
    top: 2px;
  }
  .services-slider .owl-nav .owl-prev:hover {
    color: var(--whiteColor) !important;
    background-color: var(--orangeColor) !important;
  }
  .services-slider .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -30px;
    font-size: 17px !important;
    transition: 0.7s;
    text-align: center;
    width: 45px;
    height: 45px;
    line-height: 45px !important;
    border-radius: 0 !important;
    background-color: #f0efef !important;
    color: var(--titleColor) !important;
    transition: var(--transition);
  }
  .services-slider .owl-nav .owl-next i {
    position: relative;
    top: 3px;
  }
  .services-slider .owl-nav .owl-next:hover {
    color: var(--whiteColor) !important;
    background-color: var(--orangeColor) !important;
  }
  .services-slider .services-item {
    margin-top: 40px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .services-item {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
  }
  .services-item .content {
    padding: 35px 40px;
    background-color: var(--whiteColor);
    position: relative;
    z-index: 1;
    border-radius: 10px;
  }
  .services-item .content .service-icon {
    font-size: 55px;
    color: var(--orangeColor);
    line-height: 1;
    margin-bottom: 10px;
  }
  .services-item .content h3 {
    margin-bottom: 15px;
  }
  .services-item .content h3 a {
    color: var(--titleColor);
    transition: var(--transition);
  }
  .services-item .content p {
    margin-bottom: 20px;
    max-width: 340px;
  }
  .services-item .content .read-btn {
    padding: 10px 30px;
    color: var(--orangeColor);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: capitalize;
    background-color: #f0eeee;
    border: none;
    outline: none;
  }
  .services-item .content .read-btn::before {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--orangeColor);
    left: 0;
    right: 0;
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
  }
  .services-item .content .read-btn:hover {
    color: var(--whiteColor);
  }
  .services-item .content .read-btn:hover::before {
    width: 100%;
    opacity: 1;
  }
  .services-item .content .top {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .services-bg1::before {
    background-image: url(../../images/services/service-img1.jpg);
  }
  .services-bg2::before {
    background-image: url(../../images/services/services-large1.jpg);
  }
  .services-bg3::before {
    background-image: url(../../images/services/services-large2.jpg);
  }
  .services-bg4::before {
    background-image: url(../../images/services/services-large3.jpg);
  }
  @media only screen and (max-width: 767px) {
    .header-left {
      float: none;
      text-align: center;
    }
    .header-left ul li {
      text-align: center;
      margin: 0 5px;
      font-size: 14px;
    }
    .header-left ul li:last-child {
      margin-right: 5px;
    }
    .header-left ul li i {
      font-size: 16px;
    }
    .header-left-color ul li a {
      color: var(--bodyColor);
    }
    .header-right {
      margin-top: 5px;
      margin-bottom: 5px;
      float: none;
      text-align: center;
    }
    .header-right ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
    }
    .header-right ul li {
      display: inline-block;
      margin: 0 5px;
    }
    .header-right ul li:last-child {
      margin-right: 5px;
    }
    .banner-area {
      padding: 50px 0;
    }
    .banner-area::before {
      display: none;
    }
    .banner-content {
      margin-bottom: 30px;
      margin-left: auto;
      margin-right: auto;
      padding-top:0px;
    }
    .banner-content h1 {
      font-size: 24px;
      margin-bottom: 15px;
    }
    .banner-content p {
      font-size: 16px;
      margin-bottom: 15px;
    }
    .banner-content .banner-btn .two {
      margin-left: 20px;
    }
    .banner-img .banner-img-box img {
      border-radius: 50%;
      border: 15px solid var(--whiteColor);
    }
    .banner-img .circle1 {
      display: none;
    }
    .banner-img .circle2 {
      display: none;
    }
    .banner-img .banner-img-shape {
      display: none;
    }
    .banner-shape {
      display: none;
    }
    .banner-content-two .social-link li {
      margin-right: 10px;
    }
    .about-area {
      margin-bottom: 0;
      padding-top: 50px;
      padding-bottom: 45px;
    }
    .about-img {
      margin-bottom: 30px;
    }
    .about-img::after {
      display: none;
    }
    .about-img::before {
      display: none;
    }
    .about-img .line {
      display: none;
    }
    .about-content .section-title {
      margin-bottom: 15px;
    }
    .about-content .about-list li {
      font-size: 16px;
    }
    .about-content .default-btn {
      margin-top: 5px;
    }
    .about-area {
      padding-top:30px;
      margin-top: 0;
      padding-bottom:0;
    }
    .services-area .section-title {
      max-width: 100%;
      margin-bottom: 15px;
    }
    .services-area .service-btn {
      float: none;
      margin-bottom: 0;
    }
    .services-slider {
      margin-bottom: 30px;
    }
    .services-slider .owl-nav {
      margin-top: 0;
    }
    .services-slider .owl-nav .owl-prev {
      left: 0;
      position: inherit;
      top: 0;
      transform: translateY(0);
      background-color: var(--orangeColor) !important;
      color: var(--whiteColor) !important;
    }
    .services-slider .owl-nav .owl-prev:hover {
      background-color: var(--greenColor) !important;
    }
    .services-slider .owl-nav .owl-next {
      right: 0;
      position: inherit;
      top: 0;
      transform: translateY(0);
      background-color: var(--orangeColor) !important;
      color: var(--whiteColor) !important;
    }
    .services-slider .owl-nav .owl-next:hover {
      background-color: var(--greenColor) !important;
    }
    .services-slider .owl-nav .owl-prev,
    .services-slider .owl-nav .owl-next {
      width: 30px !important;
      height: 30px !important;
      line-height: 30px !important;
      font-size: 12px !important;
    }
    .services-slider .owl-nav .owl-prev i,
    .services-slider .owl-nav .owl-next i {
      left: 0;
      right: 0;
    }
    .services-slider .services-item {
      margin-top: 30px;
    }
    .services-item {
      padding-top: 0;
      height: auto;
    }
    .services-item .content {
      padding: 20px;
    }
    .services-item .content p {
      max-width: 100%;
    }
    .services-item .content .top img {
      max-width: 75px;
    }
    .services-item .services-bottom {
      display: none;
    }
    .services-item::before {
      display: none;
    }
    .services-item:hover::before {
      display: none;
    }
    .services-item:hover .services-bottom {
      display: none;
    }
    .choose-area {
      margin-bottom: 0;
    }
    .choose-area .section-title {
      margin-bottom: 0;
    }
    .choose-img {
      margin-bottom: 30px;
    }
    .choose-card {
      margin-bottom: 30px;
      padding: 30px 20px;
      margin-right: 0;
      background-color: #fdfcfb;
    }
    .choose-card::before {
      display: none;
    }
    .choose-card::after {
      display: none;
    }
    .choose-card h3 {
      margin-bottom: 15px;
      font-size: 18px;
      padding-right: 50px;
    }
    .choose-card p {
      margin-bottom: 0;
    }
    .choose-card i {
      font-size: 40px;
      position: absolute;
      top: 24px;
      right: 20px;
      color: var(--orangeColor);
      line-height: 1;
    }
    .choose-card .circle {
      display: none;
    }
    .choose-card:hover::after {
      opacity: 1;
    }
    .choose-bg {
      display: none;
    }
    .choose-leftside {
      margin: 0 auto;
    }
    .work-area {
      position: relative;
      z-index: 1;
      padding: 0 0 50px;
      margin-bottom: 0;
    }
    .work-area::before {
      display: none;
    }
    .work-area::after {
      display: none;
    }
    .work-content .section-title {
      margin-bottom: 30px;
    }
    .work-content .content {
      padding-left: 50px;
      position: relative;
      margin-bottom: 20px;
    }
    .work-content .content h3 {
      font-size: 18px;
    }
    .work-img {
      margin-top: 10px;
      margin-right: 0;
    }
    .work-img img:nth-child(1) {
      display: none;
    }
    .work-img img:nth-child(2) {
      display: block;
    }
    .work-img .line {
      display: none;
    }
    .work-area-mt {
      margin-top: 50px;
    }
    .testimonial-area::before {
      width: 100%;
    }
    .testimonial-area::after {
      width: 100%;
    }
    .testimonial-slider {
      margin-bottom: 30px;
    }
    .testimonial-slider .owl-nav {
      margin-top: 0;
    }
    .testimonial-slider .owl-nav .owl-prev,
    .testimonial-slider .owl-nav .owl-next {
      position: inherit;
      top: 0;
      right: 0;
      background-color: var(--orangeColor) !important;
      color: var(--whiteColor) !important;
    }
    .testimonial-slider .owl-nav .owl-prev:hover,
    .testimonial-slider .owl-nav .owl-next:hover {
      background-color: var(--greenColor) !important;
    }
    .testimonial-slider .owl-nav .owl-next {
      position: inherit;
      top: 0;
      right: 0;
      color: var(--whiteColor) !important;
      background-color: var(--orangeColor) !important;
    }
    .testimonial-slider .owl-nav .owl-next:hover {
      background-color: var(--greenColor) !important;
    }
    .testimonial-slider .owl-nav .owl-prev,
    .testimonial-slider .owl-nav .owl-next {
      width: 30px !important;
      height: 30px !important;
      line-height: 30px !important;
      font-size: 12px !important;
    }
    .testimonial-slider .owl-nav .owl-prev i,
    .testimonial-slider .owl-nav .owl-next i {
      left: 0;
      right: 0;
    }
    .testimonial-slider .testimonial-item {
      margin-top: 30px;
    }
    .testimonial-item {
      padding: 20px 10px 12px;
    }
    .testimonial-item .content {
      padding-left: 70px;
    }
    .testimonial-item .content h3 {
      font-size: 17px;
    }
    .testimonial-item .quote {
      bottom:35px;
    }
    .testimonial-item p {
      margin-bottom: 7px;
    }
    .blog-area-mt-10 {
      margin-top: -10px;
    }
    .blog-card .content {
      padding: 20px 0 10px;
    }
    .blog-card .content ul li {
      margin-right: 5px;
    }
    .blog-card .content ul li:last-child {
      margin-right: 0;
    }
    .blog-card .content ul li i {
      font-size: 16px;
      margin-right: 3px;
    }
    .blog-left-content {
      margin-bottom: 30px;
      padding: 20px;
    }
    .blog-left-content .blog-left-img {
      position: inherit;
      top: 0;
      left: 0;
    }
    .blog-left-content .blog-left-img a img {
      max-width: 100%;
      margin-bottom: 15px;
      width: 100%;
    }
    .blog-left-content .content {
      margin: 0;
    }
    .blog-left-content .content ul {
      list-style-type: none;
      margin: 0 0 8px;
      padding: 0;
    }
    .blog-left-content .content ul li {
      margin-right: 5px;
    }
    .blog-left-content .content ul li:last-child {
      margin-right: 0;
    }
    .blog-left-content .content ul li i {
      font-size: 16px;
      margin-right: 3px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .choose-area .container-fluid {
      width: 540px;
    }
    .choose-card {
      padding: 25px 13px;
    }
    .choose-card i {
      right: 13px;
    }
    .choose-card h3 {
      font-size: 19px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-left-color ul li a {
      color: var(--bodyColor);
    }
    .banner-area {
      padding: 70px 0;
    }
    .banner-area::before {
      display: none;
    }
    .banner-content {
      margin-bottom: 30px;
      padding-top:0px;
    }
    .banner-content h1 {
      font-size: 35px;
      margin-bottom: 15px;
    }
    .banner-content p {
      font-size: 16px;
      margin-bottom: 15px;
    }
    .banner-content .banner-btn .two {
      margin-left: 20px;
    }
    .banner-img .banner-img-box img {
      border-radius: 50%;
      border: 15px solid var(--whiteColor);
    }
    .banner-img .circle1 {
      display: none;
    }
    .banner-img .circle2 {
      display: none;
    }
    .banner-img .banner-img-shape {
      display: none;
    }
    .banner-shape {
      display: none;
    }
    .about-area {
      margin-bottom: 0;
      padding-bottom: 45px;
    }
    .about-img {
      margin-bottom: 30px;
    }
    .about-img::after {
      display: none;
    }
    .about-img::before {
      display: none;
    }
    .about-img .line {
      display: none;
    }
    .about-content .section-title {
      margin-bottom: 15px;
    }
    .about-content .about-list li {
      font-size: 16px;
    }
    .about-content .default-btn {
      margin-top: 5px;
    }
    .services-item {
      margin-top: 30px;
      padding-top: 0;
      height: auto;
    }
    .services-item .content {
      padding: 30px 20px;
    }
    .services-item .content p {
      max-width: 100%;
    }
    .services-item .content .top img {
      max-width: 75px;
    }
    .services-item .services-bottom {
      display: none;
    }
    .services-item::before {
      display: none;
    }
    .services-item:hover .content h3 a {
      color: var(--orangeColor);
    }
    .services-item:hover::before {
      display: none;
    }
    .services-item:hover .services-bottom {
      display: none;
    }
    .choose-area .container-fluid {
      width: 720px;
    }
    .choose-area {
      margin-bottom: 0;
    }
    .choose-area .section-title {
      margin-bottom: 0;
    }
    .choose-img {
      margin-bottom: 30px;
      text-align: center;
    }
    .choose-img img {
      text-align: center;
    }
    .choose-card {
      margin-bottom: 30px;
      padding: 30px 20px;
      margin-right: 0;
      background-color: #fdfcfb;
    }
    .choose-card::before {
      display: none;
    }
    .choose-card::after {
      display: none;
    }
    .choose-card h3 {
      margin-bottom: 15px;
      font-size: 18px;
    }
    .choose-card p {
      margin-bottom: 0;
    }
    .choose-card i {
      font-size: 35px;
      position: absolute;
      top: 24px;
      right: 20px;
      color: var(--orangeColor);
      line-height: 1;
    }
    .choose-card .circle {
      display: none;
    }
    .choose-card:hover::after {
      opacity: 1;
    }
    .choose-bg {
      display: none;
    }
    .choose-leftside {
      margin: 0 auto;
    }
    .work-area {
      position: relative;
      z-index: 1;
      padding: 0 0 50px;
      margin-bottom: 0;
    }
    .work-area::before {
      display: none;
    }
    .work-area::after {
      display: none;
    }
    .work-content .section-title {
      margin-bottom: 30px;
    }
    .work-content .content {
      padding-left: 50px;
      position: relative;
      margin-bottom: 20px;
    }
    .work-content .content h3 {
      font-size: 18px;
    }
    .work-img {
      margin-top: 10px;
      margin-right: 0;
    }
    .work-img img:nth-child(1) {
      display: none;
    }
    .work-img img:nth-child(2) {
      display: block;
    }
    .work-img .line {
      display: none;
    }
    .work-area-mt {
      margin-top: 50px;
    }
    .blog-card-two .content ul li {
      margin-right: 5px;
    }
    .blog-card-two .content ul li i {
      margin-right: 3px;
    }
    .blog-card-two .content h3 {
      font-size: 20px;
    }
    .blog-area-mt-10 {
      margin-top: -10px;
    }
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .banner-content {
      margin-bottom: 30px;
      position: relative;
      z-index: 1;
    }
    .banner-content h1 {
      font-size: 40px;
      margin-bottom: 15px;
    }
    .banner-content p {
      font-size: 16px;
      margin-bottom: 15px;
    }
    .banner-img {
      max-width: 420px;
    }
    .banner-img .circle1 {
      height: 47%;
      top: 101px;
      right: -115px;
    }
    .banner-img .circle2 {
      height: 47%;
      bottom: 100px;
      left: -115px;
    }
    .banner-shape img {
      max-width: 105px;
    }
    .about-area {
      margin-top: 40px;
      margin-bottom: 60px;
    }
    .about-img .line img {
      height: 450px;
    }
    .services-slider .owl-nav {
      margin-top: 0;
    }
    .services-slider .owl-nav .owl-prev {
      left: -20px;
    }
    .services-slider .owl-nav .owl-next {
      right: -20px;
    }
    .services-item {
      margin-top: 30px;
      padding-top: 0;
      height: auto;
    }
    .services-item .content {
      padding: 30px 45px;
    }
    .services-item .content .top img {
      max-width: 75px;
    }
    .services-item .services-bottom {
      display: none;
    }
    .services-item::before {
      display: none;
    }
    .services-item:hover .content h3 a {
      color: var(--orangeColor);
    }
    .services-item:hover::before {
      display: none;
    }
    .services-item:hover .services-bottom {
      display: none;
    }
    .choose-card {
      margin-bottom: 30px;
      padding: 30px 15px;
      margin-right: 0;
      background-color: #fdfcfb;
    }
    .choose-card::before {
      display: none;
    }
    .choose-card::after {
      display: none;
    }
    .choose-card h3 {
      margin-bottom: 15px;
      font-size: 17px;
    }
    .choose-card p {
      margin-bottom: 0;
    }
    .choose-card i {
      font-size: 35px;
      position: absolute;
      top: 24px;
      right: 15px;
      color: var(--orangeColor);
      line-height: 1;
    }
    .choose-card .circle {
      display: none;
    }
    .choose-card:hover::after {
      opacity: 1;
    }
    .work-content .section-title {
      margin-bottom: 30px;
    }
    .work-content .content {
      padding-left: 50px;
      position: relative;
      margin-bottom: 20px;
    }
    .work-content .content h3 {
      font-size: 18px;
    }
    .work-img {
      margin-top: 10px;
      margin-right: 50px;
    }
    .work-img .line {
      top: 15px;
      right: -50px;
    }
    .work-img .line img {
      height: 450px;
    }
    .testimonial-item .quote {
      display: none;
    }
    .blog-left-content {
      margin-bottom: 30px;
      padding: 10px 10px 10px 125px;
    }
    .blog-left-content .blog-left-img {
      top: 50%;
      transform: translateY(-50%);
      left: 10px;
    }
    .blog-left-content .blog-left-img a img {
      max-width: 100px;
    }
    .blog-left-content .content {
      margin: 0;
    }
    .blog-left-content .content ul {
      list-style-type: none;
      margin: 0 0 8px;
      padding: 0;
    }
    .blog-left-content .content ul li {
      margin-right: 5px;
    }
    .blog-left-content .content ul li:last-child {
      margin-right: 0;
    }
    .blog-left-content .content ul li i {
      font-size: 16px;
      margin-right: 3px;
    }
    .blog-left-content .content h3 {
      font-size: 18px;
    }
    .blog-card-two .content {
      padding: 25px 15px;
    }
    .blog-card-two .content ul li {
      margin-right: 12px;
    }
    .blog-card-two .content h3 {
      font-size: 19px;
    }
  }
  @media only screen and (min-width: 1200px) and (max-width: 1299px) {
    .banner-content {
      margin-bottom: 30px;
    }
    .banner-content h1 {
      font-size: 45px;
      margin-bottom: 15px;
    }
    .banner-content p {
      font-size: 15px;
      margin-bottom: 15px;
    }
    .banner-img .circle1 {
      height: 50%;
    }
    .banner-img .circle2 {
      height: 50%;
    }
    .about-area {
      margin-top: 40px;
      margin-bottom: 60px;
    }
    .about-img .line img {
      height: 570px;
    }
    .services-item .content {
      padding: 35px 30px;
    }
    .services-item .content .top img {
      max-width: 85px;
    }
    .services-slider .owl-nav {
      margin-top: 0;
    }
    .services-slider .owl-nav .owl-prev {
      left: -20px;
    }
    .services-slider .owl-nav .owl-next {
      right: -20px;
    }
    .choose-card h3 {
      font-size: 17px;
    }
    .work-img {
      margin-top: 10px;
      margin-right: 50px;
    }
    .work-img .line {
      top: 15px;
      right: -50px;
    }
    .work-img .line img {
      height: 570px;
    }
    .blog-left-content .blog-left-img {
      top: 50%;
      transform: translateY(-50%);
    }
    .blog-left-content {
      padding: 10px 10px 10px 140px;
      margin-bottom: 32px;
    }
    .blog-left-content .blog-left-img {
      top: 50%;
      transform: translateY(-50%);
      left: 10px;
    }
    .blog-left-content .blog-left-img a {
      display: block;
    }
    .blog-left-content .blog-left-img a img {
      max-width: 120px;
    }
    .blog-left-content .content {
      vertical-align: middle;
      margin: 0;
    }
    .blog-left-content .content ul li {
      font-size: 13px;
    }
    .blog-left-content .content h3 {
      font-size: 18px;
    }
    .blog-left-content .content p {
      font-size: 15px;
    }
    .blog-left-content .content .read-btn {
      font-size: 14px;
    }
    .blog-card .content ul li {
      font-size: 13px;
    }
    .blog-card .content h3 {
      font-size: 20px;
    }
    .blog-card .content .read-btn {
      font-size: 14px;
    }
  }
  @media only screen and (min-width: 1300px) and (max-width: 1350px) {
    .container-fluid {
      width: 1280px;
      margin-left: auto !important;
      margin-right: auto !important;
    }
    .about-img {
      margin-left: 30px;
    }
    .about-img::before {
      width: 102%;
    }
    .about-img::after {
      width: 102%;
    }
    .services-slider .owl-nav {
      margin-top: 0;
    }
    .services-slider .owl-nav .owl-prev {
      left: -10px;
    }
    .services-slider .owl-nav .owl-next {
      right: -10px;
    }
    .services-item .content .top img {
      max-width: 85px;
    }
    .blog-left-content {
      padding: 17px 17px 17px 185px;
    }
  }
  @media only screen and (min-width: 1800px) {
    .banner-area {
      padding: 100px 0;
    }
    .banner-area::before {
      bottom: -110px;
    }
    .banner-img {
      max-width: 700px;
    }
    .banner-img .circle1 {
      top: 125px;
      height: 60%;
    }
    .banner-img .circle2 {
      bottom: 125px;
      height: 60%;
    }
    .banner-img .banner-img-shape img:nth-child(1) {
      bottom: 0;
    }
    .choose-area .container-fluid {
      width: 1440px;
      margin-left: auto !important;
      margin-right: auto !important;
    }
  }
  .top-header-bg-three {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #2bbefe 0%, #bb3ce9 100%);
  display:none;
}
.banner-area-three {
  position: relative;
  z-index: 1;
  margin-top: -125px;
  background-image: url(../../images/home-three/home-three-bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 125px 0 0;
  min-height: 720px;
  background:#01091c;
}
.banner-area-three::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: var(--whiteColor);
  background: #00112d;*/
  opacity: 0.9;
}
/*.banner-img-three img {
  border-bottom-left-radius: 80%;
}*/
.why-card {
  margin-bottom: 30px;
  padding: 30px 30px 30px;
  position: relative;
  z-index: 1;
  background-color: transparent;
  margin-right: 10px;
  box-shadow: 0 10px 30px rgba(7, 60, 125, .07);
}
.why-card::before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  background-color: #fbf9f9;
  height: 100%;
  width: 100%;
  z-index: -1;
  border-radius: 5px;
}
.why-card::after {
  content: "";
  bottom: -20px;
  right: -20px;
  position: absolute;
  background-color: transparent;
  height: 100%;
  width: 100%;
  z-index: -2;
  border: 2px solid var(--greenColor);
  opacity: 0;
  transition: var(--transition);
    background: linear-gradient(135deg, rgba(43, 190, 254, .09), rgba(187, 60, 233, .07));
    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
}
.why-card h3 {
  margin-top: 15px;
  margin-bottom: 15px;
  padding-right: 50px;
  font-size: 20px;
    line-height: 1.15;
    font-weight: 800;
}
.why-card p {
  margin-bottom: 0;
}
.why-card i {
  font-size: 50px;
  position: absolute;
  top: 50px;
  right: 20px;
  color: var(--orangeColor);
}
.why-card .circle {
  position: absolute;
  z-index: -1;
  top: 18px;
  right: -15px;
  height: 50px;
  width: 80px;
  border-radius: 0 0 150px 150px;
  background: linear-gradient(135deg, #2bbefe, #bb3ce9);
  transform: rotate(89deg);
}
.why-card:hover::after {
  opacity: 1;
}
.work-area-two {
  position: relative;
  z-index: 1;
  background-image: url(../../images/work-img/work-img2.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.work-area-two::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--whiteColor);
  opacity: 0.9;
}
.work-img-three {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.work-img-three .line {
  position: absolute;
  z-index: -1;
  top: 30px;
  left: -30px;
  display:none;
}
/*------------*/
.services-area-two {
    position: relative;
    overflow: hidden;
    background:
        #00172F;
}

.services-area-two::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    left: -300px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(43, 190, 254, 0.08);
    filter: blur(80px);
    pointer-events: none;
}

.services-area-two::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -300px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(187, 60, 233, 0.08);
    filter: blur(80px);
    pointer-events: none;
}

.services-area-two > .container {
    position: relative;
    z-index: 2;
}
/*--------------*/
.services-area-two .section-title h2 {
  color:white;
}
.services-tab .tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.services-tab .tabs li {
  display: inline-block;
  line-height: initial;
  margin-right: 25px;
  margin-top: 30px;
}
.services-tab .tabs li a {
  display: inline-block;
  position: relative;
  color: var(--blueColor);
  padding: 15px 30px;
  background-color: #f0eeee;
  border-radius: 5px;
}
.services-tab .tabs li.active a {
  background-color: var(--orangeColor);
  color: var(--whiteColor);
}
.services-tab .tabs li.current a {
  background-color: var(--orangeColor);
  color: var(--whiteColor);
}
.tab .tabs_item {
  display: none;
}
.tab .tabs_item:first-child {
  display: block;
}
.services-tab-img a {
  display: block;
}
.services-tab-img a img {
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
.services-tab-content h2 {
  font-size: 35px;
  margin-bottom: 15px;
}
.services-tab-content p {
  margin-bottom: 20px;
}
.services-tab-content .services-tab-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.services-tab-content .services-tab-list li {
  display: block;
  font-size: 18px;
  color: var(--titleColor);
  margin-bottom: 10px;
  font-weight: 500;
  transition: var(--transition);
}
.services-tab-content .services-tab-list li i {
  color: var(--orangeColor);
  margin-right: 5px;
  position: relative;
  top: 3px;
  transition: var(--transition);
}
.services-tab-content .services-tab-list li:hover {
  color: var(--orangeColor);
  letter-spacing: 0.25px;
  margin-left: 2px;
}
.services-tab-content .services-tab-list li:hover i {
  color: var(--titleColor);
}
.services-tab-content .default-btn {
  margin-top: 15px;
}
.services-tab-img {
  margin-bottom: 30px;
}
.choose-area-two {
  background-color: #fff;
}
.choose-content-left .section-title {
  margin-bottom: 30px;
}

.choose-content-left .choose-item h4 {
  margin-bottom: 10px;
  color: #fff;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}
.choose-content-left .choose-item p {
  margin-bottom: 0;
 
}

.choose-img-three {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.choose-img-three::before {
  content: "";
  right: 0;
  position: absolute;
  background-color: #f9f7f7;
  /*height: 10%;
  top: -30px;
  transform: skewY(-175deg);*/
  width: 100%;
  z-index: 1;
}
.choose-img-three::after {
  content: "";
  right: 0;
  position: absolute;
  background-color: #f9f7f7;
  /*height: 10%;
  bottom: -30px;
  transform: skewY(175deg);*/
  width: 100%;
  z-index: 1;
}
.choose-img-three .line {
  position: absolute;
  z-index: -1;
  top: 80px;
  right: -30px;
  display:none;
}
.choose-img-three .line img {
  height: 500px;
}
.project-slider {
  position: relative;
}
.project-slider .owl-nav {
  margin-top: 0;
}
.project-slider .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  font-size: 17px !important;
  transition: 0.7s;
  text-align: center;
  width: 45px;
  height: 45px;
  line-height: 45px !important;
  border-radius: 0 !important;
  background-color: #f0efef !important;
  color: var(--titleColor) !important;
  transition: var(--transition);
}
.project-slider .owl-nav .owl-prev i {
  position: relative;
  top: 2px;
}
.project-slider .owl-nav .owl-prev:hover {
  color: var(--whiteColor) !important;
  background-color: var(--orangeColor) !important;
}
.project-slider .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
  font-size: 17px !important;
  transition: 0.7s;
  text-align: center;
  width: 45px;
  height: 45px;
  line-height: 45px !important;
  border-radius: 0 !important;
  background-color: #f0efef !important;
  color: var(--titleColor) !important;
  transition: var(--transition);
}
.project-slider .owl-nav .owl-next i {
  position: relative;
  top: 3px;
}
.project-slider .owl-nav .owl-next:hover {
  color: var(--whiteColor) !important;
  background-color: var(--orangeColor) !important;
}
.project-item {
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
  margin-bottom: 20px;
  overflow: hidden;
}
.project-item a {
  display: block;
}
.project-item a img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.project-item .content {
  position: absolute;
  z-index: 1;
  bottom: 10px;
  left: 0;
  right: 0;
  width: 90%;
  height: 65px;
  margin: 0 auto;
  background-color: var(--whiteColor);
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
  transition: var(--transition);
}
.project-item .content::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0%;
  background-color: var(--orangeColor);
  transition: var(--transition);
  opacity: 0;
  border-radius: 5px;
}
.project-item .content h3 {
  margin-bottom: 10px;
  text-align: center;
  transition: var(--transition);
}
.project-item .content h3 a {
  color: var(--blueColor);
  transition: var(--transition);
}
.project-item .content p {
  color: var(--whiteColor);
  margin-bottom: 0;
  opacity: 0;
  transition: var(--transition);
  max-width: 250px;
}
.project-item .content.content-max p {
  max-width: 300px;
}
.project-item:hover .content {
  height: 130px;
}
.project-item:hover .content::before {
  height: 100%;
  opacity: 1;
}
.project-item:hover .content h3 {
  -moz-text-align-last: left;
  text-align-last: left;
}
.project-item:hover .content h3 a {
  color: var(--whiteColor);
}
.project-item:hover .content p {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
    .inner-banner .inner-title ul li {
      font-size: 14px;
    }
     .inner-banner .inner-title h3 {
        font-size: 18px;
    }
    .footer-logo img {
        max-width: 165px;
    }
  .top-header-bg-three {
    background-color: #f0eeee;
  }
  .banner-area-three {
    margin-top: 0;
    padding: 30px 0 0;
    height: 900px;
  }
  .banner-img-three img {
    border-bottom-left-radius: 0%;
  }
  .why-card {
    margin-top: 0;
    margin-bottom:10px;
    padding: 15px 20px;
    margin-right: 0;
    background-color: #fdfcfb;
  }
  .why-card::before {
    display: none;
  }
  .why-card::after {
    display: none;
  }
  .why-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .why-card p {
    margin-bottom: 0;
  }
  .why-card i {
    font-size: 35px;
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--orangeColor);
    line-height: 1;
  }
  .work-img-three {
    margin-bottom: 30px;
  }
  .work-img-three::after {
    display: none;
  }
  .work-img-three::before {
    display: none;
  }
  .work-img-three .line {
    display: none;
  }
  .services-tab .tabs li {
    margin: 7px;
  }
  .services-tab .tabs {
    white-space: nowrap;
    text-align: center;
    overflow: auto;
  }
  .services-tab .tabs li a {
    padding: 10px 15px;
    font-size: 13px;
  }
  .services-tab-img {
    margin-bottom: 30px;
  }
  .services-tab-img a img {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .services-tab-content {
    margin-bottom: 30px;
  }
  .services-tab-content h2 {
    font-size: 24px;
  }
  .services-tab-content .services-tab-list li {
    display: block;
    font-size: 16px;
  }
  .services-tab-content .default-btn {
    margin-top: 15px;
  }
  .choose-content-left .section-title {
    margin-bottom: 20px;
  }
  .choose-content-left .choose-item {
    margin-bottom: 0px;
  }
  /*.postnsticky {
    margin-top: 20px;
  }*/
  .choose-content-left .choose-item h4 {
    font-size: 18px;
  }
  .choose-content-left .choose-item p {
    margin-bottom: 0;
    max-width: 100%;
  }
  
  .choose-img-three {
    margin-right: 0;
    margin-top: 30px;
    margin-bottom:0px;
  }
  .choose-img-three::before {
    display: none;
  }
  .choose-img-three::after {
    display: none;
  }
  .choose-img-three .line {
    display: none;
  }
  .project-slider {
    margin-bottom: 30px;
  }
  .project-slider .owl-nav {
    margin-top: 0;
  }
  .project-slider .owl-nav .owl-prev {
    position: inherit;
    top: 0;
    transform: translateY(0%);
    left: 0;
  }
  .project-slider .owl-nav .owl-next {
    position: inherit;
    top: 0;
    transform: translateY(0%);
    right: 0;
  }
  .project-slider .owl-nav .owl-prev,
  .project-slider .owl-nav .owl-next {
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    font-size: 12px !important;
  }
  .project-slider .owl-nav .owl-prev i,
  .project-slider .owl-nav .owl-next i {
    left: 0;
    right: 0;
  }
  .project-item .content.content-max {
    position: inherit;
    bottom: 0;
    width: 100%;
    height: auto;
    border-radius: 0;
    background-color: var(--orangeColor);
  }
  .project-item .content.content-max h3 {
    -moz-text-align-last: left;
    text-align-last: left;
  }
  .project-item .content.content-max h3 a {
    color: var(--whiteColor);
  }
  .project-item .content.content-max p {
    opacity: 1;
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .top-header-bg-three {
    background-color: #f0eeee;
  }
  .banner-area-three {
    margin-top: 0;
    padding: 70px 0 0;
  }
  .banner-img-three img {
    border-bottom-left-radius: 0%;
  }
  .why-card {
    margin-top: 0;
    margin-bottom: 30px;
    padding: 30px 20px;
    margin-right: 0;
    background-color: #fdfcfb;
  }
  .why-card::before {
    display: none;
  }
  .why-card::after {
    display: none;
  }
  .why-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .why-card p {
    margin-bottom: 0;
  }
  .why-card i {
    font-size: 35px;
    position: absolute;
    top: 20px;
  }
  .work-img-three {
    margin-bottom: 30px;
  }
  .work-img-three::after {
    display: none;
  }
  .work-img-three::before {
    display: none;
  }
  .work-img-three .line {
    display: none;
  }
  .services-tab .tabs li {
    margin: 7px;
  }
  .services-tab .tabs li a {
    padding: 15px 20px;
  }
  .services-tab-img {
    margin-bottom: 30px;
  }
  .services-tab-img a img {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .services-tab-content {
    margin-bottom: 30px;
  }
  .services-tab-content h2 {
    font-size: 24px;
  }
  .services-tab-content .services-tab-list li {
    display: block;
    font-size: 16px;
  }
  .services-tab-content .default-btn {
    margin-top: 15px;
  }
  .choose-content-left .section-title {
    margin-bottom: 20px;
  }
  .choose-content-left .choose-item {
    margin-bottom: 30px;
  }
  
  .choose-content-left .choose-item h4 {
    font-size: 18px;
  }
  .choose-content-left .choose-item p {
    margin-bottom: 0;
    max-width: 100%;
  }
 .choose-item{
    display: flex;
    flex-direction: row;
    gap: 20px;
 }
  .choose-img-three {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .choose-img-three::before {
    display: none;
  }
  .choose-img-three::after {
    display: none;
  }
  .choose-img-three .line {
    display: none;
  }
  .project-item .content.content-max {
    position: inherit;
    bottom: 0;
    width: 100%;
    height: auto;
    border-radius: 0;
    background-color: var(--orangeColor);
  }
  .project-item .content.content-max h3 {
    -moz-text-align-last: left;
    text-align-last: left;
  }
  .project-item .content.content-max h3 a {
    color: var(--whiteColor);
  }
  .project-item .content.content-max p {
    opacity: 1;
    max-width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .why-card {
    padding: 56px 10px 65px 15px;
  }
  .why-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .why-card p {
    margin-bottom: 0;
  }
  .why-card i {
    font-size: 40px;
    top: 40px;
    right: 10px;
    line-height: 1;
  }
  .work-img-three .line img {
    height: 440px;
  }
  .services-tab .tabs li {
    margin: 7px;
  }
  .services-tab .tabs li a {
    padding: 15px 20px;
  }
  .choose-img-three .line {
    top: 65px;
  }
  .choose-img-three .line img {
    height: 350px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1299px) {
  .work-img-three .line img {
    height: 500px;
  }
  .choose-img-three .line {
    top: 65px;
  }
  .choose-img-three .line img {
    height: 400px;
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1350px) {
  .work-img-three {
    margin-left: 30px;
  }
  .work-img-three .line img {
    height: 575px;
  }
  .project-slider {
    position: relative;
  }
  .project-slider .owl-nav {
    margin-top: 0;
  }
  .project-slider .owl-nav .owl-prev {
    left: -10px;
  }
  .project-slider .owl-nav .owl-next {
    right: -10px;
  }
}
.side-bar-area{
  position: sticky;
  top: 100px;
}

.side-bar-area h4 {
    font-weight:800;
}

.faq-area h2 {
    font-weight:800;
}

.single-about {
    background: #fff;
    text-align: center;
    padding: 28px 0;
    position: relative;
}


.category_container .about-content h6 {
  color: #fff;
  line-height: 20px;
  margin: auto;
  margin-top: 15px;
}

.category_container  h6 {
    font-size: 14px;
    margin-top: 10px;
    font-weight: bold;
    color: #000;
}

.category_container .single-about {
    max-height: 180px;
    margin: 5px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .035));
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 8px;
    backdrop-filter: blur(8px);
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}

.category_container .about-content {
    display: block;
}

.category_container .single-about:hover {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.10), 0 2px 8px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.10), 0 2px 8px 0 rgba(0, 0, 0, 0.15);
  transform:translateY(-8px);
}

.category_container .img-containter {
    height: 75px;
    margin-bottom: 5px;
}


.category_container .col-2 {
    width: 20%;
}

.postnsticky {
    position: sticky;
    top: 80px;
}

.postnsticky img {
    border-radius:15px;
    width:100%;
}

@media(max-width:640px){
 
  .category_container .col-2 {
    width: 50%;
  }
  
  
}
/*-------------banner----------------*/

.security-banner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 20px;
    border-radius: 20px;
    border: 2px solid transparent;
    background: linear-gradient(#192842, #192842) padding-box, linear-gradient(90deg, #bb3ce9, #48cceb) border-box;
    color: #2bbefe;
    margin-bottom:18px;
}

.security-banner i {
    font-size:20px;
}

.security-banner p {
    margin-bottom:0;
    color: #2bbefe;
    font-size:13px;
    font-weight:500;
}

/* =========================================
   BANNER STATS
========================================= */

.banner-stats {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 25px;

    z-index: 10;
}

.banner-stats-inner {
    width: 100%;
    max-width: 1300px;
    min-height: 118px;

    margin: 0 auto;
    padding: 20px 28px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;

    border: 1px solid #0874dc;
    border-radius: 18px;

    background: rgba(3, 25, 60, 0.28);

    box-shadow:
        inset 0 0 25px rgba(0, 105, 220, 0.08),
        0 0 18px rgba(0, 90, 190, 0.04);

    backdrop-filter: blur(8px);
}


/* =========================================
   STAT ITEM
========================================= */

.banner-stat-item {
    position: relative;

    min-height: 78px;

    display: flex;
    align-items: center;

    padding: 0 32px;
}


/* Vertical line */

.banner-stat-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 1px;
    height: 100%;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(105, 151, 205, 0.45) 15%,
        rgba(105, 151, 205, 0.45) 85%,
        transparent
    );
}


/* =========================================
   ICON
========================================= */

.banner-stat-icon {
    width: 68px;
    height: 68px;

    flex: 0 0 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 21px;

    border: 1px solid rgba(0, 145, 255, 0.35);
    border-radius: 14px;

    background: linear-gradient(
        145deg,
        rgba(7, 60, 125, 0.95),
        rgba(2, 39, 88, 0.95)
    );
}

.banner-stat-icon img {
    width: 45px;
    height: 45px;

    display: block;
    object-fit: contain;
}


/* =========================================
   TEXT
========================================= */

.banner-stat-number {
    color: #fff;

    font-size: 32px;
    font-weight: 700;
    line-height: 1;

    margin-bottom: 7px;
}

.banner-stat-title {
    color: #c8d4e9;

    font-size: 14px;
    font-weight: 400;

    line-height: 1.45;
}

@media (max-width: 991px) {

    .banner-stats {
        left: 15px;
        right: 15px;
        bottom: 20px;
    }

    .banner-stats-inner {
        grid-template-columns: repeat(2, 1fr);

        padding: 18px 10px;
    }

    .banner-stat-item {
        min-height: 82px;
        padding: 12px 18px;
    }

    /* Vertical line only between columns */
    .banner-stat-item:nth-child(2)::after {
        display: none;
    }

    /* Horizontal line */
    .banner-stat-item:nth-child(1)::before,
    .banner-stat-item:nth-child(2)::before {
        content: "";

        position: absolute;

        left: 18px;
        right: 18px;
        bottom: 0;

        height: 1px;

        background: linear-gradient(
            90deg,
            transparent,
            rgba(105, 151, 205, 0.4),
            transparent
        );
    }

    .banner-stat-icon {
        width: 60px;
        height: 60px;
        flex-basis: 60px;

        margin-right: 15px;
    }

    .banner-stat-icon img {
        width: 34px;
        height: 34px;
    }

    .banner-stat-number {
        font-size: 28px;
    }

    .banner-stat-title {
        font-size: 13px;
    }
}

@media (max-width: 575px) {

    .banner-section {
        min-height: 700px;
    }

    .banner-stats {
        left: 12px;
        right: 12px;
        bottom: 15px;
    }

    .banner-stats-inner {
        grid-template-columns: repeat(2, 1fr);

        padding: 10px 15px;

        border-radius: 14px;
    }

    .banner-stat-item {
        min-height: 78px;

        padding: 12px 5px;
    }

    /* Mobile par vertical lines remove */
    .banner-stat-item::after {
        display: none !important;
    }

    /* Horizontal separators */
    .banner-stat-item:not(:last-child)::before {
        content: "";

        position: absolute;

        left: 5px;
        right: 5px;
        bottom: 0;

        height: 1px;

        background: linear-gradient(
            90deg,
            transparent,
            rgba(105, 151, 205, 0.4),
            transparent
        );
        display:none;
    }

    .banner-stat-icon {
        width: 55px;
        height: 55px;

        flex: 0 0 55px;

        margin-right: 14px;

        border-radius: 12px;
    }

    .banner-stat-icon img {
        width: 30px;
        height: 30px;
    }

    .banner-stat-number {
        font-size: 20px;
    }

    .banner-stat-title {
        font-size: 12px;
        line-height: 1.35;
    }
    
    .banner-area-three {
        height: 820px;
    }
}

/* =========================================
   CYBER SECURITY SECTOR SECTION
========================================= */

.sector-section {
    position: relative;
    padding: 50px 0;
    background: #00172F;
    overflow: hidden;
}

/* Subtle background effect */
.sector-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    left: -200px;
    background: rgba(43, 190, 254, 0.12);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

.sector-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -200px;
    bottom: -250px;
    background: rgba(187, 60, 233, 0.12);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}


/* =========================================
   SECTION TITLE
========================================= */

.sector-section .section-title {
    position: relative;
    z-index: 2;
    margin: 0 auto 40px;
}

.sector-section .sp-titlee {
    display: inline-block;
    margin-bottom: 14px;
    color: #2bbefe;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sector-section .section-title h2 {
    margin: 0;
    color: #fff;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.sector-section .section-title h2 span {
    background: linear-gradient(
        90deg,
        #2bbefe 0%,
        #bb3ce9 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* =========================================
   CARDS WRAPPER
========================================= */

.sector-cards {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


/* =========================================
   CARD
========================================= */

.sector-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 18px;
    background: #071f3d;
    border: 1px solid rgba(255, 255, 255, 0.14);
    isolation: isolate;
    cursor: pointer;
}

.sector-card > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}


/* Image darkening */
.sector-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(3, 20, 43, 0.95) 0%,
        rgba(3, 20, 43, 0.35) 45%,
        rgba(3, 20, 43, 0.05) 100%
    );
    pointer-events: none;
}


/* =========================================
   CASE TAG
========================================= */

.case-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 4;

    padding: 7px 14px;
    border-radius: 50px;

    color: #fff;
    background: linear-gradient(
        90deg,
        #2bbefe,
        #bb3ce9
    );

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    box-shadow: 0 8px 25px rgba(43, 190, 254, 0.2);
}


/* =========================================
   BOTTOM TITLE
========================================= */

.sector-card-bottom {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 3;

    transition:
        transform 0.4s ease,
        opacity 0.3s ease;
}

.sector-card-bottom span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}


/* =========================================
   HOVER OVERLAY
========================================= */

.sector-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    align-items: flex-end;

    padding: 30px;

    background: linear-gradient(
        145deg,
        rgba(43, 190, 254, 0.94) 0%,
        rgba(83, 117, 231, 0.94) 45%,
        rgba(187, 60, 233, 0.95) 100%
    );

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity 0.45s ease,
        visibility 0.45s ease,
        transform 0.45s ease;
}


/* Overlay content */

.overlay-content {
    width: 100%;
    transform: translateY(25px);
    opacity: 0;

    transition:
        transform 0.5s ease 0.08s,
        opacity 0.45s ease 0.08s;
}

.overlay-label {
    display: inline-block;
    margin-bottom: 14px;

    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.overlay-content h3 {
    margin: 0 0 13px;

    color: #fff;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}

.overlay-content p {
    margin: 0;
    max-width: 440px;

    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.7;
}

/* =========================================
   CARD HOVER
========================================= */

.sector-card:hover > img {
    transform: scale(1.08);
}

.sector-card:hover .sector-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sector-card:hover .overlay-content {
    opacity: 1;
    transform: translateY(0);
}

.sector-card:hover .sector-card-bottom {
    opacity: 0;
    transform: translateY(15px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .sector-section {
        padding: 50px 0;
    }

    .sector-section .section-title {
        margin-bottom: 40px;
    }

    .sector-section .section-title h2 {
        font-size: 36px;
    }

    .sector-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .sector-card {
        height: 300px;
    }

    .overlay-content h3 {
        font-size: 24px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .sector-section {
        padding: 50px 0;
    }

    .sector-section .section-title {
        margin-bottom: 32px;
        padding: 0 10px;
    }

    .sector-section .sp-titlee {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }

    .sector-section .section-title h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .sector-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sector-card {
        height: 300px;
    }

    .sector-overlay {
        padding: 25px;
    }

    .overlay-content h3 {
        font-size: 23px;
    }

    .overlay-content p {
        font-size: 16px;
        line-height: 1.6;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .sector-section {
        padding: 30px 0;
    }

    .sector-section .section-title h2 {
        font-size: 24px;
    }

    .sector-card {
        height: 300px;
        border-radius: 15px;
    }

    .case-tag {
        top: 15px;
        left: 15px;
        padding: 6px 11px;
        font-size: 10px;
    }

    .sector-card-bottom {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .sector-card-bottom span {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .sector-overlay {
        padding: 22px;
    }

    .overlay-label {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .overlay-content h3 {
        font-size: 21px;
    }

    .overlay-content p {
        font-size: 16px;
    }
}


/* =========================================
   VERY SMALL DEVICES
========================================= */

@media (max-width: 380px) {

    .sector-section .section-title h2 {
        font-size: 24px;
    }

    .overlay-content h3 {
        font-size: 19px;
    }
}

/* ==========================================
   NATIONAL FIELD OPERATIONS
========================================== */

.field-operations-section {
    position: relative;
    padding: 0px 0px 50px;
    overflow: hidden;
    background: #fff;
}


/* ==========================================
   BACKGROUND GLOW
========================================== */

.field-operations-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    left: -250px;
    top: 120px;
    border-radius: 50%;
    background: rgba(43, 190, 254, 0.08);
    filter: blur(100px);
    pointer-events: none;
}

.field-operations-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -220px;
    bottom: -100px;
    border-radius: 50%;
    background: rgba(187, 60, 233, 0.08);
    filter: blur(100px);
    pointer-events: none;
}


/* ==========================================
   SECTION TITLE
========================================== */

.field-operations-title {
    position: relative;
    z-index: 2;
    margin: 0 auto 40px;
}

.field-operations-title .sp-titlee {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color:#2bbefe;
}

.field-operations-title h2 {
    margin: 0 0 12px;

    color: rgb(7 60 125 / 95%);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.field-operations-title h2 span {
    background: linear-gradient(
        90deg,
        #2bbefe 0%,
        #bb3ce9 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.field-operations-title p {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    padding-top:0;
}


/* ==========================================
   COLLAGE
========================================== */

.security-collage {
    position: relative;
    z-index: 2;

    display: grid;

    /*
       12 columns allow us to create
       the asymmetric collage.
    */
    grid-template-columns: repeat(12, minmax(0, 1fr));

    /*
       Base row height.
       Items will span multiple rows.
    */
    grid-auto-rows: 70px;

    gap: 12px;

    width: 100%;
}


/* ==========================================
   COLLAGE ITEM
========================================== */

.collage-item {
    position: relative;
    min-width: 0;
    min-height: 0;

    overflow: hidden;

    border-radius: 2px;

    background: #edf3f8;

    box-shadow: 0 8px 25px rgba(7, 60, 125, 0.06);
}

.collage-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s cubic-bezier(.2, .7, .2, 1),
        filter 0.5s ease;
}


/* ==========================================
   MAIN COLLAGE PATTERN
   Matches reference image
========================================== */

/* 1, 7, 13, 19... */
.collage-item:nth-child(6n + 1) {
    grid-column: span 6;
    grid-row: span 5;
}

/* 2, 8, 14, 20... */
.collage-item:nth-child(6n + 2) {
    grid-column: span 3;
    grid-row: span 2;
}

/* 3, 9, 15, 21... */
.collage-item:nth-child(6n + 3) {
    grid-column: span 3;
    grid-row: span 2;
}

/* 4, 10, 16, 22... */
.collage-item:nth-child(6n + 4) {
    grid-column: 7 / span 6;
    grid-row: span 5;
}

/* 5, 11, 17, 23... */
.collage-item:nth-child(6n + 5) {
    grid-column: span 3;
    grid-row: span 2;
}

/* 6, 12, 18, 24... */
.collage-item:nth-child(6n + 6) {
    grid-column: span 3;
    grid-row: span 2;
}


/* ==========================================
   HOVER
========================================== */

.collage-item::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(43, 190, 254, 0.12),
        rgba(187, 60, 233, 0.22)
    );

    opacity: 0;

    transition: opacity 0.4s ease;

    pointer-events: none;
}

.collage-item:hover img {
    transform: scale(1.06);
}

.collage-item:hover::after {
    opacity: 1;
}


/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1200px) {

    .security-collage {
        grid-auto-rows: 72px;
        gap: 12px;
    }

    .collage-item {
        border-radius: 3px;
    }
}


/* ==========================================
   LAPTOP / TABLET
========================================== */

@media (max-width: 1199px) {

    .field-operations-section {
        padding: 50px 0;
    }

    .field-operations-title {
        margin-bottom: 35px;
    }

    .security-collage {
        grid-auto-rows: 65px;
        gap: 10px;
    }

    .collage-item:nth-child(1) {
        grid-column: span 6;
        grid-row: span 5;
    }

    .collage-item:nth-child(2),
    .collage-item:nth-child(3) {
        grid-column: span 3;
        grid-row: span 2;
    }

    .collage-item:nth-child(4) {
        grid-column: 7 / span 6;
        grid-row: span 5;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .field-operations-title h2 {
        font-size: 36px;
    }

    .field-operations-title p {
        font-size: 15px;
    }

    .security-collage {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: 75px;
        gap: 10px;
    }

    /*
       6-column tablet collage
    */

    .collage-item:nth-child(1) {
        grid-column: span 4;
        grid-row: span 4;
    }

    .collage-item:nth-child(2) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .collage-item:nth-child(3) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .collage-item:nth-child(4) {
        grid-column: span 4;
        grid-row: span 4;
    }

    .collage-item:nth-child(5),
    .collage-item:nth-child(6) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .collage-item:nth-child(n+7) {
        grid-column: span 2;
        grid-row: span 2;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .field-operations-section {
        padding: 50px 0;
    }

    .field-operations-title {
        margin-bottom: 30px;
        padding: 0 8px;
    }

    .field-operations-title .sp-titlee {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .field-operations-title h2 {
        font-size: 32px;
    }

    .field-operations-title p {
        font-size: 14px;
        line-height: 1.65;
    }

    /*
       Clean 2-column mobile collage.
       This prevents the desktop pattern
       from becoming too cramped.
    */

    .security-collage {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 145px;
        gap: 9px;
    }

    .collage-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .collage-item:nth-child(2),
    .collage-item:nth-child(3),
    .collage-item:nth-child(5),
    .collage-item:nth-child(6),
    .collage-item:nth-child(n+7) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .collage-item:nth-child(4) {
        grid-column: span 2;
        grid-row: span 2;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 575px) {

    .field-operations-section {
        padding: 0px 0px 30px;
    }

    .field-operations-title {
        margin-bottom: 25px;
    }

    .field-operations-title .sp-titlee {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .field-operations-title h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .field-operations-title p {
        font-size: 16px;
        line-height: 1.65;
    }

    .security-collage {
        grid-auto-rows: 115px;
        gap: 7px;
    }

    .collage-item {
        border-radius: 2px;
    }
}


/* ==========================================
   VERY SMALL MOBILE
========================================== */

@media (max-width: 380px) {

    .field-operations-title h2 {
        font-size: 25px;
    }

    .security-collage {
        grid-auto-rows: 100px;
        gap: 6px;
    }
}

/*------------our security-----------*/
.our-security{
	padding: 50px 0;
}

.our-security .text {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2bbefe;
}

.our-security .h-text {
    margin: 0 0 15px;
    color: rgb(7 60 125 / 95%);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.our-security .h-text span {
    background: linear-gradient(90deg, #2bbefe 0%, #bb3ce9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.security-content-item{
	margin-bottom: 15px;
}

.security-content-item:last-child{
	margin-bottom: 0;
}

.security-content-item h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
	font-weight:800;
}

.security-content-item p{
	margin-bottom: 0;
}

.security-image figure{
	display: block;
	border-radius: 30px;
}

.our-security-image-content {
    position: sticky;
    top: 100px;
}

.security-image img{
	width: 100%;
	height:100%;
	object-fit: cover;
	border-radius: 15px;
}
@media(max-width:991px){
    .our-security{
		padding: 50px 0;
	}

	.security-content-box{
		margin-bottom: 30px;
	}

	.security-content-item{
		margin-bottom: 15px;
	}

	.security-content-item h3{
		margin-bottom: 10px;
	}

	.our-security-image-content{
		display: flex;
		flex-direction: column;
	}

	.security-image figure{
		border-radius: 20px;
	}

	.security-image img{
		border-radius: 15px;
	}
	.our-security .text {
	    font-size:11px;
	}
	.our-security .h-text {
	    font-size:24px;
	    margin: 0 0 15px;
	}
}

@media (max-width: 575px) {
    .our-security {
        padding: 30px 0;
    }
    
    .security-content-item h3 {
        font-size:18px;
    }
}
/* =========================================================
   CYBER NATIONAL FOOTPRINT SECTION
========================================================= */

.cyber-footprint-section {
    width: 100%;
    padding: 50px 0;
    background: #fff;
}

.cyber-footprint-layout {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    gap: 40px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.cyber-footprint-content {
    position: relative;
    z-index: 2;
}

.cyber-footprint-heading {
    max-width: 500px;
}

.cyber-footprint-label {
    display: block;
    margin-bottom: 12px;

    color: #2bbefe;

    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.cyber-footprint-heading h2 {
    margin: 0 0 18px;

    color: rgb(7 60 125 / 95%);

    font-size: 42px;
    line-height: 1.05;
    font-weight: 700;
}

.cyber-footprint-heading h2 span {
    background: linear-gradient(
        90deg,
        #2bbefe 0%,
        #bb3ce9 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cyber-footprint-heading p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   STATS
========================================================= */

.cyber-footprint-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 42px;
}

.cyber-footprint-stat {
    padding: 5px 20px;
    text-align:center;
    border-left: 1px solid #e1e7ed;
}

.cyber-footprint-stat:first-child {
    padding-left: 0;
    border-left: 0;
}

.cyber-footprint-stat strong {
    display: block;

    color: rgb(7 60 125 / 95%);

    font-size: 27px;
    line-height: 1;
    font-weight: 800;
}

.cyber-footprint-stat span {
    display: block;

    margin-top: 9px;

    color: #2bbefe;

    font-size: 12px;
    line-height: 1.45;
    font-weight: 700;

    letter-spacing: 1.4px;
}


/* =========================================================
   RIGHT IMPACT AREA
========================================================= */

.cyber-impact-area {
    position: relative;

    height: 100%;

    padding: 28px;

    overflow: visible;

    border: 1px solid #e8edf3;
    border-radius: 14px;

    background: radial-gradient(circle at 90% 10%, rgb(103 135 245), transparent 30%), linear-gradient(135deg, #144684 0%, #2bbefe 100%);
    box-shadow:
        0 12px 35px rgba(7, 60, 125, .06);
}


/* top gradient line */

.cyber-impact-area::before {
    content: "";

    position: absolute;

    top: 0;
    left: 25px;
    right: 25px;

    height: 2px;

    background: linear-gradient(
        90deg,
        #2bbefe,
        #bb3ce9
    );

    border-radius: 0 0 10px 10px;
}


/* =========================================================
   RIGHT HEADER
========================================================= */

.cyber-impact-header {
    position: relative;
    z-index: 2;

    display: flex;

    justify-content: space-between;
    align-items: center;

    padding-bottom: 18px;

    border-bottom: 1px solid #edf1f5;
}

.cyber-impact-header span {
    color: #ffff;

    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;

    letter-spacing: 2px;
}

.cyber-impact-header small {
    color: #ffff;

    font-size: 9px;
    line-height: 1.2;
    font-weight: 800;

    letter-spacing: 1.5px;
}


/* =========================================================
   STATE GRID
========================================================= */

.cyber-impact-list {
    position: relative;
    z-index: 3;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    padding: 28px 15px 0px;
}


/* =========================================================
   STATE ITEM
========================================================= */

.cyber-impact-point {
    position: relative;

    min-width: 0;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* =========================================================
   STATE HIGHLIGHT
========================================================= */

.cyber-location {
    position: relative;

    display: flex;

    align-items: center;

    gap: 9px;

    width: 100%;
    min-height: 44px;

    padding: 8px 12px;

    border: 1px solid #e3eaf1;
    border-radius: 6px;

    background: #fff;

    cursor: pointer;

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}


/* highlighted area */

.cyber-location-dot {
    flex: 0 0 auto;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #2bbefe;

    box-shadow:
        0 0 0 4px rgba(43, 190, 254, .12),
        0 0 10px rgba(43, 190, 254, .35);

    transition:
        background .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}


/* state name */

.cyber-location-name {
    min-width: 0;

    overflow: hidden;

    color: rgb(7 60 125 / 95%);

    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;

    white-space: nowrap;
    text-overflow: ellipsis;
}


/* state hover */

.cyber-impact-point:hover {
    z-index: 30;
}

.cyber-impact-point:hover .cyber-location {
    transform: translateY(-3px);

    border-color: rgba(43, 190, 254, .55);

    box-shadow:
        0 8px 20px rgba(7, 60, 125, .10);
}

.cyber-impact-point:hover .cyber-location-dot {
    transform: scale(1.2);

    background: #bb3ce9;

    box-shadow:
        0 0 0 5px rgba(187, 60, 233, .10),
        0 0 15px rgba(187, 60, 233, .5);
}


/* =========================================================
   HOVER CARD
========================================================= */

.cyber-impact-card {
    position: absolute;

    z-index: 50;

    left: 50%;
    bottom: calc(100% + 14px);

    width: 270px;

    padding: 20px;

    background: #fff;

    border: 1px solid #e3e9ef;
    border-radius: 7px;

    box-shadow:
        0 18px 45px rgba(7, 60, 125, .16);

    opacity: 0;
    visibility: hidden;

    transform:
        translateX(-50%)
        translateY(8px);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;

    pointer-events: none;
}


/* card top gradient */

.cyber-impact-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    border-radius: 7px 7px 0 0;

    background: linear-gradient(
        90deg,
        #2bbefe,
        #bb3ce9
    );
}


/* card arrow */

.cyber-impact-card::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -7px;

    width: 13px;
    height: 13px;

    background: #fff;

    border-right: 1px solid #e3e9ef;
    border-bottom: 1px solid #e3e9ef;

    transform:
        translateX(-50%)
        rotate(45deg);
}


/* show card */

.cyber-impact-point:hover .cyber-impact-card {
    opacity: 1;
    visibility: visible;

    transform:
        translateX(-50%)
        translateY(0);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.cyber-card-category {
    display: block;
    margin-bottom: 7px;
    color: #2bbefe;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cyber-impact-card h3 {
    margin: 0 0 7px;

    color: rgb(7 60 125 / 95%);

    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

.cyber-impact-card p {
    color: #687788;
    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .cyber-footprint-layout {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .cyber-footprint-content {
        text-align: center;
    }

    .cyber-footprint-heading {
        margin-left: auto;
        margin-right: auto;
    }

    .cyber-footprint-heading p {
        margin-left: auto;
        margin-right: auto;
    }

    .cyber-footprint-stats {
        max-width: 620px;

        margin: 35px auto 0;

        text-align: left;
    }

    .cyber-impact-area {
        min-height: 400px;
    }

    .cyber-impact-list {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cyber-footprint-section {
        padding: 50px 0;
    }

    .cyber-footprint-heading h2 {
        font-size: 34px;
    }

    .cyber-footprint-heading p {
        font-size: 14px;
    }

    .cyber-impact-area {
        min-height: 350px;

        padding: 22px;
    }

    .cyber-impact-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;

        padding: 30px 5px 15px;
    }

    .cyber-location {
        min-height: 42px;

        padding: 7px 10px;
    }

    .cyber-location-name {
        font-size: 11px;
    }

    .cyber-impact-card {
        width: 235px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .cyber-footprint-section {
        padding: 30px 0;
    }

    .cyber-footprint-heading h2 {
        font-size: 24px;
    }

    .cyber-footprint-label {
        font-size: 11px;

        letter-spacing: 2px;
    }

    .cyber-footprint-heading p {
        font-size: 16px;
    }


    /* stats */

    .cyber-footprint-stats {

        text-align: center;
    }

    .cyber-footprint-stat,
    .cyber-footprint-stat:first-child {
        padding: 0;
    }


    /* impact */

    .cyber-impact-area {
        min-height: auto;

        padding: 20px 15px;
    }

    .cyber-impact-header {
        align-items: flex-start;

        gap: 10px;
    }

    .cyber-impact-header span {
        font-size: 10px;
    }

    .cyber-impact-header small {
        font-size: 8px;
    }

    .cyber-impact-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 14px;

        padding: 25px 0 10px;
    }

    .cyber-location {
        min-height: 40px;

        padding: 7px 9px;
    }

    .cyber-location-name {
        font-size: 10px;
    }

    .cyber-impact-card {
        width: min(
            235px,
            calc(100vw - 45px)
        );
    }
}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 380px) {

    .cyber-impact-list {
        gap: 12px;
    }

    .cyber-location {
        padding: 7px;
    }

    .cyber-location-dot {
        width: 8px;
        height: 8px;
    }

    .cyber-location-name {
        font-size: 9.5px;
    }

    .cyber-impact-card {
        width: 195px;
    }
}

/* =========================================================
   GOVERNMENT PARTNERSHIP SECTION
========================================================= */

.gov-partnership-section {
    position: relative;

    width: 100%;

    padding: 50px 0;

    overflow: hidden;
}


/* =========================================================
   FULL CYBERSECURITY BACKGROUND IMAGE
========================================================= */

.gov-partnership-bg {
    position: absolute;

    z-index: 0;

    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;

    object-position: center center;

    opacity: 1;

    pointer-events: none;

    user-select: none;
}


/* =========================================================
   SECTION CONTAINER
========================================================= */

.gov-partnership-section .container {
    position: relative;

    z-index: 3;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.gov-partnership-heading {
    position: relative;

    z-index: 3;

    margin: 0 auto 45px;

    text-align: center;
}


/* Small heading */

.gov-partnership-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #2bbefe;

    font-size: 14px;
    line-height: 1.2;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* Main heading */

.gov-partnership-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: 42px;

    line-height: 1.15;

    font-weight: 700;
}


/* Gradient part of heading */

.gov-partnership-heading h2 span {
    background:
        linear-gradient(
            90deg,
            #2bbefe 0%,
            #bb3ce9 100%
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


/* Heading paragraph */

.gov-partnership-heading p {

    margin: 17px auto 0;

    color: #fff;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   CARD GRID
========================================================= */

.gov-partnership-grid {
    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;

    align-items: stretch;
}


/* =========================================================
   PARTNERSHIP CARD
========================================================= */

.gov-partnership-card {
    position: relative;

    display: flex;

    flex-direction: column;

    width: 100%;

    min-width: 0;

    height: 100%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(255, 255, 255, .18);

    border-radius: 7px;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, .20);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


/* Card hover */

.gov-partnership-card:hover {
    transform: translateY(-8px);

    border-color: rgba(43, 190, 254, .45);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, .30);
}


/* =========================================================
   TOP GRADIENT LINE
========================================================= */

.gov-partnership-card::before {
    content: "";

    position: absolute;

    z-index: 10;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #2bbefe,
            #bb3ce9
        );

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform .4s ease;
}


.gov-partnership-card:hover::before {
    transform: scaleX(1);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.gov-partnership-image {
    position: relative;

    flex-shrink: 0;

    width: 100%;

    height: 300px;

    overflow: hidden;

    background: #edf4f9;
}


/* Image */

.gov-partnership-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform .6s ease;
}


/* Image zoom */

.gov-partnership-card:hover
.gov-partnership-image img {
    transform: scale(1.05);
}


/* =========================================================
   IMAGE BOTTOM OVERLAY
========================================================= */

.gov-partnership-image-overlay {
    position: absolute;

    z-index: 2;

    right: 0;

    bottom: 0;

    left: 0;

    height: 48%;

    background:
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(7, 60, 125, .08) 25%,
            rgba(7, 60, 125, .50) 100%
        );

    pointer-events: none;
}


/* =========================================================
   NATIONAL / STATE BADGE
========================================================= */

.gov-partnership-badge {
    position: absolute;

    z-index: 5;

    top: 17px;

    left: 17px;

    display: inline-flex;

    align-items: center;

    padding: 8px 12px;

    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            #2bbefe,
            #168fe8
        );

    font-size: 9px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    box-shadow:
        0 6px 18px rgba(7, 60, 125, .25);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.gov-partnership-content {
    position: relative;

    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 20px 20px 17px;

    background: #ffffff;
}


/* =========================================================
   CATEGORY
========================================================= */

.gov-partnership-category {
    display: block;

    margin-bottom: 8px;

    color: #078fd8;

    font-size: 11px;

    line-height: 1.3;

    font-weight: 800;

    letter-spacing: 2.1px;

    text-transform: uppercase;
}


/* =========================================================
   CARD TITLE
========================================================= */

.gov-partnership-content h3 {
    margin: 0;

    font-size: 20px;

    line-height: 1.15;

    font-weight: 800;

    text-transform: uppercase;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.gov-partnership-content p {
    margin: 10px 0 17px;

    font-size: 16px;

    line-height: 1.6;

    min-height: 0;
}


/* =========================================================
   CARD FOOTER
========================================================= */

.gov-partnership-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    margin-top: auto;

    padding-top: 13px;

    border-top: 1px solid #edf0f3;
}


/* Footer text */

.gov-partnership-footer span {
    color: #078fd8;

    font-size: 11px;

    line-height: 1.3;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* Footer dot */

.gov-partnership-footer i {
    display: block;

    width: 5px;

    height: 5px;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #2bbefe,
            #bb3ce9
        );

    box-shadow:
        0 0 0 4px rgba(43, 190, 254, .10);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .gov-partnership-section {
        padding: 40px 0;
    }

    .gov-partnership-heading {
        margin-bottom: 50px;
    }

    .gov-partnership-image {
        height: 320px;
    }

    .gov-partnership-content {
        padding: 22px 22px 18px;
    }
}


/* =========================================================
   LAPTOP / LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .gov-partnership-section {
        padding: 45px 0;
    }

    .gov-partnership-grid {
        gap: 20px;
    }

    .gov-partnership-image {
        height: 280px;
    }

    .gov-partnership-content {
        padding: 19px;
    }

    .gov-partnership-content h3 {
        font-size: 21px;
    }

    .gov-partnership-heading h2 {
        font-size: 40px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .gov-partnership-heading {
        max-width: 700px;

        margin-bottom: 38px;
    }

    .gov-partnership-heading h2 {
        font-size: 36px;
    }

    .gov-partnership-heading p {
        font-size: 15px;
    }

    .gov-partnership-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        max-width: 780px;

        margin: 0 auto;

        gap: 22px;
    }


    /*
       Third card centered
    */

    .gov-partnership-card:last-child {
        grid-column: 1 / -1;

        width: 100%;

        max-width: 380px;

        margin: 0 auto;
    }


    .gov-partnership-image {
        height: 280px;
    }


    /*
       Background positioning
    */

    .gov-partnership-bg {
        object-position: center center;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gov-partnership-section {
        padding: 40px 0;
    }

    .gov-partnership-heading {
        margin-bottom: 32px;
    }

    .gov-partnership-label {
        margin-bottom: 10px;

        font-size: 9px;

        letter-spacing: 2.2px;
    }

    .gov-partnership-heading h2 {
        font-size: 31px;

        line-height: 1.16;
    }

    .gov-partnership-heading p {
        margin-top: 14px;

        font-size: 14px;

        line-height: 1.65;
    }


    /* Single column */

    .gov-partnership-grid {
        grid-template-columns: 1fr;

        width: 100%;

        max-width: 520px;

        margin: 0 auto;

        gap: 22px;
    }


    .gov-partnership-card:last-child {
        grid-column: auto;

        max-width: none;
    }


    /* Image */

    .gov-partnership-image {
        height: 300px;
    }


    /* Background */

    .gov-partnership-bg {
        object-position: 42% center;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .gov-partnership-section {
        padding: 30px 0;
    }

    .gov-partnership-heading {
        margin-bottom: 28px;
    }

    .gov-partnership-label {
        font-size: 11px;

        letter-spacing: 1.8px;
    }

    .gov-partnership-heading h2 {
        font-size: 28px;

        line-height: 1.18;
    }

    .gov-partnership-heading p {
        font-size: 13px;

        line-height: 1.6;
    }


    /* Card */

    .gov-partnership-card {
        border-radius: 6px;
    }


    /* Image */

    .gov-partnership-image {
        height: 270px;
    }


    /* Badge */

    .gov-partnership-badge {
        top: 14px;

        left: 14px;

        padding: 7px 10px;

        font-size: 8px;

        letter-spacing: 1px;
    }


    /* Content */

    .gov-partnership-content {
        padding: 18px 17px 16px;
    }


    .gov-partnership-category {
        margin-bottom: 7px;

        font-size: 10px;

        letter-spacing: 1.8px;
    }


    .gov-partnership-content h3 {
        font-size: 18px;

        line-height: 1.17;
    }


    .gov-partnership-content p {
        margin: 9px 0 15px;

        font-size: 16px;

        line-height: 1.55;
    }


    /* Footer */

    .gov-partnership-footer {
        padding-top: 12px;
    }

    .gov-partnership-footer span {
        font-size: 10px;

        letter-spacing: 1.1px;
    }

    .gov-partnership-footer i {
        width: 4px;

        height: 4px;
    }


    /* Background */

    .gov-partnership-bg {
        object-position: 40% center;
    }
}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 380px) {

    .gov-partnership-heading h2 {
        font-size: 25px;
    }

    .gov-partnership-heading p {
        font-size: 16px;
    }

    .gov-partnership-image {
        height: 240px;
    }

    .gov-partnership-content {
        padding: 17px 15px 15px;
    }

    .gov-partnership-content h3 {
        font-size: 18px;
    }

    .gov-partnership-content p {
        font-size: 16px;
    }

    .gov-partnership-bg {
        object-position: 38% center;
    }
}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .gov-partnership-card,
    .gov-partnership-image img,
    .gov-partnership-card::before {
        transition: none;
    }

    .gov-partnership-card:hover {
        transform: none;
    }

    .gov-partnership-card:hover
    .gov-partnership-image img {
        transform: none;
    }
}

/* =========================================================
   ACHIEVEMENT ARCHIVE SECTION
========================================================= */

.achievement-archive-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.achievement-archive-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADING
========================================================= */

.achievement-archive-heading {
    margin: 0 auto 42px;
    text-align: center;
}

.achievement-archive-eyebrow {
    display: block;
    margin-bottom: 10px;

    color: #2bbefe;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.achievement-archive-heading h2 {
    margin: 0;

    color: rgb(7 60 125 / 95%);

    font-size: 42px;
    line-height: 1.15;

    font-weight: 700;
}

.achievement-archive-heading h2 span {
    background:
        linear-gradient(
            90deg,
            #2bbefe,
            #bb3ce9
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievement-archive-heading p {
    margin: 14px auto 0;
    font-size: 16px;
    line-height: 1.65;
}


/* =========================================================
   GRID
========================================================= */

.achievement-archive-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;

    align-items: stretch;
}


/* =========================================================
   DOSSIER CARD
========================================================= */

.achievement-dossier {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    height: 100%;

    background: #ffffff;

    border: 1px solid #dfe7ee;

    box-shadow:
        0 10px 35px rgba(7, 60, 125, .07);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.achievement-dossier:hover {
    transform: translateY(-7px);

    border-color: rgba(43, 190, 254, .45);

    box-shadow:
        0 22px 50px rgba(7, 60, 125, .13);
}


/* =========================================================
   TOP DOCUMENT BAR
========================================================= */

.achievement-dossier-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height: 46px;

    padding: 0 16px;

    border-bottom: 1px solid #e8edf2;

    background: #fbfdff;
}


.achievement-index {
    color: #3a3d3f;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.achievement-index strong {
    color: #178fd2;
    display:none;
}


.achievement-year {
    color: #111827;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   PHOTO
========================================================= */

.achievement-photo {
    position: relative;

    height: 285px;

    overflow: hidden;

    background: #e7eef5;
}


.achievement-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .65s ease;
}


.achievement-dossier:hover
.achievement-photo img {
    transform: scale(1.055);
}


/* =========================================================
   PHOTO DARK GRADIENT
========================================================= */

.achievement-photo-shade {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(4, 34, 70, .42) 100%
        );

    pointer-events: none;
}


/* =========================================================
   PHOTO LABEL
========================================================= */

.achievement-photo-label {
    position: absolute;

    top: 16px;
    left: 16px;

    padding: 7px 11px;

    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            #078fd8,
            #168fe8
        );

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    box-shadow:
        0 5px 18px rgba(7, 60, 125, .20);
}


/* =========================================================
   CARD BODY
========================================================= */

.achievement-dossier-body {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 21px 20px 18px;
}


/* =========================================================
   CATEGORY
========================================================= */

.achievement-category {
    display: block;

    margin-bottom: 11px;

    color: #2bbefe;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   TITLE
========================================================= */

.achievement-dossier-body h3 {
    margin: 0;

    font-size: 20px;

    line-height: 1.12;

    font-weight: 800;

    letter-spacing: .3px;
}


/* =========================================================
   DIVIDER
========================================================= */

.achievement-divider {
    width: 42px;
    height: 2px;

    margin: 15px 0;

    background:
        linear-gradient(
            90deg,
            #2bbefe,
            #bb3ce9
        );
}


/* =========================================================
   AUTHORITY
========================================================= */

.achievement-authority {
    display: flex;
    flex-direction: column;

    gap: 3px;

    padding-left: 10px;

    border-left: 2px solid #2bbefe;
}


.authority-label {
    color: #595b5e;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.achievement-authority strong {
    color: #26313d;

    font-size: 11px;

    line-height: 1.4;

    font-weight: 800;

    letter-spacing: .4px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.achievement-dossier-body p {
    margin: 12px 0 0;

    font-size: 16px;

    line-height: 1.6;
}


/* =========================================================
   FOOTER
========================================================= */

.achievement-dossier-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin: 0 20px;

    padding: 13px 0;

    border-top: 1px solid #e6ebf0;
}


.achievement-dossier-footer > span:first-child {
    color: #078fd8;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   VERIFICATION SEAL
========================================================= */

.achievement-seal {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 23px;
    height: 23px;

    border: 1px solid #b9e7fa;

    border-radius: 50%;

    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            #2bbefe,
            #bb3ce9
        );

    font-size: 15px !important;

    letter-spacing: 0 !important;

    box-shadow:
        0 0 0 4px rgba(43, 190, 254, .07);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .achievement-archive-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        max-width: 800px;

        margin: 0 auto;

        gap: 22px;
    }

    .achievement-archive-heading h2 {
        font-size: 36px;
    }

    .achievement-photo {
        height: 275px;
    }

    .achievement-dossier:last-child {
        grid-column: 1 / -1;

        width: 100%;
        max-width: 390px;

        margin: 0 auto;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .achievement-archive-section {
        padding: 50px 0;
    }

    .achievement-archive-heading {
        margin-bottom: 30px;
    }

    .achievement-archive-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .achievement-archive-heading h2 {
        font-size: 30px;
    }

    .achievement-archive-heading p {
        font-size: 14px;
    }

    .achievement-archive-grid {
        grid-template-columns: 1fr;

        max-width: 520px;

        gap: 22px;
    }

    .achievement-dossier:last-child {
        grid-column: auto;

        max-width: none;
    }

    .achievement-photo {
        height: 290px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .achievement-archive-section {
        padding: 30px 0;
    }

    .achievement-archive-heading h2 {
        font-size: 27px;
    }

    .achievement-archive-heading p {
        font-size: 16px;
        line-height: 1.6;
    }

    .achievement-dossier-top {
        min-height: 42px;
        padding: 0 13px;
    }

    .achievement-index {
        font-size: 10px;
    }

    .achievement-year {
        font-size: 11px;
    }

    .achievement-photo {
        height: 260px;
    }

    .achievement-photo-label {
        top: 13px;
        left: 13px;

        padding: 6px 9px;

        font-size: 7px;
    }

    .achievement-dossier-body {
        padding: 18px 16px 16px;
    }

    .achievement-dossier-body h3 {
        font-size: 18px;
    }

    .achievement-authority strong {
        font-size: 10px;
    }

    .achievement-dossier-body p {
        font-size: 16px;
    }

    .achievement-dossier-footer {
        margin: 0 16px;
    }
}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 380px) {

    .achievement-archive-heading h2 {
        font-size: 24px;
    }

    .achievement-photo {
        height: 235px;
    }

    .achievement-dossier-body h3 {
        font-size: 18px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .achievement-dossier,
    .achievement-photo img {
        transition: none;
    }

    .achievement-dossier:hover {
        transform: none;
    }

    .achievement-dossier:hover
    .achievement-photo img {
        transform: none;
    }
}

/* =========================================================
   CYBER OPERATIONAL TIMELINE
========================================================= */

.cyber-timeline-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background:#00172F;
/*  background: radial-gradient(circle at 10% 20%, rgba(43, 190, 254, .13), transparent 30%), radial-gradient(circle at 90% 80%, rgba(187, 60, 233, .12), transparent 32%), linear-gradient(135deg, #03162f 0%, #061f3e 48%, #07142c 100%);*/
}

.cyber-timeline-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(43, 190, 254, .035),
            transparent 35%,
            rgba(187, 60, 233, .035)
        );
}


/* =========================================================
   HEADING
========================================================= */

.cyber-timeline-heading {
    position: relative;
    z-index: 2;
    margin: 0 auto 40px;
    text-align: center;
}

.cyber-timeline-label {
    display: block;
    margin-bottom: 9px;
    color: #2bbefe;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cyber-timeline-heading h2 {
    margin: 0;
    color: #fff;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.cyber-timeline-heading h2 span {
    background: linear-gradient(
        90deg,
        #2bbefe,
        #bb3ce9
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* =========================================================
   TIMELINE
========================================================= */

.cyber-timeline {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 5px 0 30px;
}


/* =========================================================
   BASE LINE
========================================================= */

.cyber-timeline-track {
    position: absolute;
    z-index: 1;

    top: 0;
    bottom: 0;
    left: 50%;

    width: 3px;

    transform: translateX(-50%);

    background: #42a5f7;

    border-radius: 10px;

    overflow: hidden;
}


/* =========================================================
   SCROLLING COLOR FLOW
========================================================= */

.cyber-timeline-progress {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 0%;

    border-radius: inherit;

    background: linear-gradient(
        180deg,
        #2bbefe 0%,
        #48cceb 35%,
        #bb3ce9 100%
    );

    box-shadow:
        0 0 8px rgba(43, 190, 254, .75),
        0 0 18px rgba(187, 60, 233, .35);

    transition: height .12s linear;
}


/* =========================================================
   MOVING LIGHT ON LINE
========================================================= */

.cyber-timeline-progress::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 9px;
    height: 90px;

    transform: translateX(-50%);

    background: linear-gradient(
        180deg,
        transparent,
        rgba(255, 255, 255, .95),
        transparent
    );

    filter: blur(2px);

    animation: cyberLineFlow 1.8s linear infinite;
}

@keyframes cyberLineFlow {

    0% {
        transform:
            translate(-50%, 90px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform:
            translate(-50%, -90px);
        opacity: 0;
    }
}


/* =========================================================
   TIMELINE ITEM
========================================================= */

.cyber-timeline-item {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;

    min-height: 230px;
}


/* =========================================================
   CARD
========================================================= */

.cyber-timeline-card {
    position: relative;
    z-index: 3;

    width: calc(50% - 65px);

    padding: 24px 27px;

    background: #ffffff;

    border: 1px solid #dfe8ef;

    box-shadow:
        0 10px 30px rgba(7, 60, 125, .07);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.cyber-timeline-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(43, 190, 254, .55);

    box-shadow:
        0 18px 42px rgba(7, 60, 125, .13);
}


/* =========================================================
   LEFT / RIGHT ZIG-ZAG
========================================================= */

.cyber-timeline-item:nth-child(odd)
.cyber-timeline-card {
    margin-right: auto;
}

.cyber-timeline-item:nth-child(even)
.cyber-timeline-card {
    margin-left: auto;
}


/* =========================================================
   CARD CONNECTOR
========================================================= */

.cyber-timeline-card::after {
    content: "";

    position: absolute;

    top: 50%;

    width: 65px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #42a5f7,
            #42a5f7
        );

    transform: translateY(-50%);
}

.cyber-timeline-item:nth-child(odd)
.cyber-timeline-card::after {
    right: -65px;
}

.cyber-timeline-item:nth-child(even)
.cyber-timeline-card::after {
    left: -65px;
}


/* =========================================================
   DATE + CATEGORY
========================================================= */

.cyber-timeline-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 6px;

    margin-bottom: 11px;
}

.cyber-timeline-meta span {
    display: inline-flex;
    align-items: center;

    padding: 6px 10px;

    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            #2bbefe,
            #168fd4
        );

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .8px;
    line-height: 1;

    white-space: nowrap;

    box-shadow:
        0 4px 12px rgba(43, 190, 254, .15);
}

.cyber-timeline-meta b {
    color: #bb3ce9;
    font-size: 11px;
}

.cyber-timeline-meta strong {
    color: #687786;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   CARD HEADING
========================================================= */

.cyber-timeline-card h3 {
    margin: 0 0 9px;

    font-size: 20px;
    line-height: 1.25;

    font-weight: 800;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.cyber-timeline-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
}


/* =========================================================
   DOT
========================================================= */

.cyber-timeline-dot {
    position: absolute;

    z-index: 5;

    left: 50%;
    top: 50%;

    width: 16px;
    height: 16px;

    transform:
        translate(-50%, -50%);

    border: 3px solid #ffffff;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #2bbefe,
            #bb3ce9
        );

    box-shadow:
        0 0 0 4px rgba(43, 190, 254, .10),
        0 0 10px rgba(43, 190, 254, .60),
        0 0 22px rgba(187, 60, 233, .40);

    animation:
        cyberDotGlow 1.8s ease-in-out infinite;
}


/* =========================================================
   DOT GLOW
========================================================= */

@keyframes cyberDotGlow {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            scale(1);

        box-shadow:
            0 0 0 4px rgba(43, 190, 254, .10),
            0 0 10px rgba(43, 190, 254, .55),
            0 0 20px rgba(187, 60, 233, .35);
    }

    50% {
        transform:
            translate(-50%, -50%)
            scale(1.15);

        box-shadow:
            0 0 0 7px rgba(43, 190, 254, .12),
            0 0 18px rgba(43, 190, 254, .85),
            0 0 32px rgba(187, 60, 233, .65);
    }
}


/* =========================================================
   ACTIVE DOT
========================================================= */

.cyber-timeline-item.timeline-active
.cyber-timeline-dot {
    background:
        linear-gradient(
            135deg,
            #2bbefe,
            #bb3ce9
        );

    box-shadow:
        0 0 0 5px rgba(43, 190, 254, .15),
        0 0 18px rgba(43, 190, 254, .90),
        0 0 35px rgba(187, 60, 233, .65);
}


/* =========================================================
   ACTIVE CARD
========================================================= */

.cyber-timeline-item.timeline-active
.cyber-timeline-card {
    border-color:
        rgba(43, 190, 254, .42);

    box-shadow:
        0 14px 38px rgba(7, 60, 125, .11);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .cyber-timeline {
        max-width: 950px;
    }

    .cyber-timeline-card {
        width: calc(50% - 55px);
        padding: 22px 24px;
    }

    .cyber-timeline-card::after {
        width: 55px;
    }

    .cyber-timeline-item:nth-child(odd)
    .cyber-timeline-card::after {
        right: -55px;
    }

    .cyber-timeline-item:nth-child(even)
    .cyber-timeline-card::after {
        left: -55px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .cyber-timeline-heading h2 {
        font-size: 36px;
    }

    .cyber-timeline-heading {
        margin-bottom: 45px;
    }

    .cyber-timeline {
        max-width: 850px;
    }

    .cyber-timeline-item {
        min-height: 215px;
    }

    .cyber-timeline-card {
        width: calc(50% - 48px);
        padding: 21px 22px;
    }

    .cyber-timeline-card::after {
        width: 48px;
    }

    .cyber-timeline-item:nth-child(odd)
    .cyber-timeline-card::after {
        right: -48px;
    }

    .cyber-timeline-item:nth-child(even)
    .cyber-timeline-card::after {
        left: -48px;
    }

    .cyber-timeline-card h3 {
        font-size: 19px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cyber-timeline-section {
        padding: 50px 0;
    }

    .cyber-timeline-heading {
        margin-bottom: 35px;
    }

    .cyber-timeline-heading h2 {
        font-size: 30px;
    }

    .cyber-timeline-label {
        font-size: 11px;
        letter-spacing: 2px;
    }


    /* LINE LEFT SIDE */

    .cyber-timeline-track {
        left: 14px;

        transform: none;

        width: 3px;
    }


    /* TIMELINE */

    .cyber-timeline {
        padding:
            5px 0 20px 42px;
    }


    /* ITEMS */

    .cyber-timeline-item {
        display: block;

        min-height: auto;

        padding:
            0 0 35px;
    }


    /* CARDS SAME SIDE */

    .cyber-timeline-item:nth-child(odd)
    .cyber-timeline-card,

    .cyber-timeline-item:nth-child(even)
    .cyber-timeline-card {
        width: 100%;

        margin: 0;
    }


    /* REMOVE CONNECTOR */

    .cyber-timeline-card::after {
        display: none;
    }


    /* DOT */

    .cyber-timeline-dot {
        left: -28px;
        top: 28px;

        width: 14px;
        height: 14px;

        transform:
            translate(0, 0);
    }


    .cyber-timeline-item.timeline-active
    .cyber-timeline-dot {
        transform:
            translate(0, 0)
            scale(1.12);
    }


    .cyber-timeline-card {
        padding: 20px;
    }


    .cyber-timeline-card h3 {
        font-size: 19px;
    }

    .cyber-timeline-card p {
        font-size: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .cyber-timeline-section {
        padding: 30px 0;
    }

    .cyber-timeline-heading h2 {
        font-size: 27px;
    }

    .cyber-timeline-heading {
        padding: 0 10px;
    }

    .cyber-timeline {
        padding-left: 36px;
    }

    .cyber-timeline-track {
        left: 11px;
    }

    .cyber-timeline-dot {
        left: -25px;

        width: 13px;
        height: 13px;
    }

    .cyber-timeline-card {
        padding: 18px 16px;
    }

    .cyber-timeline-meta {
        gap: 5px;
    }

    .cyber-timeline-meta span {
        font-size: 8px;
    }

    .cyber-timeline-meta strong {
        font-size: 10px;
    }

    .cyber-timeline-card h3 {
        font-size: 18px;
    }

    .cyber-timeline-card p {
        font-size: 16px;
        line-height: 1.6;
    }
}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 380px) {

    .cyber-timeline-heading h2 {
        font-size: 24px;
    }

    .cyber-timeline-card {
        padding: 16px 14px;
    }

    .cyber-timeline-card h3 {
        font-size: 18px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .cyber-timeline-dot {
        animation: none;
    }

    .cyber-timeline-progress::after {
        animation: none;
    }

    .cyber-timeline-card {
        transition: none;
    }
}

/* =========================================================
   PROFESSIONAL SERVICES
========================================================= */

.cyber-services-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background: #f7faff;
}


/* =========================================================
   BACKGROUND
========================================================= */

.cyber-services-section::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(43, 190, 254, .06);

    filter: blur(80px);

    pointer-events: none;
}

.cyber-services-section::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -180px;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(187, 60, 233, .06);

    filter: blur(80px);

    pointer-events: none;
}


/* =========================================================
   HEADING
========================================================= */

.cyber-services-heading {
    position: relative;
    z-index: 2;

    margin: 0 auto 40px;

    text-align: center;
}

.cyber-services-label {
    display: block;

    margin-bottom: 9px;

    color: #2bbefe;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.cyber-services-heading h2 {
    margin: 0 0 14px;

    color: rgb(7 60 125 / 95%);

    font-size: 42px;

    line-height: 1.15;

    font-weight: 700;
}

.cyber-services-heading h2 span {
    background:
        linear-gradient(
            90deg,
            #2bbefe,
            #bb3ce9
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}

.cyber-services-heading p {

    margin: 0 auto;

    font-size: 16px;

    line-height: 1.7;

    font-weight: 400;
}


/* =========================================================
   ROW
========================================================= */

.cyber-services-row {
    position: relative;
    z-index: 2;

    align-items: stretch;
}


/* =========================================================
   CARD
========================================================= */

.cyber-service-card {
    position: relative;

    height: 100%;

    padding: 32px 25px 27px;

    display: flex;

    flex-direction: column;

    text-align: center;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dfe8ef;

    border-radius: 8px;

    box-shadow:
        0 12px 35px rgba(7, 60, 125, .06);

    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease,
        background .45s ease;
}


/* =========================================================
   CARD BACKGROUND EFFECT
========================================================= */

.cyber-service-card::before {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    top: -130px;
    right: -100px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(43, 190, 254, .12),
            rgba(187, 60, 233, .12)
        );

    filter: blur(15px);

    transition:
        transform .6s ease,
        opacity .6s ease;

    opacity: .55;
}

.cyber-service-card:hover::before {
    transform: scale(1.6);

    opacity: 1;
}


/* =========================================================
   CARD HOVER
========================================================= */

.cyber-service-card:hover {
    transform: translateY(-9px);

    border-color:
        rgba(43, 190, 254, .45);

    box-shadow:
        0 22px 50px rgba(7, 60, 125, .12);
}


/* =========================================================
   ICON AREA
========================================================= */

.cyber-service-icon {
    position: relative;

    z-index: 2;

    width: 92px;
    height: 92px;

    margin: 0 auto 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(43, 190, 254, .10),
            rgba(187, 60, 233, .10)
        );

    border: 1px solid
        rgba(43, 190, 254, .22);

    transition:
        transform .5s ease,
        background .5s ease,
        border-color .5s ease;
}

.cyber-service-icon::before {
    content: "";

    position: absolute;

    inset: 7px;

    border-radius: 50%;

    border: 1px dashed
        rgba(43, 190, 254, .35);

    transition:
        transform .6s ease,
        border-color .5s ease;
}

.cyber-service-icon img {
    position: relative;

    z-index: 3;

    width: 42px;
    height: 42px;

    object-fit: contain;

    transition:
        transform .45s ease,
        filter .45s ease;
}


/* =========================================================
   ICON GLOW
========================================================= */

.cyber-icon-glow {
    position: absolute;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #2bbefe,
            #bb3ce9
        );

    opacity: .10;

    filter: blur(18px);

    transition:
        opacity .45s ease,
        transform .45s ease;
}


/* =========================================================
   ICON HOVER ANIMATION
========================================================= */

.cyber-service-card:hover .cyber-service-icon {
    transform: translateY(-4px) rotate(3deg);

    background:
        linear-gradient(
            135deg,
            rgba(43, 190, 254, .18),
            rgba(187, 60, 233, .18)
        );

    border-color:
        rgba(187, 60, 233, .45);
}

.cyber-service-card:hover .cyber-service-icon::before {
    transform: rotate(180deg);

    border-color:
        rgba(187, 60, 233, .5);
}

.cyber-service-card:hover .cyber-service-icon img {
    transform: scale(1.1);
}

.cyber-service-card:hover .cyber-icon-glow {
    opacity: .45;

    transform: scale(1.5);
}


/* =========================================================
   CONTENT
========================================================= */

.cyber-service-content {
    position: relative;

    z-index: 2;

    flex: 1;

    display: flex;

    flex-direction: column;

    align-items: center;
}


/* =========================================================
   NUMBER
========================================================= */

.cyber-service-number {
    display: block;

    margin-bottom: 8px;

    color: #bb3ce9;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   CARD HEADING
========================================================= */

.cyber-service-content h3 {
    margin: 0 0 13px;

    color: rgb(7 60 125 / 95%);

    font-size: 20px;

    line-height: 1.3;

    font-weight: 800;

    transition:
        color .35s ease;
}

.cyber-service-card:hover
.cyber-service-content h3 {
    background:
        linear-gradient(
            90deg,
            #2bbefe,
            #bb3ce9
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


/* =========================================================
   CARD PARAGRAPH
========================================================= */

.cyber-service-content p {
    margin: 0;

    font-size: 16px;

    line-height: 1.7;

    font-weight: 400;
}


/* =========================================================
   BOTTOM COLOR LINE
========================================================= */

.cyber-service-line {
    position: relative;

    z-index: 3;

    width: 0;

    height: 3px;

    margin: 25px auto 0;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #2bbefe,
            #bb3ce9
        );

    transition:
        width .45s ease;
}

.cyber-service-card:hover
.cyber-service-line {
    width: 70%;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .cyber-service-card {

        padding-left: 30px;
        padding-right: 30px;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .cyber-services-heading h2 {
        font-size: 38px;
    }

    .cyber-service-card {

        padding:
            28px 20px 25px;
    }

    .cyber-service-icon {
        width: 86px;
        height: 86px;

        margin-bottom: 24px;
    }

    .cyber-service-content h3 {
        font-size: 19px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .cyber-services-section {
        padding: 50px 0;
    }

    .cyber-services-heading {
        margin-bottom: 35px;
    }

    .cyber-services-heading h2 {
        font-size: 34px;
    }

    .cyber-service-icon {
        width: 84px;
        height: 84px;
    }

    .cyber-service-content h3 {
        font-size: 19px;
    }

    .cyber-service-content p {
        font-size: 16px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cyber-services-section {
        padding: 50px 0;
    }

    .cyber-services-heading {
        margin-bottom: 30px;
    }

    .cyber-services-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .cyber-services-heading h2 {
        font-size: 30px;
    }

    .cyber-services-heading p {
        font-size: 16px;
        line-height: 1.65;
    }

    .cyber-service-card {
        min-height: auto;

        padding:
            28px 22px 24px;
    }

    .cyber-service-icon {
        width: 82px;
        height: 82px;

        margin-bottom: 23px;
    }

    .cyber-service-content h3 {
        font-size: 20px;
    }

    .cyber-service-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .cyber-service-line {
        margin-top: 25px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .cyber-services-section {
        padding: 50px 0;
    }

    .cyber-services-heading h2 {
        font-size: 27px;
    }

    .cyber-services-heading p {
        font-size: 16px;
    }

    .cyber-service-card {
        padding:
            26px 20px 23px;
    }

    .cyber-service-icon {
        width: 78px;
        height: 78px;

        margin-bottom: 21px;
    }

    .cyber-service-icon img {
        width: 38px;
        height: 38px;
    }

    .cyber-service-content h3 {
        font-size: 19px;
    }

    .cyber-service-content p {
        font-size: 16px;
        line-height: 1.7;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .cyber-services-heading h2 {
        font-size: 24px;
    }

    .cyber-service-card {
        padding:
            24px 17px 22px;
    }

    .cyber-service-content h3 {
        font-size: 18px;
    }

    .cyber-service-content p {
        font-size: 16px;
    }
}

/* =========================================================
   CERTIFICATIONS & EXPERTISE
========================================================= */

.cyber-credentials-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;

    background:
       #00172F;
}


/* =========================================================
   SUBTLE CYBER BACKGROUND
========================================================= */

.cyber-credentials-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent 49.8%,
            rgba(43, 190, 254, .025) 50%,
            transparent 50.2%
        );

    pointer-events: none;
}

.cyber-credentials-section::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -280px;
    right: -200px;

    border-radius: 50%;

    border: 1px solid
        rgba(43, 190, 254, .07);

    box-shadow:
        0 0 0 50px rgba(43, 190, 254, .02),
        0 0 0 100px rgba(187, 60, 233, .015);

    pointer-events: none;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.cyber-credentials-heading {
    position: relative;
    z-index: 2;

    margin: 0 auto 40px;

    text-align: center;
}

.cyber-credentials-label {
    display: block;

    margin-bottom: 10px;

    color: #2bbefe;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.cyber-credentials-heading h2 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 42px;

    line-height: 1.15;

    font-weight: 700;
}

.cyber-credentials-heading h2 span {
    background:
        linear-gradient(
            90deg,
            #2bbefe,
            #bb3ce9
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}

.cyber-credentials-heading p {

    margin: 0 auto;

    color: #fff;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   MAIN TWO COLUMN LAYOUT
========================================================= */

.cyber-credentials-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 70px;

    max-width: 1150px;

    margin: 0 auto;
}


/* =========================================================
   COLUMN HEADING
========================================================= */

.cyber-column-heading {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 25px;
}

.cyber-column-heading > span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #2bbefe,
            #bb3ce9
        );

    border-radius: 6px;

    font-size: 10px;

    font-weight: 800;

    box-shadow:
        0 0 20px rgba(43, 190, 254, .15);
}

.cyber-column-heading h3 {
    margin: 0;

    color: #ffffff;

    font-size: 21px;

    line-height: 1.3;

    font-weight: 800;
}


/* =========================================================
   CERTIFICATION LIST
========================================================= */

.cyber-certification-list {
    position: relative;

    padding-left: 25px;
}


/* =========================================================
   CERTIFICATION VERTICAL LINE
========================================================= */

.cyber-certification-list::before {
    content: "";

    position: absolute;

    top: 10px;
    bottom: 10px;

    left: 5px;

    width: 1px;

    background:
        linear-gradient(
            180deg,
            #2bbefe,
            rgba(43, 190, 254, .15),
            #bb3ce9
        );
}


/* =========================================================
   CERTIFICATION ITEM
========================================================= */

.cyber-certification-item {
    position: relative;

    margin-bottom: 18px;
}

.cyber-certification-item:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CERTIFICATION NODE
========================================================= */

.cyber-certification-node {
    position: absolute;

    left: -25px;

    top: 27px;

    width: 11px;
    height: 11px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #061b36;

    border: 2px solid #2bbefe;

    box-shadow:
        0 0 0 4px rgba(43, 190, 254, .08),
        0 0 15px rgba(43, 190, 254, .5);

    z-index: 3;
}

.cyber-certification-node span {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: #ffffff;
}


/* =========================================================
   CERTIFICATION CARD
========================================================= */

.cyber-certification-card {
    position: relative;

    padding: 23px 24px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, .065),
            rgba(255, 255, 255, .025)
        );

    border: 1px solid
        rgba(255, 255, 255, .10);

    border-radius: 7px;

    transition:
        transform .4s ease,
        border-color .4s ease,
        background .4s ease,
        box-shadow .4s ease;
}

.cyber-certification-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 3px;
    height: 0;

    background:
        linear-gradient(
            180deg,
            #2bbefe,
            #bb3ce9
        );

    transition: height .4s ease;
}

.cyber-certification-card:hover {
    transform: translateX(5px);

    border-color:
        rgba(43, 190, 254, .35);

    background:
        linear-gradient(
            135deg,
            rgba(43, 190, 254, .09),
            rgba(187, 60, 233, .07)
        );

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .18);
}

.cyber-certification-card:hover::before {
    height: 100%;
}


/* =========================================================
   CERTIFICATION TYPE
========================================================= */

.cyber-certification-type {
    display: inline-block;

    margin-bottom: 9px;

    color: #2bbefe;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   CERTIFICATION TITLE
========================================================= */

.cyber-certification-card h4 {
    margin: 0 0 9px;

    color: #ffffff;

    font-size: 17px;

    line-height: 1.35;

    font-weight: 800;
}


/* =========================================================
   CERTIFICATION DESCRIPTION
========================================================= */

.cyber-certification-card p {
    margin: 0;
    color:#fff;
    font-size: 16px;

    line-height: 1.65;
}


/* =========================================================
   CORE COMPETENCIES
========================================================= */

.cyber-competency-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}


/* =========================================================
   COMPETENCY ITEM
========================================================= */

.cyber-competency-item {
    position: relative;

    min-height: 76px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 14px 15px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, .045);

    border: 1px solid
        rgba(255, 255, 255, .09);

    border-radius: 6px;

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.cyber-competency-item::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #2bbefe,
            #bb3ce9
        );

    transition: width .4s ease;
}

.cyber-competency-item:hover {
    transform: translateY(-4px);

    background:
        linear-gradient(
            135deg,
            rgba(43, 190, 254, .10),
            rgba(187, 60, 233, .08)
        );

    border-color:
        rgba(43, 190, 254, .28);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, .16);
}

.cyber-competency-item:hover::after {
    width: 100%;
}


/* =========================================================
   COMPETENCY NUMBER
========================================================= */

.cyber-competency-item > span {
    flex: 0 0 28px;

    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #2bbefe;

    background:
        rgba(43, 190, 254, .08);

    border: 1px solid
        rgba(43, 190, 254, .18);

    border-radius: 5px;

    font-size: 9px;

    font-weight: 800;
}


/* =========================================================
   COMPETENCY TEXT
========================================================= */

.cyber-competency-item strong {
    color: #fff;

    font-size: 14px;

    line-height: 1.45;

    font-weight: 600;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .cyber-credentials-grid {
        max-width: 1200px;

        gap: 80px;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .cyber-credentials-grid {
        gap: 45px;
    }

    .cyber-credentials-heading h2 {
        font-size: 38px;
    }

    .cyber-certification-card {
        padding: 21px 21px;
    }

    .cyber-competency-item {
        padding: 13px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .cyber-credentials-section {
        padding: 50px 0;
    }

    .cyber-credentials-heading {
        margin-bottom: 40px;
    }

    .cyber-credentials-heading h2 {
        font-size: 34px;
    }

    .cyber-credentials-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .cyber-certifications-column,
    .cyber-competencies-column {
        width: 100%;
    }

    .cyber-competency-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cyber-credentials-section {
        padding: 50px 0;
    }

    .cyber-credentials-heading {
        margin-bottom: 35px;
    }

    .cyber-credentials-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .cyber-credentials-heading h2 {
        font-size: 30px;
    }

    .cyber-credentials-heading p {
        font-size: 16px;
        line-height: 1.65;
    }

    .cyber-column-heading {
        margin-bottom: 20px;
    }

    .cyber-column-heading h3 {
        font-size: 20px;
    }

    .cyber-certification-card {
        padding: 20px;
    }

    .cyber-certification-card h4 {
        font-size: 16px;
    }

    .cyber-certification-card p {
        font-size: 16px;
        line-height: 1.65;
    }

    .cyber-competency-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .cyber-competency-item {
        min-height: 70px;
    }

    .cyber-competency-item strong {
        font-size: 13px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .cyber-credentials-section {
        padding: 30px 0;
    }

    .cyber-credentials-heading {
        padding: 0 8px;
    }

    .cyber-credentials-heading h2 {
        font-size: 27px;
    }

    .cyber-credentials-heading p {
        font-size: 16px;
    }

    .cyber-column-heading > span {
        width: 29px;
        height: 29px;

        flex-basis: 29px;
    }

    .cyber-column-heading h3 {
        font-size: 19px;
    }

    .cyber-certification-list {
        padding-left: 22px;
    }

    .cyber-certification-node {
        left: -22px;
    }

    .cyber-certification-card {
        padding: 18px;
    }

    .cyber-certification-card h4 {
        font-size: 15px;
    }

    .cyber-certification-card p {
        font-size: 16px;
    }

    .cyber-competency-item {
        padding: 13px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .cyber-credentials-heading h2 {
        font-size: 24px;
    }

    .cyber-certification-card {
        padding: 16px;
    }

    .cyber-certification-card h4 {
        font-size: 14px;
    }

    .cyber-certification-card p {
        font-size: 16px;
    }

    .cyber-competency-item strong {
        font-size: 13px;
    }
}

/* =========================================================
   STRATEGIC ARCHITECTURE
========================================================= */

.strategic-architecture-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;

    background:
        #00172F;
}


/* =========================================================
   BACKGROUND DETAILS
========================================================= */

.strategic-architecture-section::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    border: 1px solid rgba(43, 190, 254, .035);

    box-shadow:
        0 0 0 70px rgba(43, 190, 254, .015),
        0 0 0 140px rgba(187, 60, 233, .012),
        0 0 0 210px rgba(43, 190, 254, .008);

    pointer-events: none;
}

.strategic-architecture-section::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            115deg,
            transparent 0%,
            rgba(43, 190, 254, .025) 45%,
            transparent 46%
        ),
        linear-gradient(
            295deg,
            transparent 0%,
            rgba(187, 60, 233, .025) 55%,
            transparent 56%
        );

    pointer-events: none;
}


/* =========================================================
   HEADING
========================================================= */

.strategic-architecture-heading {
    position: relative;

    z-index: 3;

    margin: 0 auto 40px;

    text-align: center;
}

.strategic-architecture-label {
    display: block;

    margin-bottom: 10px;

    color: #2bbefe;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.strategic-architecture-heading h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 42px;

    line-height: 1.15;

    font-weight: 700;
}

.strategic-architecture-heading h2 span {
    background:
        linear-gradient(
            90deg,
            #2bbefe,
            #bb3ce9
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}

.strategic-architecture-heading p {

    margin: 0 auto;

    color: white;

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   MAIN GRID
========================================================= */

.strategic-architecture-grid {
    position: relative;

    z-index: 3;

    max-width: 1050px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px 25px;

    align-items: stretch;
}


/* =========================================================
   CARDS
========================================================= */

.strategic-architecture-card {
    position: relative;

    padding: 26px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .085),
            rgba(255, 255, 255, .035)
        );

    border: 1px solid rgba(255, 255, 255, .11);

    border-radius: 8px;

    backdrop-filter: blur(8px);

    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease,
        background .45s ease;
}

.strategic-architecture-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(43, 190, 254, .38);

    background:
        linear-gradient(
            145deg,
            rgba(43, 190, 254, .10),
            rgba(187, 60, 233, .08)
        );

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .25);
}


/* =========================================================
   CARD POSITIONING
========================================================= */

/*.strategic-card-one {
    grid-column: 1;
    grid-row: 1;
}

.strategic-card-two {
    grid-column: 3;
    grid-row: 1;
}

.strategic-card-three {
    grid-column: 1;
    grid-row: 2;
}

.strategic-card-four {
    grid-column: 3;
    grid-row: 2;
}*/


/* =========================================================
   CARD TOP
========================================================= */

.strategic-architecture-card-head {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;
}


/* =========================================================
   ICON
========================================================= */

.strategic-architecture-icon {
    position: relative;

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            rgba(43, 190, 254, .13),
            rgba(187, 60, 233, .13)
        );

    border: 1px solid
        rgba(43, 190, 254, .25);

    transition:
        transform .45s ease,
        border-color .45s ease;
}

.strategic-architecture-icon::before {
    content: "";

    position: absolute;

    inset: 5px;

    border: 1px dashed
        rgba(43, 190, 254, .35);

    border-radius: 5px;

    transition:
        transform .6s ease;
}

.strategic-architecture-icon img {
    position: relative;

    z-index: 2;

    width: 31px;
    height: 31px;

    object-fit: contain;

    transition:
        transform .45s ease;
}

.strategic-architecture-card:hover
.strategic-architecture-icon {
    transform: rotate(4deg);

    border-color:
        rgba(187, 60, 233, .5);
}

.strategic-architecture-card:hover
.strategic-architecture-icon::before {
    transform: rotate(180deg);
}

.strategic-architecture-card:hover
.strategic-architecture-icon img {
    transform: scale(1.12);
}


/* =========================================================
   NUMBER
========================================================= */

.strategic-architecture-number {
    color: rgba(255, 255, 255, .15);

    font-size: 34px;

    line-height: 1;

    font-weight: 800;

    transition:
        color .4s ease;
}

.strategic-architecture-card:hover
.strategic-architecture-number {
    color: rgba(43, 190, 254, .5);
}


/* =========================================================
   TAG
========================================================= */

.strategic-architecture-tag {
    position: relative;

    z-index: 2;

    display: block;

    margin-bottom: 7px;

    color: #2bbefe;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
    display:none;
}


/* =========================================================
   TITLE
========================================================= */

.strategic-architecture-card h3 {
    position: relative;

    z-index: 2;

    margin: 0 0 11px;

    color: #ffffff;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 800;

    transition:
        color .35s ease;
}

.strategic-architecture-card:hover h3 {
    background:
        linear-gradient(
            90deg,
            #2bbefe,
            #bb3ce9
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.strategic-architecture-card p {
    position: relative;

    z-index: 2;

    margin: 0;

    color: #fff;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   CARD CORNER
========================================================= */

.strategic-card-corner {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 45px;
    height: 45px;

    border-top-left-radius: 100%;

    background:
        linear-gradient(
            135deg,
            transparent 45%,
            rgba(43, 190, 254, .15)
        );

    transition:
        width .4s ease,
        height .4s ease;
}

.strategic-architecture-card:hover
.strategic-card-corner {
    width: 75px;
    height: 75px;
}


/* =========================================================
   CENTER CORE
========================================================= */

.strategic-architecture-core {
    position: relative;
    align-self: center;

    width: 150px;
    height: 150px;

    margin: 45px auto 0;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* =========================================================
   CORE RINGS
========================================================= */

.strategic-core-ring {
    position: absolute;

    inset: 0;

    border-radius: 50%;

    border: 1px solid
        rgba(43, 190, 254, .22);
}

.strategic-core-ring-one {
    animation:
        strategicRingRotate 12s linear infinite;
}

.strategic-core-ring-two {
    inset: 14px;

    border-color:
        rgba(187, 60, 233, .28);

    animation:
        strategicRingRotateReverse 8s linear infinite;
}

@keyframes strategicRingRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes strategicRingRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


/* =========================================================
   CORE CENTER
========================================================= */

.strategic-core-center {
    position: relative;

    z-index: 3;

    width: 92px;
    height: 92px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(43, 190, 254, .16),
            rgba(7, 20, 44, .95) 70%
        );

    border: 1px solid
        rgba(43, 190, 254, .4);

    box-shadow:
        0 0 30px rgba(43, 190, 254, .14),
        inset 0 0 25px rgba(187, 60, 233, .08);
}

.strategic-core-center span {
    color: #2bbefe;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.strategic-core-center strong {
    margin: 3px 0;

    color: #ffffff;

    font-size: 10px;

    line-height: 1.2;

    font-weight: 800;
}

.strategic-core-center small {
    color: rgba(255, 255, 255, .4);

    font-size: 6px;

    letter-spacing: 1px;
}


/* =========================================================
   STATUS
========================================================= */

.strategic-architecture-status {
    position: relative;

    z-index: 3;

    max-width: 700px;

    margin: 45px auto 0;

    padding: 17px 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 30px;

    background:
        rgba(255, 255, 255, .055);

    border: 1px solid
        rgba(255, 255, 255, .10);

    border-radius: 7px;

    backdrop-filter: blur(8px);
}

.strategic-status-block {
    display: flex;

    align-items: center;

    gap: 10px;
}

.strategic-status-block span {
    color: rgba(255, 255, 255, .42);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.strategic-status-block strong {
    color: #ffffff;

    font-size: 13px;

    font-weight: 700;
}

.strategic-status-line {
    width: 1px;
    height: 25px;

    background:
        rgba(255, 255, 255, .15);
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .strategic-architecture-heading h2 {
        font-size: 38px;
    }

    .strategic-architecture-grid {
        grid-template-columns:
            1fr 150px 1fr;

        gap: 18px;
    }

    .strategic-architecture-card {
        padding: 22px;
    }

    .strategic-architecture-core {
        width: 130px;
        height: 130px;
    }

    .strategic-core-center {
        width: 82px;
        height: 82px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .strategic-architecture-section {
        padding: 50px 0;
    }

    .strategic-architecture-heading {
        margin-bottom: 40px;
    }

    .strategic-architecture-heading h2 {
        font-size: 34px;
    }

    .strategic-architecture-grid {
        grid-template-columns:
            1fr 110px 1fr;

        gap: 15px;
    }

    .strategic-architecture-card {

        padding: 19px;
    }

    .strategic-architecture-icon {
        width: 58px;
        height: 58px;
    }

    .strategic-architecture-icon img {
        width: 28px;
        height: 28px;
    }

    .strategic-architecture-card h3 {
        font-size: 18px;
    }

    .strategic-architecture-card p {
        font-size: 16px;
    }

    .strategic-architecture-core {
        width: 105px;
        height: 105px;
    }

    .strategic-core-center {
        width: 68px;
        height: 68px;
    }

    .strategic-status-block {
        flex-direction: column;

        align-items: flex-start;

        gap: 4px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .strategic-architecture-section {
        padding: 50px 0;
    }

    .strategic-architecture-heading {
        margin-bottom: 32px;
    }

    .strategic-architecture-label {
        font-size: 11px;

        letter-spacing: 2px;
    }

    .strategic-architecture-heading h2 {
        font-size: 30px;
    }

    .strategic-architecture-heading p {
        font-size: 16px;

        line-height: 1.7;
    }

    .strategic-architecture-grid {
        display: grid;

        grid-template-columns:
            1fr;

        grid-template-rows:
            auto auto;

        gap: 12px;
    }

    .strategic-card-one,
    .strategic-card-two,
    .strategic-card-three,
    .strategic-card-four {
        grid-column: auto;
        grid-row: auto;
    }

    .strategic-architecture-core {
        display: none;
    }

    .strategic-architecture-card {

        padding: 18px;
    }

    .strategic-architecture-card-head {
        margin-bottom: 16px;
    }

    .strategic-architecture-number {
        font-size: 25px;
    }

    .strategic-architecture-tag {
        font-size: 10px;

        letter-spacing: 1.2px;
    }

    .strategic-architecture-card h3 {
        font-size: 18px;
    }

    .strategic-architecture-card p {
        font-size: 16px;

        line-height: 1.65;
    }

    .strategic-architecture-status {
        margin-top: 30px;

        padding: 18px;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

    .strategic-status-line {
        width: 100%;
        height: 1px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {
    
    .strategic-architecture-section {
        padding: 30px 0;
    }

    .strategic-architecture-heading h2 {
        font-size: 27px;
    }

    .strategic-architecture-card {

        padding: 16px;
    }

    .strategic-architecture-icon {
        width: 54px;
        height: 54px;
    }

    .strategic-architecture-icon img {
        width: 26px;
        height: 26px;
    }

    .strategic-architecture-number {
        font-size: 22px;
    }

    .strategic-architecture-card h3 {
        font-size: 18px;
    }

    .strategic-architecture-card p {
        font-size: 16px;

        line-height: 1.6;
    }

    .strategic-status-block strong {
        font-size: 13px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .strategic-architecture-heading h2 {
        font-size: 24px;
    }

    .strategic-architecture-grid {
        grid-template-columns: 1fr;
    }

    .strategic-architecture-card {
        min-height: auto;

        padding: 20px;
    }

    .strategic-architecture-card p {
        font-size: 16px;
    }
    
    .default-btn {
        font-size:12px;
    }

}

/* ==========================================
   VIDEO GALLERY
========================================== */

.video-gallery-section {
    padding: 50px 0;
    background: #fff;
}


/* ==========================================
   SECTION TITLE
========================================== */

.video-gallery-section .section-title {
    margin: 0 auto 40px;
}

.video-text {
    display: inline-block;
    margin-bottom: 12px;
    color: #2bbefe;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.video-gallery-section .section-title h2 {
    color: rgb(7 60 125 / 95%);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.video-gallery-section .section-title h2 span {
    background: linear-gradient(90deg, #2bbefe 0%, #bb3ce9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-gallery-section .section-title p {
    margin: 17px auto 0;
    font-size: 16px;
    line-height: 1.7;
    padding-top:0;
}


/* ==========================================
   YOUTUBE VIDEO CARD
========================================== */

.youtube-video-card {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(7, 19, 61, .10);

    transition: all .35s ease;
    border: 2px solid transparent;
    background: linear-gradient(#071a358a, #071a35) padding-box, linear-gradient(135deg, #2bbefe, #bb3ce9) border-box;
}


/* ==========================================
   IFRAME
========================================== */

.youtube-video-card iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}


/* ==========================================
   HOVER
========================================== */

.youtube-video-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(7, 19, 61, .16);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .video-gallery-section {
        padding: 50px 0;
    }

    .video-gallery-section .section-title h2 {
        font-size: 40px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .video-gallery-section {
        padding: 50px 0;
    }

    .video-gallery-section .section-title {
        margin-bottom: 35px;
    }

    .video-gallery-section .section-title h2 {
        font-size: 34px;
    }

    .video-gallery-section .section-title p {
        font-size: 16px;
        padding-bottom:0px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 575px) {

    .video-gallery-section {
        padding: 30px 0;
    }

    .video-gallery-section .section-title h2 {
        font-size: 24px;
    }

    .youtube-video-card {
        border-radius: 9px;
    }
    
    .video-text {
        font-size:11px;
    }

}
/*-----------photogallery------------*/
/* ==========================================
   PHOTO GALLERY
========================================== */

.photo-gallery-section {
    padding: 50px 0;
    background: #f8f9fb;
}

/*.gallery-wrapper {
    margin: 0 40px;
}*/

.gallery-image {
    display: block;
    text-decoration: none;
}

.gallery-item {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    object-position: top;
}


/* Overlay */

.gallery-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(7, 19, 61, 0.65);

    opacity: 0;
    visibility: hidden;

    transition: all 0.35s ease;
}


/* Icon */

.gallery-overlay i {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(135deg, #2bbefe, #bb3ce9);
    color: #fff;

    font-size: 25px;

    transform: scale(0.7);

    transition: all 0.35s ease;
}


/* Hover */

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .photo-gallery-section {
        padding: 30px 0;
    }

    .gallery-item {
        height: 220px;
        border-radius: 10px;
    }

}

@media (max-width: 575px) {

    .gallery-item {
        height: 180px;
    }

    .gallery-overlay i {
        width: 45px;
        height: 45px;
        font-size: 21px;
    }

}

/*-----------testimonial-section---------------*/
/* ==========================================
   TESTIMONIAL SECTION
========================================== */

.legal-testimonial-section {
    padding: 0 0 50px;
    background: #fff;
}


/* ==========================================
   HEADING
========================================== */

.legal-testimonial-title {
    margin: 0 auto 40px;
    text-align: center;
}

.legal-testimonial-title .sp-title2 {
    display: inline-block;
    margin-bottom: 10px;
    color: #D4AF37;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.legal-testimonial-title h2 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}


/* ==========================================
   SLIDER
========================================== */

.legal-testimonial-slider {
    width: 100%;
    overflow: hidden;
}

.legal-testimonial-slider .swiper-wrapper {
    align-items: stretch;
}

.legal-testimonial-slider .swiper-slide {
    height: auto;
}


/* ==========================================
   CARD
========================================== */

.legal-testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    /*min-height: 430px;*/
    padding: 35px 30px 28px;
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.07);
    transition: 0.35s ease;
}


/* Top Border Animation */

.legal-testimonial-top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, rgb(43, 190, 254), rgb(187, 60, 233));
    transition: width 0.45s ease;
}

.legal-testimonial-card:hover .legal-testimonial-top-line {
    width: 100%;
}

.legal-testimonial-card:hover {
    /*transform: translateY(-6px);*/
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.11);
}


/* ==========================================
   QUOTE ICON
========================================== */

.legal-testimonial-quote {
    margin-bottom: 18px;
}

.legal-testimonial-quote i {
    color: #2bbefe;
    font-size: 48px;
    line-height: 1;
}


/* ==========================================
   TESTIMONIAL TEXT
========================================== */

.legal-testimonial-content {
    flex: 1;
}

.legal-testimonial-content p {
    margin: 0;
    color: #282727;
    font-size: 16px;
    line-height: 1.75;
}


/* ==========================================
   RATING
========================================== */

.legal-testimonial-rating {
    display: flex;
    gap: 4px;
    margin: 22px 0 22px;
    padding-top: 18px;
    border-top: 1px solid #eeeeee;
}

.legal-testimonial-rating i {
    color: #144684;
    font-size: 17px;
}


/* ==========================================
   CLIENT
========================================== */

.legal-testimonial-client {
    display: flex;
    align-items: center;
    gap: 13px;
}

.legal-testimonial-client-image {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    overflow: hidden;
    border-radius: 50%;
}

.legal-testimonial-client-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.legal-testimonial-client-info {
    min-width: 0;
}

.legal-testimonial-client-info h4 {
    margin: 0 0 3px;
    color: #144684;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
}

.legal-testimonial-client-info span {
    color: #2bbefe;
    font-size: 14px;
}


/* Small Quote */

.legal-testimonial-small-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin-left: auto;
    flex: 0 0 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(43, 190, 254), rgb(187, 60, 233));
}

.legal-testimonial-small-quote i {
    color: #fff;
    font-size: 20px;
}


/* ==========================================
   CONTROLS
========================================== */

.legal-testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.legal-testimonial-prev,
.legal-testimonial-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    background: #fff;
    color: #07133d;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s ease;
}

.legal-testimonial-prev:hover,
.legal-testimonial-next:hover {
    border-color: #2bbefe;
    background: #2bbefe;
    color: #fff;
}


/* Pagination */

.legal-testimonial-pagination {
    display: flex;
    align-items: center;
    justify-content:center;
    gap: 7px;
}

.legal-testimonial-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    opacity: 1;
    background: #d5d5d5;
}

.legal-testimonial-pagination .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 10px;
    background: #2bbefe;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .legal-testimonial-title h2 {
        font-size: 48px;
    }

    .legal-testimonial-card {
        min-height: 420px;
        padding: 30px 25px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .legal-testimonial-title {
        margin-bottom: 35px;
    }

    .legal-testimonial-title h2 {
        font-size: 36px;
    }

    .legal-testimonial-card {
        min-height: 400px;
        padding: 28px 23px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 575px) {

    .legal-testimonial-section {
        padding: 0px 0 30px;
    }

    .legal-testimonial-title h2 {
        font-size: 31px;
    }

    .legal-testimonial-card {
        min-height: 380px;
        padding: 25px 20px;
    }

    .legal-testimonial-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .legal-testimonial-client-image {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .legal-testimonial-client-info h4 {
        font-size: 17px;
    }

    .legal-testimonial-small-quote {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .legal-testimonial-prev,
    .legal-testimonial-next {
        width: 43px;
        height: 43px;
    }

}

.blog-area {
    padding-top:50px;
    background: #00172F;
}
.blog-h {
    color:white !important;
}

/* ==========================================
   AWARD GALLERY
========================================== */

.award-gallery-section {
    padding: 50px 0;
    background: #fff;
}


/* ==========================================
   SECTION TITLE
========================================== */

.award-gallery-section .section-title {
    margin: 0 auto 40px;
}

.award-gallery-section .section-title h2 {
    margin: 0 0 15px;
    font-size: 42px;
    line-height: 1.2;
}

.award-gallery-section .section-title p {
    font-size: 16px;
    line-height: 1.7;
    padding-top:0;
}


/* ==========================================
   AWARD ITEM
========================================== */

.award-gallery-item {
    position: relative;

    width: 100%;
    height: 280px;

    overflow: hidden;

    border-radius: 12px;

    background: #eee;
}


/* ==========================================
   IMAGE
========================================== */

.award-gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .6s ease;
}


/* ==========================================
   OVERLAY
========================================== */

.award-gallery-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 20px 22px;

    background: rgba(7, 19, 61, .82);

    transform: translateY(100%);

    transition: transform .4s ease;
}


/* ==========================================
   TITLE
========================================== */

.award-gallery-overlay h4 {
    margin: 0;

    color: #fff;

    font-family: "Playfair Display", serif;

    font-size: 20px;
    font-weight: 600;

    line-height: 1.3;
}


/* ==========================================
   HOVER
========================================== */

.award-gallery-item:hover img {
    transform: scale(1.05);
}

.award-gallery-item:hover .award-gallery-overlay {
    transform: translateY(0);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .award-gallery-section {
        padding: 50px 0;
    }

    .award-gallery-section .section-title h2 {
        font-size: 40px;
    }

    .award-gallery-item {
        height: 250px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .award-gallery-section {
        padding: 50px 0;
    }

    .award-gallery-section .section-title {
        margin-bottom: 35px;
    }

    .award-gallery-section .section-title h2 {
        font-size: 34px;
    }

    .award-gallery-section .section-title p {
        font-size: 15px;
    }

    .award-gallery-item {
        height: 270px;
    }

    .award-gallery-overlay {
        padding: 17px 18px;
    }

    .award-gallery-overlay h4 {
        font-size: 18px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 575px) {

    .award-gallery-section {
        padding: 30px 0;
    }

    .award-gallery-section .section-title h2 {
        font-size: 24px;
    }

    .award-gallery-item {
        height: 250px;
        border-radius: 9px;
    }
    
    .blog-area {
        padding-top:30px;
    }
}

/*----------Reels section-----------*/
/* =========================================
   CYBERSECURITY INSTAGRAM REELS SECTION
========================================= */

.cyber-reels-section {
    position: relative;
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
}


/* =========================================
   HEADING
========================================= */

.cyber-reels-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 45px;
}

.cyber-reels-heading > span {
    display: block;
    margin-bottom: 8px;
    color: #2bbefe;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.cyber-reels-heading h2 {
    margin: 0;
    color: rgb(7 60 125 / 95%);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.cyber-reels-heading h2 span {
    background: linear-gradient(
        90deg,
        #2bbefe,
        #bb3ce9
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =========================================
   REELS GRID
========================================= */

.cyber-reels-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}


/* =========================================
   REEL CARD
========================================= */

.cyber-reel-card {
    position: relative;
    min-width: 0;
    padding: 6px;
    border-radius: 24px;
    background: linear-gradient(
        145deg,
        #2bbefe,
        #bb3ce9
    );
    box-shadow:
        0 15px 35px rgba(7, 60, 125, 0.10),
        0 5px 15px rgba(187, 60, 233, 0.08);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.cyber-reel-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 45px rgba(7, 60, 125, 0.16),
        0 15px 35px rgba(187, 60, 233, 0.15);
}


/* =========================================
   INSTAGRAM MEDIA
========================================= */

.cyber-reel-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 19px;
    background: #ffffff;
}


/* Instagram generated embed */

.cyber-reel-media .instagram-media {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 15px !important;
}


/* =========================================
   INSTAGRAM LABEL
========================================= */

.cyber-reel-label {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 20;

    display: flex;
    align-items: center;
    gap: 5px;

    padding: 7px 11px;

    border-radius: 20px;

    color: #ffffff;

    background: rgba(1, 9, 28, 0.78);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    font-size: 10px;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 1px;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.15);
}

.cyber-reel-label i {
    font-size: 15px;
    line-height: 1;
}


/* =========================================
   BOTTOM DECORATION
========================================= */

.cyber-reels-bottom {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-top: 35px;
}

.cyber-reels-bottom span {
    width: 70px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #2bbefe
    );
}

.cyber-reels-bottom span:last-child {
    background: linear-gradient(
        90deg,
        #bb3ce9,
        transparent
    );
}

.cyber-reels-bottom i {
    font-size: 22px;

    background: linear-gradient(
        135deg,
        #2bbefe,
        #bb3ce9
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =========================================
   LARGE TABLET
========================================= */

@media only screen and (max-width: 1199px) {

    .cyber-reels-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


/* =========================================
   TABLET
========================================= */

@media only screen and (max-width: 991px) {

    .cyber-reels-section {
        padding: 50px 0;
    }

    .cyber-reels-heading h2 {
        font-size: 36px;
    }

    .cyber-reels-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .cyber-reel-media {
        min-height: 400px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media only screen and (max-width: 575px) {

    .cyber-reels-section {
        padding: 30px 0;
    }

    .cyber-reels-heading {
        margin-bottom: 30px;
    }
    
    .cyber-reels-heading h2 {
        font-size: 24px;
    }

    .cyber-reels-heading > span {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .cyber-reels-wrapper {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: auto;
        gap: 20px;
    }

    .cyber-reel-card {
        padding: 5px;
        border-radius: 20px;
    }

    .cyber-reel-media {
        min-height: 380px;
        border-radius: 16px;
    }

    .cyber-reel-label {
        top: 12px;
        right: 12px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media only screen and (max-width: 380px) {

    .cyber-reels-heading h2 {
        font-size: 24px;
    }

    .cyber-reels-wrapper {
        max-width: 100%;
    }

    .cyber-reel-media {
        min-height: 380px;
    }

}

/* =========================================================
   FEATURED ARTICLES & NEWS
========================================================= */

.cyber-news-section {
    position: relative;
    padding: 50px 0 0;
    background: #ffffff;
    overflow: hidden;
}

/* =========================================================
   HEADING
========================================================= */

.cyber-news-heading {
    position: relative;
    z-index: 2;
    margin: 0 auto 40px;
    text-align: center;
}

.cyber-news-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #2bbefe;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cyber-news-heading h2 {
    margin: 0 0 14px;
    color: rgb(7 60 125 / 95%);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.cyber-news-heading h2 span {
    background:
        linear-gradient(
            90deg,
            #2bbefe,
            #bb3ce9
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}

.cyber-news-heading p {

    margin: 0 auto;

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   NEWS GRID
========================================================= */

.cyber-news-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


/* =========================================================
   CARD
========================================================= */

.cyber-news-card {
    position: relative;

    display: flex;

    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    text-decoration: none;

    background: #ffffff;

    border: 1px solid #e8edf3;

    border-radius: 12px;

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;

}


/* Gradient border effect */

.cyber-news-card::before {
    content: "";

    position: absolute;

    inset: 0;

    padding: 1px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #2bbefe,
            transparent 35%,
            transparent 65%,
            #bb3ce9
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    opacity: 0;

    transition:
        opacity .45s ease;

    pointer-events: none;

    z-index: 5;
}

.cyber-news-card:hover {
    transform: translateY(-9px);

    border-color: transparent;

}

.cyber-news-card:hover::before {
    opacity: 1;
}


/* =========================================================
   IMAGE
========================================================= */

.cyber-news-image {
    position: relative;

    height: 235px;

    overflow: hidden;

    background: #edf3f8;
}

.cyber-news-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1);
}

.cyber-news-card:hover .cyber-news-image img {
    transform: scale(1.09);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.cyber-news-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(43, 190, 254, .05),
            rgba(187, 60, 233, .18)
        );

    opacity: .35;

    transition:
        opacity .5s ease;
}

.cyber-news-card:hover
.cyber-news-image-overlay {
    opacity: .7;
}


/* =========================================================
   IMAGE TOP LIGHT
========================================================= */

.cyber-news-image::after {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.25),
            transparent
        );

    transform: skewX(-20deg);

    transition:
        left .7s ease;

    pointer-events: none;
}

.cyber-news-card:hover
.cyber-news-image::after {
    left: 140%;
}


/* =========================================================
   ARROW BUTTON
========================================================= */

.cyber-news-arrow {
    position: absolute;

    right: 18px;
    bottom: 18px;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #2bbefe,
            #bb3ce9
        );

    color: #ffffff;

    font-size: 21px;

    box-shadow:
        0 8px 22px rgba(43, 190, 254, .25);

    transform:
        translateY(8px);

    opacity: 0;

    transition:
        opacity .4s ease,
        transform .4s ease;
}

.cyber-news-card:hover
.cyber-news-arrow {
    opacity: 1;

    transform:
        translateY(0);
}

.cyber-news-arrow i {
    transition:
        transform .35s ease;
}

.cyber-news-card:hover
.cyber-news-arrow i {
    transform:
        translateX(2px);
}


/* =========================================================
   CONTENT
========================================================= */

.cyber-news-content {
    position: relative;

    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 25px 25px 23px;
}


/* =========================================================
   TITLE
========================================================= */

.cyber-news-content h3 {
    margin: 0 0 13px;

    font-size: 20px;

    line-height: 1.4;

    font-weight: 800;

    transition:
        color .35s ease;
}

.cyber-news-card:hover
.cyber-news-content h3 {
    background:
        linear-gradient(
            90deg,
            #2bbefe,
            #9b36c4
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.cyber-news-content p {
    margin: 0 0 20px;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   READ MORE
========================================================= */

.cyber-news-read {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: auto;

    width: fit-content;

    color: #2bbefe;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: .3px;

    transition:
        color .35s ease,
        gap .35s ease;
}

.cyber-news-read i {
    font-size: 18px;

    transition:
        transform .35s ease;
}

.cyber-news-card:hover
.cyber-news-read {
    color: #9b36c4;

    gap: 12px;
}

.cyber-news-card:hover
.cyber-news-read i {
    transform:
        translateX(3px);
}


/* =========================================================
   BOTTOM GRADIENT LINE
========================================================= */

.cyber-news-content::after {
    content: "";

    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #2bbefe,
            #bb3ce9
        );

    transform:
        scaleX(0);

    transform-origin: left;

    transition:
        transform .5s ease;
}

.cyber-news-card:hover
.cyber-news-content::after {
    transform:
        scaleX(1);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .cyber-news-section {
        padding: 50px 0;
    }

    .cyber-news-heading {
        margin-bottom: 35px;
    }

    .cyber-news-heading h2 {
        font-size: 36px;
    }

    .cyber-news-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;
    }

    .cyber-news-image {
        height: 220px;
    }

    .cyber-news-content {
        padding: 22px;
    }

    .cyber-news-content h3 {
        font-size: 19px;
    }

    .cyber-news-content p {
        font-size: 16px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cyber-news-section {
        padding: 30px 0 0;
    }

    .cyber-news-heading {
        margin-bottom: 30px;
    }

    .cyber-news-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .cyber-news-heading h2 {
        font-size: 30px;
    }

    .cyber-news-heading p {
        font-size: 16px;

        line-height: 1.65;
    }

    .cyber-news-grid {
        grid-template-columns: 1fr;

        gap: 20px;

        max-width: 560px;
    }

    .cyber-news-image {
        height: 230px;
    }

    .cyber-news-content {
        padding: 22px;
    }

    .cyber-news-content h3 {
        font-size: 19px;
    }

    .cyber-news-content p {
        font-size: 16px;
    }

    /* Keep arrow visible on mobile */

    .cyber-news-arrow {
        opacity: 1;

        transform: translateY(0);
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .cyber-news-heading h2 {
        font-size: 24px;
    }

    .cyber-news-heading p {
        font-size: 16px;
    }

    .cyber-news-grid {
        gap: 16px;
    }

    .cyber-news-card {
        border-radius: 10px;
    }

    .cyber-news-image {
        height: 210px;
    }

    .cyber-news-content {
        padding: 20px;
    }

    .cyber-news-content h3 {
        font-size: 18px;

        line-height: 1.4;
    }

    .cyber-news-content p {
        font-size: 16px;

        line-height: 1.65;
    }

    .cyber-news-arrow {
        width: 42px;
        height: 42px;

        right: 14px;
        bottom: 14px;
    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 380px) {

    .cyber-news-heading h2 {
        font-size: 24px;
    }

    .cyber-news-image {
        height: 190px;
    }

    .cyber-news-content {
        padding: 18px;
    }

    .cyber-news-content h3 {
        font-size: 18px;
    }

    .cyber-news-content p {
        font-size: 16px;
    }

}
