a {
  text-decoration: none;
}

:root {
  --main-color: #767676;
  --yellow-color: #f7ce00;
  --blue-color: #0058b5;
  --font-family: "Mulish", sans-serif;
  --font-family-poppins: "Poppins", sans-serif;
}

html {
  overflow-x: hidden;
  padding: 0px;
  margin: 0px;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0px;
  word-wrap: break-word;
  font-weight: 400;
  background-color: #fff;
  color: var(--main-color);
  overflow-x: hidden;
}

svg {
  fill: currentcolor;
  width: 15px;
  height: 15px;
}

img.svg {
  width: 15px;
  height: 15px;
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #6f6f6f;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #6f6f6f;
  opacity: 1;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #6f6f6f;
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #6f6f6f;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #6f6f6f;
}

::placeholder {
  /* Most modern browsers support this now. */
  color: #6f6f6f;
}

.container {
  max-width: 1170px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  padding: 0px 40px;
  position: relative;
  clear: both;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  font-family: var(--font-family-poppins);
  color: #000;
}

h1 {
  font-size: 45px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

.custom_all_wrap {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  position: relative;
}

.custom_all_wrap,
.custom_all_wrap * {
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
}

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  display: flex;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
  background-color: #000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

#preloader:after {
  left: auto;
  right: 0;
}

#preloader .loader_line {
  margin: auto;
  width: 1px;
  height: 250px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.loader_line:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff;
  -webkit-animation: lineheight 1000ms ease-in-out 0s forwards;
  -o-animation: lineheight 1000ms ease-in-out 0s forwards;
  animation: lineheight 1000ms ease-in-out 0s forwards;
}

.loader_line:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #999999;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-animation: lineround 1200ms linear 0s infinite;
  -o-animation: lineround 1200ms linear 0s infinite;
  animation: lineround 1200ms linear 0s infinite;
  animation-delay: 2000ms;
}

@keyframes lineheight {
  0% {
    height: 0%;
  }

  100% {
    height: 100%;
  }
}

@keyframes lineround {
  0% {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(200%);
    -ms-transform: translateY(200%);
    -o-transform: translateY(200%);
    transform: translateY(200%);
  }
}

/*hiding all*/
.preloaded .loader_line:after {
  opacity: 0;
}

.preloaded .loader_line {
  opacity: 0;
  height: 100% !important;
}

.preloaded:before,
.preloaded:after {
  -webkit-animation: preloadedzero 300ms ease-in-out 500ms forwards;
  -o-animation: preloadedzero 300ms ease-in-out 500ms forwards;
  animation: preloadedzero 300ms ease-in-out 500ms forwards;
}

@keyframes preloadedzero {
  0% {
    width: 50%;
  }

  100% {
    width: 0%;
  }
}

body::-webkit-scrollbar {
  width: 11px;
}

body {
  scrollbar-width: thin;
  scrollbar-color: var(--blue-color) #fff;
}

body:-webkit-scrollbar-track {
  background: #fff;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--blue-color);
  border-radius: 6px;
  border: 3px solid #fff;
}

.custom_section {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
}

/*---------------------------------------------------*/
/*	02) ARLO MOBILE MENU
  /*---------------------------------------------------*/

.custom_mobile_menu {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0px;
  left: 0px;
  display: none;
  z-index: 10;
}

.custom_mobile_menu .mobile_menu_inner {
  width: 100%;
  height: auto;
  float: left;
  clear: both;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 20px 10px 20px;
}

.custom_mobile_menu .mobile_in {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom_mobile_menu .mobile_in .logo img {
  max-width: 100px;
  max-height: 50px;
}

.custom_mobile_menu .logo {
  line-height: 1;
}

.custom_mobile_menu .logo[data-type="avatar"] .avatar {
  display: inline-block;
}

.custom_mobile_menu .logo[data-type="avatar"] .image {
  display: none;
}

.custom_mobile_menu .logo[data-type="avatar"] .text {
  display: none;
}

.custom_mobile_menu .logo[data-type="image"] .avatar {
  display: none;
}

.custom_mobile_menu .logo[data-type="image"] .image {
  display: inline-block;
}

.custom_mobile_menu .logo[data-type="image"] .text {
  display: none;
}

.custom_mobile_menu .logo[data-type="text"] .avatar {
  display: none;
}

.custom_mobile_menu .logo[data-type="text"] .image {
  display: none;
}

.custom_mobile_menu .logo[data-type="text"] .text {
  display: inline-block;
}

.custom_mobile_menu .avatar {
  width: 40px;
  height: 40px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 100%;
}

.custom_mobile_menu .text h3 {
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 25px;
}

.custom_mobile_menu .trigger {
  line-height: 0;
}

.custom_mobile_menu .dropdown {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  background-color: #fff;
  display: none;
}

.custom_mobile_menu .dropdown .dropdown_inner {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  padding: 25px 20px;
}

.custom_mobile_menu .dropdown .dropdown_inner ul {
  margin: 0px;
  list-style-type: none;
}

.custom_mobile_menu .dropdown .dropdown_inner ul li {
  margin: 0px;
  float: left;
  width: 100%;
}

.custom_mobile_menu .dropdown .dropdown_inner ul li a {
  text-decoration: none;
  color: #000;
  display: inline-block;
  padding: 0px 0px;
  font-weight: 500;
}

.custom_mobile_menu .hamburger-inner,
.custom_mobile_menu .hamburger-inner:after,
.custom_mobile_menu .hamburger-inner:before {
  width: 30px;
  height: 2px;
}

.custom_mobile_menu .hamburger-box {
  width: 30px;
}

.custom_mobile_menu .hamburger {
  padding: 0px;
}

/*---------------------------------------------------*/
/*	03) ARLO SIDEBAR
  /*---------------------------------------------------*/

.custom_sidebar {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100vh;
  width: 400px;
  background-color: var(--blue-color);
  z-index: 3;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

body.resize .custom_sidebar {
  transform: translateX(-100%);
}

.custom_sidebar .logo {
  width: 100%;
  height: 160px;
  background-color: var(--yellow-color);
  z-index: 1;
  text-align: center;
  position: relative;
}

.custom_sidebar .logo .avatar {
  position: absolute;
  left: 50%;
  top: 100%;
  margin-top: -80px;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 100%;
}

.custom_sidebar .logo .avatar:before {
  position: absolute;
  content: "";
  top: -10px;
  bottom: -10px;
  left: -10px;
  right: -10px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

.custom_sidebar .logo[data-type="avatar"] .avatar {
  display: inline-block;
}

.custom_sidebar .logo[data-type="avatar"] .image {
  display: none;
}

.custom_sidebar .logo[data-type="avatar"] .text {
  display: none;
}

.custom_sidebar .logo[data-type="image"] .avatar {
  display: none;
}

.custom_sidebar .logo[data-type="image"] .image {
  display: inline-block;
}

.custom_sidebar .logo[data-type="image"] .text {
  display: none;
}

.custom_sidebar .logo[data-type="text"] .avatar {
  display: none;
}

.custom_sidebar .logo[data-type="text"] .image {
  display: none;
}

.custom_sidebar .logo[data-type="text"] .text {
  display: inline-block;
}

.custom_sidebar .logo[data-type="text"] .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom_sidebar .logo[data-type="text"] .text h3 {
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 40px;
}

.custom_sidebar .logo[data-type="image"] .image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom_sidebar .logo[data-type="image"] .image img {
  max-width: 220px;
  max-height: 90px;
}

.custom_sidebar .copyright {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 40px;
}

.custom_sidebar .copyright p {
  color: #ddd;
  font-size: 15px;
}

.custom_sidebar .copyright a {
  color: #fff;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_sidebar .copyright a:hover {
  color: var(--yellow-color);
}

.custom_sidebar .menu {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  text-align: center;
}

.custom_sidebar .logo[data-type="avatar"] + .menu {
  padding-top: 80px;
}

.custom_sidebar .menu ul {
  margin: 0px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  list-style-type: none;
}

.custom_sidebar .menu ul li {
  margin: 0px 0px 10px 0px;
}

.custom_sidebar .menu ul li:last-child {
  margin-bottom: 0px;
}

.custom_sidebar .menu ul li a {
  color: #fff;
  font-family: var(--font-family-poppins);

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_sidebar .menu ul li.current a,
.custom_sidebar .menu ul li a:hover {
  color: var(--yellow-color);
}

.custom_resizer {
  position: absolute;
  bottom: 150px;
  right: 0px;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

body.resize .custom_resizer {
  right: -40px;
}

.custom_resizer a {
  display: inline-block;
  background-color: var(--yellow-color);
  width: 40px;
  height: 40px;
  position: relative;
}

.custom_resizer a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  font-size: 20px;
  margin-left: -2px;
}

body.resize .custom_resizer a i {
  transform: translate(-50%, -50%) rotate(0deg);
  margin-left: 2px;
}

/*---------------------------------------------------*/
/*	04) ARLO HERO
  /*---------------------------------------------------*/

.custom_mainpart {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  padding-left: 400px;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

body.resize .custom_mainpart {
  padding-left: 0px;
}

.custom_hero {
  width: 100%;
  height: 100vh;
  clear: both;
  float: left;
  position: relative;
  background-color: #f9f9f9;
}

.custom_hero .background {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.custom_hero .background .image {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.custom_hero .background .overlay {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: #000;
  opacity: 0.5;
  z-index: 1;
}

.custom_hero .content {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0px 20px;
  z-index: 2;
}

.custom_hero .content[data-color="light"] .name {
  color: #fff;
}

.custom_hero .content[data-color="light"] .animateText span {
  color: #ddd;
}

.custom_hero .content[data-color="light"] .custom_button a {
  color: #000;
  background-color: var(--yellow-color);
}

.custom_hero .content[data-color="light"] .custom_button a:after {
  background-color: #fff;
}

.custom_hero .content[data-color="light"] .custom_button a:before {
  background-color: #fff;
}

.custom_hero .name {
  font-weight: 800;
  font-size: 72px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.animateText {
  text-align: center;
  margin-bottom: 40px;
  width: 100% !important;
}

.animateText > span {
  width: 100% !important;
}

.animateText span {
  font-size: 18px;
  display: block;
  letter-spacing: 2px;
  width: 100%;
  text-transform: uppercase;
  font-family: var(--font-family-poppins);
}

.custom_button {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
}

.custom_button[data-position="left"] {
  text-align: left;
}

.custom_button[data-position="center"] {
  text-align: center;
}

.custom_button[data-position="right"] {
  text-align: right;
}

.custom_button a,
.custom_button button {
  display: inline-block;
  color: #fff;
  background-color: var(--blue-color);
  padding: 18px 60px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  font-size: 14px;
  border: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_button a:hover,
.custom_button button:hover {
  color: #000;
}

.custom_button a span,
.custom_button button span {
  position: relative;
  z-index: 2;
}

.custom_button a:before,
.custom_button button:before {
  position: absolute;
  content: "";
  width: 51%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-color: var(--yellow-color);
  transform: translateY(-100%);

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_button a:after,
.custom_button button:after {
  position: absolute;
  content: "";
  width: 51%;
  height: 100%;
  right: 0px;
  bottom: 0px;
  background-color: var(--yellow-color);
  transform: translateY(100%);

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_button a:hover:before,
.custom_button button:hover:before {
  transform: translateY(0);
}

.custom_button a:hover:after,
.custom_button button:hover:after {
  transform: translateY(0);
}

/*---------------------------------------------------*/
/*	05) ARLO ABOUT
  /*---------------------------------------------------*/

.custom_main_title {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
}

.custom_main_title span {
  text-transform: uppercase;
  color: var(--blue-color);
  font-weight: 500;
  font-family: var(--font-family-poppins);
  display: inline-block;
  margin-bottom: 7px;
}

.custom_main_title h3 {
  font-weight: 700;
}

.custom_about {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  padding: 150px 0px;
}

.custom_about .about_inner {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  display: flex;
  align-items: center;
}

.custom_about .left {
  width: 50%;
  padding-right: 50px;
  position: relative;
}

.custom_about .left .image {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Styled frame: blue border + yellow corner accents + subtle glow */
.custom_about .left .image::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px solid var(--blue-color);
  border-radius: 4px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

/* Yellow top-left corner accent */
.custom_about .left .image::after {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 56px;
  height: 56px;
  border-top: 4px solid var(--yellow-color);
  border-left: 4px solid var(--yellow-color);
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}

/* Bottom-right yellow corner accent via a wrapper span */
.custom_about .left .image .frame-corner-br {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 56px;
  height: 56px;
  border-bottom: 4px solid var(--yellow-color);
  border-right: 4px solid var(--yellow-color);
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}

.custom_about .left img {
  position: relative;
  opacity: 0;
  width: 100%;
  min-width: unset;
  aspect-ratio: 3 / 4;
  display: block;
}

.custom_about .left .main {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  border-radius: 3px;
  box-shadow:
    0 20px 60px rgba(0, 88, 181, 0.18),
    0 6px 20px rgba(0, 0, 0, 0.14);
}

.custom_about .right {
  width: 50%;
  padding-left: 50px;
}

.custom_about .text {
  width: 100%;
  float: left;
  padding: 30px 0px 40px 0px;
}

.custom_about .about_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 40px 0;
}

.custom_about .about_meta_item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-family-poppins);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-color);
  background: rgba(0, 88, 181, 0.07);
  border: 1px solid rgba(0, 88, 181, 0.18);
  border-radius: 30px;
  padding: 5px 14px;
  white-space: nowrap;
}

.custom_about .about_meta_item i {
  font-size: 13px;
  color: var(--blue-color);
}

.custom_about .about_meta_item.available {
  color: #1a9c4e;
  background: rgba(26, 156, 78, 0.08);
  border-color: rgba(26, 156, 78, 0.25);
}

.custom_about .about_meta_item.available i {
  color: #1a9c4e;
}

.custom_about .text p {
  margin-bottom: 14px;
  line-height: 1.8;
}

.custom_about .text p:last-child {
  margin-bottom: 0;
}

/* --- About: subtle section background tint --- */
.custom_about {
  background: linear-gradient(160deg, #f4f7fc 0%, #ffffff 55%);
}

/* --- About: experience badge (floats on the image, bottom-left) --- */
.about_exp_badge {
  position: absolute;
  bottom: 28px;
  left: -28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-color);
  color: #fff;
  padding: 14px 20px;
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(0, 88, 181, 0.32);
  z-index: 4;
  min-width: 148px;
}

.about_exp_badge .about_exp_number {
  font-size: 34px;
  font-weight: 800;
  font-family: var(--font-family-poppins);
  line-height: 1;
  color: var(--yellow-color);
}

.about_exp_badge .about_exp_label {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-family-poppins);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}

/* --- About: tech stack --- */
.about_stack {
  margin-bottom: 36px;
}

.about_stack_label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-family-poppins);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 10px;
}

.about_stack_pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.about_stack_pills span {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-family-poppins);
  letter-spacing: 0.04em;
  color: var(--blue-color);
  background: rgba(0, 88, 181, 0.06);
  border: 1px solid rgba(0, 88, 181, 0.16);
  border-radius: 4px;
  padding: 5px 12px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.about_stack_pills span:hover {
  background: var(--blue-color);
  color: #fff;
  border-color: var(--blue-color);
}

/*---------------------------------------------------*/
/*	06) ARLO COUNTER
  /*---------------------------------------------------*/

.custom_counter {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  position: relative;
}

.custom_counter .background {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.custom_counter .background .image {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.custom_counter .background .overlay {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: var(--blue-color);
  opacity: 0.95;
  z-index: 1;
}

.custom_counter .content {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  position: relative;
  z-index: 2;
  padding: 105px 0px 66px 0px;
}

.custom_counter .content ul {
  margin: 0px 0px 0px -40px;
  list-style-type: none;
}

.custom_counter .content ul li {
  margin: 0px 0px 40px 0px;
  float: left;
  width: 25%;
  padding-left: 40px;
}

.custom_counter .content ul li .list_inner {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  position: relative;
  text-align: center;
}

.custom_counter .content h3 {
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 5px;
}

.custom_counter .title {
  color: #ddd;
}

/*---------------------------------------------------*/
/*	07) ARLO SERVICES
  /*---------------------------------------------------*/

.custom_services {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  padding: 140px 0px 100px 0px;
}

.custom_services .service_list {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-top: 80px;
}

.custom_services .service_list .in {
  position: relative;
  z-index: 2;
}

.custom_services .service_list ul {
  margin: 0px 0px 0px -50px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}

.custom_services .service_list ul li {
  margin: 0px 0px 50px 0px;
  padding-left: 50px;
  width: 33.3333%;
  float: left;
}

.custom_services .service_list ul li .list_inner {
  width: 100%;
  height: 100%;
  clear: both;
  float: left;
  position: relative;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.12);
  padding: 70px 50px 60px 50px;
  overflow: hidden;
}

.custom_services .list_inner:before {
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: var(--blue-color);
  transform: translateX(-100%) translateY(-100%);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_services .list_inner:hover:before {
  transform: translateX(0) translateY(0);
}

.custom_services .service_list .icon {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background-color: var(--blue-color);
  margin-bottom: 27px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_services .service_list .svg {
  width: 40px;
  height: 40px;
  color: var(--yellow-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_services .list_inner:hover .svg {
  color: var(--blue-color);
}

.custom_services .list_inner:hover .icon {
  background-color: var(--yellow-color);
}

.custom_services .service_list .title {
  font-size: 22px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_services .service_list .text {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_services .list_inner:hover .title {
  color: #fff;
}

.custom_services .list_inner:hover .text {
  color: #fff;
}

.custom_full_link {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 5;
}

.custom_services .popup_service_image {
  opacity: 0;
  visibility: hidden;
  display: none;
  position: absolute;
  z-index: -111;
}

.custom_services .service_hidden_details {
  opacity: 0;
  visibility: hidden;
  display: none;
  position: absolute;
  z-index: -111;
}

.custom_modalbox .service_popup_informations {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
}

.custom_modalbox .service_popup_informations .image {
  width: 100%;
  float: left;
  position: relative;
  margin-bottom: 35px;
}

.custom_modalbox .service_popup_informations .image img {
  position: relative;
  min-width: 100%;
  opacity: 0;
}

.custom_modalbox .service_popup_informations .image .main {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.custom_modalbox .service_popup_informations .main_title {
  width: 100%;
  float: left;
  margin-bottom: 28px;
}

.custom_modalbox .service_popup_informations .main_title h3 {
  font-size: 25px;
}

.custom_modalbox .service_popup_informations .main_title span {
  font-weight: 500;
  font-size: 21px;
  color: #000;
  font-family: "Jost", sans-serif;
}

.custom_modalbox .service_popup_informations .main_title span span {
  font-size: 24px;
  color: #f75023;
}

.custom_modalbox .service_popup_informations .descriptions {
  width: 100%;
  float: left;
}

.custom_modalbox .service_popup_informations .descriptions p {
  margin-bottom: 15px;
}

.custom_modalbox .service_popup_informations .descriptions p:last-child {
  margin-bottom: 0px;
}

.custom_modalbox {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 100vh;
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_modalbox.opened {
  opacity: 1;
  visibility: visible;
}

.custom_modalbox .box_inner {
  position: absolute;
  top: 70px;
  bottom: 70px;
  width: 968px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  margin-top: -20px;
  transition-delay: 0.3s;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_modalbox.opened .box_inner {
  opacity: 1;
  visibility: visible;
  margin-top: 0px;
}

.custom_modalbox .close {
  position: fixed;
  left: 100%;
  top: 0px;
  margin-left: 30px;
  z-index: 10;
}

.custom_modalbox .close a {
  display: block;
  width: 40px;
  height: 40px;
  text-decoration: none;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
  position: relative;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_modalbox .close a:hover {
  border-radius: 100%;
}

.custom_modalbox .close a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom_modalbox .description_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  padding: 50px;
  overflow-y: scroll;
}

.custom_modalbox .description_wrap:before {
  position: fixed;
  content: "";
  top: 0px;
  left: 0px;
  right: 0px;
  height: 50px;
  background-color: #fff;
  z-index: 2;
}

.custom_modalbox .description_wrap:after {
  position: fixed;
  content: "";
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 50px;
  background-color: #fff;
  z-index: 2;
}

.custom_modalbox .description_wrap::-webkit-scrollbar {
  width: 11px;
}

.custom_modalbox .description_wrap {
  scrollbar-width: thin;
  scrollbar-color: #999 #fff;
}

.custom_modalbox .description_wrap:-webkit-scrollbar-track {
  background: #fff;
}

.custom_modalbox .description_wrap::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 10px;
  border: 3px solid #fff;
}

/*---------------------------------------------------*/
/*	08) ARLO SKILLS
  /*---------------------------------------------------*/

.custom_skills {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  background-color: #f9f9f9;
  padding: 140px 0px 130px 0px;
}

.custom_skills .skills_title {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-top: 72px;
  margin-bottom: 42px;
}

.custom_skills .skills_title h3 {
  font-size: 22px;
  font-weight: 600;
}

.custom_skills .inner {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  display: flex;
}

.custom_skills .left {
  width: 50%;
  padding-right: 50px;
}

.custom_skills .right {
  width: 50%;
  padding-left: 50px;
}

.custom_skills .list {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
}

.custom_skills .list ul {
  margin: 0px 0px 0px -20px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}

.custom_skills .list ul li {
  display: inline-block;
  margin: 0px 0px 20px 0px;
  padding-left: 20px;
  width: 50%;
}

.custom_skills .list ul li .list_inner {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  position: relative;
  padding: 20px 30px;
}

.custom_skills .list ul li span {
  font-weight: 500;
}

.custom_skills .left .list_inner {
  background-color: rgba(0, 88, 181, 0.1);
}

.custom_skills .right .list_inner {
  background-color: rgba(247, 206, 0, 0.1);
}

/*---------------------------------------------------*/
/*	09) ARLO PORTFOLIO
  /*---------------------------------------------------*/

.custom_portfolio {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  padding: 140px 0px 160px 0px;
}

.custom_portfolio .portfolio_filter {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-top: 70px;
}

.custom_portfolio .portfolio_filter ul {
  margin: 0px;
  list-style-type: none;
}

.custom_portfolio .portfolio_filter ul li {
  margin: 0px 25px 0px 0px;
  display: inline-block;
}

.custom_portfolio .portfolio_filter ul li:last-child {
  margin-right: 0px;
}

.custom_portfolio .portfolio_filter ul li a {
  color: #000;
  font-family: var(--font-family-poppins);

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_portfolio .portfolio_filter ul li a:hover,
.custom_portfolio .portfolio_filter ul li a.current {
  color: var(--blue-color);
}

.custom_portfolio .portfolio_list {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-top: 40px;
}

.custom_portfolio .portfolio_list ul {
  margin: 0px 0px 0px -50px;
  list-style-type: none;
}

.custom_portfolio .portfolio_list ul li {
  margin: 0px 0px 50px 0px;
  list-style-type: none;
  width: 33.3333%;
  float: left;
  padding-left: 50px;
}

.custom_portfolio .portfolio_list ul li .list_inner {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  position: relative;
}

.custom_portfolio .portfolio_list ul li .image {
  position: relative;
  overflow: hidden;
}

.custom_portfolio .portfolio_list ul li img {
  position: relative;
  opacity: 0;
  min-width: 100%;
}

.custom_portfolio .portfolio_list ul li .main {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_portfolio .portfolio_list .list_inner:hover .main {
  transform: scale(1.1) translateZ(0);
}

.custom_portfolio .portfolio_list .overlay {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: var(--blue-color);
  opacity: 0;
  visibility: hidden;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_portfolio .portfolio_list .list_inner:hover .overlay {
  opacity: 0.9;
  visibility: visible;
}

.custom_portfolio .portfolio_list .details {
  position: absolute;
  z-index: 2;
  bottom: 0px;
  left: 0px;
  padding: 25px;
}

.custom_portfolio .portfolio_list .details h3 {
  position: relative;
  color: #fff;
  font-size: 20px;
  transform: translateY(10px);
  opacity: 0;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_portfolio .portfolio_list .list_inner:hover .details h3 {
  transition-delay: 0.05s;
  opacity: 1;
  transform: translateY(0);
}

.custom_portfolio .portfolio_list .details span {
  color: #ddd;
  position: relative;
  transform: translateY(10px);
  opacity: 0;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.3;
}

.custom_portfolio .portfolio_list .list_inner:hover .details span {
  transition-delay: 0.1s;
  opacity: 1;
  transform: translateY(0);
}

.custom_portfolio .hidden_content {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: -11;
}

.custom_modalbox .popup_details {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
}

.custom_modalbox .popup_details .top_image {
  position: relative;
  overflow: hidden;
  margin-bottom: 35px;
}

.custom_modalbox .popup_details .top_image img {
  position: relative;
  min-width: 100%;
  opacity: 0;
}

.custom_modalbox .popup_details .top_image .main {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.custom_modalbox .portfolio_main_title {
  width: 100%;
  float: left;
  margin-bottom: 28px;
}

.custom_modalbox .portfolio_main_title span {
  display: inline-block;
  font-size: 16px;
}

.custom_modalbox .portfolio_main_title span a {
  text-decoration: none;
  color: #6f6b80;
}

.custom_modalbox .portfolio_main_title h3 {
  font-size: 25px;
  margin-bottom: 3px;
}

.custom_modalbox .main_details {
  width: 100%;
  height: auto;
  clear: both;
  display: flex;
  margin-bottom: 60px;
}

.custom_modalbox .main_details .textbox {
  width: 70%;
  padding-right: 40px;
}

.custom_modalbox .main_details .textbox p {
  margin-bottom: 15px;
}

.custom_modalbox .main_details .textbox p:last-child {
  margin-bottom: 0px;
}

.custom_modalbox .main_details .detailbox {
  width: 30%;
  padding-left: 40px;
}

.custom_modalbox .main_details .detailbox > ul {
  margin: 0px;
  list-style-type: none;
}

.custom_modalbox .main_details .detailbox > ul > li {
  margin: 0px 0px 10px 0px;
  width: 100%;
  float: left;
}

.custom_modalbox .main_details .detailbox > ul > li:last-child {
  margin-bottom: 0px;
}

.custom_modalbox .main_details .detailbox .first {
  font-weight: 600;
  display: block;
  color: #000;
  font-family: var(--font-family-poppins);
}

.custom_modalbox .main_details .detailbox span {
  font-family: var(--font-family-poppins);
}

.custom_modalbox .main_details .detailbox span a {
  text-decoration: none;
  color: #767676;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_modalbox .main_details .detailbox span a:hover {
  color: var(--blue-color);
}

.custom_modalbox .additional_images {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
}

.custom_modalbox .additional_images ul {
  margin: 0px 0px 0px -30px;
  list-style-type: none;
}

.custom_modalbox .additional_images ul li {
  margin: 0px 0px 30px 0px;
  float: left;
  width: 50%;
  padding-left: 30px;
}

.custom_modalbox .additional_images ul li:nth-child(3n-2) {
  width: 100%;
}

.custom_modalbox .additional_images ul li .list_inner {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  position: relative;
}

.custom_modalbox .additional_images ul li .my_image {
  position: relative;
}

.custom_modalbox .additional_images ul li .my_image img {
  opacity: 0;
  min-width: 100%;
}

.custom_modalbox .additional_images ul li .my_image .main {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/*---------------------------------------------------*/
/*	10) ARLO GET QUOTE
  /*---------------------------------------------------*/

.custom_get_quote {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  position: relative;
}

.custom_get_quote .background {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  border-radius: 12px;
}

.custom_get_quote .background .dots {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}

.custom_get_quote .background .overlay {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: var(--blue-color);
  opacity: 0.93;
  z-index: 1;
}

.custom_get_quote .play_button {
  position: absolute;
  z-index: 3;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.custom_get_quote .play_button a {
  display: inline-block;
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: var(--yellow-color);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_get_quote .play_button a:after {
  position: absolute;
  content: "";
  top: -13px;
  bottom: -13px;
  left: -13px;
  right: -13px;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.06);
  z-index: -1;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_get_quote .play_button a:hover:after {
  top: -20px;
  bottom: -20px;
  left: -20px;
  right: -20px;
}

.custom_get_quote .play_button a:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #000;
  margin-left: 3px;
}

.custom_get_quote .content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 90px 0px 190px 0px;
  width: 100%;
  max-width: 600px;
  margin: 0px auto;
  text-align: center;
}

.custom_get_quote .title {
  color: #fff;
  font-size: 25px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.line_effect {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  position: relative;
  font-family: var(--font-family-poppins);
}

.line_effect:after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  left: auto;
  right: 0;
  bottom: 3px;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: currentColor;
}

.line_effect:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}

/*---------------------------------------------------*/
/*	11) ARLO PARTNERS
  /*---------------------------------------------------*/

.custom_partners {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  position: relative;
  z-index: 2;
  margin-top: -146px;
  margin-bottom: 150px;
}

.custom_partners .partners_list {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  background-color: #fff;
  padding: 20px 0px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.2);
  min-height: 230px;
  display: flex;
  align-items: center;
}

.custom_partners .wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0px auto;
  text-align: center;
}

.custom_partners .partners_list ul {
  margin: 0px;
  list-style-type: none;
  display: flex;
  align-items: center;
}

.custom_partners .partners_list ul li {
  margin: 0px;
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_partners .partners_list ul li:hover {
  opacity: 1;
}

.custom_partners .wrapper p {
  font-size: 14px;
  margin-top: 15px;
  font-family: var(--blue-color);
}

.custom_partners .wrapper p.m-0 {
  margin-top: 0px;
}

.custom_partners .wrapper p a {
  color: var(--blue-color);
}

/* Owl Carousel Custom Navigation for Custom Partners Section */
.custom_partners .owl-carousel .owl-nav,
.testimonials_list .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.custom_partners .owl-carousel .owl-prev,
.custom_partners .owl-carousel .owl-next,
.testimonials_list .owl-carousel .owl-prev,
.testimonials_list .owl-carousel .owl-next {
  pointer-events: auto;
  width: 30px;
  height: 30px;
  background: #f7ce00 !important;
  color: #0058b5 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 10;
  margin: 0;
}

.testimonials_list .owl-carousel .owl-nav {
  width: auto;
  right: 50px;
  top: 73px;
}

.custom_partners .owl-carousel .owl-prev,
.testimonials_list .owl-carousel .owl-prev {
  left: -15px;
  position: relative;
  transform: rotate(180deg);
}

.custom_partners .owl-carousel .owl-next,
.testimonials_list .owl-carousel .owl-next {
  right: -15px;
  position: relative;
}

.testimonials_list .owl-carousel .owl-prev {
  left: -10px;
}

.testimonials_list .owl-carousel .owl-next {
  right: 0;
}

/* Hover Effects */
.custom_partners .owl-carousel .owl-prev:hover,
.custom_partners .owl-carousel .owl-next:hover,
.testimonials_list .owl-carousel .owl-prev:hover,
.testimonials_list .owl-carousel .owl-next:hover {
  background: #0058b5 !important;
  color: #f7ce00 !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Custom SVG Icons */
.custom_partners .owl-carousel .owl-prev:before,
.custom_partners .owl-carousel .owl-next:before,
.testimonials_list .owl-carousel .owl-prev:before,
.testimonials_list .owl-carousel .owl-next:before {
  content: "\eb50";
  display: block;
  font-size: 16px;
  font-family: "fontello";
  line-height: 1;
}

/* Active/Pressed State */
.custom_partners .owl-carousel .owl-prev:active,
.custom_partners .owl-carousel .owl-next:active,
.testimonials_list .owl-carousel .owl-prev:active,
.testimonials_list .owl-carousel .owl-next:active {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Disabled State */
.custom_partners .owl-carousel .owl-prev.disabled,
.custom_partners .owl-carousel .owl-next.disabled,
.testimonials_list .owl-carousel .owl-prev.disabled,
.testimonials_list .owl-carousel .owl-next.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* For smaller screens - adjust position */
@media (max-width: 768px) {
  .custom_partners .owl-carousel .owl-prev,
  .custom_partners .owl-carousel .owl-next,
  .testimonials_list .owl-carousel .owl-prev,
  .testimonials_list .owl-carousel .owl-next {
    width: 24px;
    height: 24px;
  }
}

/*---------------------------------------------------*/
/*	12) ARLO TESTIMONIALS
  /*---------------------------------------------------*/

.custom_testimonials {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-bottom: 150px;
}

.custom_testimonials .wrapper {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  display: flex;
}

.custom_testimonials .wrapper .left {
  width: 50%;
  padding-right: 50px;
  position: relative;
  z-index: 3;
}

.custom_testimonials .wrapper .left i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-left: -35px;
  color: var(--yellow-color);
  opacity: 0.15;
  font-size: 400px;
  width: auto;
  z-index: -1;
}

.custom_testimonials .wrapper .left .text {
  width: 100%;
  float: left;
  margin-top: 30px;
  margin-bottom: 40px;
}

.custom_testimonials .wrapper .right {
  width: 50%;
  padding-left: 50px;
}

.custom_testimonials .testimonials_list {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
}

.custom_testimonials .testimonials_list ul {
  margin: 0px;
  list-style-type: none;
}

.custom_testimonials .testimonials_list ul li {
  margin: 0px;
}

.custom_testimonials .testimonials_list ul li .list_inner {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  position: relative;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
  padding: 58px 50px 65px 50px;
}

.custom_testimonials .stars {
  width: 100%;
  float: left;
  margin-bottom: 18px;
}

.custom_testimonials .stars span {
  display: inline-block;
}

.custom_testimonials .stars i {
  font-size: 17px;
  color: var(--yellow-color);
}

.custom_testimonials [class^="icon-"]:before,
[class*=" icon-"]:before {
  width: auto !important;
  margin: 0px !important;
}

.custom_testimonials .text {
  width: 100%;
  float: left;
  margin-bottom: 30px;
}

.custom_testimonials .details {
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
}

.custom_testimonials .details .image {
  position: relative;
  width: 55px;
  height: 55px;
}

.custom_testimonials .details .main {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 100%;
}

.custom_testimonials .details .info {
  padding-left: 15px;
}

.custom_testimonials .details .info h3 {
  font-size: 20px;
}

.custom_testimonials .details .info span {
  font-size: 15px;
}

.custom_testimonials .owl-carousel .owl-stage-outer {
  overflow: visible;
}

.custom_testimonials .owl-item.active {
  opacity: 1;
}

.custom_testimonials .owl-item {
  opacity: 0;
}

/*---------------------------------------------------*/
/*	13) ARLO NEWS
  /*---------------------------------------------------*/

.custom_news {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  padding: 140px 0px 100px 0px;
  background-color: #f9f9f9;
}

.custom_news .news_list {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-top: 70px;
}

.custom_news .news_list ul {
  margin: 0px 0px 0px -50px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}

.custom_news .news_list ul li {
  margin: 0px 0px 50px 0px;
  padding-left: 50px;
  width: 33.3333%;
  float: left;
}

.custom_news .news_list ul li.blog-post {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(20px);
  margin: 0;
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease,
    transform 0.35s ease,
    margin 0.3s ease;
}

.custom_news .news_list ul li.blog-post.show {
  max-height: 100%;
  opacity: 1;
  transform: translateY(0);
  margin: 0 0 24px;
}

.custom_news .news_list ul li .list_inner {
  width: 100%;
  height: 100%;
  clear: both;
  float: left;
  position: relative;
  box-shadow: 0px 0px 30px rgb(0 0 0 / 12%);
  background-color: #fff;
}

.custom_news .news_list ul li .image {
  position: relative;
  overflow: hidden;
}

.custom_news .news_list ul li .image img {
  position: relative;
  opacity: 0;
  min-width: 100%;
  min-height: 280px;
}

.custom_news .news_list ul li .image .main {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_news .news_list ul li .image:hover .main {
  transform: scale(1.1) translateZ(0);
}

.custom_news .news_list .details {
  width: 100%;
  float: left;
  background-color: #fff;
  padding: 30px 30px 45px 30px;
}

.custom_news .news_list .meta {
  width: 100%;
  float: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.custom_news .news_list .meta p {
  font-size: 14px;
  font-family: var(--font-family-poppins);
}

.custom_news .news_list .meta a {
  color: var(--blue-color);
  font-weight: 500;
}

.custom_news .line_effect:after {
  bottom: 5px;
}

.custom_news .news_list .title {
  font-size: 20px;
}

.custom_news .news_list .title a {
  color: #000;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_news .news_list .title a:hover {
  color: var(--blue-color);
}

.line_effect_2 {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.5s;
}

.line_effect_2:hover {
  background-size: 100% 1px;
}

.custom_news .news_hidden_details {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: -11;
}

.custom_modalbox .news_popup_informations {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
}

.custom_modalbox .news_popup_informations .image {
  position: relative;
  margin-bottom: 34px;
}

.custom_modalbox .news_popup_informations .image img {
  position: relative;
  opacity: 0;
  min-width: 100%;
}

.custom_modalbox .news_popup_informations .image .main {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.custom_modalbox .news_popup_informations .details {
  width: 100%;
  float: left;
  margin-bottom: 29px;
}

.custom_modalbox .news_popup_informations .meta {
  width: 100%;
  float: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.custom_modalbox .news_popup_informations .meta p {
  font-family: var(--font-family-poppins);
}

.custom_modalbox .news_popup_informations .meta a {
  color: var(--blue-color);
  font-weight: 500;
}

.custom_modalbox .news_popup_informations .title h3 {
  font-size: 25px;
}

.custom_modalbox .news_popup_informations .text {
  width: 100%;
  float: left;
}

.custom_modalbox .news_popup_informations .text p {
  margin-bottom: 15px;
}

.custom_modalbox .news_popup_informations .text p:last-child {
  margin-bottom: 0px;
}

/*---------------------------------------------------*/
/*	14) ARLO FAQ
  /*---------------------------------------------------*/

.custom_faq {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  padding: 140px 0px 135px 0px;
}

.accordion_wrap {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  margin-top: 80px;
}

.accordion .accordion_content {
  position: relative;
  overflow: hidden;
  display: flex;
  padding: 18px 40px 20px 40px;
  align-items: center;
  background-color: var(--blue-color);
  cursor: pointer;
}

.accordion .accordion_content p {
  color: #ddd;
}

.accordion .accordion_content {
  display: none;
}

.accordion {
  margin-bottom: 15px;
}

.accordion.active .plus:after {
  transform: rotate(-90deg);
}

.accordion.active .plus:before {
  transform: rotate(180deg);
}

.accordion .plus {
  background-color: var(--yellow-color);
  display: block;
  width: 30px;
  height: 30px;
  right: 40px;
  position: absolute;
  top: 50%;
  margin-top: -15px;
  z-index: 1;
}

.accordion .plus:after {
  content: "";
  background-color: #000;
  position: absolute;
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -1px;
  display: block;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.accordion .plus:before {
  content: "";
  background-color: #000;
  position: absolute;
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -6px;
  display: block;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.accordion .accordion_header p {
  font-size: 22px;
  font-weight: 600;
  font-family: var(--font-family-poppins);
  color: #fff;
}

.accordion .accordion_header {
  position: relative;
  overflow: hidden;
  min-height: 70px;
  display: flex;
  padding: 28px 70px 30px 40px;
  align-items: center;
  background-color: var(--blue-color);
  margin-bottom: 15px;
  cursor: pointer;
}

/*---------------------------------------------------*/
/*	15) ARLO CONTACT
  /*---------------------------------------------------*/

.custom_contact {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  background-color: #f9f9f9;
  padding: 140px 0px 150px 0px;
}

.custom_contact .inner {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  display: flex;
  margin-top: 80px;
}

.custom_contact .left {
  width: 50%;
  padding-right: 50px;
}

.custom_contact .left > ul {
  margin: 0px;
  list-style-type: none;
}

.custom_contact .left > ul > li {
  margin: 0px 0px 20px 0px;
  list-style-type: none;
  width: 100%;
  float: left;
}

.custom_contact .left > ul > li:last-child {
  margin-bottom: 0px;
}

.custom_contact .left > ul > li .list_inner {
  width: 100%;
  float: left;
  position: relative;
  display: flex;
  align-items: center;
}

.custom_contact .left > ul > li .icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  background-color: var(--blue-color);
  border-radius: 100%;
  position: relative;
}

.custom_contact .left > ul > li .icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--yellow-color);
  font-size: 20px;
  margin: 0px;
}

.custom_contact .left > ul > li .info {
  padding-left: 20px;
  position: relative;
  top: -1px;
}

.custom_contact .left > ul > li .info span {
  font-family: var(--font-family-poppins);
}

.custom_contact .left > ul > li .info h3 {
  font-size: 20px;
}

.custom_contact .left > ul > li a {
  color: #000;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_contact .left > ul > li a:hover {
  color: var(--blue-color);
}

.custom_contact .left .social {
  margin: 0px;
  list-style-type: none;
}

.custom_contact .left .social li {
  margin: 0px;
  display: inline-block;
}

.custom_contact .left .social img {
  max-width: 36px;
}

.custom_contact .left .social li:last-child {
  margin-right: 0px;
}

.custom_contact .left .line_effect:after {
  bottom: -1px;
}

.custom_contact .right {
  width: 50%;
  padding-left: 50px;
}

.custom_contact .empty_notice {
  color: #f52225;
  margin-bottom: 7px;
  display: none;
  text-align: left;
  font-weight: 500;
}

.custom_contact .contact_error {
  color: #f52225;
  text-align: left;
  font-weight: 500;
}

.custom_contact .returnmessage {
  color: #3a00ff;
  margin-bottom: 7px;
  text-align: left;
  font-weight: 500;
}

.custom_contact .first {
  width: 100%;
  float: left;
}

.custom_contact .first ul {
  margin: 0px 0px 0px -20px;
  list-style-type: none;
}

.custom_contact .first ul li {
  margin: 0px 0px 16px 0px;
  width: 50%;
  float: left;
  padding-left: 20px;
}

.custom_contact .first ul li input {
  width: 100%;
  height: 40px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.custom_contact .first ul li input:focus {
  outline: none;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.custom_contact .last {
  width: 100%;
  float: left;
  margin-bottom: 11px;
}

.custom_contact .last textarea {
  width: 100%;
  height: 124px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.custom_contact .last textarea:focus {
  outline: none;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.custom_contact .custom_button button {
  display: block;
  text-align: center;
  width: 100%;
}

.custom_portfolio .portfolio_list > ul > li.portfolio-hidden {
  display: none !important;
}

.custom_portfolio .portfolio_list > ul > li:not(.portfolio-hidden) {
  animation: portfolioFilterIn 0.45s ease both;
}

@keyframes portfolioFilterIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact_form select {
  width: 100%;
  height: 40px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 10px 10px 0px;
  font: inherit;
  color: inherit;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: "Poppins";
  line-height: 1.6;
}

.contact_form select:focus {
  border-bottom-color: currentColor;
}

.contact_form select:invalid,
.contact_form select option[value=""] {
  color: #888;
}

/*---------------------------------------------------*/
/*	16) ARLO MAGIC CURSOR
  /*---------------------------------------------------*/

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  z-index: 100;
  background-color: var(--blue-color);
  -webkit-transition:
    width 0.3s ease-in-out,
    height 0.3s ease-in-out,
    margin 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
  transition:
    width 0.3s ease-in-out,
    height 0.3s ease-in-out,
    margin 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -40px;
  margin-top: -40px;
  width: 80px;
  height: 80px;
  background-color: var(--blue-color);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid var(--blue-color);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 100;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.custom_all_wrap[data-magic-cursor="hide"] .mouse-cursor {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: -1111;
}

/*---------------------------------------------------*/
/*	17) ARLO TOTOP
  /*---------------------------------------------------*/

.progressbar {
  position: fixed;
  height: 100px;
  width: 1px;
  bottom: 25px;
  right: -25px;
  background-color: rgba(0, 0, 0, 0.12);
  z-index: 10;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.progressbar.animate {
  right: 25px;
}

.progressbar .line {
  position: absolute;
  width: 1px;
  height: auto;
  background-color: var(--blue-color);
}

.progressbar .text {
  position: absolute;
  bottom: 100px;
  left: 0px;
  font-size: 13px;
  transform: rotateZ(90deg);
  text-transform: uppercase;
  transform-origin: left;
  white-space: nowrap;
}

.progressbar a {
  text-decoration: none;
  color: #000;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.progressbar a:hover {
  color: var(--blue-color);
}

/*---------------------------------------------------*/
/*	18) ARLO INTRO
  /*---------------------------------------------------*/

.custom_intro {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  position: relative;
}

.custom_intro .hero {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  background-color: var(--blue-color);
  padding: 200px 0px;
  position: relative;
  margin-bottom: 140px;
  text-align: center;
}

.custom_intro .hero img {
  margin-bottom: 30px;
}

.custom_intro .hero .text p {
  color: #fff;
  font-family: var(--font-family-poppins);
  font-size: 19px;
  letter-spacing: 0.5px;
}

.custom_intro .demos {
  width: 100%;
  float: left;
  text-align: center;
  margin-bottom: 94px;
}

.custom_intro .demos_title {
  width: 100%;
  float: left;
}

.custom_intro .demo_title h3 {
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 5px;
}

.custom_intro .demos .list {
  width: 100%;
  float: left;
  margin-top: 70px;
}

.custom_intro .demos .list ul {
  margin: 0px 0px 0px -50px;
  list-style-type: none;
}

.custom_intro .demos .list ul li {
  margin: 0px 0px 50px 0px;
  float: left;
  width: 50%;
  padding-left: 50px;
}

.custom_intro .demos .list ul li .list_inner {
  width: 100%;
  height: auto;
  clear: both;
  float: left;
  position: relative;
}

.custom_intro .demos .list ul li .image {
  margin-bottom: 30px;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.2);
}

.custom_intro .demos .list ul li h3 {
  font-size: 20px;
  font-weight: 700;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_intro .demos .list ul li .list_inner:hover h3 {
  color: var(--blue-color);
}

.custom_intro .copyright {
  width: 100%;
  float: left;
  background-color: var(--blue-color);
  padding: 80px 0px;
  text-align: center;
}

.custom_intro .copyright p {
  color: #ddd;
}

.custom_intro .copyright p a {
  color: #fff;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom_intro .copyright p a:hover {
  color: var(--yellow-color);
}

body.intro::-webkit-scrollbar {
  width: 0px;
}

/* Thank You page CSS */

/* Thank You Modal */
.thankyou-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.thankyou-modal.show {
  display: flex;
}

.thankyou-modal-content {
  background: var(--blue-color);
  color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: modalFadeUp 0.4s ease;
}

.thankyou-modal-content .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--yellow-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--blue-color);
}

.thankyou-modal-content h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #ffffff;
}

.thankyou-modal-content p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.thankyou-modal-content .btn {
  background: var(--yellow-color);
  color: var(--blue-color);
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
}

.thankyou-close {
  position: absolute;
  right: 16px;
  top: 14px;
  font-size: 24px;
  cursor: pointer;
  color: #ffffff;
}

.thankyou-close:hover {
  color: var(--yellow-color);
}

@keyframes modalFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*---------------------------------------------------*/
/*	18)  MEDIA QUERIES (FOR SMALL DEVICES)
  /*---------------------------------------------------*/

@media (max-width: 1600px) {
  body {
    font-size: 15px;
  }

  .container {
    max-width: 1020px;
  }

  .custom_modalbox .description_wrap {
    padding: 40px;
  }

  .custom_modalbox .description_wrap:before {
    height: 40px;
  }

  .custom_modalbox .description_wrap:after {
    height: 40px;
  }

  .custom_modalbox .box_inner {
    top: 50px;
    bottom: 50px;
    width: 800px;
  }

  .custom_modalbox .close {
    margin-left: 20px;
  }

  .custom_sidebar {
    width: 280px;
  }

  .custom_mainpart {
    padding-left: 280px;
  }

  .custom_sidebar .logo {
    height: 115px;
  }

  .custom_sidebar .logo .avatar {
    width: 100px;
    height: 100px;
    margin-top: -50px;
  }

  .custom_resizer {
    bottom: 80px;
  }

  .custom_resizer a {
    width: 30px;
    height: 30px;
  }

  .custom_resizer a i {
    font-size: 16px;
    margin-left: 0px;
  }

  body.resize .custom_resizer {
    right: -30px;
  }

  .custom_sidebar .menu ul li {
    margin-bottom: 6px;
  }

  .custom_sidebar .copyright p {
    font-size: 14px;
  }

  .custom_sidebar .copyright {
    bottom: 25px;
  }

  .custom_sidebar .logo[data-type="image"] .image img {
    max-height: 75px;
  }

  .custom_sidebar .logo[data-type="text"] .text h3 {
    font-size: 35px;
  }

  .custom_hero .name {
    font-size: 55px;
    margin-bottom: 12px;
  }

  .custom_button a {
    padding: 12px 50px;
  }

  .animateText {
    margin-bottom: 25px;
  }

  .custom_about .left {
    padding-right: 40px;
  }

  .custom_about .right {
    padding-left: 40px;
  }

  .about_exp_badge {
    left: -14px;
    padding: 12px 16px;
  }

  .custom_main_title h3 {
    font-size: 27px;
  }

  .custom_main_title span {
    margin-bottom: 4px;
  }

  .custom_services .service_list ul {
    margin-left: -35px;
  }

  .custom_services .service_list ul li {
    padding-left: 35px;
    margin-bottom: 35px;
  }

  .custom_services .service_list ul li .list_inner {
    padding: 60px 40px 50px 40px;
  }

  .custom_services .service_list .title {
    font-size: 20px;
  }

  .custom_services .service_list .icon {
    margin-bottom: 22px;
  }

  .custom_services .service_list .title {
    margin-bottom: 15px;
  }

  .custom_counter .content {
    padding: 90px 0px 51px 0px;
  }

  .custom_counter .content h3 {
    font-size: 36px;
  }

  .custom_skills .skills_title h3 {
    font-size: 20px;
  }

  .custom_portfolio .portfolio_list ul {
    margin-left: -35px;
  }

  .custom_portfolio .portfolio_list ul li {
    padding-left: 35px;
    margin-bottom: 35px;
  }

  .custom_portfolio .portfolio_list {
    margin-top: 25px;
  }

  .custom_portfolio .portfolio_list .details h3 {
    font-size: 18px;
  }

  .custom_news .news_list ul {
    margin-left: -35px;
  }

  .custom_news .news_list ul li {
    padding-left: 35px;
    margin-bottom: 35px;
  }

  .custom_news .news_list .title {
    font-size: 18px;
  }

  .custom_news .news_list .details {
    padding-bottom: 40px;
  }

  .accordion .accordion_header p {
    font-size: 20px;
  }

  .custom_contact .left > ul > li .info h3 {
    font-size: 18px;
  }

  .custom_contact .left {
    padding-right: 40px;
  }

  .custom_contact .right {
    padding-left: 40px;
  }

  .custom_intro .hero .text h3 {
    font-size: 55px;
    margin-bottom: 6px;
  }

  .custom_intro .hero .text p {
    font-size: 17px;
  }

  .custom_intro .hero {
    padding: 190px 0px;
  }

  .custom_intro .demo_title h3 {
    font-size: 30px;
  }

  .custom_intro .hero {
    margin-bottom: 100px;
  }

  .custom_intro .demos {
    margin-bottom: 54px;
  }

  .custom_intro .demos .list {
    margin-top: 60px;
  }

  .custom_intro .copyright {
    padding: 65px 0px;
  }
}

@media (max-width: 1200px) {
  .custom_modalbox .box_inner {
    width: 500px;
  }

  .custom_modalbox .description_wrap {
    padding: 35px;
  }

  .custom_modalbox .description_wrap:before {
    height: 35px;
  }

  .custom_modalbox .description_wrap:after {
    height: 35px;
  }

  .custom_modalbox .service_popup_informations .main_title h3 {
    font-size: 20px;
  }

  .custom_modalbox .service_popup_informations .image {
    margin-bottom: 30px;
  }

  .custom_modalbox .service_popup_informations .main_title {
    margin-bottom: 23px;
  }

  .custom_modalbox .portfolio_main_title h3 {
    font-size: 20px;
    margin-bottom: 0px;
  }

  .custom_modalbox .popup_details .top_image {
    margin-bottom: 30px;
  }

  .custom_modalbox .portfolio_main_title {
    margin-bottom: 23px;
  }

  .custom_modalbox .main_details {
    flex-direction: column;
  }

  .custom_modalbox .main_details .textbox {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 40px;
  }

  .custom_modalbox .main_details .detailbox {
    width: 100%;
    padding-left: 0px;
  }

  .custom_modalbox .additional_images ul {
    margin: 0px;
  }

  .custom_modalbox .additional_images ul li {
    width: 100% !important;
    padding-left: 0px;
    margin-bottom: 20px;
  }

  .custom_modalbox .news_popup_informations .title h3 {
    font-size: 20px;
  }

  .custom_modalbox .news_popup_informations .image {
    margin-bottom: 29px;
  }

  .custom_modalbox .news_popup_informations .details {
    margin-bottom: 24px;
  }

  .custom_modalbox .news_popup_informations .meta {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}

@media (max-width: 1040px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0px 20px;
  }

  .mouse-cursor {
    display: none;
  }

  #preloader {
    display: none;
  }

  .custom_mobile_menu {
    display: block;
  }

  .custom_sidebar {
    display: none;
  }

  .custom_mainpart {
    padding-left: 0px;
  }

  .custom_hero .name {
    font-size: 50px;
    margin-bottom: 15px;
  }

  .animateText span {
    font-size: 17px;
  }

  .custom_button a {
    padding: 13px 50px;
  }

  .animateText {
    margin-bottom: 30px;
  }

  .custom_about .about_inner {
    flex-direction: column;
    align-items: baseline;
  }

  .custom_about .left {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 50px;
  }

  .custom_about .right {
    width: 100%;
    padding-left: 0px;
  }

  /* badge moves closer to image edge on narrow viewports */
  .about_exp_badge {
    left: 0;
    bottom: -20px;
    border-radius: 0 6px 6px 0;
  }

  .custom_main_title h3 {
    font-size: 27px;
  }

  .custom_main_title span {
    margin-bottom: 4px;
  }

  .custom_counter .content ul li {
    width: 50%;
  }

  .custom_counter .content h3 {
    font-size: 35px;
  }

  .custom_services .service_list ul {
    margin-left: -20px;
  }

  .custom_services .service_list ul li {
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
  }

  .custom_services {
    padding-bottom: 120px;
  }

  .custom_services .service_list .title {
    font-size: 20px;
  }

  .custom_skills .inner {
    flex-direction: column;
  }

  .custom_skills .left {
    width: 100%;
    padding-right: 0px;
  }

  .custom_skills .right {
    width: 100%;
    padding-left: 0px;
  }

  .custom_skills .skills_title h3 {
    font-size: 20px;
  }

  .custom_portfolio .portfolio_list ul {
    margin-left: -20px;
  }

  .custom_portfolio .portfolio_list ul li {
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
  }

  .custom_portfolio {
    padding-bottom: 180px;
  }

  .custom_get_quote .title {
    font-size: 22px;
  }

  .custom_testimonials .wrapper {
    flex-direction: column;
  }

  .custom_testimonials .wrapper .left {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 50px;
  }

  .custom_testimonials .wrapper .left i {
    font-size: 230px;
  }

  .custom_testimonials .wrapper .right {
    width: 100%;
    padding-left: 0px;
  }

  .custom_testimonials .details .info h3 {
    font-size: 18px;
  }

  .custom_testimonials .testimonials_list ul li .list_inner {
    padding: 58px 30px 65px 30px;
  }

  .custom_news .news_list ul {
    margin-left: -20px;
  }

  .custom_news .news_list ul li {
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
  }

  .custom_news {
    padding-bottom: 120px;
  }

  .custom_news .news_list .title {
    font-size: 19px;
  }

  .accordion .accordion_header p {
    font-size: 20px;
  }

  .custom_contact .inner {
    flex-direction: column;
  }

  .custom_contact .left {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 50px;
  }

  .custom_contact .right {
    width: 100%;
    padding-left: 0px;
  }

  .custom_contact {
    padding-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .custom_hero .name {
    font-size: 38px;
    margin-bottom: 12px;
  }

  .animateText {
    margin-bottom: 25px;
  }

  .custom_main_title h3 {
    font-size: 23px;
  }

  .custom_counter .content ul {
    margin: 0px;
  }

  .custom_counter .content ul li {
    width: 100%;
    padding-left: 0px;
  }

  .custom_services .service_list ul {
    margin: 0px;
  }

  .custom_services .service_list ul li {
    width: 100%;
    padding-left: 0px;
  }

  .custom_services .service_list ul li .list_inner {
    padding: 60px 30px 50px 30px;
  }

  .custom_portfolio .portfolio_list ul {
    margin: 0px;
  }

  .custom_portfolio .portfolio_list ul li {
    width: 100%;
    padding-left: 0px;
  }

  .custom_news .news_list ul {
    margin: 0px;
  }

  .custom_news .news_list ul li {
    width: 100%;
    padding-left: 0px;
  }

  .accordion .accordion_header p {
    font-size: 18px;
  }

  .custom_contact .left > ul > li .info h3 {
    font-size: 18px;
  }

  .custom_contact .left > ul > li .list_inner {
    flex-direction: column;
    align-items: baseline;
  }

  .custom_contact .left > ul > li .info {
    top: 0px;
    padding-left: 0px;
  }

  .custom_contact .left > ul > li .icon {
    margin-bottom: 5px;
  }

  .custom_contact .first ul {
    margin: 0px;
  }

  .custom_contact .first ul li {
    width: 100%;
    padding-left: 0px;
  }

  .custom_modalbox .box_inner {
    width: 90%;
    max-height: 70vh;
    top: 140px;
    bottom: auto;
  }

  .custom_modalbox .portfolio_main_title h3 {
    font-size: 19px;
    margin-bottom: 2px;
  }

  .custom_modalbox .description_wrap {
    padding: 20px;
  }

  .custom_modalbox .description_wrap:before {
    height: 20px;
  }

  .custom_modalbox .description_wrap:after {
    height: 20px;
  }

  .custom_modalbox .close {
    left: auto;
    right: 0px;
    margin-left: 0px;
    top: -40px;
  }

  .custom_modalbox .close a {
    width: 30px;
    height: 30px;
  }

  .custom_skills .list ul {
    margin: 0px;
  }

  .custom_skills .list ul li {
    width: 100%;
    padding-left: 0px;
  }

  .custom_intro .hero {
    margin-bottom: 90px;
  }

  .custom_intro .hero .text h3 {
    font-size: 35px;
    margin-bottom: 3px;
    letter-spacing: 15px;
  }

  .custom_intro .hero .text p {
    font-size: 15px;
  }

  .custom_intro .hero {
    padding: 140px 0px;
  }

  .custom_intro .demo_title h3 {
    font-size: 25px;
  }

  .custom_intro .demos .list {
    margin-top: 50px;
  }

  .custom_intro .demos .list ul {
    margin: 0px;
  }

  .custom_intro .demos .list ul li {
    width: 100%;
    padding-left: 0px;
    margin-bottom: 40px;
  }

  .custom_intro .demos .list ul li h3 {
    font-size: 18px;
  }

  .custom_intro .demos .list ul li .image {
    margin-bottom: 25px;
  }

  .custom_intro .copyright {
    padding: 45px 0px;
  }

  .about_exp_badge {
    left: 0;
    bottom: -16px;
    padding: 10px 14px;
    min-width: 120px;
    border-radius: 0 6px 6px 0;
  }

  .about_exp_badge .about_exp_number {
    font-size: 26px;
  }

  .about_stack_pills span {
    font-size: 10px;
    padding: 4px 10px;
  }
}

/*---------------------------------------------------*/
/*  SCROLL-REVEAL ANIMATIONS
/*---------------------------------------------------*/

.sr-hidden {
  opacity: 0;
  will-change: opacity, transform;
}

/* Hero content entrance - opacity only, no transform
   (avoids overriding the centering translate(-50%,-50%)) */
.sr-hero-init {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.sr-hero-visible {
  opacity: 1;
}

/* Fade up (default) */
.sr-fade-up {
  transform: translateY(40px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Fade left (right-side elements slide in from right) */
.sr-fade-left {
  transform: translateX(20px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Fade right (left-side elements slide in from left) */
.sr-fade-right {
  transform: translateX(-20px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scale in (cards, images) */
.sr-scale {
  transform: scale(0.92);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Visible state - JS adds this once in viewport */
.sr-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Stagger delays for list children */
.sr-stagger > *:nth-child(1) {
  transition-delay: 0.05s;
}

.sr-stagger > *:nth-child(2) {
  transition-delay: 0.15s;
}

.sr-stagger > *:nth-child(3) {
  transition-delay: 0.25s;
}

.sr-stagger > *:nth-child(4) {
  transition-delay: 0.35s;
}

.sr-stagger > *:nth-child(5) {
  transition-delay: 0.45s;
}

.sr-stagger > *:nth-child(6) {
  transition-delay: 0.55s;
}

/* About image frame entrance animation */
@keyframes frameSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.custom_about .left.sr-visible .image {
  animation: frameSlideIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Yellow corner accent pulse on load */
@keyframes cornerPulse {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }

  60% {
    opacity: 1;
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.custom_about .left.sr-visible .image::after,
.custom_about .left.sr-visible .image .frame-corner-br {
  animation: cornerPulse 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}

/* Section title underline sweep */
@keyframes titleUnderline {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.custom_main_title.sr-visible span::after {
  animation: titleUnderline 0.5s ease 0.3s both;
}

/* Reduced motion - respect user preference */
@media (prefers-reduced-motion: reduce) {
  .sr-fade-up,
  .sr-fade-left,
  .sr-fade-right,
  .sr-scale {
    transition: opacity 0.3s ease !important;
    transform: none !important;
  }

  .custom_about .left.sr-visible .image,
  .custom_about .left.sr-visible .image::after,
  .custom_about .left.sr-visible .image .frame-corner-br {
    animation: none !important;
  }
}

/* =========================================================
   ABOUT / CONTACT INFO MODALS
   ========================================================= */

.portfolio_info_modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.portfolio_info_modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.portfolio_info_modal_backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 88, 181, 0.12), transparent 45%),
    rgba(8, 14, 28, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.portfolio_info_modal_dialog {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  max-height: min(760px, calc(100vh - 60px));
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0, 88, 181, 0.12);
  border-radius: 6px;
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.28),
    0 10px 35px rgba(0, 88, 181, 0.12);
  overflow: hidden;
  opacity: 0;
  transform: translateY(25px) scale(0.96);
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio_info_modal.is-open .portfolio_info_modal_dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.portfolio_info_modal_dialog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--yellow-color);
  z-index: 5;
}

.portfolio_info_modal_close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 88, 181, 0.15);
  border-radius: 50%;
  background: #fff;
  color: #222;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.portfolio_info_modal_close:hover {
  color: #fff;
  background: var(--blue-color);
  border-color: var(--blue-color);
  transform: rotate(90deg);
  box-shadow: 0 6px 18px rgba(0, 88, 181, 0.22);
}

.portfolio_info_modal_header {
  position: relative;
  padding: 38px 70px 25px 38px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: linear-gradient(
    135deg,
    rgba(0, 88, 181, 0.045),
    rgba(255, 255, 255, 0.95)
  );
}

.portfolio_info_modal_kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-color);
  font-family: var(--font-family-poppins);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio_info_modal_header h3 {
  margin: 0;
  color: #111;
  font-family: var(--font-family-poppins);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.25;
}

.portfolio_info_modal_body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 30px 38px 35px;
  color: #666;
  font-family: var(--font-family-poppins);
  font-size: 14px;
  line-height: 1.8;
  overscroll-behavior: contain;
}

.portfolio_info_modal_body::-webkit-scrollbar {
  width: 5px;
}

.portfolio_info_modal_body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.025);
}

.portfolio_info_modal_body::-webkit-scrollbar-thumb {
  background: rgba(0, 88, 181, 0.25);
  border-radius: 20px;
}

.portfolio_info_modal_body::-webkit-scrollbar-thumb:hover {
  background: var(--blue-color);
}

.portfolio_info_modal_body p {
  margin: 0 0 16px;
}

.portfolio_info_modal_body p:last-child {
  margin-bottom: 0;
}

.portfolio_info_modal_body strong {
  color: #111;
  font-weight: 700;
}

.about_modal_highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 25px 0 28px;
}

.about_modal_highlight {
  position: relative;
  padding: 17px 15px;
  background: rgba(0, 88, 181, 0.035);
  border: 1px solid rgba(0, 88, 181, 0.1);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.about_modal_highlight:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 88, 181, 0.25);
  box-shadow: 0 10px 25px rgba(0, 88, 181, 0.08);
}

.about_modal_highlight span {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-color);
  font-family: var(--font-family-poppins);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about_modal_highlight strong {
  display: block;
  color: #111;
  font-family: var(--font-family-poppins);
  font-size: 13px;
  line-height: 1.35;
}

.portfolio_info_modal_section_title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 15px;
}

.portfolio_info_modal_section_title::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--yellow-color);
}

.portfolio_info_modal_section_title span {
  color: #111;
  font-family: var(--font-family-poppins);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about_modal_stack {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.about_modal_stack span {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  color: var(--blue-color);
  background: rgba(0, 88, 181, 0.055);
  border: 1px solid rgba(0, 88, 181, 0.13);
  border-radius: 3px;
  font-family: var(--font-family-poppins);
  font-size: 10px;
  font-weight: 600;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.about_modal_stack span:hover {
  color: #fff;
  background: var(--blue-color);
  border-color: var(--blue-color);
}

.portfolio_info_modal_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 38px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  background: #fafbfd;
}

.contact_info_dialog {
  width: min(650px, 100%);
}

.contact_info_intro {
  margin-bottom: 25px;
}

.contact_info_intro p {
  margin: 0;
  color: #777;
  font-size: 14px;
  line-height: 1.75;
}

.contact_info_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 25px;
}

.contact_info_item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(0, 88, 181, 0.1);
  background: rgba(0, 88, 181, 0.025);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.contact_info_item:hover {
  transform: translateY(-3px);
  background: rgba(0, 88, 181, 0.055);
  border-color: rgba(0, 88, 181, 0.22);
}

.contact_info_icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-color);
  background: #fff;
  border: 1px solid rgba(0, 88, 181, 0.12);
  border-radius: 50%;
  font-size: 15px;
}

.contact_info_item small {
  display: block;
  margin-bottom: 2px;
  color: #999;
  font-family: var(--font-family-poppins);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact_info_item a,
.contact_info_item span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #222;
  font-family: var(--font-family-poppins);
  font-size: 12px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact_info_item a:hover {
  color: var(--blue-color);
}

.contact_info_cta {
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  text-align: center;
}

.contact_info_cta p {
  margin: 0 0 16px;
  color: #888;
  font-size: 12px;
}

.contact_info_cta .custom_button {
  float: none;
  width: auto;
  display: inline-block;
}

.contact_info_cta .custom_button a {
  padding: 13px 28px;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .portfolio_info_modal {
    padding: 15px;
  }

  .portfolio_info_modal_dialog {
    max-height: calc(100vh - 30px);
    border-radius: 5px;
  }

  .portfolio_info_modal_header {
    padding: 32px 55px 22px 24px;
  }

  .portfolio_info_modal_header h3 {
    font-size: 22px;
  }

  .portfolio_info_modal_body {
    padding: 24px 24px 28px;
    font-size: 13px;
    line-height: 1.7;
  }

  .portfolio_info_modal_footer {
    padding: 16px 24px;
  }

  .about_modal_highlights {
    grid-template-columns: 1fr;
  }

  .contact_info_list {
    grid-template-columns: 1fr;
  }

  .portfolio_info_modal_close {
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 480px) {
  .portfolio_info_modal {
    padding: 10px;
  }

  .portfolio_info_modal_dialog {
    max-height: calc(100vh - 20px);
  }

  .portfolio_info_modal_header {
    padding: 28px 50px 20px 20px;
  }

  .portfolio_info_modal_header h3 {
    font-size: 20px;
  }

  .portfolio_info_modal_body {
    padding: 20px;
  }

  .portfolio_info_modal_footer {
    flex-direction: column;
    align-items: stretch;
    padding: 15px 20px;
  }

  .portfolio_info_modal_footer .custom_button {
    width: 100%;
  }

  .portfolio_info_modal_footer .custom_button a {
    width: 100%;
    text-align: center;
  }

  .contact_info_item {
    padding: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio_info_modal,
  .portfolio_info_modal_dialog,
  .portfolio_info_modal_close,
  .about_modal_highlight,
  .contact_info_item {
    transition: none !important;
  }
}

/* =========================================================
   FINAL ABOUT SECTION + INFO MODAL POLISH
   These rules target the actual About/Modal markup.
   ========================================================= */

/* ---------- About actions ---------- */

.about_actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  width: 100%;
  margin-top: 8px;
}

.about_actions .custom_button {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
}

.about_actions .custom_button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  height: 48px;
  padding: 0 26px !important;
  margin: 0 !important;
  box-sizing: border-box;
}

.about_contact_link {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  outline: 0;
  background: transparent;
  cursor: pointer;

  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;

  min-height: 48px;
  padding: 0 0 5px;

  color: #111;
  font-family: var(--font-family-poppins);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.045em;
  text-transform: uppercase;

  transition: color 0.25s ease;
}

.about_contact_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 34px;
  height: 2px;

  background: var(--yellow-color);

  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.about_contact_link i {
  color: var(--blue-color);
  font-size: 13px;
  transition: transform 0.3s ease;
}

.about_contact_link:hover {
  color: var(--blue-color);
}

.about_contact_link:hover::after {
  width: 100%;
}

.about_contact_link:hover i {
  transform: translateX(4px);
}

/* ---------- Read More trigger ---------- */

.about_more_trigger {
  appearance: none;
  -webkit-appearance: none;

  display: flex;
  align-items: center;
  width: 100%;

  margin: -5px 0 30px;
  padding: 0;

  border: 0;
  outline: 0;
  background: transparent;

  color: #111;
  text-align: left;
  cursor: pointer;

  font-family: var(--font-family-poppins);
}

.about_more_icon {
  flex: 0 0 28px;

  width: 28px;
  height: 28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-right: 10px;

  border: 1px solid rgba(0, 88, 181, 0.2);
  border-radius: 50%;

  color: var(--blue-color);
  background: rgba(0, 88, 181, 0.045);

  font-size: 18px;
  font-weight: 400;
  line-height: 1;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.3s ease;
}

.about_more_text {
  flex: 0 0 auto;

  color: #222;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 28px;
  text-transform: uppercase;

  transition: color 0.25s ease;
}

.about_more_line {
  flex: 1 1 auto;

  height: 1px;

  margin-left: 14px;

  background: linear-gradient(
    90deg,
    rgba(0, 88, 181, 0.22),
    rgba(0, 88, 181, 0.03)
  );

  transform-origin: left center;

  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.about_more_trigger:hover .about_more_icon {
  color: #fff;
  background: var(--blue-color);
  border-color: var(--blue-color);
  transform: rotate(90deg);
}

.about_more_trigger:hover .about_more_text {
  color: var(--blue-color);
}

.about_more_trigger:hover .about_more_line {
  transform: scaleX(1.02);
  background: linear-gradient(90deg, var(--blue-color), rgba(0, 88, 181, 0.04));
}

/* ---------- Modal foundation ---------- */

.portfolio_info_modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 100000 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 100vw !important;
  height: 100dvh !important;

  padding: 24px !important;
  box-sizing: border-box !important;

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.portfolio_info_modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.portfolio_info_modal_backdrop {
  position: absolute !important;
  inset: 0 !important;

  background:
    radial-gradient(circle at 50% 10%, rgba(0, 88, 181, 0.16), transparent 42%),
    rgba(7, 13, 25, 0.8) !important;

  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);

  cursor: pointer;
}

/* ---------- Modal card ---------- */

.portfolio_info_modal_dialog {
  position: relative !important;
  z-index: 2 !important;

  width: min(720px, 100%) !important;
  max-width: 720px !important;
  max-height: min(720px, calc(100dvh - 48px)) !important;

  display: flex !important;
  flex-direction: column !important;

  margin: 0 !important;
  padding: 0 !important;

  background: #fff !important;

  border: 1px solid rgba(0, 88, 181, 0.12) !important;
  border-radius: 6px !important;

  overflow: hidden !important;

  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.3),
    0 12px 35px rgba(0, 88, 181, 0.12) !important;

  transform: translateY(18px) scale(0.975);
  opacity: 0;

  transition:
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
}

.portfolio_info_modal.is-open .portfolio_info_modal_dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.portfolio_info_modal_dialog::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  height: 3px;

  background: var(--yellow-color);

  z-index: 5;
}

/* ---------- Modal close ---------- */

.portfolio_info_modal_close {
  appearance: none;
  -webkit-appearance: none;

  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  z-index: 20 !important;

  width: 38px !important;
  height: 38px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin: 0 !important;
  padding: 0 !important;

  border: 1px solid rgba(0, 88, 181, 0.14) !important;
  border-radius: 50% !important;

  background: rgba(255, 255, 255, 0.96) !important;
  color: #222 !important;

  cursor: pointer;

  font-size: 17px !important;
  line-height: 1 !important;

  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.3s ease,
    box-shadow 0.25s ease;
}

.portfolio_info_modal_close:hover {
  color: #fff !important;
  background: var(--blue-color) !important;
  border-color: var(--blue-color) !important;

  transform: rotate(90deg);

  box-shadow: 0 8px 22px rgba(0, 88, 181, 0.22);
}

/* ---------- Actual modal header markup ---------- */

.portfolio_info_modal_header {
  position: relative !important;

  flex: 0 0 auto;

  margin: 0 !important;
  padding: 36px 72px 24px 36px !important;

  background: linear-gradient(
    135deg,
    rgba(0, 88, 181, 0.055),
    #fff 70%
  ) !important;

  border-bottom: 1px solid rgba(0, 0, 0, 0.07) !important;
}

.portfolio_info_modal_header > span:first-child {
  display: block;

  margin: 0 0 7px;

  color: var(--blue-color);

  font-family: var(--font-family-poppins);
  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.portfolio_info_modal_header h3 {
  margin: 0 !important;

  color: #111 !important;

  font-family: var(--font-family-poppins);
  font-size: 26px !important;
  font-weight: 700;
  line-height: 1.25;
}

.portfolio_info_modal_header p {
  margin: 9px 0 0 !important;

  color: #777;

  font-family: var(--font-family-poppins);
  font-size: 12px;
  line-height: 1.65;
}

/* ---------- Modal body ---------- */

.portfolio_info_modal_body {
  flex: 1 1 auto !important;

  min-height: 0 !important;

  margin: 0 !important;

  overflow-y: auto !important;

  padding: 28px 36px 30px !important;

  color: #666 !important;

  font-family: var(--font-family-poppins);
  font-size: 13px;
  line-height: 1.8;

  overscroll-behavior: contain;
}

.portfolio_info_modal_body p {
  margin: 0 0 15px !important;
}

.portfolio_info_modal_body p:last-child {
  margin-bottom: 0 !important;
}

.portfolio_info_modal_body strong {
  color: #111 !important;
  font-weight: 700;
}

/* ---------- About strengths: actual markup ---------- */

.about_modal_strengths {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 10px;

  margin: 25px 0 2px;
}

.about_modal_strength {
  display: flex;
  align-items: center;
  gap: 10px;

  min-width: 0;

  padding: 13px 12px;

  background: #fafbfd;

  border: 1px solid rgba(0, 88, 181, 0.11);
  border-radius: 3px;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.about_modal_strength:hover {
  transform: translateY(-3px);

  border-color: rgba(0, 88, 181, 0.23);

  box-shadow: 0 9px 22px rgba(0, 88, 181, 0.07);
}

.about_modal_strength > span {
  flex: 0 0 26px;

  width: 26px;
  height: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--blue-color);

  border: 1px solid rgba(0, 88, 181, 0.14);
  border-radius: 50%;

  font-family: var(--font-family-poppins);
  font-size: 9px;
  font-weight: 700;
}

.about_modal_strength > div {
  min-width: 0;
}

.about_modal_strength strong {
  display: block;

  color: #111;

  font-family: var(--font-family-poppins);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.about_modal_strength small {
  display: block;

  margin-top: 2px;

  color: #999;

  font-family: var(--font-family-poppins);
  font-size: 9px;
  line-height: 1.3;
}

/* ---------- Modal footer ---------- */

.portfolio_info_modal_footer {
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  margin: 0 !important;
  padding: 16px 36px !important;

  background: #fafbfd !important;

  border-top: 1px solid rgba(0, 0, 0, 0.07) !important;
}

.portfolio_info_modal_footer > span {
  color: #999;

  font-family: var(--font-family-poppins);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.portfolio_info_modal_footer > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--blue-color);

  font-family: var(--font-family-poppins);
  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.05em;
  text-transform: uppercase;

  white-space: nowrap;

  transition: color 0.25s ease;
}

.portfolio_info_modal_footer > a i {
  transition: transform 0.25s ease;
}

.portfolio_info_modal_footer > a:hover {
  color: #111;
}

.portfolio_info_modal_footer > a:hover i {
  transform: translateX(4px);
}

/* =========================================================
   CONTACT MODAL
   ========================================================= */

.contact_info_dialog {
  width: min(620px, 100%) !important;
  max-width: 620px !important;
}

.contact_modal_cards {
  display: grid;

  grid-template-columns: 1fr;

  gap: 10px;

  padding: 26px 36px 4px;
}

.contact_modal_card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 14px 44px 14px 14px;
  background: #fafbfd;
  border: 1px solid rgba(0, 88, 181, 0.1);
  border-radius: 3px;
  color: inherit;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

a.contact_modal_card:hover,
.contact_modal_card:hover {
  transform: translateX(3px);
  background: rgba(0, 88, 181, 0.035);
  border-color: rgba(0, 88, 181, 0.23);
  box-shadow: 0 8px 22px rgba(0, 88, 181, 0.07);
}

.contact_modal_card_icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--blue-color);

  background: #fff;

  border: 1px solid rgba(0, 88, 181, 0.12);
  border-radius: 50%;

  font-size: 14px;
}

.contact_modal_card > span:nth-child(2) {
  min-width: 0;
}

.contact_modal_card small {
  display: block;
  margin-bottom: 2px;
  color: #999;
  font-family: var(--font-family-poppins);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.contact_modal_card strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #222;
  font-family: var(--font-family-poppins);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.contact_modal_arrow {
  position: absolute;
  right: 17px;
  top: 50%;

  color: var(--blue-color);

  font-size: 13px;

  transform: translateY(-50%);

  transition: transform 0.25s ease;
}

.contact_modal_card:hover .contact_modal_arrow {
  transform: translate(4px, -50%);
}

.contact_modal_actions {
  display: flex;
  justify-content: center;

  padding: 22px 36px 30px;
}

.custom_contact_modal_cta {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 180px;
  height: 46px;

  padding: 0 25px;

  box-sizing: border-box;

  background: var(--blue-color);

  color: #fff !important;

  border: 1px solid var(--blue-color);

  font-family: var(--font-family-poppins);
  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.07em;
  text-transform: uppercase;

  overflow: hidden;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.custom_contact_modal_cta::before {
  content: "";

  position: absolute;
  inset: 0;

  background: var(--yellow-color);

  transform: translateY(100%);

  transition: transform 0.3s ease;
}

.custom_contact_modal_cta span,
.custom_contact_modal_cta i {
  position: relative;
  z-index: 2;
}

.custom_contact_modal_cta i {
  font-size: 12px;

  transition: transform 0.25s ease;
}

.custom_contact_modal_cta:hover {
  color: #111 !important;
  border-color: var(--yellow-color);
}

.custom_contact_modal_cta:hover::before {
  transform: translateY(0);
}

.custom_contact_modal_cta:hover i {
  transform: translateX(4px);
}

/* ---------- Mobile ---------- */

@media (max-width: 768px) {
  .about_actions {
    gap: 16px;
  }

  .about_actions .custom_button a {
    min-width: 140px;
    height: 46px;
  }

  .about_contact_link {
    min-height: 46px;
  }

  .portfolio_info_modal {
    padding: 12px !important;
  }

  .portfolio_info_modal_dialog {
    width: 100% !important;
    max-width: none !important;
    max-height: calc(100dvh - 24px) !important;
  }

  .portfolio_info_modal_header {
    padding: 31px 58px 21px 23px !important;
  }

  .portfolio_info_modal_header h3 {
    font-size: 21px !important;
  }

  .portfolio_info_modal_header p {
    font-size: 11px;
  }

  .portfolio_info_modal_body {
    padding: 22px 23px 25px !important;
    font-size: 12px;
    line-height: 1.75;
  }

  .about_modal_strengths {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .portfolio_info_modal_footer {
    padding: 14px 23px !important;
  }

  .contact_modal_cards {
    padding: 20px 23px 2px;
  }

  .contact_modal_actions {
    padding: 18px 23px 23px;
  }

  .portfolio_info_modal_close {
    top: 14px !important;
    right: 14px !important;
    width: 34px !important;
    height: 34px !important;
  }
}

@media (max-width: 480px) {
  .about_actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .about_actions .custom_button,
  .about_actions .custom_button a {
    width: 100% !important;
  }

  .about_contact_link {
    width: 100%;
    justify-content: center;
  }

  .about_more_trigger {
    margin-bottom: 25px;
  }

  .about_more_text {
    font-size: 10px;
  }

  .portfolio_info_modal {
    padding: 8px !important;
  }

  .portfolio_info_modal_dialog {
    max-height: calc(100dvh - 16px) !important;
  }

  .portfolio_info_modal_header {
    padding: 29px 51px 19px 19px !important;
  }

  .portfolio_info_modal_header h3 {
    font-size: 19px !important;
  }

  .portfolio_info_modal_body {
    padding: 19px !important;
  }

  .portfolio_info_modal_footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 19px !important;
  }

  .contact_modal_cards {
    padding: 18px 19px 0;
  }

  .contact_modal_actions {
    padding: 17px 19px 20px;
  }

  .custom_contact_modal_cta {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about_more_trigger *,
  .about_contact_link,
  .about_contact_link *,
  .portfolio_info_modal,
  .portfolio_info_modal_dialog,
  .portfolio_info_modal_close,
  .about_modal_strength,
  .contact_modal_card,
  .contact_modal_arrow,
  .custom_contact_modal_cta,
  .custom_contact_modal_cta::before,
  .custom_contact_modal_cta i {
    transition: none !important;
  }
}

.about_modal_section_title {
  position: relative;
  margin: 28px 0 12px;
  padding-left: 12px;
  color: #111;
  font-family: var(--font-family-poppins);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about_modal_section_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 3px;
  background: var(--yellow-color);
}

.about_modal_career {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.about_modal_career > div {
  min-width: 0;
  padding: 12px 13px;
  background: #fafbfd;
  border: 1px solid rgba(0, 88, 181, 0.09);
  border-radius: 3px;
}

.about_modal_career strong {
  display: block;
  color: #222;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.about_modal_career small {
  display: block;
  margin-top: 4px;
  color: #8d8d8d;
  font-size: 9px;
  line-height: 1.5;
}

.about_modal_stack {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.about_modal_stack span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  box-sizing: border-box;
  color: #555;
  background: #fff;
  border: 1px solid rgba(0, 88, 181, 0.12);
  border-radius: 2px;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  transition: all 0.22s ease;
}

.about_modal_stack span:hover {
  color: var(--blue-color);
  border-color: rgba(0, 88, 181, 0.28);
  background: rgba(0, 88, 181, 0.035);
  transform: translateY(-2px);
}

.contact_modal_social {
  padding: 7px 36px 0;
}

.contact_modal_social_heading {
  margin-bottom: 11px;
  color: #999;
  font-family: var(--font-family-poppins);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact_modal_social_links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.contact_modal_social_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 10px;
  box-sizing: border-box;
  color: #333 !important;
  background: #fafbfd;
  border: 1px solid rgba(0, 88, 181, 0.1);
  border-radius: 3px;
  font-family: var(--font-family-poppins);
  font-size: 10px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.contact_modal_social_link:hover {
  color: var(--blue-color) !important;
  border-color: rgba(0, 88, 181, 0.25);
  background: rgba(0, 88, 181, 0.035);
  transform: translateY(-2px);
}

.contact_modal_social_icon {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 25px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-color);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.linkedin_mark {
  font-size: 11px;
}

.github_mark svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.portfolio_mark {
  font-size: 14px;
}

@media (max-width: 768px) {
  .about_modal_career {
    grid-template-columns: 1fr;
  }

  .contact_modal_social {
    padding-left: 23px;
    padding-right: 23px;
  }
}

@media (max-width: 480px) {
  .contact_modal_social_links {
    grid-template-columns: 1fr;
  }

  .contact_modal_social_link {
    justify-content: flex-start;
    padding-left: 14px;
  }
}

.custom_hero .hero-bg-desktop {
  display: block;
}

.custom_hero .hero-bg-mobile {
  display: none;
}

.animateText {
  position: relative;
  min-height: 28px;
  overflow: hidden;
  margin-bottom: 40px;
}

.animateText > span {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100% !important;
  display: block !important;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    visibility 0.45s ease;
  white-space: nowrap;
}

.animateText > span.hero-text-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1040px) {
  body.mobile-nav-open {
    overflow: hidden;
  }

  .custom_mobile_menu {
    display: block;
    height: auto;
    z-index: 10;
  }

  .custom_mobile_menu .mobile_menu_inner {
    height: 68px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    background: var(--blue-color);
    border-bottom: 2px solid var(--yellow-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.14);
  }

  .custom_mobile_menu .mobile_in {
    height: 68px;
    float: none;
  }

  .custom_mobile_menu .logo {
    display: flex;
    align-items: center;
    max-width: calc(100% - 70px);
  }

  .custom_mobile_menu .logo[data-type="image"] .image {
    display: block;
    position: static;
    transform: none;
    line-height: 0;
  }

  .custom_mobile_menu .logo[data-type="image"] .image img {
    display: block;
    width: auto !important;
    max-width: 135px;
    max-height: 48px;
    filter: brightness(0) invert(1);
  }

  .custom_mobile_menu .trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .custom_mobile_menu .hamburger {
    width: 42px;
    height: 42px;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(247, 206, 0, 0.72);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition:
      background 0.25s ease,
      border-color 0.25s ease;
  }

  .custom_mobile_menu .hamburger:hover,
  .custom_mobile_menu .hamburger.is-active {
    background: var(--yellow-color);
    border-color: var(--yellow-color);
  }

  .custom_mobile_menu .hamburger-box {
    width: 22px;
    height: 16px;
  }

  .custom_mobile_menu .hamburger-inner,
  .custom_mobile_menu .hamburger-inner:before,
  .custom_mobile_menu .hamburger-inner:after {
    width: 22px !important;
    height: 2px !important;
    border-radius: 2px;
    background: #fff !important;
  }

  .custom_mobile_menu .hamburger.is-active .hamburger-inner,
  .custom_mobile_menu .hamburger.is-active .hamburger-inner:before,
  .custom_mobile_menu .hamburger.is-active .hamburger-inner:after {
    background: #111 !important;
  }

  .custom_mobile_menu .dropdown {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 68px);
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    padding: 0;
    background: linear-gradient(180deg, var(--blue-color) 0%, #004c9b 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  }

  .custom_mobile_menu .dropdown .dropdown_inner {
    padding: 28px 22px 40px;
  }

  .custom_mobile_menu .dropdown .dropdown_inner ul {
    padding: 0;
  }

  .custom_mobile_menu .dropdown .dropdown_inner ul li {
    position: relative;
    float: none;
    width: 100%;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .custom_mobile_menu .dropdown .dropdown_inner ul li a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 8px;
    color: #fff;
    font-family: var(--font-family-poppins);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
      color 0.25s ease,
      padding-left 0.25s ease;
  }

  .custom_mobile_menu .dropdown .dropdown_inner ul li a:before {
    content: "";
    width: 0;
    height: 2px;
    margin-right: 0;
    background: var(--yellow-color);
    transition:
      width 0.25s ease,
      margin-right 0.25s ease;
  }

  .custom_mobile_menu .dropdown .dropdown_inner ul li a:hover,
  .custom_mobile_menu .dropdown .dropdown_inner ul li a:focus {
    color: var(--yellow-color);
    padding-left: 4px;
  }

  .custom_mobile_menu .dropdown .dropdown_inner ul li a:hover:before,
  .custom_mobile_menu .dropdown .dropdown_inner ul li a:focus:before {
    width: 18px;
    margin-right: 10px;
  }

  .custom_mainpart {
    padding-top: 68px;
  }

  .custom_hero {
    height: calc(100dvh - 68px);
    min-height: 560px;
  }

  .custom_hero .hero-bg-desktop {
    display: none !important;
  }

  .custom_hero .hero-bg-mobile {
    display: block !important;
  }

  .custom_hero .background .image {
    background-position: center center;
  }

  .custom_hero .content {
    padding: 0 18px;
    top: 50%;
  }

  .custom_hero .name {
    max-width: 100%;
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
  }

  .animateText {
    min-height: 24px;
    margin: 0 auto 28px;
  }

  .animateText span {
    letter-spacing: 1.2px;
    padding: 0 8px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: visible;
  }

  .custom_hero .custom_button a {
    padding: 12px 30px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .custom_hero .content[data-color="light"] .animateText span {
    color: #f7ce00;
  }

  .custom_hero .content[data-color="light"] .animateText:after {
    content: "";
    width: 250px;
    height: 30px;
    position: absolute;
    background: #0058b5;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    top: 0;
    z-index: -1;
    opacity: 0.6;
  }

  .custom_about {
    padding: 72px 0 62px !important;
  }

  .custom_about .about_meta {
    margin-bottom: 24px;
    gap: 7px;
  }

  .custom_about .about_meta_item {
    font-size: 9px;
    padding: 5px 10px;
  }

  .custom_about .left {
    margin-bottom: 38px !important;
  }

  .custom_about .left .image:before {
    inset: -6px;
  }

  .custom_about .left .image:after {
    top: -10px;
    left: -10px;
    width: 38px;
    height: 38px;
    border-width: 3px;
  }

  .custom_about .left .image .frame-corner-br {
    right: -10px;
    bottom: -10px;
    width: 38px;
    height: 38px;
    border-width: 3px;
  }

  .about_exp_badge {
    bottom: -12px !important;
    left: 0 !important;
    min-width: 118px !important;
    padding: 9px 12px !important;
  }

  .about_exp_badge .about_exp_number {
    font-size: 25px !important;
  }

  .about_image_hint {
    display: none;
  }

  .custom_about .right {
    padding-left: 0;
  }

  .custom_about .text {
    padding: 18px 0 25px;
  }

  .custom_about .text p {
    line-height: 1.7;
    margin-bottom: 10px;
  }

  .about_stack {
    margin-bottom: 25px;
  }

  .about_stack_pills {
    gap: 5px;
  }

  .about_stack_pills span {
    font-size: 9px !important;
    padding: 4px 8px !important;
  }

  .custom_counter .content {
    padding: 58px 0 28px;
  }

  .custom_counter .content ul li {
    margin-bottom: 28px;
  }

  .custom_counter .content ul li:last-child {
    margin-bottom: 0;
  }

  .custom_counter .content h3 {
    font-size: 30px;
    margin-bottom: 2px;
  }

  .custom_counter .title {
    font-size: 12px;
    line-height: 1.4;
  }

  .custom_services {
    padding: 72px 0 58px !important;
  }

  .custom_services .service_list {
    margin-top: 38px;
  }

  .custom_services .service_list ul li {
    margin-bottom: 16px;
  }

  .custom_services .service_list ul li .list_inner {
    padding: 34px 22px 30px;
  }

  .custom_services .service_list .icon {
    margin-bottom: 16px;
  }

  .custom_services .service_list .title {
    margin-bottom: 9px;
  }

  .custom_portfolio {
    padding: 72px 0 68px !important;
  }

  .custom_portfolio .portfolio_filter {
    margin-top: 35px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .custom_portfolio .portfolio_filter::-webkit-scrollbar {
    display: none;
  }

  .custom_portfolio .portfolio_filter ul {
    display: inline-flex;
    gap: 20px;
  }

  .custom_portfolio .portfolio_filter ul li {
    margin: 0 !important;
    flex: 0 0 auto;
  }

  .custom_portfolio .portfolio_filter ul li a {
    font-size: 11px;
  }

  .custom_portfolio .portfolio_list {
    margin-top: 28px;
  }

  .custom_portfolio .portfolio_list ul li {
    margin-bottom: 24px;
  }

  .custom_skills {
    padding: 72px 0 64px !important;
  }

  .custom_skills .skills_title {
    margin-top: 38px;
    margin-bottom: 24px;
  }

  .custom_skills .list ul li {
    margin-bottom: 10px;
  }

  .custom_skills .list ul li .list_inner {
    padding: 14px 18px;
  }

  .custom_testimonials {
    padding-top: 72px !important;
    margin-bottom: 0px;
  }

  .custom_partners {
    margin-bottom: 0px;
  }

  .custom_contact .inner {
    margin-top: 40px;
  }

  .custom_testimonials .wrapper .left {
    margin-bottom: 28px;
  }

  .custom_news {
    padding-top: 72px !important;
    padding-bottom: 64px !important;
  }

  .custom_news .news_list {
    margin-top: 35px;
  }

  .custom_news .news_list ul li {
    margin-bottom: 24px;
  }

  .custom_faq {
    padding: 72px 0 62px !important;
  }

  .accordion_wrap {
    margin-top: 38px;
  }

  .custom_contact {
    padding-top: 72px !important;
    padding-bottom: 58px !important;
  }

  .custom_contact .left {
    margin-bottom: 30px !important;
  }

  .custom_get_quote {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}

@media (max-width: 480px) {
  .custom_mobile_menu .mobile_menu_inner,
  .custom_mobile_menu .mobile_in {
    height: 62px;
  }

  .custom_mobile_menu .mobile_menu_inner {
    padding: 0 14px;
  }

  .custom_mobile_menu .logo[data-type="image"] .image img {
    max-width: 118px;
    max-height: 42px;
  }

  .custom_mobile_menu .trigger {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .custom_mobile_menu .hamburger {
    width: 38px;
    height: 38px;
  }

  .custom_mobile_menu .dropdown {
    top: 62px;
    height: calc(100dvh - 62px);
    max-height: calc(100dvh - 62px);
  }

  .custom_mobile_menu .dropdown .dropdown_inner {
    padding: 18px 18px 30px;
  }

  .custom_mobile_menu .dropdown .dropdown_inner ul li a {
    min-height: 54px;
    font-size: 12px;
  }

  .custom_mainpart {
    padding-top: 62px;
  }

  .custom_hero {
    height: calc(100dvh - 62px);
    min-height: 520px;
  }

  .custom_hero .content {
    padding: 0 14px;
  }

  .custom_hero .name {
    font-size: clamp(27px, 10vw, 35px);
  }

  .animateText {
    min-height: 23px;
    margin-bottom: 25px;
    height: 30px;
  }

  .custom_hero .custom_button a {
    padding: 11px 25px;
    font-size: 11px;
  }

  .custom_main_title span {
    font-size: 10px;
  }

  .custom_main_title h3 {
    font-size: 21px !important;
  }

  .custom_about {
    padding: 62px 0 52px !important;
  }

  .custom_services,
  .custom_portfolio,
  .custom_skills,
  .custom_news,
  .custom_faq,
  .custom_contact {
    padding-top: 62px !important;
    padding-bottom: 52px !important;
  }

  .custom_counter .content {
    padding: 48px 0 24px;
  }

  .custom_counter .content h3 {
    font-size: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .animateText > span {
    transition: none !important;
  }
}

.hamburger--slider .hamburger-inner:after {
  top: 15px;
}

.hamburger--slider .hamburger-inner:before {
  top: 7px;
}

.hamburger--slider.is-active .hamburger-inner:after {
  transform: translate3d(0, -15px, 0) rotate(-90deg);
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}