/*
Theme Name: Lovell Creative Studio Theme
Theme URI: https://www.lovelltechnologies.com/
Author: Your Name
Author URI: https://www.lovelltechnologies.com/
Description: Lovell Creative Studio Theme custom WordPress theme.
Version: 1.0
License: GPLv2 or later
Text Domain: lcs-theme
*/

/* Fonts */
:root {
  --default-font: "Satoshi", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Satoshi", sans-serif;
  --nav-font: "Satoshi", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --white-color: #ffffff;
  --background-color: #2979FF;
  --default-color: #2979FF;
  --second-default-color: #1A237E;
  --heading-color: #1A237E;
  --button-color: #1A237E;
  --surface-color: #f5f5f5;
  --contrast-color: #ffffff;
  --paragraph-color: #616161;
  --black-color: #000;
}



/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
@font-face {
  font-family: var(--default-font);
  src: url('/wp-content/themes/fonts/Satoshi-Variable.ttf') format('woff2'),
    url('/wp-content/themes/fonts/Satoshi-VariableItalic.ttf') format('truetype');
  font-weight: 100 900;
  /* Supports variable font weights */
  font-display: swap;
  /* Improves loading performance */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: var(--white-color);
  font-family: var(--default-font);
  background-color: var(--default-color);
  overflow-x: hidden;
  /* Prevent all scrolling */
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.para {
  color: var(--paragraph-color);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0px 0 55px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  padding-left: 5px;
  font-weight: 500;
  color: var(--heading-color);
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}


/*--------------------------------------------------------------
# Menu
--------------------------------------------------------------*/

body.offcanvas-menu:before {
  opacity: 1;
  z-index: 1002;
  visibility: visible;
}

.site-navbar-wrap {
  position: absolute;
  z-index: 99;
  width: 100%;
  left: 0;
}

.site-navbar-wrap a img {
  max-height: 36px;
  margin-right: 8px;
}

.site-navbar-wrap .site-navbar-top {
  font-size: 0.8rem;
}

.site-navbar-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.site-navbar {
  margin-bottom: 0px;
  padding: 7px 0;
  width: 100%;
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
}

.site-navbar .site-logo {
  font-weight: 200;
  line-height: 0;
  top: -7px;
  position: relative;
}

.site-navbar .site-logo a {
  font-weight: 200;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.site-navbar .site-navigation .site-menu {
  margin-bottom: 0;
}

.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block;
  font-weight: 500;
}

.site-navbar .site-navigation .site-menu>li {
  display: inline-block;
  padding: 10px 5px;
}

.site-navbar .site-navigation .site-menu>li>a {
  padding: 20px 10px;
  color: var(--white-color);
  font-size: 15px;
  text-decoration: none !important;
  color: rgba(243, 243, 243, 1);
  padding: 0.8rem 1.3rem;
  font-size: 15px;
  font-family: var(--nav-font);
  font-weight: 500;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.site-navbar .site-navigation .site-menu>li>a.active {
  color: var(--white-color);
  background-color: rgba(26, 35, 126, 1);
  padding: 0.8rem 1.3rem;
  position: relative;
  padding-left: 28px;
}

.site-navbar .site-navigation .site-menu>li>a.active::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  left: 18px;
  background-color: var(--white-color);
  border-radius: 50%;
}

.site-navbar .site-navigation .site-menu>li>a:hover {
  color: var(--white-color);
  background-color: rgba(26, 35, 126, 1);
  padding: 0.8rem 1.3rem;
  position: relative;
}

.site-navbar .site-navigation .site-menu>li>a:hover.active {
  padding-left: 28px;
}

.site-navbar .site-navigation .site-menu .has-children {
  position: relative;
}

.site-navbar .site-navigation .site-menu li.has-children a {
  position: relative;
  padding: 0.8rem 3rem 0.8rem 2rem;
}

.site-navbar .site-navigation .site-menu .has-children>a:before {
  position: absolute;
  content: '\f078';
  font-size: 12px;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "FontAwesome";
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  -webkit-box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 0px 0;
  margin-top: 20px;
  margin-left: 0px;
  background: var(--heading-color);
  -webkit-transition: 0.2s 0s;
  -o-transition: 0.2s 0s;
  transition: 0.2s 0s;
  border: 1px solid var(--white-color);
  border-radius: 10px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a {
  font-size: 13px;
  text-transform: none;
  letter-spacing: normal;
  -webkit-transition: 0s all;
  -o-transition: 0s all;
  transition: 0s all;
  color: var(--white-color);
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a.active {
  color: #007bff;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown .active>a {
  color: #fff !important;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 230px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li:first-child>a {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li:last-child>a {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a {
  padding: 9px 20px;
  display: block;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a:hover {
  background: var(--white-color);
  color: var(--second-default-color);
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>a:before {
  content: "\f105";
  right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>.dropdown,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>ul {
  left: 100%;
  top: 0;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:hover>a,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:active>a,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:focus>a {
  background: #ebeef0;
  color: #212529;
}

.site-navbar .site-navigation .site-menu .has-children:hover>a,
.site-navbar .site-navigation .site-menu .has-children:focus>a,
.site-navbar .site-navigation .site-menu .has-children:active>a {
  color: var(--white-color);
  background-color: rgba(26, 35, 126, 1);
  padding: 0.8rem 3rem .8rem 2rem;
}

.site-navbar .site-navigation .site-menu .has-children:hover,
.site-navbar .site-navigation .site-menu .has-children:focus,
.site-navbar .site-navigation .site-menu .has-children:active {
  cursor: pointer;
}

.site-navbar .site-navigation .site-menu .has-children:hover>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:active>.dropdown {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(60px);
  height: calc(100vh);
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.offcanvas-menu .site-mobile-menu {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}

.site-menu-toggle {
  padding: 9px;
  border-radius: 50%;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 10px;
  background-color: var(--white-color);
}

.site-menu-toggle .icon-menu {
  color: var(--default-color);
  font-size: 19px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close i {
  font-size: 30px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close i::before {
  color: var(--white-color);
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
  color: #dee2e6;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  float: left;
  margin-top: 10px;
  margin-left: 0px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  display: inline-block;
  text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
  max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  text-decoration: none;
}

.site-mobile-menu .site-mobile-menu-body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 10px;
  height: calc(100vh - 52px);
  padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.site-mobile-menu .site-nav-wrap a {
  padding: 10px;
  display: block;
  position: relative;
  color: var(--default-color);
  font-size: 20px;
  font-weight: 500;
}

.site-mobile-menu .site-nav-wrap a.active,
.site-mobile-menu .site-nav-wrap a:hover {
  color: var(--white-color);
}

.site-mobile-menu .site-nav-wrap li {
  position: relative;
  display: block;
}

.site-mobile-menu .site-nav-wrap li.active>a {
  color: #007bff;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 5px;
  top: 10px;
  z-index: 20;
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  line-height: 30px;
  background: var(--default-color);
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  font-size: 12px;
  z-index: 20;
  font-family: "FontAwesome";
  content: "\f078";
  color: var(--white-color);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap>li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.site-mobile-menu .site-nav-wrap>li>a {
  padding-left: 10px;
  font-size: 20px;
}

.site-mobile-menu .site-nav-wrap>li>ul {
  padding: 0;
  margin: 0;
  list-style: none;
  margin: 10px 5px;
  background-color: var(--second-default-color);
  border: 1px solid var(--white-color);
  box-shadow: none;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}

.site-mobile-menu .site-nav-wrap>li>ul>li {
  display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>a {
  padding-left: 25px;
  font-size: 16px;
  color: var(--white-color);
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul {
  padding: 0;
  margin: 0;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li {
  display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li>a {
  font-size: 16px;
  padding-left: 50px;
  color: var(--white-color);
}

.sticky-wrapper {
  position: absolute;
  z-index: 100;
  width: 100%;
}

.sticky-wrapper+.site-blocks-cover {
  margin-top: 96px;
}

.sticky-wrapper .site-navbar {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.sticky-wrapper .site-navbar ul li.active a {
  color: #fff;
}

.sticky-wrapper.is-sticky .site-navbar {
  background-color: #007bff;
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li {
  display: inline-block;
  padding: 10px 5px;
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li:last-child {
  padding-right: 0;
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li:last-child>a {
  padding-right: 0;
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li.has-children>a {
  padding-right: 20px;
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li>a {
  padding: 10px 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li>a:hover {
  color: #fff !important;
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li>a.active {
  color: #fff !important;
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li.active a {
  color: #fff;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--background-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 18px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/* Pulsating Play Button
------------------------------*/

.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--default-color) 50%, color-mix(in srgb, var(--default-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--default-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--default-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

.degree-45 {
  transform: rotate(-45deg);
}

/*--------------------------------------------------------------
# Button Section
--------------------------------------------------------------*/
.main-btn {
  position: relative;
  display: block;
  color: #000;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.8rem 2rem;
  overflow: hidden;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.6s ease;
}

.main-btn::before {
  background: var(--white-color);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.6s ease;
}

.main-btn.btn-outline::before {
  width: 100%;
  height: 100%;
}

.main-btn.btn-outline:hover {
  border: 1px solid var(--white-color);
  color: var(--white-color);
}

.main-btn.btn-outline:hover::before {
  height: 0%;
}

.main-btn .degree-45 {
  transform: rotate(-45deg);
  margin-left: 7px;
}

.main-btn .blue-arrow {
  color: var(--default-color);
  transition: all 0.6s ease;
}

.main-btn:hover .blue-arrow {
  color: var(--white-color);
}

.main-btn.right-blue-bg {
  padding-left: .5rem;
}

.main-btn .circle-arrow {
  position: absolute;
  top: 6px;
  right: 6px;
  color: var(--white-color);
  background-color: var(--background-color);
  padding: 10px;
  border-radius: 50%;
  transition: all 1s ease;
}

.main-btn:hover .circle-arrow {
  color: var(--default-color);
  background-color: var(--white-color);
}

.primary-btn {
  position: relative;
  color: var(--white-color);
  font-size: 1rem;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  overflow: hidden;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.6s ease;
  border: 1px solid var(--white-color);
  background-color: rgba(255, 255, 255, .3);
}

.primary-btn:hover {
  border: 1px solid var(--white-color);
  color: var(--white-color);
}

.main-btn.bg-blue-btn {
  background-color: var(--background-color);
  color: var(--contrast-color);
  z-index: unset;
}

.main-btn.bg-blue-btn .blue-arrow {
  color: var(--contrast-color);
}

.main-btn.bg-white-btn {
  background-color: var(--white-color);
}

.main-btn.bg-white-btn .blue-arrow {
  color: var(--default-color);
}

.main-btn.bg-white-btn:hover {
  color: var(--default-color);
  border: 1px solid var(--default-color);
}

@media (max-width: 567px) {
  .main-btn.bg-blue-btn {
    font-size: .8rem;
    padding: 0.8rem 1.5rem;
  }

  .main-btn.bg-white-btn {
    font-size: .8rem;
    padding: 0.8rem 1.5rem;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero-section {
  padding: 5rem 0;
  position: relative;
  color: var(--white-color);
}

.hero-section::before {
  content: 'STUDIO';
  position: absolute;
  font-size: 390px;
  font-family: var(--default-font);
  font-weight: 900;
  opacity: .2;
  z-index: -10;
  top: -120px;
  color: rgba(255, 255, 255, .7);
  left: 50%;
  transform: translate(-50%, 0%);
}

.hero-section .hero-section-left-sec {
  padding: 5rem 0 0 5rem;
}

.hero-section .hero-section-right-sec {
  padding: 5rem 0 0 5rem;
}

.hero-section .hero-heading span {
  font-size: 8rem;
  text-align: center;
  line-height: 7rem;
  color: #fff;
  font-weight: 900;
}

.hero-section .hero-heading .bg-gradiant-text-1,
.hero-section .hero-heading .bg-gradiant-text-2 {
  position: relative;
  z-index: -1;
}

.hero-section .hero-heading .bg-gradiant-text-2 {
  z-index: -2;
}

.hero-section .hero-heading .bg-gradiant-text-1::before,
.hero-section .hero-heading .bg-gradiant-text-2::before {
  content: '';
  position: absolute;
  width: 734px;
  height: 112px;
  background-color: var(--background-color);
  opacity: .5;
  z-index: 0;
  top: -62px;
  filter: blur(8px);
  -webkit-filter: blur(8px);
}

.hero-section .hero-heading .bg-gradiant-text-2::before {
  z-index: 0;
}

.hero-section .header-social-links {
  padding-right: 15px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-section .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.hero-section .header-social-links a:hover {
  color: var(--accent-color);
}

.hero-section .header-social-links a i {
  background: var(--white-color);
  border-radius: 50%;
  display: block;
  width: 25px;
  height: 25px;
  color: #2979FF;
  text-align: center;
  line-height: 25px;
}


/* Second Section */

.our-approach-section {
  background-color: var(--default-color);
}

.project-number {
  position: absolute;
  left: 7%;
  top: 7%;
  color: var(--paragraph-color);
}

.project-number .project-complete {
  font-size: 3rem;
  font-weight: 700;
  color: var(--black-color);
  line-height: 3rem;
}

.project-number .project-complete span {
  color: var(--default-color);
}

.project-slider {
  position: absolute;
  right: 7%;
  top: 10%;
  color: var(--paragraph-color);
  width: 50%;
}

.project-slider .item img {
  border-radius: 25px;
}

.project-slider .owl-theme .owl-dots {
  position: relative;
  z-index: 11;
  margin-top: -35px !important;
}

.project-slider .owl-theme .owl-dots .owl-dot span {
  background: #fff;
}

.project-slider .owl-theme .owl-dots .owl-dot.active span,
.project-slider .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--default-color);
}

.strip {
  position: absolute;
  padding: 1.3rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: 700;
  left: -10px;
  width: 103%;
  top: -40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.blue-strip {
  background-color: var(--default-color);
  transform: rotate(-6deg);
}

.dark-blue-strip {
  background-color: var(--second-default-color);
  transform: rotate(6deg);
}

.blue-strip span,
.dark-blue-strip span {
  font-size: 2.2rem;
  margin: 0 3.5rem;
}

.blue-strip span img,
.dark-blue-strip span img {
  margin: 0 1rem;
  width: 28px !important;
  padding-bottom: 10px;
  display: inline-block !important;
}

/* Vision Section */

.vision-section {
  padding: 13rem 0 4rem 0;
  background-color: var(--surface-color);
}

.vision-section .vision-blk {
  padding: 2rem;
}

.vision-section .have-line-effect::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 225px;
  width: 2px;
  background-image: linear-gradient(to bottom, transparent 0%, #616161 50%, #616161 50%, transparent 100%);
}

.vision-section .vision-heading {
  font-size: 2.2rem;
  margin-left: 1rem;
}

.vision-section .vision-icon {
  width: 60px;
}

.vision-section .para {
  color: var(--paragraph-color);
}

/* About Section */

.about-section {
  padding: 5rem 0;
  background-color: var(--second-default-color);
  position: relative;
  z-index: 1;
}

.about-section::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 156px;
  background-image: url('/wp-content/themes/img/about-bg-1.webp');
  background-repeat: no-repeat;
  background-size: cover;
}

.about-section::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0%;
  width: 50%;
  height: 100%;
  background-image: url('/wp-content/themes/img/about-bg-2.webp');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.about-section .about-heading span {
  font-size: 6rem;
  line-height: 6rem;
  text-transform: uppercase;
  font-weight: 900;
  z-index: 1;
  color: #1A237E;
  background-image: linear-gradient(45deg, #1A237E 0%, #F5F5F5 50%, #1A237E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-section .about-para .para {
  color: #DFDFDF;
  margin-right: 7rem;
}

.about-section .blue-circle {
  display: block;
  width: 80px;
  height: 80px;
  background-color: var(--default-color);
  text-align: center;
  border-radius: 50%;
  line-height: 80px;
  transition: all 0.6s ease;
}

.about-section .blue-circle:hover {
  background-color: var(--white-color);
  color: var(--default-color);
}

.curv-blk {
  padding-top: 2rem;
  border: 1px solid #fff;
  border-radius: 50px;
  background-color: #6b75a9;
}

.curv-blk .curv-heading {
  font-size: 35px;
  font-weight: 700;
  color: var(--white-color);
  text-align: center;
  text-transform: uppercase;
  line-height: 38px;
  margin-bottom: 20px;
  padding: 0 15px;
}

.curv-blk .curv-box {
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: 50px;
  min-height: 260px;
  display: flex;
  align-items: center;
}

.curv-blk .curv-box p {
  color: #515A75;
}

.logo-section .sec-heading h2 {
  text-align: center;
  font-size: 4.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

.logo-section .clients {
  padding: 200px 0;
}

.logo-section {
  background: var(--white-color);
  padding: 3rem 0;
}

.logo-section .box {
  display: grid;
  align-items: center;
  justify-items: center;
  width: 80%;
  height: auto;
  transition: transform 0.5s ease-in;
  margin: 8px auto;
}

.logo-section .box img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
}

.logo-section .box:hover {
  transform: scale(1.2);
}

/* Servive Section */

.service-section {
  padding: 5rem 0;
  background-color: var(--surface-color);
  position: relative;
  z-index: 1;
}

.service-section::before {
  content: 'OUR SERVICES';
  position: absolute;
  font-size: 14rem;
  font-family: var(--default-font);
  font-weight: 900;
  z-index: -2;
  top: -62px;
  color: #42586212;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 113%;
  opacity: 1;
}

.service-section::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 112px;
  background-color: var(--white-color);
  opacity: .8;
  z-index: -1;
  top: 117px;
  filter: blur(8px);
  left: 50%;
  transform: translate(-50%, 0%);
}

.service-section .service-heading {
  font-size: 5rem;
  text-transform: uppercase;
  font-weight: 900;
  background-image: linear-gradient(45deg, #1A237E 0%, #2979FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-section .service-sub-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #616161;
}

.service-blk.service-blk-bg {
  background-color: #D4E4FF;
  border-radius: 20px;
}

.service-section .service-pic {
  border-radius: 20px;
}

.service-section .service-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.service-section .service-arrow {
  color: var(--white-color);
  padding: 1.15rem;
  border: 1px solid var(--white-color);
  background-color: rgba(255, 255, 255, .3);
  border-radius: 50%;
  transition: all 0.6s ease;
}

.service-btn .blue-bg {
  background-color: var(--default-color);
  border: 1px solid var(--white-color);
}

.service-btn:hover .service-arrow,
.service-btn:hover .primary-btn {
  background-color: transparent;
}

.service-btn:hover .blue-bg,
.service-btn:hover .blue-bg {
  background-color: var(--white-color);
  color: var(--button-color);
  border: 1px solid var(--default-color);
}

.service-section .service-contact-box {
  position: relative;
  height: 460px;
  background-color: #2979ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 55px;
  text-transform: uppercase;
  font-weight: 800;
  border-radius: 20px;
  overflow: hidden;
}

.service-section .service-contact-box::after {
  content: '';
  position: absolute;
  right: 0px;
  top: 0px;
  background-image: url('/wp-content/themes/img/excited-bg.webp');
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  height: 100%;
}

.service-section .service-btn.service-contact-btn {
  left: 50%;
  bottom: 30%;
  transform: translate(-50%, 0%);
}

/* Value Service */

.value-section {
  padding: 5rem 0;
  background-color: var(--second-default-color);
  position: relative;
  z-index: 1;
}

.value-section::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20%;
  background-image: url('/wp-content/themes/img/value-bg-1.webp');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.value-section::before {
  content: '';
  position: absolute;
  left: 53%;
  top: 13%;
  width: 100%;
  height: 100%;
  background-image: url('/wp-content/themes/img/value-bg-2.webp');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.value-section .value-heading {
  position: relative;
  font-size: 4.5rem;
  margin-bottom: 3rem;
  color: var(--white-color);
  font-weight: 700;
}

.value-section .value-heading::before {
  content: 'VALUES';
  position: absolute;
  font-size: 17rem;
  text-transform: uppercase;
  color: #293072;
  font-weight: 900;
  z-index: -1;
  left: 50px;
  top: -111px;
  letter-spacing: 25px;
  opacity: .5;
}

.value-section .value-blk {
  padding: 80px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .2);
  transition: 0.3s;
  backdrop-filter: blur(35px);
  text-align: center;
}

.value-section .value-blk p {
  color: #EAEAEA;
  font-size: 1.08rem;
}

/* Footer Section */

.footer-section {
  position: relative;
  z-index: 1;
  padding: 4rem 0 2rem 0;
  background-color: var(--contrast-color);
}

.footer-section {
  padding: 4rem 0 2rem 0;
  background-color: var(--contrast-color);
}

.footer-section .logo-img img {
  width: 200px;
}

.footer-section .footer-social-links {
  margin: 2rem 0;
}

.footer-section .footer-social-links a {
  background-color: var(--background-color);
  padding: 12px;
  border-radius: 50%;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 8px;
  line-height: 15px;
}

.footer-section .contact-section {
  color: var(--second-default-color);
}

.footer-section .contact-section a {
  margin: 0 1.5rem;
  font-size: 1.1rem;
}

.footer-section .divider {
  margin: 2rem 0;
  height: 1px;
  width: 100%;
  background-image: linear-gradient(to left, transparent 0%, #616161 50%, transparent 100%);
}

.footer-section .privacy-policy a {
  text-decoration: underline;
}

@media screen and (max-width:567px) {

  .header {
    padding-bottom: 80px;
    border-bottom: 2px solid rgba(255, 255, 255, .5);
  }

  .main-btn {
    display: inline-block;
    padding: 0.8rem 4rem;
  }

  .main-btn.right-blue-bg {
    padding-left: 1.5rem;
  }

  .hero-section {
    padding: 0 0 3rem 0;
  }

  .hero-section::before {
    font-size: 94px;
    top: -20px;
    left: 50%;
    width: 100%;
    text-align: center;
  }

  .hero-section .hero-heading span {
    font-size: 3.5rem;
    text-align: center;
    line-height: 3.3rem;
  }

  .hero-section .hero-section-left-sec {
    padding: 1rem 3rem 0;
  }

  .hero-section .hero-section-right-sec {
    display: none;
  }

  .hero-section .hero-heading .bg-gradiant-text-1::before,
  .hero-section .hero-heading .bg-gradiant-text-2::before {
    width: 255px;
    height: 84px;
  }

  .project-number {
    left: 7%;
    top: 12%;
  }

  .project-number .project-complete {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  .project-slider {
    right: 6%;
    top: 3%;
  }

  .project-slider .owl-theme .owl-dots {
    margin-top: -20px !important;
  }

  .project-slider .owl-theme .owl-dots .owl-dot span {
    width: 4px;
    height: 4px;
    margin: 5px 3px;
  }

  .strip {
    position: unset;
    padding: .6rem 0;
    box-shadow: unset;
    width: 100%;
  }

  .blue-strip {
    transform: rotate(0deg);
  }

  .dark-blue-strip {
    transform: rotate(0deg);
  }

  .blue-strip span,
  .dark-blue-strip span {
    font-size: 1.5rem;
    line-height: 45px;
  }

  .blue-strip span img,
  .dark-blue-strip span img {
    padding-bottom: 5px;
  }

  .vision-section {
    padding: 2rem 0 2rem 0;
    background-color: var(--surface-color);
  }

  .vision-section .have-line-effect::after {
    right: 0;
    bottom: 0;
    top: unset;
    height: 2px;
    width: 100%;
    background-image: linear-gradient(to left, transparent 0%, #616161 50%, #616161 50%, transparent 100%);
  }

  .about-section {
    padding: 5rem 1rem;
  }

  .about-section::before {
    display: none;
  }

  .about-section::after {
    bottom: -60px;
    height: 4%;
    background-size: contain;
    z-index: -1;
  }

  .about-section .about-heading span {
    font-size: 4rem;
    line-height: 3.6rem;
  }

  .about-section .about-para .para {
    margin-right: 0;
    margin-top: 20px;
  }

  .about-section .blue-circle {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 25px;
    margin-bottom: 30px;
  }

  .service-section {
    padding: 5rem 0;
    text-align: center;
  }

  .service-section::before {
    display: none;
  }

  .service-section .service-heading {
    font-size: 3.3rem;
  }

  .service-section .service-btn {
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
  }

  .primary-btn {
    padding: 0.8rem 1rem;
  }

  .service-arrow {
    padding: 1.1rem;
  }

  .value-section .value-heading::before {
    display: none;
  }

  .value-section::before {
    left: 0;
    top: 29%;
  }

  .value-section::after {
    height: 10%;
  }

  .value-section .value-heading {
    font-size: 2rem;
    line-height: 2rem;
    margin-left: 20px;
    margin-right: 20px;
  }

  .value-section .value-blk {
    padding: 50px 15px;
  }

  .footer-section .contact-section a {
    display: block;
    margin-bottom: 13px;
    font-size: 1rem;
  }

  .footer-section .privacy-policy {
    display: flex;
    align-items: center;
  }

  .footer-section .privacy-policy a {
    text-decoration: underline;
    font-size: .9rem;
    margin: 0 1rem;
  }

  .footer-section .footer-social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 130px;
    margin: 30px auto;
  }

  .footer-section .footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* About Us Page */

.hero-section .hero-para {
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-weight: 400;
  color: var(--white-color);
}

.about-section-1 {
  padding: 5rem 0;
  background-color: var(--surface-color);
}

.about-section-1 .about-us-img {
  border-radius: 20px;
}

.big-text {
  font-size: 2rem;
}

.about-section-1 .para {
  color: #515A75;
  font-size: 1.3rem;
}

.about-section-2 {
  padding: 3rem 0;
  background-color: #e6e9ea;
  position: relative;
  z-index: 1;
}


.about-section-2 .value-heading {
  font-size: 5rem;
  font-weight: 700;
  background-image: linear-gradient(0deg, #1A237E 0%, #2979FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
}

.about-section-2 .para {
  color: #515A75;
  font-size: 1.9rem;
}

.about-section-2 .para span {
  font-style: italic;
  font-weight: 600;
}

.about-section-2 .value-blk {
  padding: 80px;
  border-radius: 50px;
  background: var(--surface-color);
  transition: 0.3s;
  text-align: center;
}

.about-section-2 .value-blk p {
  color: var(--button-color);
  font-size: 1.08rem;
}

.about-section-4 {
  padding: 5rem 0;
  background-color: var(--surface-color);
}


.about-section-4 .h2-heading {
  color: #515A75;
  font-size: 3rem;
}

.about-section-4 .para {
  color: #515A75;
  font-size: 1.3rem;
}

.about-section-4 img {
  border-radius: 20px;
}

@media (max-width: 768px) {

  .hero-section .hero-para {
    font-size: 1.6rem;
  }

  .about-section-2 .value-heading {
    font-size: 4rem;
  }

  .about-section-2 .para {
    font-size: 1.4rem;
  }

  .about-section-2 .value-blk {
    padding: 40px 20px;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio {
  background-color: #EFEFEF;
}

.portfolio .portfolio-heading {
  font-size: 9rem;
  font-weight: 600;
  color: #3E4259;
}

.portfolio .portfolio-sub-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #3E4259;
}

.portfolio .portfolio-filters-container {
  margin-bottom: 40px;
  padding: 0 225px;
}

.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.portfolio .portfolio-filters li {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 30px;
  color: var(--second-default-color);
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--default-color);
}

.portfolio .portfolio-filters li:hover {
  background-color: var(--default-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.portfolio .portfolio-filters li.filter-active {
  background-color: var(--default-color);
  color: var(--white-color);
}

.portfolio .portfolio-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-card:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio .portfolio-card .portfolio-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.portfolio .portfolio-card .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-in-out;
}

.portfolio .portfolio-card .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(41, 121, 255, 1), transparent);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.portfolio .portfolio-card .portfolio-actions {
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
}

.portfolio .portfolio-card:hover .portfolio-actions {
  transform: translateY(0);
  position: absolute;
  top: 7%;
  right: 6%;
}

.portfolio .portfolio-actions .blue-circle {
  display: block;
  width: 60px;
  height: 60px;
  background-color: var(--default-color);
  text-align: center;
  border-radius: 50%;
  line-height: 60px;
  transition: all 0.6s ease;
}

.portfolio .portfolio-card .portfolio-actions a:hover {
  background-color: var(--white-color);
  color: var(--default-color);
}

.portfolio .portfolio-card .portfolio-content {
  position: absolute;
  bottom: 6%;
  left: 6%;
  opacity: 0;
}

.portfolio .portfolio-card:hover .portfolio-content {
  opacity: 1;
}

.portfolio .portfolio-card .portfolio-content .category {
  font-size: 1.2rem;
  letter-spacing: 1px;
  font-weight: 500;
  line-height: 40px;
}

.portfolio .portfolio-card .portfolio-content p {
  color: var(--white-color);
  font-size: 1rem;
  margin: 0;
  line-height: 1.3;
}

.portfolio .approach-portfolio {
  padding-right: 150px;
}

.portfolio .approach-portfolio h2 {
  font-size: 3.4rem;
  line-height: 3.4rem;
  color: #515A75;
  margin-bottom: 20px;
}

.portfolio .approach-portfolio ul li {
  color: var(--paragraph-color);
}

.portfolio .approach-portfolio-img {
  border-radius: 20px;
  width: 75%;
}

@media (max-width: 768px) {

  .portfolio .portfolio-heading {
    font-size: 4rem;
  }

  .portfolio .portfolio-filters-container {
    padding: 0 5px;
  }

  .portfolio .approach-portfolio {
    padding-right: 0;
  }

  .portfolio .portfolio-filters li {
    font-size: 14px;
    padding: 6px 15px;
  }

  .portfolio .approach-portfolio-img {
    width: 100%;
  }

  .portfolio .portfolio-card .portfolio-content {
    padding: 0px;
  }

  .portfolio .portfolio-card .portfolio-content h3 {
    font-size: 18px;
  }

  .portfolio .portfolio-card .portfolio-content p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Website Ui Ux Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Comman Heading Section Css
--------------------------------------------------------------*/
.section {
  color: var(--default-color);
  background-color: var(--default-color);
  padding: 60px 0;
  scroll-margin-top: 112px;
  overflow: clip;
}

.web-section-head .web-section-heading {
  position: relative;
  font-size: 60px;
  line-height: 60px;
  padding-left: 15px;
}

.web-section-head .web-section-heading.fs-50 {
  font-size: 50px;
  line-height: 50px;
}

.web-section-head .web-section-heading:before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  height: calc(100% - 13px);
  width: 5px;
  background-color: var(--default-color);
  border-radius: 5px;
}

.web-section-head .web-section-heading.border-white:before {
  background-color: var(--white-color);
}

.bg-grey {
  background-color: var(--surface-color);
}

.bg-dark-blue {
  background-color: var(--second-default-color);
}

.h2-heading-center {
  font-size: 50px;
  line-height: 50px;
}

.degree-5 {
  transform: rotate(5deg);
}

.degree-minus-5 {
  transform: rotate(-5deg);
}

@media (max-width: 768px) {

  .web-section-head .web-section-heading {
    position: relative;
    font-size: 35px;
    line-height: 35px;
  }

  .web-section-head .web-section-heading:before {
    top: 3px;
    height: calc(100% - 5px);
  }

  .h2-heading-center {
    font-size: 35px;
    line-height: 35px;
  }

  .web-section-head .web-section-heading.fs-50 {
    font-size: 30px;
    line-height: 30px;
  }

}

@media (max-width: 567px) {
  .degree-5 {
    transform: rotate(0deg);
  }

  .degree-minus-5 {
    transform: rotate(0deg);
  }
}

/*--------------------------------------------------------------
# All Section Css
--------------------------------------------------------------*/

.website-hero-section {
  position: relative;
  min-height: 100vh;
  background: url('/wp-content/themes/img/web-design-bg.webp') center/cover no-repeat;
  overflow: hidden;
}

.counter-section {
  margin-top: 70px;
}

.counter-section .counter-blk {
  margin-right: 30px;
}

.counter-section .counter-blk .counts {
  display: inline-block;
  font-size: 40px;
  font-weight: 600;
  color: var(--white-color);
}

.counter-section .counter-blk span {
  font-size: 40px;
  color: var(--default-color);
  margin-left: 8px;
}

.counter-section .counter-blk .count-detail {
  color: var(--paragraph-color);
}

@media (max-width: 768px) {
  .website-hero-section {
    min-height: 65vh;
  }

  .counter-section .counter-blk {
    margin-right: 27px;
  }

  .counter-section .counter-blk .counts {
    font-size: 30px;
  }

  .counter-section .counter-blk span {
    font-size: 30px;
  }

  .counter-section .counter-blk .count-detail {
    font-size: 13px;
  }
}

@media (max-width:420px) {

  .website-hero-section.section {
    padding: 60px 0 0 0;
  }

  .website-hero-section {
    background: url('/wp-content/themes/img/web-design-mobile-bg.webp') center/cover no-repeat;
  }

  .counter-section .counter-blk {
    margin-right: 0px;
  }
}

.point-list .list-detail {
  position: relative;
  padding-left: 35px;
}

.point-list .list-detail:before {
  content: "\f00c";
  position: absolute;
  font-family: "FontAwesome";
  left: 0px;
  top: 9%;
  width: 25px;
  height: 25px;
  color: var(--white-color);
  background-color: var(--default-color);
  border-radius: 50%;
  font-size: 13px;
  text-align: center;
  line-height: 24px;
}

.point-list .list-detail h4 {
  font-size: 20px;
}

.point-list .list-detail p {
  font-size: 15px;
}

.video-section .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  cursor: pointer;
}

.video-wrapper {
  position: relative;
  margin: 0 auto;
  border-radius: 60px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 10px solid rgb(147 165 222);
  backdrop-filter: blur(35px);
}

@media (max-width:567px) {
  .video-wrapper {
    border-radius: 30px;
  }
}

.web-service-blk {
  height: 100%;
  background: #fff;
  border-radius: 20px;
}

.web-service-blk .blk-upper-sec {
  background-color: var(--default-color);
  padding: 30px;
  border-radius: 20px 20px 0 0;
}

.web-service-blk .blk-upper-sec h3 {
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: 500;
}

.web-service-blk .blk-lower-sec {
  background-color: var(--white-color);
  padding: 25px;
  border-radius: 0 0 20px 20px;
}

.pro-web-service {
  position: relative;
  padding: 50px 30px;
  border-radius: 20px;
}

.custom-badge {
  position: absolute;
  background-color: var(--background-color);
  text-align: center;
  width: 60px;
  height: 25px;
  line-height: 25px;
  left: -25px;
  top: 8px;
  color: #fff;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 500;
  font-size: 15px;
}

@media (max-width: 768px) {
  .web-service-blk .blk-upper-sec {
    padding: 30px 45px;
  }
}

@media (max-width: 567px) {
  .custom-badge {
    left: -10px;
  }
}

.cms-bg {
  position: absolute;
  left: 50px;
  top: -30px;
  width: 85%;
}

.ui-ux-bg {
  position: absolute;
  left: -60px;
  top: -36px;
  width: 85%;
}

.platform-img img {
  width: 120px;
}

.platform-blk {
  border: 10px solid rgb(147 165 222);
  backdrop-filter: blur(35px);
  border-radius: 30px;
  background-color: var(--white-color);
  overflow: hidden;
  text-align: center;
}

.platform-heading {
  font-size: 40px;
}

.platform-blk .platform-img {
  padding: 20px 30px;
}

.platform-blk .platform-text h3 {
  background-color: var(--second-default-color);
  text-align: center;
  font-size: 20px;
  padding: 13px 20px;
}

.quote-section-head {
  background-color: #2979FF;
  padding: 80px;
  border-radius: 20px;
}

@media (max-width: 567px) {
  .quote-section-head {
    padding: 30px;
  }

  .cms-bg,
  .ui-ux-bg {
    display: none;
  }
}

/* PPC Page CSS */

.text-justify {
  text-align: justify;
}

.ppc-main-heading {
  position: relative;
  font-size: 13rem;
  font-weight: 800;
  line-height: 0;
  padding-top: 45px;
}

.ppc-hero-advertise-img {
  left: -33%;
  top: 35%;
  width: 170px;
}

.ppc-hero-estimate-img {
  right: -25%;
  top: 25%;
  width: 170px;
}

.ppc-section-head .ppc-section-heading {
  font-size: 40px;
  line-height: 40px;
}

.ppc-section-head .heading-bottom-line {
  display: inline-block;
  width: 80px;
  height: 5px;
  background-color: var(--default-color);
  border-radius: 10px;
}

.paid-advertising-blk {
  background-color: var(--contrast-color);
  padding: 20px 60px;
  border-radius: 20px;
}

.paid-advertising-blk .advertising-link-blk {
  padding-left: 32px;
}

.paid-advertising-blk .advertising-link {
  color: var(--heading-color);
  text-decoration: underline;
}

.analytics-section {
  position: relative;
  height: 100%;
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
}

.analytics-section .analytics-section-heading {
  position: absolute;
  font-size: 35px;
  bottom: 5%;
  width: 100%;
}

.analytics-section .blue-circle {
  position: absolute;
  right: 0px;
  top: 0px;
  display: block;
  width: 80px;
  height: 80px;
  background-color: #b7d1ff;
  text-align: center;
  border-radius: 50%;
  line-height: 80px;
  transition: all 0.6s ease;
}

.certificate-section {
  background: url('/wp-content/themes/img/ads-bg.webp') center/cover no-repeat;
  padding: 200px 0;
}

.certificate-section .youtube-tilt {
  position: absolute;
  right: 20%;
  top: 5%;
}

.certificate-section .devicon-google {
  position: absolute;
  left: 30%;
  top: 3%;
}

.certificate-section .youtube-blur {
  position: absolute;
  left: 0%;
  top: 10%;
}

.certificate-section .google-ads-icon {
  position: absolute;
  left: 10%;
  bottom: 0%;
  transform: rotate(15deg);
}

.certificate-section .devicon-blur-google {
  position: absolute;
  left: 50%;
  bottom: 10%;
}

.certificate-blk {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(60px);
  padding: 30px;
  border-radius: 20px;
}

.certificate-blk .certificate-img {
  position: absolute;
  background-color: var(--contrast-color);
  border-radius: 50%;
  padding: 20px;
  width: 130px;
  height: 130px;
  line-height: 90px;
  top: -22%;
  left: 50%;
  transform: translate(-50%, 0px);
}

.certificate-img img {
  width: 60px;
}



.client-slider .owl-item .item {
  opacity: .2;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.client-slider .owl-item.center .item {
  opacity: 1;
  -webkit-transform: scale3d(1.0, 1.0, 1);
  transform: scale3d(1.0, 1.0, 1);
}

.client-blk {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
}

.client-blk p {
  color: var(--paragraph-color);
}

.client-details img {
  width: 70px !important;
  border-radius: 50%;
}

.client-rating img {
  width: 25px !important;
  display: inline-block !important;
}

.client-rating .bg-dark {
  padding: 5px 15px;
  border-radius: 10px;
}

.custom-carousel-dots .owl-theme .owl-dots {
  margin-top: 15px;
}

.custom-carousel-dots .owl-theme .owl-dots .owl-dot span {
  transition: all .2s ease;
  width: 8px;
  height: 8px;
}

.custom-carousel-dots .owl-theme .owl-dots .owl-dot.active span,
.custom-carousel-dots .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--default-color);
}

.custom-carousel-dots .owl-theme .owl-dots .owl-dot.active span {
  position: relative;
}

.custom-carousel-dots .owl-theme .owl-dots .owl-dot span:before {
  content: '';
  position: absolute;
  width: 0px;
  height: 0px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: all .3s ease;
}

.custom-carousel-dots .owl-theme .owl-dots .owl-dot.active span:before {
  width: 20px;
  height: 20px;
  border: 1px solid var(--default-color);
}

.client .owl-theme .owl-nav {
  position: absolute;
  bottom: -6%;
  left: 50%;
  transform: translate(-50%, 0px);
}

.client .owl-theme .owl-dots {
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translate(-50%, 0px);
}

.client .owl-theme button.owl-prev {
  position: absolute;
  right: 60px;
}

.client .owl-theme button.owl-next {
  position: absolute;
  left: 60px;
}

.client .owl-theme .owl-nav button i {
  background: #fff;
  border-radius: 50%;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.client .owl-theme .owl-nav button i::before {
  font-size: 17px;
  color: var(--default-color);
}

.client .owl-theme .owl-nav button:hover {
  background-color: unset;
  color: var(--default-color);
}

.faq-section .faq-heading {
  font-size: 5rem;
  font-weight: 600;
}

.faq-section .accordion-header .accordion-button {
  background-color: var(--default-color);
  color: var(--white-color);
  border-radius: 10px;
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
  box-shadow: none;
}

.faq-section .accordion-header .accordion-button.collapsed {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border-radius: 10px;
  border-bottom-left-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
  box-shadow: none;
}

.faq-section .accordion-body {
  border-radius: 10px;
}

.faq-section .accordion-header .accordion-button::after {
  display: none;
}

.faq-section .accordion-button .icon {
  transition: transform 0.3s;
}

.faq-section .accordion-button:not(.collapsed) .icon::before {
  content: "\f068";
}

.faq-section .accordion-button.collapsed .icon::before {
  content: "\2b";
}

@media(max-width: 768px) {
  .ppc-main-heading {
    font-size: 6rem;
    padding-top: 0px;
    padding-bottom: 60px;
    z-index: 0;
  }

  .ppc-hero-advertise-img {
    left: 0%;
  }

  .ppc-hero-estimate-img {
    right: 0%;
  }

  .paid-advertising-blk {
    padding: 20px 15px;
  }

  .analytics-section .blue-circle {
    top: 10px;
  }

  .client .owl-theme .owl-nav {
    bottom: -1%;
  }

  .client .owl-theme .owl-dots {
    bottom: -9%;
  }

}

@media(max-width: 567px) {

  .ppc-main-heading {
    font-size: 3rem;
    padding-bottom: 10px;
  }

  .ppc-section-head .ppc-section-heading {
    font-size: 32px;
    line-height: 37px;
  }

  .ppc-hero-advertise-img {
    top: 68%;
  }

  .ppc-hero-estimate-img {
    top: -3%;
  }

  .analytics-section .blue-circle {
    top: 0px;
  }

  .certificate-section {
    padding: 90px 0;
  }

  .certificate-section .youtube-tilt {
    right: 10%;
    top: 2%;
    width: 39px;
  }

  .certificate-section .youtube-blur {
    top: 3%;
    width: 40px;
  }

  .certificate-section .devicon-google {
    top: 0%;
    width: 40px;
  }

  .certificate-section .devicon-blur-google {
    left: 55%;
    bottom: 3%;
  }

  .faq-section .faq-heading {
    font-size: 2.5rem;
  }
}

/* Contact Us Page css */

.contact-us-hero-sec {
  padding: 5rem 0 9rem;
}

.contact-us-hero-sec::before {
  content: 'CONTACT';
}

.contact-us-hero-sec .hero-heading .bg-gradiant-text-1::before {
  top: 70px;
  width: 820px;
}

.contact-us-img img {
  margin-top: -120px;
}

.hire-us-title h2 {
  font-size: 8rem;
  font-weight: 600;
  color: #3E4259;
}

.hire-us-desc h3 {
  font-weight: 600;
  color: #3E4259;
}

.hire-us-section .crescent {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #2e80ff;
  position: absolute;
  left: 40px;
}

.hire-us-section .rotating-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--heading-color);
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--white-color);
}

.hire-us-section .center-dot {
  width: 30px;
  height: 30px;
  background: var(--background-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  z-index: 2;
  position: absolute;
  top: 37%;
  left: 66.5%;
  pointer-events: none;
}

.hire-us-section .text {
  font-weight: 500;
  letter-spacing: 2.08px;
  font-size: 24px;
  fill: #fff;
}

.hire-us-section .rotatingText {
  animation-name: rotate-circle;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes rotate-circle {
  to {
    transform: rotate(1turn);
  }
}

.form-section {
  padding: 0;
}

.form-control,
.form-select {
  background-color: #f2f2f2;
  border: none;
  border-radius: 10px;
  padding: 15px;
}

.form-control:focus,
.form-select:focus {
  outline: unset;
  box-shadow: unset;
  background-color: #f2f2f2;
}

.form-control::placeholder {
  color: #999;
}

.hire-us-section .info-section {
  background-color: #248eff;
  color: #fff;
  padding: 30px 45px;
  border-radius: 15px;
}

.hire-us-section .info-section h5 {
  margin-top: 20px;
  font-weight: 600;
  margin-bottom: 3px;
}

.hire-us-section .info-section p {
  font-weight: 300;

}

.hire-us-section .contact-social-icons a {
  background-color: var(--black-color);
  padding: 12px;
  border-radius: 50%;
  display: inline-block;
  width: 45px;
  height: 45px;
  margin: 0 10px 0 0;
  line-height: 15px;
  color: var(--background-color);
}

.hire-us-section .contact-social-icons a i {
  font-size: 22px;
}

.strip-section {
  background-color: var(--contrast-color);
}

.blue-strip.zero-degree {
  transform: rotate(0deg);
  color: #fff;
  top: 0;
  padding: 10px 0;
}

@media(max-width: 768px) {
  .hero-section::before {
    font-size: 150px;
    top: -29px;
  }

  .contact-us-hero-sec .hero-heading span {
    font-size: 6rem;
  }

  .contact-us-hero-sec .hero-heading .bg-gradiant-text-1::before {
    width: 85%;
  }

  .hire-us-title h2 {
    font-size: 5rem;
  }

  .hire-us-section .crescent {
    left: 60px;
  }

  .hire-us-section .center-dot {
    top: 30%;
    left: 68.5%;
  }

  .blue-strip span,
  .dark-blue-strip span {
    font-size: 1.5rem;
    margin: 0 2.5rem;
  }

  .blue-strip span img,
  .dark-blue-strip span img {
    padding-bottom: 5px;
  }
}

@media(max-width: 567px) {

  .hero-section::before {
    font-size: 70px;
    top: -13px;
  }

  .contact-us-hero-sec {
    padding: 2rem 0 4rem;
  }

  .contact-us-hero-sec .hero-heading span {
    font-size: 3rem;
  }

  .contact-us-hero-sec .hero-heading .bg-gradiant-text-1::before {
    top: 29px;
    width: 96%;
  }

  .contact-us-img img {
    margin-top: -60px;
  }

  .hire-us-title h2 {
    font-size: 3rem;
  }

  .hire-us-section .info-section {
    padding: 20px;
  }

  .hire-us-section .crescent {
    left: -24px;
  }

  .hire-us-section .center-dot {
    top: 30%;
    left: 41.5%;
  }
}