* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --primary-font-family: "Titillium Web";
  --primary-color: #f4c452;
  --secondary-color: #191919;
  --tertiary-color: #101820;
  --white-color: #fff;
  --black-color: #000;
  --transition: all ease-in-out 320ms;
}

body {
  font-family: var(--primary-font-family);
}

ul,
ol {
  list-style: none;
  padding-left: 0;
}

a {
  text-decoration: none;
}

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

video {
  width: 100%;
}

.heading-sec {
  font-size: 30px;
  font-weight: 700;
}

.max-char {
  max-width: 13ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media all and (min-width: 575px) {
}

@media all and (min-width: 760px) {
}

@media all and (min-width: 992px) {
}

@media all and (min-width: 1200px) {
}

@media all and (min-width: 1400px) {
}
@media all and (min-width: 1600px) {
}

/*========================================================
================= Header Section Style ===================
========================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--white-color);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.home-header {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.home-header.scrolled {
  background-color: var(--white-color);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.brand-logo {
  height: 45px;
}

.nav-menu {
  position: fixed;
  right: -100%;
  top: 0;
  background-color: var(--white-color);
  width: 84%;
  height: 100%;
  transition: 750ms;
  z-index: 10;
  padding-left: 20px;
  padding-bottom: 30px;
}

.nav-menu.active {
  right: 0;
  overflow: auto;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.32);
  opacity: 0;
  transition: opacity 750ms ease;
  z-index: 9;
  pointer-events: none;
}

.nav-menu.active + .overlay {
  opacity: 1;
  pointer-events: auto;
}
.nav-active {
  overflow: hidden;
}
.nav-item {
  position: relative;
}

.nav-item:nth-child(1) {
  padding-top: 60px;
}

.nav-link {
  font-size: 20px;
  font-weight: normal;
  padding: 12px 0;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active,
.link.link-main.active {
  color: var(--primary-color);
}

.nav-link:active {
  font-weight: 700;
}

.nav-menu li.services-dropdown {
  transition: var(--transition);

  display: block;
}

.dropdown-container {
  display: none;
  position: relative;
}

.dropdown-container li a {
  width: 250px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background-color: #f2f6f6;
  padding: 17px 17px 17px 22px;
  margin-bottom: 12px;
  transition: var(--transition);
}

.dropdown-container li a:hover {
  background-color: var(--primary-color);
}

.dropdown-container li a:hover span {
  color: var(--white-color);
}

.dropdown-container li span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  padding: 0;
  transition: var(--transition);
}

.dropdown-container li img {
  width: auto;
}

.dropdown-menu-container p {
  color: #000;
  line-height: 1.3;
  margin-bottom: 0;
  margin-top: 10px;
}

.dropdown-link {
  width: 100%;
}

.nav-item:hover .dropdown-container {
  display: block;
  padding: 25px 0;
}

.hamburger {
  cursor: pointer;
  z-index: 100;
}

.bar {
  display: block;
  background-color: var(--black-color);
  width: 27px;
  height: 2.5px;
  margin: 5px auto;
  transition: all 300ms ease-in-out;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active {
  position: fixed;
  top: 18px;
  right: 20px;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: #707070;
  height: 2px;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: #707070;
  height: 2px;
}

@media all and (min-width: 375px) {
  .dropdown-container li a {
    width: 270px;
  }
}

@media all and (min-width: 575px) {
  .dropdown-menu li {
    width: 320px;
  }

  .nav-bar {
    padding: 10px 25px;
  }

  .bar {
    width: 40px;
    height: 5px;
    margin: 6px auto;
  }

  .hamburger.active {
    top: 18.9px;
    right: 25px;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
    background-color: #707070;
    height: 2px;
  }

  .nav-menu {
    width: 55%;
  }
}

@media all and (min-width: 760px) {
  .brand-logo {
    height: 55px;
  }

  .hamburger.active {
    top: 25px;
    right: 25px;
  }

  .nav-menu {
    width: 40%;
  }
}

@media all and (min-width: 992px) {
  .hamburger {
    display: none;
  }

  .nav-menu {
    width: auto;
    display: flex;
    position: unset;
    background-color: unset;
  }

  .nav-link {
    font-size: 17px;
    padding: 23px 12px;
    margin-left: 5px;
  }

  .nav-bar ul {
    padding-left: 0;
    margin-bottom: 0;
  }

  .nav-bar {
    padding: 0 30px;
  }
  .nav-menu {
    padding-bottom: 0;
  }
  .nav-item {
    position: unset;
  }

  .nav-item:hover .dropdown-container,
  .services-dropdown:hover .dropdown-container {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    top: 122px;
    left: 0;
    transform: translateY(-50px);
    background-color: var(--white-color);
    margin: 0;
    padding: 25px 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 3px 4px 0px;
  }

  .dropdown-container li a {
    padding: 10px 7px 14px 10px;
    width: 235px;
    margin-bottom: 0;
  }

  .dropdown-container li span {
    font-size: 19px;
  }

  .nav-item:nth-child(1) {
    padding-top: 0;
  }

  .dropdown-container li a img {
    width: 30px;
    height: 30px;
  }
}

@media all and (min-width: 1200px) {
  .brand-logo {
    height: 60px;
  }

  .nav-bar {
    padding: 0px 60px;
  }

  .nav-link {
    padding: 25px 13px;
    margin-left: 10px;
    font-size: 18px;
  }

  .dropdown-container li a span {
    font-size: 22px;
  }

  .nav-item:hover .dropdown-container,
  .services-dropdown:hover .dropdown-container {
    top: 126px;
  }

  .dropdown-container li a {
    padding: 12px 16px 16px 22px;
    width: 285px;
  }
}

@media all and (min-width: 1400px) {
  .nav-item:hover .dropdown-container,
  .services-dropdown:hover .dropdown-container {
    gap: 20px;
  }
}

@media all and (min-width: 1600px) {
  .nav-link {
    padding: 35px 13px;
    font-size: 20px;
  }

  .brand-logo {
    height: 66px;
  }

  .dropdown-container li a {
    width: 320px;
  }

  .dropdown-container li a span {
    font-size: 24px;
  }

  .nav-item:hover .dropdown-container,
  .services-dropdown:hover .dropdown-container {
    top: 150px;
    gap: 30px;
  }
}

/*=====================================================
================ Footer Section Style  ================
=====================================================*/
.footer-sec {
  padding: 50px 0 25px;
  background-color: var(--tertiary-color);
  color: var(--white-color);
}

.col-title h4 {
  font-size: 26px;
  font-weight: 700;
}

.col-big .links a {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.75;
  transition: var(--transition);
}

.col-big .links,
.col-mid .links,
.col-last .links {
  margin: 22px 0 38px;
}

.link-head .link {
  font-size: 20px;
  font-weight: 600;
  transition: var(--transition);
}

.links-horizontal,
.col-last .links {
  display: flex;
  flex-wrap: wrap;
}

.col-last .link {
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
  transition: var(--transition);
}

.col-last .link-item {
  width: 50%;
}

.link-item .links {
  margin: 5px 0 25px;
}

.links-horizontal .link {
  font-size: 14px;
  font-weight: 400;
}

.links-horizontal .link-item {
  position: relative;
  padding-right: 25px;
}

.links-horizontal .link-item:not(:last-child):after {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translate(50%, -50%);
}

.links a {
  color: var(--white-color);
}

.socilas {
  display: flex;
  column-gap: 30px;
  align-items: center;
}

.social-link svg {
  height: 19px;
  transition: var(--transition);
}

.social-link svg path {
  fill: var(--white-color);
  transition: var(--transition);
}

.social-item .social-link:hover svg path {
  fill: var(--primary-color);
}

.copyright {
  font-size: 14px;
  font-weight: 300;
  margin: 0;
}

.footer-sec a:hover {
  color: var(--primary-color);
}

@media all and (min-width: 575px) {
  .col-big .links a {
    font-size: 50px;
  }

  .link-head .link {
    font-size: 22px;
  }

  .links-horizontal .link {
    font-size: 16px;
  }

  .col-last .link {
    font-size: 20px;
  }
}

@media all and (min-width: 760px) {
  .col-big .links a {
    font-size: 55px;
  }

  .col-last .link-item {
    width: 34%;
  }

  .footer-sec {
    padding: 80px 0 50px;
  }

  .footer-last-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
  }

  .socilas {
    margin-bottom: 0;
  }
}

@media all and (min-width: 992px) {
  .col-big .links a {
    font-size: 60px;
  }

  .col-title h4,
  .link-head .link {
    font-size: 24px;
  }

  .links-horizontal .link {
    font-size: 16px;
  }

  .footer-sec {
    padding: 100px 0 70px;
  }

  .col-last .link-item {
    width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .col-last .link-item {
    width: 50%;
  }
}

@media all and (min-width: 1400px) {
  .container {
    max-width: 1360px;
  }

  .footer-sec {
    padding: 130px 0 85px;
  }

  .col-big .links a {
    font-size: 65px;
  }

  .col-big .links,
  .col-mid .links,
  .col-last .links {
    margin: 30px 0 38px;
  }

  .link-item .links {
    margin: 5px 0 30px;
  }
}

@media all and (min-width: 1600px) {
  .container {
    max-width: 1560px;
  }

  .col-big .links a {
    font-size: 70px;
  }

  .col-mid .links-horizontal {
    width: 90%;
  }
}

/*=====================================================
================== Banner Area Style ==================
=====================================================*/
.h-banner {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-space {
  position: absolute;
  top: 0;
  left: 0;
}

@media all and (min-width: 992px) {
  .h-banner {
    min-height: 100vh;
  }
}

/*=====================================================
================= Services Area Style =================
=====================================================*/
.services-sec {
  margin: 100px 0;
}

.text-block {
  margin-bottom: 40px;
  width: 100%;
}

.text-block h2 {
  margin-bottom: 50px;
}

.t-head {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.05;
}

.text-block .description {
  font-size: 15px;
}

.card {
  padding: 30px 25px;
  margin-top: 20px;
  background-color: #f2f6f6;
  border-radius: unset;
}

.card-top-area {
  display: flex;
  column-gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  width: fit-content;
}

.card-title {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
}

.card-btm-area p {
  margin-bottom: 0;
}

.card-top-area img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.card-btm-area p {
  font-size: 15px;
  font-weight: 400;
  color: var(--black-color);
}

.btm-link {
  padding-left: 20px;
  margin-top: 15px;
}

.btm-link ul {
  margin-bottom: 0;
}

.btm-link li {
  list-style: disc;
}

.btm-link li a {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  transition: var(--transition);
}

.btm-link li a:hover {
  color: var(--primary-color);
}

.last-card {
  padding-left: 0;
}

.last-card li {
  list-style: none;
}

@media all and (min-width: 575px) {
  .text-block {
    width: 426px;
  }

  .btm-link {
    padding-left: 0;
  }

  .btm-link ul {
    display: flex;
    flex-wrap: wrap;
  }

  .btm-link li {
    list-style: none;
  }

  li.bullet {
    list-style: disc;
  }

  .btm-link li:not(:last-child) {
    margin-right: 25px;
  }
}

@media all and (min-width: 760px) {
  .t-head {
    font-size: 35px;
  }
  .text-block h2 {
    margin-bottom: 90px;
  }

  .text-block .description {
    font-size: 16px;
    max-width: 88%;
  }

  .text-block {
    width: 455px;
  }

  .card-title {
    font-size: 30px;
  }

  .card-top-area img {
    height: 40px;
  }

  .card-btm-area p,
  .btm-link li a {
    font-size: 16px;
    color: var(--black-color);
  }

  .btm-link ul {
    max-width: 75%;
  }
}

@media all and (min-width: 992px) {
  .btm-link ul {
    max-width: 55%;
  }
  .card-title {
    font-size: 35px;
  }

  .hide-title {
    position: absolute;
    overflow: hidden;
  }

  .hide-title span {
    display: block;
    transition: all 390ms ease-in-out;
    transform: translateY(100%);
    font-size: 60px;
    font-weight: 700;
    -webkit-transform: translateY(100%);
  }

  .text-block h2 {
    text-transform: capitalize;
    overflow: hidden;
    transform: translateY(30%);
    opacity: 1;
    transition: all 400ms ease-in-out;
  }

  .description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    margin-bottom: 0;
    overflow: hidden;
    transition: all 400ms ease-in-out;
  }

  .hide-info .description {
    transform: translateX(-50%);
    opacity: 0;
  }

  .hide-info.text-block h2 {
    transform: translateY(-100%);
    opacity: 0;
  }

  .hide-info .hide-title span {
    transform: translateY(-25%);
  }

  .card {
    padding: 50px;
    border: none;
    width: 650px;
    background-color: #f2f6f6;
    border-radius: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 450px;
    transition: all 400ms ease-in-out;
    margin-top: 40px;
  }

  .card h1 {
    text-decoration: none;
    margin-bottom: 0;
  }

  .services-paginator {
    position: absolute;
    right: 60px;
    top: 0px;
    color: #ffc20e;
    font-weight: 600;
    line-height: 2.4;
    font-size: 20px;
  }

  .card-content {
    position: relative;
    z-index: 1;
    transform: translateY(0);
    transition: all 0.3s;
  }

  .card-top-area {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
  }

  .card-top-area h2 {
    font-size: 45px;
    color: #f4c452;
    line-height: 1.15;
    font-weight: 700;
    transition: all 0.3s;
  }

  .card-top-area img {
    height: 44px;
    filter: invert(0);
  }

  .card-btm-area p {
    color: #1a1a1a;
    line-height: 1.35;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s;
  }

  .btm-link {
    margin-top: 100px;
  }

  .fist-card {
    margin-top: 90px;
  }

  .second-card {
    margin-top: 130px;
  }
  .btm-link ul {
    max-width: 96%;
  }
}

@media all and (min-width: 1200px) {
  .horizontal-scene {
    height: 95vh;
    position: sticky;
    top: 0;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
  }

  .text-block {
    min-height: 70vh;
    display: flex;
    width: 520px;
    flex-direction: column;
    overflow: hidden;
    justify-content: space-between;
  }

  .horizontal-scroll-body {
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    padding-left: 56%;
    display: flex;
  }

  .card {
    height: 490px;
  }

  .card::after {
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #f4c452;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    z-index: 0;
  }
  .card:not(:last-of-type) {
    margin-right: 60px;
  }

  .card.active::after {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }

  .card.active .card-top-area img {
    filter: invert(1) brightness(2);
  }

  .card.active .card-content {
    transform: translateY(0);
  }

  .card.active .card-top-area h2 {
    color: #fff;
  }
  .card.active .card-btm-area p,
  .card.active .btm-link li a {
    color: #fff;
    transition: var(--transition);
  }

  .card.active .btm-link li a:hover {
    color: var(--black-color);
  }
  .card.active .btm-link li.bullet {
    color: var(--white-color);
  }
  .text-block {
    min-height: 75vh;
  }

  .text-block h2 {
    transform: translateY(50%);
  }

  .t-head {
    font-size: 52px;
  }

  .hide-title span {
    font-size: 72px;
  }

  .hide-info .hide-title span {
    transform: translateY(-22%);
  }

  .text-block .description {
    max-width: 86%;
  }

  .horizontal-scroll-body {
    padding-left: 45%;
  }

  .btm-link ul {
    max-width: 100%;
  }

  .btm-link li:not(:last-child) {
    margin-right: 30px;
  }

  .card-btm-area p,
  .btm-link li a {
    font-size: 18px;
  }

  .card-title {
    font-size: 40px;
  }
}

@media all and (min-width: 1400px) {
  .horizontal-scroll-body {
    padding-left: 40%;
  }
  .card {
    height: 520px;
    padding: 65px 50px;
  }
  .text-block {
    min-height: 80vh;
  }
}

@media all and (min-width: 1600px) {
  .horizontal-scene {
    height: 100vh;
  }
  .card {
    height: 540px;
    padding: 75px 50px;
  }
  .text-block {
    min-height: 70vh;
  }
  .card-title {
    font-size: 45px;
  }
}

/*============================================
============ Portfolio Area Style ============
=============================================*/
.portfolio-sec {
  margin: 100px 0;
}

.title-m {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}

.portfolio-sec .title-m {
  margin-bottom: 20px;
}

.portfolio-head p {
  font-size: 15px;
  line-height: 1.4;
}

.work-wr {
  display: block;
  position: relative;
  margin-top: 30px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.4s ease-out;
}

.work-wr .wr-image img {
  z-index: 1;
}

.work-wr:hover {
  transform: scale(0.94);
  box-shadow: 0 0 0 12px #f2f6f6;
}

.work-light {
  position: absolute;
  top: 25px;
  left: 18px;
  color: var(--white-color);
}

.wr-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}

.wr-body span {
  font-size: 14px;
}

.wr-dots {
  margin-left: 15px;
  position: relative;
}
.wr-dots::before {
  content: "";
  position: absolute;
  top: 56%;
  left: -10px;
  width: 4px;
  height: 4px;
  background-color: var(--white-color);
  transform: translateY(-50%);
}
.view-project-btn {
  font-size: 16px;
  font-weight: 600;
  color: var(--black-color);
  text-align: center;
  display: block;
  margin-top: 30px;
  transition: var(--transition);
}

.view-project-btn:hover {
  color: var(--primary-color);
}

@media all and (min-width: 575px) {
  .portfolio-head p {
    font-size: 17px;
  }

  .wr-image {
    height: 550px;
  }

  .wr-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .work-wr:hover {
    transform: scale(0.95);
    box-shadow: 0 0 0 16px #f2f6f6;
  }

  .view-project {
    font-size: 18px;
  }
}

@media all and (min-width: 760px) {
  .portfolio-container {
    position: relative;
  }

  .portfolio-head p {
    font-size: 18px;
    width: 59%;
  }

  .portfolio-box {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
  }

  .work-wr {
    width: calc((100% / 2) - 10px);
  }

  .work-light {
    top: 30px;
    left: 25px;
  }

  .wr-image {
    height: 500px;
  }

  .m-top {
    margin-top: 70px;
  }

  .view-project-btn {
    font-size: 18px;
    display: inline;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

@media all and (min-width: 992px) {
  .portfolio-container {
    margin: 0 40px;
  }

  .title-m {
    font-size: 34px;
  }

  .portfolio-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
  }

  .portfolio-head p {
    width: 52%;
    margin-bottom: 0;
  }

  .portfolio-box {
    column-gap: 40px;
  }

  .work-wr {
    width: calc((100% / 2) - 20px);
    margin: 0;
    max-height: 500px;
  }

  .m-top {
    margin-top: 85px;
  }

  .work-wr:hover {
    transform: scale(0.95);
    box-shadow: 0 0 0 16px #f2f6f6;
  }

  .wr-dots::before {
    width: 5px;
    height: 5px;
  }
}

@media all and (min-width: 1200px) {
  .portfolio-container {
    margin: 0px 130px;
  }

  .title-m {
    font-size: 42px;
  }

  .portfolio-head p {
    width: 47%;
  }

  .wr-image {
    height: 560px;
  }

  .work-wr {
    max-height: 560px;
  }

  .wr-dots {
    margin-left: 20px;
  }
  .wr-dots::before {
    width: 7px;
    height: 7px;
    left: -14px;
  }
}

@media all and (min-width: 1400px) {
  .portfolio-sec {
    margin: 120px 0;
  }

  .portfolio-head {
    margin-bottom: 70px;
  }

  .title-m {
    font-size: 42px;
  }

  .portfolio-container {
    margin: 0px 170px;
  }

  .portfolio-head p {
    width: 41%;
  }

  .work-wr {
    max-height: 600px;
  }

  .wr-image {
    height: 600px;
  }
}

@media all and (min-width: 1600px) {
  .portfolio-container {
    margin: 0px 230px;
  }

  .title-m {
    font-size: 48px;
  }

  .portfolio-head p {
    width: 40%;
  }

  .work-wr {
    max-height: 722px;
  }

  .wr-image {
    height: 722px;
  }

  .view-project-btn {
    font-size: 20px;
  }
  .wr-dots::before {
    left: -15px;
  }
}

/*============================================
============ About Us Style Area ============
=============================================*/
.about-section {
  padding: 100px 0;
  background-color: var(--tertiary-color);
}

.about-us .about-company .about-title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-us .about-company .about-description {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 600;
}

.about-us {
  color: var(--white-color);
}

.about-detail-btn {
  font-size: 14px;
  color: var(--primary-color);
  transition: var(--transition);
}

.about-detail-btn:hover {
  color: var(--white-color);
}

.about-team p {
  font-size: 14px;
  margin-bottom: -30px;
  margin-top: 50px;
  margin-left: 7px;
}

.counter-number {
  font-size: 120px;
  font-weight: 600;
}

@media all and (min-width: 575px) {
  .about-us .about-company .about-description {
    width: 75%;
  }
}

@media all and (min-width: 760px) {
  .about-us .about-company .about-title {
    font-size: 36px;
    margin-bottom: 25px;
  }

  .about-us .about-company .about-description {
    font-size: 25px;
    width: 70%;
  }

  .about-detail-btn {
    font-size: 16px;
  }

  .about-team p {
    font-size: 17px;
  }

  .counter-number {
    font-size: 150px;
  }
}

@media all and (min-width: 992px) {
  .about-section {
    padding: 130px 0;
  }

  .about-us {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .about-us .about-company .about-title {
    font-size: 40px;
  }

  .about-us .about-company .about-description {
    font-size: 30px;
    width: 100%;
    margin-bottom: 45px;
  }

  .about-team p {
    margin-top: 0;
    margin-left: 10px;
  }

  .about-detail-btn {
    font-size: 17px;
  }
}

@media all and (min-width: 1200px) {
  .about-us .about-company .about-title {
    font-size: 45px;
  }

  .about-us .about-company .about-description {
    font-size: 35px;
    margin-bottom: 55px;
  }

  .counter-number {
    font-size: 170px;
  }
}

@media all and (min-width: 1400px) {
  .about-us .about-company .about-title {
    font-size: 50px;
  }

  .about-us .about-company .about-description {
    font-size: 40px;
  }

  .counter-number {
    font-size: 200px;
  }

  .about-team p {
    font-size: 20px;
    margin-bottom: -50px;
    margin-left: 12px;
  }

  .about-detail-btn {
    font-size: 20px;
  }
}

@media all and (min-width: 1600px) {
  .about-section {
    padding: 150px 0;
  }

  .about-us .about-company .about-title {
    font-size: 55px;
  }

  .about-us .about-company .about-description {
    font-size: 45px;
  }

  .counter-number {
    font-size: 220px;
  }
}

/*=============================================
=========== Testimonial Area Style ============
==============================================*/
.testimonial-sec {
  margin: 100px 0 150px;
  position: relative;
}

.testimonial-sec h2 {
  margin-bottom: 65px;
}

.client-photo {
  height: 55px;
}

.client-photo img {
  height: 100%;
  width: auto;
}

.client-info {
  margin: 15px 0 20px 5px;
}

.client-name {
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 0;
}

.client-position {
  font-size: 14px;
}

.review-body p {
  font-size: 19px;
  line-height: 1.35;
  font-weight: 600;
  margin-top: 8px;
}

.review-body img {
  height: 15px;
  width: auto;
}

.swiper-pagination1 .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  opacity: 1;
  background-color: #ebebeb;
}

.swiper-pagination1 .swiper-pagination-bullet-active {
  height: 12px;
  width: 12px;
  opacity: 1;
  border-radius: 100%;
  background: var(--tertiary-color);
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  bottom: -65px;
  left: 50%;
  transform: translateX(-50%);
  width: 19%;
}

@media all and (min-width: 575px) {
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 11%;
  }
}

@media all and (min-width: 760px) {
  .testimonial-sec {
    margin: 120px 0 150px;
  }

  .testimonial-sec h2 {
    font-size: 36px;
  }

  .client-name {
    font-size: 17px;
  }

  .review-body p {
    font-size: 20px;
    width: 71%;
  }

  .swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 8%;
    bottom: -75px;
  }

  .client-photo {
    height: 65px;
  }
}

@media all and (min-width: 992px) {
  .testimonial-slider {
    display: flex;
  }

  .left-area-slider {
    width: 45%;
  }

  .client-sec {
    display: flex;
    align-items: center;
    column-gap: 20px;
  }

  .client-info {
    margin: 0;
    margin-top: 6px;
  }

  .client-name {
    font-size: 19px;
  }

  .client-position {
    font-size: 15px;
  }

  .right-area-slider {
    width: 55%;
  }

  .review-body {
    display: flex;
  }

  .review-body img {
    height: 17px;
    margin: 16px 10px 0 0;
  }

  .review-body p {
    width: 100%;
  }

  .swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 7%;
    bottom: -85px;
    left: 52%;
  }

  .swiper-pagination1 .swiper-pagination-bullet-active {
    height: 14px;
    width: 14px;
  }

  .swiper-pagination1 .swiper-pagination-bullet {
    height: 14px;
    width: 14px;
  }

  .text-h4 {
    font-size: 30px;
  }
}

@media all and (min-width: 1200px) {
  .testimonial-sec h2 {
    font-size: 40px;
    margin-bottom: 75px;
  }

  .review-body p {
    font-size: 23px;
    width: 87%;
  }
}

@media all and (min-width: 1400px) {
  .testimonial-sec {
    margin: 170px 0;
  }
}

@media all and (min-width: 1600px) {
  .testimonial-sec {
    margin: 200px 0;
  }

  .testimonial-sec h2 {
    font-size: 45px;
    margin-bottom: 100px;
  }

  .review-body p {
    font-size: 24px;
    width: 79%;
  }

  .client-name {
    font-size: 20px;
  }

  .client-position {
    font-size: 16px;
  }

  .client-photo {
    height: 80px;
  }

  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -115px;
    left: 51%;
  }
}

/*=============================================
=========== Design Qoute Are Style ============
==============================================*/
.qoute-section {
  padding: 65px 0;
  background-color: #f4f4f4;
}

.qoute-desc {
  font-size: 20px;
  font-weight: 300;
  margin: 14px 0 20px;
}

.mailto,
.tel {
  font-weight: 600;
  color: #efc94b;
  text-decoration: underline;
}

.tel {
  color: var(--primary-color);
}

.address .city {
  font-size: 20px;
  color: #535353;
}

.address-map {
  font-size: 16px;
  color: #535353;
}

.address {
  margin-bottom: 45px;
}

.single-form-item {
  position: relative;
  margin-bottom: 40px;
}

.form-control {
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #707070;
  border-radius: unset;
  padding: 12px 0 14px;
}

.form-control:focus {
  background-color: transparent;
  border-color: #707070;
  box-shadow: none;
}

.form-label {
  position: absolute;
  top: -6px;
  left: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  color: var(--tertiary-color);
}

.form-control:focus + .form-label {
  top: -20px;
  left: 0;
  font-size: 14px;
  color: var(--tertiary-color);
}

.form-label.active {
  top: -20px;
  left: 0;
  font-size: 14px;
  color: var(--tertiary-color);
}

.form-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.file-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--tertiary-color);
  cursor: pointer;
}

.submit-btn input {
  background-color: transparent;
  border: none;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
}

.inputfile {
  position: absolute;
  top: -100px;
  left: -100px;
}

@media all and (min-width: 760px) {
  .heading-sec {
    font-size: 35px;
  }

  .qoute-desc {
    font-size: 18px;
    margin: 30px 0;
    line-height: 1.8;
  }

  .address-item {
    margin-bottom: 5px;
  }

  .form-label {
    font-size: 17px;
  }
}

@media all and (min-width: 992px) {
  .qoute-section {
    padding: 100px 0;
  }

  .qoute-design {
    display: flex;
    margin-top: 60px;
  }

  .qoute-left-area {
    width: 45%;
  }

  .qoute-right-area {
    width: 55%;
  }

  .qoute-desc {
    margin: 0 0 145px;
  }

  .address {
    margin-bottom: 0;
  }
}

@media all and (min-width: 1200px) {
  .heading-sec {
    font-size: 40px;
  }

  .qoute-design {
    margin-top: 90px;
  }

  .form-label {
    font-size: 18px;
  }

  .single-form-item {
    margin-bottom: 50px;
  }

  .qoute-desc {
    margin: 0 0 165px;
  }
}

@media all and (min-width: 1400px) {
  .qoute-section {
    padding: 120px 0;
  }
}

@media all and (min-width: 1600px) {
  .qoute-section {
    padding: 150px 0;
  }

  .qoute-design {
    margin-top: 110px;
  }

  .heading-sec {
    font-size: 45px;
  }

  .single-form-item {
    margin-bottom: 60px;
  }

  .qoute-desc {
    margin: 0 0 180px;
  }
}

/*※※※※※※※※※※※※※※※※※※※※※※※ About Us Page ※※※※※※※※※※※※※※※※※※※※※※※*/

/*==============================================
=========== About Banner Area style ============
===============================================*/
.banner-spacing {
  margin-top: 65px;
}

.a-banner {
  padding: 100px 0;
}

.a-banner-title {
  font-size: 30px;
  font-weight: 700;
}

.top-title {
  color: var(--primary-color);
}

.about-banner-img img {
  margin: 50px 0;
}

.bottom-area-text {
  font-size: 15px;
  font-weight: 700;
  position: relative;
}

.bottom-area-text::before {
  display: block;
  margin: 0 auto;
  content: "";
  position: absolute;
  width: 75%;
  height: 1px;
  left: 0;
  right: 0;
  top: -23px;
  background-color: #7070706b;
}

@media all and (min-width: 575px) {
  .about-banner-img img {
    margin: 50px 0 65px;
  }

  .bottom-area-text::after {
    width: 52%;
  }
}

@media all and (min-width: 760px) {
  .banner-spacing {
    margin-top: 75px;
  }

  .about-banner-img img {
    margin: 65px auto;
    display: block;
  }

  .bottom-area-text::before {
    width: 45%;
    top: -29px;
  }

  .bottom-area-text {
    font-size: 17px;
  }
}

@media all and (min-width: 1024px) {
  .top-title,
  .title-special {
    font-size: 55px;
  }
}

@media all and (min-width: 1200px) {
  .banner-spacing {
    margin-top: 80px;
  }

  .a-banner {
    padding: 70px 0 100px;
  }

  .top-title,
  .title-special {
    font-size: 55px;
  }

  .bottom-area-text::before {
    width: 35%;
    top: -25px;
  }

  .about-banner-img img {
    height: 250px;
  }
}

@media all and (min-width: 1600px) {
  .banner-spacing {
    margin-top: 100px;
  }

  .a-banner {
    padding: 80px 0 100px;
  }

  .top-title,
  .title-special {
    font-size: 72px;
  }

  .about-banner-img img {
    height: 304px;
    margin: 91px auto 73px;
  }

  .bottom-area-text::before {
    top: -30px;
  }
}

/*=============================================
============ About Us Area Start ==============
==============================================*/
.a-about-section {
  margin: 0 0 100px;
}

.title-text {
  margin-bottom: 30px;
}

.section-body p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--secondary-color);
}

.round-btn {
  display: flex;
  align-items: center;
  width: 60%;
}

.link-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.8;
}

.round-btn .arrow {
  margin-left: 20px;
}

.round-btn .arrow svg {
  margin: 0 0 0 4px;
}

.progress-circle {
  width: 36px;
  height: 36px;
  background-color: #becfcf;
  border-radius: 100%;
}

.progress-circle .progress-circle__fill,
.progress-circle .progress-circle__slice {
  width: 36px;
  height: 36px;
  position: absolute;
  transition: transform 0.9s;
  border-radius: 100%;
}

.progress-circle .progress-circle__slice {
  clip: rect(0, 66px, 66px, 18px);
}

.progress-circle .progress-circle__slice .progress-circle__fill {
  clip: rect(0, 18px, 66px, 0);
  background-color: var(--primary-color);
}

.progress-circle .progress-circle__overlay {
  width: 32px;
  height: 32px;
  position: absolute;
  margin-left: 2px;
  margin-top: 2px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.round-btn:hover .progress-circle__fill,
.round-btn:hover .progress-circle__slice.full {
  transform: rotate(180deg);
}

@media all and (min-width: 575px) {
  .section-body p {
    width: 90%;
  }

  .round-btn {
    width: 35%;
  }
}

@media all and (min-width: 760px) {
  .a-about-section {
    margin: 100px 0 110px;
  }

  .section-body p {
    font-size: 16px;
    width: 71%;
  }

  .round-btn {
    width: 26%;
  }
}

@media all and (min-width: 992px) {
  .section-body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .section-left-area {
    width: 40%;
  }

  .section-right-area {
    width: 45%;
  }
  .section-body p {
    width: 100%;
  }

  .round-btn {
    width: 45%;
  }
}

@media all and (min-width: 1200px) {
  .section-body p {
    font-size: 18px;
  }

  .section-right-area {
    width: 40%;
  }
}

@media all and (min-width: 1400px) {
  .section-right-area {
    width: 46%;
  }
  .section-right-area p {
    width: 80%;
  }
  .round-btn {
    width: 35%;
  }
}

@media all and (min-width: 1600px) {
  .link-text {
    font-size: 24px;
  }
}

/*=============================================
========== About Slider Area Style ============
==============================================*/
.about-page-slider {
  margin: 60px 0 80px 0;
}

.about-page-slider .horizontal-scroll-body {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  padding-left: 0;
}

.about-card {
  padding: 40px 30px;
  background-color: #f2f6f6;
}

.text-wrapper .paginator {
  font-size: 18px;
  font-weight: 600;
  text-align: right;
  display: block;
  margin-bottom: -25px;
  color: var(--primary-color);
  display: none;
}

.text-wrapper h3 {
  color: var(--black-color);
  margin-bottom: 30px;
}

.text-wrapper p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.35;
  color: var(--black-color);
  margin-bottom: 0;
}

@media all and (min-width: 760px) {
  .about-page-slider .horizontal-scroll-body {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .about-card {
    width: calc((100% / 2) - 10px);
  }

  .text-wrapper h3 {
    margin-bottom: 40px;
  }

  .text-wrapper p {
    font-size: 16px;
  }
}

@media all and (min-width: 992px) {
  .about-page-slider {
    margin: 100px 0 110px 0;
  }
  .about-card {
    padding: 50px 40px;
  }

  .text-wrapper h3 {
    margin-bottom: 50px;
  }
}

@media all and (min-width: 1200px) {
  .about-page-slider {
    overflow: hidden;
  }

  .active-paginator {
    color: var(--white-color) !important;
  }

  .about-page-slider .horizontal-scene {
    height: 80vh;
  }

  .about-page-slider .horizontal-scroll-body {
    flex-wrap: nowrap;
    column-gap: 50px;
    margin-left: 60px;
  }

  .about-card {
    min-width: 650px;
    padding: 50px 60px 80px;
    position: relative;
    transition: all 400ms ease-in-out;
  }
  .about-card:not(:last-child)::after {
    content: "";
    background: url(../img/prev-icon.svg) no-repeat;
    background-size: contain;
    width: 30px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: -38px;
  }
  .text-wrapper h3 {
    margin-bottom: 100px;
  }
  .text-wrapper p {
    width: 90%;
  }
  .text-wrapper .paginator {
    display: block;
  }

  .about-card.active {
    background-color: #f4c452;
  }

  .about-card.active .text-wrapper h3,
  .about-card.active .text-wrapper p {
    color: #fff;
  }

  .text-wrapper p {
    font-size: 18px;
  }
}

@media all and (min-width: 1600px) {
  .about-page-slider .horizontal-scene {
    height: 85vh;
  }
  .about-page-slider .horizontal-scroll-body {
    margin-left: 195px;
  }
  .about-card {
    min-width: 800px;
    padding: 80px 80px 110px;
  }

  .text-wrapper h3 {
    margin-bottom: 145px;
  }
}
/*=============================================
========= Our Aspirations Area Styel ==========
==============================================*/
.our-aspirations {
  margin: 60px 0;
}

.box {
  margin-bottom: 70px;
}

.box-title {
  display: flex;
  align-items: center;
  column-gap: 14px;
  padding-bottom: 40px;
  position: relative;
}

.box-title::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 2px;
  background-color: #bcbcbc;
  bottom: 20px;
}

.text-h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 7px;
}

.box-title img {
  height: 40px;
  width: auto;
}

.box-desc p {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
  width: 90%;
}

@media all and (min-width: 760px) {
  .box-title {
    column-gap: 21px;
    padding-bottom: 55px;
  }

  .box-title::after {
    width: 65%;
    bottom: 27px;
  }

  .box-title img {
    height: 50px;
  }

  .box-desc p {
    width: 70%;
  }
}

@media all and (min-width: 992px) {
  .box-title::after {
    width: 100%;
  }

  .box-desc p {
    width: 95%;
  }
}

@media all and (min-width: 1200px) {
  .text-h4 {
    font-size: 29px;
  }
}

@media all and (min-width: 1400px) {
  .our-aspirations {
    margin: 130px 0;
  }

  .box-title {
    column-gap: 27px;
    padding-bottom: 65px;
  }

  .box-title::after {
    width: 85%;
  }

  .box-title img {
    height: 60px;
  }

  .box-desc p {
    font-size: 16px;
    width: 85%;
  }
}

@media all and (min-width: 1600px) {
  .text-h4 {
    font-size: 40px;
  }
}

/*=============================================
============ Our Logo Area Style ==============
==============================================*/
.logo-section {
  padding: 70px 0;
  background-color: #f2f6f6;
}
.logo-col-left {
  margin-bottom: 60px;
}
.logo-col-left-img {
  position: relative;
  height: 350px;
}
.logo-col-left-img img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: auto;
}

.logo-col-left-img img.active-img {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}

.about-logo-tabes {
  margin-top: 40px;
}
.tab-titles .tab-title {
  position: relative;
}
.tab-titles .tab-title.active {
  transition: var(--transition);
}
.tab-titles .tab-title span {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  display: block;
  margin-bottom: 20px;
  transition: var(--transition);
}

.tab-titles .tab-title.active span {
  color: var(--primary-color);
  letter-spacing: 0.2px;
}

.tab-titles .tab-title.active:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: -2px;
  font-weight: 700;
  font-size: 20px;
  color: var(--primary-color);
  width: 20px;
  transform: translate(20px, -50%) scale(0);
  transition: var(--transition);
  opacity: 0;
}

.tab-titles .tab-title.active:after {
  content: "+";
  opacity: 1;
  transform: translate(0) scale(1);
}

.tab-text .card-title {
  margin-bottom: 20px;
  font-size: 20px;
  display: none;
}

.tab-titles .tab-text {
  visibility: hidden;
  height: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}
.tab-titles .tab-text.open {
  visibility: visible;
  height: auto;
  opacity: 1;
  transform: translateY(0);
}

@media all and (min-width: 575px) {
  .logo-col-left-img {
    height: 470px;
  }
}

@media all and (min-width: 760px) {
  .logo-section {
    padding: 90px 0;
  }

  .logo-col-left-img {
    height: 500px;
    width: 500px;
    margin: 0 auto;
  }

  logo-col-right {
    padding-left: 20px;
  }
  .tab-titles {
    position: relative;
  }

  .tab-titles .tab-text {
    width: 320px;
    position: absolute;
    right: 0;
    top: 0;
  }

  .tab-text .card-title {
    font-size: 26px;
    display: block;
  }

  .tab-titles .tab-title.active:after {
    left: -20px;
  }

  .tab-titles .tab-title span {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

@media all and (min-width: 992px) {
  .logo-section {
    padding: 110px 0;
  }

  .logo-section-body {
    display: flex;
    justify-content: space-between;
  }

  .logo-col-right {
    width: 60%;
  }
  .logo-col-left {
    margin-bottom: 0;
  }
  .logo-col-left-img {
    height: 290px;
    width: 290px;
    margin-top: 50px;
  }
  .about-logo-tabes {
    margin-top: 50px;
  }
  .tab-titles .tab-text {
    width: 260px;
  }

  .tab-text .card-title {
    font-size: 28px;
  }
}

@media all and (min-width: 1200px) {
  .logo-section {
    padding: 130px 0 140px 0;
  }
  .logo-col-left {
    width: 44%;
  }
  .logo-col-left-img {
    height: 370px;
    width: 370px;
    margin: 45px 0 0;
  }
  .logo-col-right {
    width: 56%;
  }
  .about-logo-tabes {
    margin-top: 60px;
  }
  .tab-text .card-title {
    font-size: 38px;
    margin-bottom: 30px;
  }
  .tab-titles .tab-text {
    width: 330px;
  }

  .tab-titles .tab-title span {
    font-size: 21px;
    margin-bottom: 18px;
  }
}

@media all and (min-width: 1400px) {
  .logo-section {
    padding: 140px 0;
  }
  .logo-col-left {
    width: 50%;
  }
  .logo-col-left-img {
    height: 400px;
    width: 400px;
    margin: 65px auto 0;
  }
  .logo-col-right {
    width: 50%;
  }
  .about-logo-tabes {
    margin-top: 80px;
  }

  .tab-titles .tab-title span {
    font-size: 22px;
  }

  .tab-titles .tab-text {
    width: 340px;
  }
}
@media all and (min-width: 1600px) {
  .logo-section {
    padding: 150px 0 170px;
  }
  .logo-col-left {
    width: 40%;
  }
  .logo-col-left-img {
    height: 500px;
    width: 500px;
    margin: 90px auto 0;
  }
  .about-logo-tabes {
    margin-top: 110px;
  }
  .tab-titles .tab-title span {
    font-size: 24px;
    margin-bottom: 28px;
  }
  .tab-text .card-title {
    font-size: 45px;
    margin-bottom: 40px;
  }
  .tab-titles .tab-text {
    width: 390px;
  }
}

/*==============================================
=========== Our Workflow Area Style ============
===============================================*/
.workflow-sec {
  margin: 60px 0;
}
.workflow-container {
  margin-top: 60px;
}
.workflow-single-card {
  margin-bottom: 40px;
  cursor: pointer;
}
.card-top-container {
  display: flex;
  align-items: flex-end;
  column-gap: 20px;
  overflow: hidden;
  margin-bottom: 15px;
  transition: all 380ms;
}
.card-icon {
  display: flex;
  height: 40px;
  width: 40px;
  position: relative;
}

.card-icon img {
  transform: scale(1);
  transition: all 380ms;
  width: 100%;
  object-fit: contain;
  height: 100%;
  max-width: 100%;
}
.card-icon img.hover {
  transform: scale(0);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.card-text {
  transition: all 380ms;
}
.card-text .card-title {
  color: var(--black-color);
  line-height: 120%;
}
.card-numb {
  font-size: 17px;
  font-weight: 700;
  color: #f4c452;
  transition: all 380ms;
}

.workflow-single-card p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 0;
}
.workflow-single-card .card-title {
  transition: all 380ms;
}

.workflow-single-card:hover .card-title {
  color: #f4c452;
}

@media all and (min-width: 575px) {
  .workflow-single-card {
    margin-bottom: 0;
    min-height: 160px;
  }
  .workflow-single-card p {
    width: 85%;
    padding-left: 70px;
  }
  .card-top-container {
    column-gap: 10px;
    margin-bottom: 0;
  }
  .card-icon {
    margin-top: 50px;
    transition: all 380ms;
  }
  .card-text {
    margin-left: 20px;
    transition: all 380ms;
  }
  .workflow-single-card p {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: transform 380ms ease-in-out, opacity 380ms ease-in-out;
  }
  .workflow-single-card:hover .card-icon {
    margin-top: 0;
  }

  .workflow-single-card:hover .card-numb {
    margin-top: -60px;
  }
  .workflow-single-card:hover .card-title {
    font-size: 20px;
  }
  .workflow-single-card:hover p {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .workflow-single-card:hover .card-icon img {
    opacity: 0;
    transform: scale(0);
  }

  .workflow-single-card:hover .card-icon img.hover {
    opacity: 1;
    transform: scale(1);
  }
}

@media all and (min-width: 760px) {
  .workflow-sec {
    margin: 90px 0;
  }
  .workflow-container {
    display: flex;
    flex-wrap: wrap;
  }
  .workflow-single-card {
    width: calc(100% / 2);
    min-height: 180px;
  }
  .card-top-container {
    margin-bottom: 10px;
  }
  .workflow-single-card p {
    font-size: 15px;
  }

  .workflow-single-card:hover .card-title {
    font-size: 25px;
  }
}

@media all and (min-width: 992px) {
  .workflow-container {
    margin-top: 80px;
  }
  .workflow-single-card {
    width: calc(100% / 3);
    min-height: 195px;
  }
  .workflow-single-card p {
    font-size: 16px;
    width: 90%;
    padding-left: 75px;
  }
  .card-top-container {
    margin-bottom: 15px;
  }
  .card-icon {
    height: 45px;
    width: 45px;
  }
  .card-numb {
    font-size: 18px;
  }

  .workflow-single-card:hover .card-numb {
    margin-top: -67px;
  }
}

@media all and (min-width: 1200px) {
  .workflow-sec {
    margin: 100px 0;
  }

  .workflow-single-card {
    min-height: 205px;
  }
  .workflow-container {
    row-gap: 30px;
  }
  .card-icon {
    height: 55px;
    width: 55px;
  }
  .workflow-single-card p {
    padding-left: 90px;
  }
  .workflow-single-card:hover .card-numb {
    margin-top: -76px;
  }
  .workflow-single-card:hover .card-title {
    font-size: 30px;
  }
}

@media all and (min-width: 1400px) {
  .workflow-sec {
    margin: 115px 0;
  }

  .workflow-container {
    margin-top: 100px;
  }

  .workflow-single-card p {
    font-size: 17px;
    width: 82%;
  }
}
@media all and (min-width: 1600px) {
  .workflow-sec {
    margin: 130px 0;
  }
  .workflow-container {
    margin-top: 115px;
    row-gap: 40px;
  }
  .workflow-single-card {
    min-height: 255px;
  }
  .card-icon {
    height: 60px;
    width: 60px;
  }
  .card-numb {
    font-size: 20px;
  }
  .workflow-single-card p {
    font-size: 18px;
  }
  .workflow-single-card:hover .card-title {
    font-size: 35px;
  }
  .workflow-single-card:hover .card-numb {
    margin-top: -83px;
  }
}
/*=============================================
=========== Our Clients Area Style ============
==============================================*/
.our-clients-sec {
  padding: 80px 0 100px;
  background-color: #f2f6f6;
}

.clients-logo {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 10px;
  margin-top: 45px;
}

.client {
  width: calc((100% / 2) - 5px);
  transition: transform 200ms;
}

.client img {
  width: 100%;
  border-radius: 10px;
}

.client:hover {
  transform: translateY(-8px);
}

@media all and (min-width: 760px) {
  .clients-logo {
    gap: 15px 10px;
    margin-top: 50px;
  }

  .client {
    width: calc((100% / 3) - 7px);
  }
}

@media all and (min-width: 992px) {
  .clients-logo {
    gap: 17px 12px;
  }
  .client {
    width: calc((100% / 5) - 10px);
  }
}

@media all and (min-width: 1200px) {
  .our-clients-sec {
    padding: 100px 0 120px;
  }

  .clients-logo {
    gap: 20px 15px;
    margin-top: 60px;
  }
  .client {
    width: calc((100% / 6) - 13px);
  }
}

@media all and (min-width: 1600px) {
  .our-clients-sec {
    padding: 115px 0 190px;
  }
  .clients-logo {
    gap: 25px 18px;
  }
  .client {
    width: calc((100% / 6) - 15px);
  }
}

/*==============================================
========== Why Tyt Studio Area Style ===========
===============================================*/
.why-tyt-sec {
  margin: 60px 0;
}

.why-tyt-sec-title .title-m {
  margin-bottom: 25px;
}

.why-tyt-sec-title .text-desc,
.tyt-sec-card .text-desc,
.a-container .text-desc,
.text-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
}

.tyt-sec-card {
  margin-top: 20px;
}

@media all and (min-width: 760px) {
  .why-tyt-sec {
    margin: 100px 0;
  }

  .tyt-sec-card {
    margin-top: 30px;
  }

  .why-tyt-sec .text-h4 {
    margin-bottom: 14px;
  }
}

@media all and (min-width: 992px) {
  .why-tyt-sec {
    margin: 120px 0;
  }

  .flex-area {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
  }

  .flex-area .text-desc {
    width: 53%;
  }
}

@media all and (min-width: 1200px) {
  .why-tyt-sec {
    margin: 140px 0;
  }

  .why-tyt-sec-title .text-desc,
  .tyt-sec-card .text-desc,
  .a-container .text-desc,
  .text-desc {
    font-size: 16px;
  }

  .flex-area .text-desc {
    width: 48%;
  }

  .why-tyt-sec .text-h4 {
    margin-bottom: 20px;
  }
}

@media all and (min-width: 1400px) {
  .tyt-sec-card .text-desc {
    width: 95%;
  }

  .flex-area .text-desc {
    width: 40%;
  }
}

@media all and (min-width: 1600px) {
  .why-tyt-sec {
    margin: 160px 0;
  }

  .tyt-sec-card {
    margin-top: 50px;
  }

  .why-tyt-sec-title .text-desc,
  .tyt-sec-card .text-desc,
  .a-container .text-desc,
  .text-desc {
    font-size: 18px;
  }

  .tyt-sec-card .text-desc {
    width: 90%;
  }

  .why-tyt-sec .text-h4 {
    margin-bottom: 25px;
  }
}

/*※※※※※※※※※※※※※※※※※※※※※※※ Service Page Style ※※※※※※※※※※※※※※※※※※※※※※※*/

/*=================================================
=========== Services Banner Area Style ============
==================================================*/
.s-banner {
  margin: 60px 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: var(--bs-breadcrumb-divider, "-");
  font-size: 16px;
}

.breadcrumb-item + .breadcrumb-item.text-light::before {
  color: #fff;
}

.breadcrumb-item.active {
  color: var(--primary-color);
}

.breadcrumb {
  align-items: center;
}

.breadcrumb a {
  color: #1a1a1a;
}

.close-arrow {
  background-color: #f2f6f6;
  border: none;
  margin-right: 12px;
  padding: 10px 8px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close-arrow img {
  height: 16px;
}

.s-banner-content .t-head {
  margin-bottom: 30px;
  position: relative;
}

.sec-description {
  font-weight: 300;
}

.s-banner-content .t-head::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  left: 0;
  bottom: -15px;
  background-color: #707070;
  opacity: 0.5;
}

.s-banner-img img {
  height: 85%;
}

.services-banner-area {
  row-gap: 20px;
  padding-bottom: 30px;
}

.s-banner-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 0;
}

.s-banner-bottom li {
  width: 100%;
}

.s-banner-bottom a {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--secondary-color);
  background-color: #f2f6f6;
  display: block;
  text-align: center;
  padding: 20px;
  transition: var(--transition);
}

.s-banner-bottom a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

@media all and (min-width: 575px) {
  .max-char {
    max-width: 25ch;
  }

  .s-banner-content .t-head::after {
    width: 36%;
  }

  .sec-description {
    width: 90%;
  }

  .s-banner-bottom li {
    width: calc((100% / 2) - 10px);
  }
}

@media all and (min-width: 760px) {
  .s-banner {
    margin: 140px 0 0;
  }

  .max-char {
    max-width: 10ch;
  }

  .breadcrumb a,
  .breadcrumb-item.active,
  .breadcrumb-item.w-active {
    font-size: 17px;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    font-size: 17px;
  }

  .services-banner-area {
    padding-bottom: 100px;
  }

  .s-banner-content .t-head::after {
    width: 52%;
  }

  .s-banner-bottom li {
    width: calc((100% / 3) - 14px);
  }

  .s-banner-bottom a {
    padding: 25px 20px;
  }

  .s-banner-img img {
    height: 90%;
  }
}

@media all and (min-width: 992px) {
  .t-head {
    font-size: 48px;
  }

  .s-banner-content .t-head {
    margin-bottom: 38px;
  }

  .sec-description {
    width: 100%;
    font-size: 18px;
  }

  .know-more {
    font-size: 22px;
    margin: 20px 0;
  }

  .breadcrumb a,
  .breadcrumb-item.active,
  .breadcrumb-item.w-active {
    font-size: 18px;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    font-size: 18px;
  }

  .services-banner-area {
    padding-bottom: 135px;
  }

  .s-banner-content .t-head::after {
    width: 52%;
    bottom: -22px;
  }

  .s-banner-bottom li {
    width: calc((100% / 4) - 15px);
  }
}

@media all and (min-width: 1024px) {
  .max-char {
    max-width: 20ch;
  }
}

@media all and (min-width: 1200px) {
  .s-banner {
    margin: 160px 0 0;
  }

  .max-char {
    max-width: 25ch;
  }

  .breadcrumb a,
  .breadcrumb-item.active,
  .breadcrumb-item.w-active {
    font-size: 20px;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    font-size: 20px;
  }

  .close-arrow img {
    height: 20px;
  }

  .close-arrow {
    padding: 15px 11px;
  }

  .s-banner-content .t-head::after {
    width: 58%;
  }

  .sec-description {
    font-size: 20px;
  }

  .know-more {
    font-size: 26px;
  }

  .services-banner-area {
    padding-bottom: 120px;
  }

  .s-banner-bottom a {
    font-size: 27px;
    padding: 30px 20px;
  }
}

@media all and (min-width: 1400px) {
  .breadcrumb a,
  .breadcrumb-item.active,
  .breadcrumb-item.w-active {
    font-size: 22px;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    font-size: 22px;
  }

  .close-arrow {
    padding: 17px 13px;
  }

  .close-arrow img {
    height: 24px;
  }

  .t-head {
    font-size: 62px;
  }

  .s-banner-content .t-head {
    margin-bottom: 48px;
  }

  .sec-description {
    font-size: 22px;
  }
}

@media all and (min-width: 1600px) {
  .breadcrumb a,
  .breadcrumb-item.active,
  .breadcrumb-item.w-active {
    font-size: 24px;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    font-size: 24px;
  }

  .t-head {
    font-size: 72px;
  }

  .sec-description {
    font-size: 24px;
  }

  .know-more {
    font-size: 30px;
    margin: 31px 0 0;
  }

  .s-banner-img img {
    height: 85%;
  }

  .s-banner-bottom a {
    font-size: 35px;
    padding: 37px 20px;
  }
}

/*============================================================
================== Our Expertise Area Style ==================
============================================================*/
.expertise-sec {
  margin: 100px 0;
}

.expert-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 15px;
  margin-top: 40px;
}

.e-single-item {
  width: calc((100% / 2) - 8px);
}

.single-img {
  height: 40px;
  width: 49px;
  margin: 0 auto;
}

.single-img img {
  object-fit: contain;
}

.sigle-title {
  text-align: center;
  margin-top: 20px;
}

.sigle-title span {
  font-size: 15px;
  font-weight: 700;
}

@media all and (min-width: 760px) {
  .expert-items {
    width: 50%;
  }
}

@media all and (min-width: 992px) {
  .expertise-sec {
    margin: 120px 0;
  }

  .expert-items {
    gap: 55px 15px;
    margin-top: 70px;
  }

  .e-single-item {
    width: calc((100% / 3) - 10px);
  }

  .single-img {
    height: 50px;
    width: 59px;
  }

  .sigle-title {
    margin-top: 30px;
  }

  .sigle-title span {
    font-size: 18px;
  }
}

@media all and (min-width: 1200px) {
  .expertise-sec {
    margin: 140px 0;
  }

  .expert-items {
    gap: 65px 15px;
    margin-top: 90px;
  }

  .sigle-title {
    margin-top: 35px;
  }

  .sigle-title span {
    font-size: 20px;
  }
}

@media all and (min-width: 1600px) {
  .expertise-sec {
    margin: 160px 0;
  }

  .expert-items {
    gap: 75px 15px;
    margin-top: 105px;
  }

  .single-img {
    height: 60px;
    width: 69px;
  }

  .sigle-title {
    margin-top: 40px;
  }
}

/*============================================================
================== Recent work Area Style ==================
============================================================*/
.recent-work-sec {
  margin: 100px 0 50px;
}

.recent-work-container {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}

.recent-work-item {
  position: relative;
}

@media all and (min-width: 760px) {
  .recent-work-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px 20px;
  }

  .recent-work-item {
    width: calc((100% / 2) - 10px);
  }
}

@media all and (min-width: 992px) {
  .recent-work-sec {
    margin: 115px 0 50px;
  }

  .recent-work-container {
    margin-top: 50px;
    gap: 0 20px;
  }

  .recent-work-item {
    width: calc((100% / 3) - 14px);
  }
}

@media all and (min-width: 1200px) {
  .recent-work-sec {
    margin: 135px 0 60px;
  }

  .recent-work-container {
    margin-top: 60px;
    gap: 0 30px;
  }

  .recent-work-item {
    width: calc((100% / 3) - 20px);
  }
}

@media all and (min-width: 1600px) {
  .recent-work-sec {
    margin: 150px 0 60px;
  }
}

/*============================================================
================== Our Approach Area Style ==================
============================================================*/
.our-approach-sec {
  margin: 60px 0 100px;
}

.a-container {
  margin-top: 40px;
}

.a-container .text-h4 {
  margin-bottom: 13px;
}

.approach-item {
  margin-bottom: 20px;
}

.approach-item p {
  margin-top: 10px;
}

@media all and (min-width: 992px) {
  .a-container {
    margin-top: 50px;
  }

  .approach-item p {
    margin-top: 20px;
  }
}

@media all and (min-width: 1200px) {
  .approach-item p {
    margin-top: 26px;
  }
}

@media all and (min-width: 1400px) {
  .approach-item p {
    padding-right: 40px;
  }
}

@media all and (min-width: 1600px) {
  .approach-item p {
    padding-right: 60px;
    margin-top: 32px;
  }
}

/*=========================================================
=========== Services Design Process Area Style ===========
=========================================================*/
.design-process-sec {
  padding: 60px 0 100px 0;
  background-color: var(--secondary-color);
}

.dg-desc {
  font-size: 15px;
  font-weight: 300;
  margin-top: 20px;
}

.design-area {
  margin-top: 50px;
}

.design-area ul li:not(:last-of-type) {
  margin-bottom: 30px;
}

.design-area ul li {
  display: flex;
  gap: 20px;
  align-items: center;
}

.design-area ul li img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.design-area ul li p {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.design-area ul li span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 0.6;
  margin-bottom: 9px;
}

.span-center {
  font-size: 25px;
  font-weight: 700;
  color: var(--white-color);
  line-height: 1.25;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.know-more {
  font-size: 17px;
  font-weight: 700;
  margin: 17px 0;
  display: block;
}

.know-more a {
  color: var(--primary-color);
  text-decoration: underline;
}
@media all and (min-width: 760px) {
  .design-process-sec {
    padding: 90px 0 100px 0;
  }

  .dg-desc {
    width: 56%;
  }

  .design-area ul li {
    gap: 35px;
  }

  .design-area ul li span {
    font-size: 16px;
  }
}

@media all and (min-width: 992px) {
  .design-process-sec {
    padding: 110px 0 140px 0;
  }

  .dg-desc {
    font-size: 20px;
    margin-top: 30px;
  }

  .design-area {
    margin-top: 90px;
    position: relative;
  }

  .design-area img {
    height: 330px;
  }

  .design-area ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .design-area ul li {
    position: absolute;
  }

  .design-area ul li:nth-child(1) {
    top: 16px;
    left: 17%;
  }

  .design-area ul li:nth-child(2) {
    top: 140px;
    left: 12%;
  }

  .design-area ul li:nth-child(3) {
    top: 275px;
    left: 15%;
  }

  .design-area ul li:nth-child(4) {
    top: 140px;
    right: 1%;
  }

  .design-area ul li:nth-child(5) {
    top: 16px;
    right: -1%;
  }

  .design-area ul li:nth-child(6) {
    top: 275px;
    right: 17%;
  }

  .design-area ul li:nth-child(1) span,
  .design-area ul li:nth-child(2) span,
  .design-area ul li:nth-child(3) span {
    text-align: right;
  }

  .design-area ul li p {
    font-size: 18px;
    line-height: 1.5;
  }

  .design-area ul li span {
    margin-bottom: 6px;
  }
}

@media all and (min-width: 1200px) {
  .dg-desc {
    font-size: 22px;
    margin-top: 35px;
    width: 51%;
  }

  .design-area {
    margin-top: 105px;
  }

  .design-area img {
    height: 450px;
  }

  .design-area ul li p {
    font-size: 20px;
  }

  .design-area ul li:nth-child(1) {
    top: 28px;
    left: 17%;
  }

  .design-area ul li:nth-child(2) {
    top: 200px;
    left: 10%;
  }

  .design-area ul li:nth-child(3) {
    top: 388px;
    left: 16%;
  }

  .design-area ul li:nth-child(4) {
    top: 200px;
    right: 0%;
  }

  .design-area ul li:nth-child(5) {
    top: 28px;
    right: 0%;
  }

  .design-area ul li:nth-child(6) {
    top: 388px;
    right: 18%;
  }

  .span-center {
    font-size: 35px;
  }
}

@media all and (min-width: 1400px) {
  .design-area ul li p {
    font-size: 22px;
  }

  .design-area ul li:nth-child(1) {
    left: 21%;
  }

  .design-area ul li:nth-child(2) {
    left: 15%;
  }

  .design-area ul li:nth-child(3) {
    left: 20%;
  }

  .design-area ul li:nth-child(4) {
    right: 6%;
  }

  .design-area ul li:nth-child(5) {
    right: 5%;
  }

  .design-area ul li:nth-child(6) {
    right: 21%;
  }
}

@media all and (min-width: 1600px) {
  .design-process-sec {
    padding: 125px 0 200px 0;
  }

  .dg-desc {
    font-size: 24px;
    width: 40%;
  }

  .design-area {
    margin-top: 140px;
  }

  .design-area img {
    height: 588px;
  }

  .design-area ul li p {
    font-size: 24px;
  }

  .design-area ul li:nth-child(1) {
    top: 50px;
  }

  .design-area ul li:nth-child(2) {
    top: 266px;
    left: 14%;
  }

  .design-area ul li:nth-child(3) {
    top: 515px;
  }

  .design-area ul li:nth-child(4) {
    top: 266px;
    right: 5%;
  }

  .design-area ul li:nth-child(5) {
    top: 50px;
  }

  .design-area ul li:nth-child(6) {
    top: 515px;
  }

  .span-center {
    font-size: 40px;
  }
}

/* =============================================================
================== Next Services Area Style ==================== 
============================================================== */
.article {
  padding: 60px 0;
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.upper-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.article-title {
  text-align: center;
}

.article-title a {
  font-size: 35px;
  font-weight: 700;
  color: var(--secondary-color);
  transition: var(--transition);
}

.article-title a:hover {
  color: #fff;
}

@media all and (min-width: 760px) {
  .brand-p {
    padding-bottom: 50px;
  }
}
@media all and (min-width: 992px) {
  .article {
    padding: 80px 0;
  }

  .upper-title {
    font-size: 25px;
    margin-bottom: 25px;
  }

  .article-title a {
    font-size: 48px;
  }
}

@media all and (min-width: 1200px) {
  .upper-title {
    font-size: 30px;
    margin-bottom: 39px;
  }

  .article-title a {
    font-size: 60px;
  }
}

@media all and (min-width: 1600px) {
  .article-title a {
    font-size: 72px;
  }

  .article {
    padding: 100px 0;
  }
}
/*=========================================================================
=========== Services Branding Design Branding Slider Area Style ===========
=========================================================================*/
.card-t-head {
  margin-bottom: 40px;
}

@media all and (min-width: 1200px) {
  .card-t-head {
    position: absolute;
    top: 90px;
  }
  .branding-slider-sec .horizontal-scene {
    height: 85vh;
  }
  .branding-slider-sec .card {
    margin-right: 0;
  }
}

@media all and (min-width: 1400px) {
  .branding-slider-sec .card {
    height: 480px;
  }
}

@media all and (min-width: 1600px) {
  .branding-slider-sec .horizontal-scene {
    height: 80vh;
  }
  .card-t-head {
    top: 120px;
  }
}
/*=========================================================================
=========== Services Branding Design Our Methodology Area Style ===========
=========================================================================*/
.methodology-sec {
  margin: 60px 0;
}

.methods {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}

.mtd-top {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.methods .method-single-item {
  margin-bottom: 40px;
}

.methods .method-single-item img {
  height: 25px;
  width: auto;
  margin-right: 13px;
}

@media all and (min-width: 760px) {
  .methods {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 20px;
  }

  .method-single-item {
    width: calc((100% / 2) - 10px);
  }
}

@media all and (min-width: 992px) {
  .methodology-sec {
    margin: 110px 0;
  }

  .methods {
    margin-top: 50px;
  }

  .methods .method-single-item {
    margin-bottom: 55px;
  }

  .method-single-item p {
    width: 80%;
  }

  .methods .method-single-item img {
    height: 35px;
  }
}

@media all and (min-width: 1200px) {
  .methodology-sec {
    margin: 150px 0;
  }

  .methods {
    margin-top: 60px;
  }

  .mtd-top {
    margin-bottom: 16px;
  }

  .methods .method-single-item {
    margin-bottom: 65px;
  }

  .method-single-item p {
    width: 69%;
  }
}

@media all and (min-width: 1600px) {
  .methodology-sec {
    margin: 160px 0 130px;
  }

  .methods .method-single-item {
    margin-bottom: 70px;
  }

  .method-single-item p {
    width: 50%;
  }

  .methods .method-single-item img {
    height: 42px;
  }
}

/* ============================================================================
================== Services Branding Design Grid Area Style =================== 
============================================================================= */
.sr-portfolio-grid-sec {
  margin: 60px 0;
}

.sr-product-flex-area {
  margin-top: 30px;
}

.sr-product-flex-area .row {
  --bs-gutter-x: 9px;
  --bs-gutter-y: 9px;
}

.sr-product-item {
  position: relative;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.4s ease-out;
}

.sr-product-item:hover {
  transform: scale(0.94);
  box-shadow: 0 0 0 12px #f2f6f6;
}

.sr-product-item .wr-body {
  position: absolute;
  top: 15px;
  left: 10px;
  color: #fff;
}

.sr-product-item img {
  height: 370px;
  object-fit: cover;
}

@media all and (min-width: 575px) {
  .sr-product-item img {
    height: 290px;
  }
}

@media all and (min-width: 760px) {
  .sr-product-item img {
    height: 220px;
  }
}

@media all and (min-width: 992px) {
  .sr-portfolio-grid-sec {
    margin: 100px 0;
  }

  .sr-product-flex-area .row {
    --bs-gutter-x: 11px;
    --bs-gutter-y: 11px;
  }

  .sr-product-flex-area {
    margin-top: 40px;
  }

  .wr-title {
    font-size: 30px;
    line-height: 1.15;
  }

  .wr-body span {
    font-size: 17px;
  }

  .sr-product-item img {
    height: 300px;
  }

  .sr-product-item .wr-body {
    left: 15px;
  }
}

@media all and (min-width: 1200px) {
  .sr-portfolio-grid-sec {
    margin: 110px 0;
  }

  .sr-product-flex-area .row {
    --bs-gutter-x: 13px;
    --bs-gutter-y: 13px;
  }

  .sr-product-flex-area {
    margin-top: 50px;
  }

  .wr-title {
    font-size: 36px;
  }

  .wr-body span {
    font-size: 19px;
  }

  .sr-product-item img {
    height: 360px;
  }

  .sr-product-item .wr-body {
    top: 18px;
    left: 25px;
  }
}

@media all and (min-width: 1400px) {
  .sr-product-item img {
    height: 435px;
  }
}

@media all and (min-width: 1600px) {
  .sr-portfolio-grid-sec {
    margin: 130px 0;
  }

  .sr-product-flex-area .row {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
  }

  .sr-product-flex-area {
    margin-top: 60px;
  }

  .wr-title {
    font-size: 40px;
  }

  .wr-body span {
    font-size: 22px;
  }

  .sr-product-item img {
    height: 485px;
  }

  .sr-product-item .wr-body {
    top: 25px;
    left: 30px;
  }
}

/*※※※※※※※※※※※※※※※※※※※※※※※ Work Page Style ※※※※※※※※※※※※※※※※※※※※※※※*/

/*============================================================
================== Work Gallery Area Style =================== 
============================================================*/
.work-top {
  margin-bottom: 50px;
}

.w-head {
  margin-bottom: 16px;
}

@media all and (min-width: 575px) {
  .w-desc {
    width: 91%;
  }
}

@media all and (min-width: 760px) {
  .w-desc {
    width: 87%;
  }

  .work-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    margin-bottom: 100px;
  }

  .work-container .work-wr {
    width: calc((100% / 2) - 15px);
  }
}

@media all and (min-width: 992px) {
  .work-top {
    margin-bottom: 90px;
  }

  .w-desc {
    width: 72%;
  }

  .work-container {
    gap: 25px 30px;
    margin: 0 90px;
    margin-bottom: 100px;
  }

  .work-container .work-wr {
    width: calc((100% / 2) - 15px);
  }
}

@media all and (min-width: 1200px) {
  .w-head {
    margin-bottom: 18px;
  }

  .w-desc {
    width: 65%;
  }

  .work-container {
    gap: 30px 40px;
    margin: 0 125px;
    margin-bottom: 120px;
  }

  .work-container .work-wr {
    width: calc((100% / 2) - 20px);
  }
}

@media all and (min-width: 1400px) {
  .w-desc {
    width: 60%;
  }

  .work-container {
    gap: 40px 50px;
    margin: 0 135px;
    margin-bottom: 120px;
  }

  .work-container .work-wr {
    width: calc((100% / 2) - 25px);
  }

  .work-container .work-wr {
    max-height: 700px;
  }

  .work-container .wr-image {
    height: 100%;
  }
}

@media all and (min-width: 1400px) {
  .w-head {
    margin-bottom: 20px;
  }

  .work-top {
    margin-bottom: 120px;
  }

  .w-desc {
    width: 56%;
  }

  .work-container {
    margin-bottom: 140px;
  }

  .work-container .work-wr {
    width: calc((100% / 2) - 25px);
  }

  .work-container .work-wr {
    max-height: 845px;
  }
}

/*======================================================================
================== Work Inner Page Banner Area Style =================== 
======================================================================*/
.case-banner-sec {
  position: relative;
  overflow-x: hidden;
}

.banner-bkgd-img {
  position: absolute;
  top: 0;
  bottom: 0;
}

.banner-bkgd-img img {
  object-fit: cover;
}

.case-banner-content {
  padding-top: 100px;
  position: relative;
}

.case-banner-content .t-head {
  position: relative;
  margin-bottom: 25px;
}

.case-banner-content .t-head::after {
  content: "";
  width: 40%;
  height: 2px;
  background-color: #707070;
  position: absolute;
  bottom: -15px;
  left: 0;
  opacity: 0.3;
}

.w-active {
  font-weight: 600;
}

.banner-center-img {
  margin-top: 110px;
  position: relative;
}

.banner-center-img img,
.banner-center-img video {
  position: relative;
}

.banner-center-img::before {
  background: linear-gradient(180deg, transparent 75%, #fff 0);
  content: "";
  display: block;
  height: 100%;
  left: calc(50% - 50vw);
  position: absolute;
  width: 100vw;
}

@media all and (min-width: 760px) {
  .small-container {
    max-width: 660px;
  }

  .case-banner-content {
    padding-top: 115px;
  }

  .case-banner-content .t-head {
    margin-bottom: 35px;
  }

  .case-banner-content .t-head::after {
    width: 30%;
    bottom: -20px;
  }

  .case-banner-content .sec-description {
    width: 83%;
  }
}

@media all and (min-width: 992px) {
  .small-container {
    max-width: 890px;
  }

  .case-banner-content .sec-description {
    width: 71%;
  }
}

@media all and (min-width: 1200px) {
  .small-container {
    max-width: 1040px;
  }

  .case-banner-content {
    padding-top: 130px;
  }

  .case-banner-content .sec-description {
    width: 65%;
  }
}

@media all and (min-width: 1400px) {
  .small-container {
    max-width: 1180px;
  }
}

@media all and (min-width: 1600px) {
  .small-container {
    max-width: 1380px;
  }

  .banner-bkgd-img img {
    object-fit: contain;
    object-position: top;
  }

  .case-banner-content {
    padding-top: 160px;
  }

  .case-banner-content .t-head {
    margin-bottom: 50px;
  }

  .case-banner-content .t-head::after {
    width: 24%;
    bottom: -27px;
  }

  .case-banner-content .sec-description {
    width: 60%;
  }
}

/*=================================================================
================== case Study Detail Area Style =================== 
=================================================================*/
.inner-body {
  margin: 60px 0;
}

.inner-body-item-1 .t-head {
  margin-bottom: 15px;
}

.inner-body-item-1 .inner-body-item {
  background-color: #f4f4f4;
  padding: 7px 10px 15px;
}

.inner-body-item-1 .text-desc {
  font-size: 14px;
}

.sec-top {
  margin-top: 35px;
}

.task-img-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.task-img {
  width: calc((100% / 2) - 10px);
}

.title-logo {
  font-size: 18px;
  font-weight: 700;
}

.w-logo-items {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.logo-item-title {
  width: 30%;
}

.w-logo-items .after-icon {
  position: relative;
  width: calc((100% / 3) - 10px);
}

.w-logo-items .after-icon span {
  position: absolute;
  top: 10px;
  left: 9px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
}

.i-span {
  margin-top: 40px;
  font-weight: 400 !important;
}

.after-icon {
  position: relative;
}

.after-icon:not(:nth-child(2))::before {
  content: "";
  background: url(../img/next-logo-icon.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  z-index: 2;
  background-size: cover;
}

.w-scope {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 95%;
  row-gap: 15px;
  margin-top: 25px;
}

.w-scope li {
  width: calc((100% / 2) - 10px);
  font-size: 18px;
  font-weight: 700;
}

.work-grid-items {
  --bs-gutter-x: 20px;
  row-gap: 20px;
}

.border-r {
  border-radius: 10px;
}

.sec-xxl-top {
  margin-top: 45px;
}

.img-top {
  margin-top: 10px;
}

.sec-video {
  position: relative;
}

.media-controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.control-button {
  background-color: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

#playIcon {
  display: block;
  width: 50px;
  height: 50px;
}

.grid-area-2 .row {
  --bs-gutter-x: 0.7rem;
  row-gap: 10px;
}

@media all and (min-width: 576px) {
  .task-img {
    width: calc((100% / 4) - 15px);
  }

  .w-logo-items {
    gap: 30px 15px;
  }

  .logo-item-title {
    width: 22.5%;
  }

  .w-logo-items .after-icon {
    width: calc((100% / 4) - 12px);
  }

  .w-scope li {
    width: calc((100% / 3) - 10px);
  }
}

@media all and (min-width: 760px) {
  .inner-body {
    margin: 100px 0;
  }

  .inner-body-item-1 .t-head {
    margin-bottom: 25px;
  }

  .inner-body-item-1 .inner-body-item {
    padding: 11px 20px 25px;
  }

  .inner-body-item-1 .text-desc {
    font-size: 15px;
  }

  .title-logo {
    font-size: 28px;
  }

  .logo-item-title {
    width: 38.5%;
  }

  .w-logo-items .after-icon {
    width: calc((100% / 5) - 12px);
  }

  .w-scope {
    row-gap: 25px;
    margin-top: 35px;
    width: 80%;
  }

  .work-grid-items {
    --bs-gutter-x: 30px;
    row-gap: 25px;
  }

  .img-top {
    margin-top: 20px;
  }

  #playIcon {
    width: 70px;
    height: 70px;
  }
}

@media all and (min-width: 992px) {
  .inner-body {
    margin: 100px 0 120px 0;
  }

  .inner-body-item-1 {
    width: 710px;
    margin: 0 auto;
  }

  .inner-body-item-1 .inner-body-item {
    padding: 15px 30px 25px;
  }

  .inner-body-item-1 .text-desc {
    font-size: 16px;
  }

  .task-img-container {
    margin-top: 30px;
  }

  .sec-top {
    margin-top: 50px;
  }

  .text-wh {
    width: 90%;
  }

  .title-logo {
    font-size: 36px;
  }

  .w-logo-items {
    gap: 45px 20px;
  }

  .logo-item-title {
    width: 38.3%;
  }

  .w-logo-items .after-icon {
    width: calc((100% / 5) - 16px);
  }

  .w-logo-items .after-icon span {
    position: absolute;
    top: 14px;
    left: 15px;
    font-size: 16px;
  }

  .i-span {
    margin-top: 50px;
  }

  .after-icon:not(:nth-child(2))::before {
    width: 24px;
    height: 24px;
    left: -22px;
  }

  .w-scope li {
    font-size: 20px;
  }

  .work-grid-items {
    --bs-gutter-x: 35px;
    row-gap: 30px;
  }

  .border-r {
    border-radius: 20px;
  }

  .sec-xxl-top {
    margin-top: 65px;
  }

  #playIcon {
    width: 80px;
    height: 80px;
  }

  .grid-area-2 .row {
    --bs-gutter-x: 1.3rem;
    row-gap: 20px;
  }
}

@media all and (min-width: 1200px) {
  .title-logo {
    font-size: 42px;
  }

  .w-logo-items {
    gap: 55px 20px;
  }

  .w-scope {
    row-gap: 40px;
    margin-top: 45px;
  }

  .w-scope li {
    font-size: 22px;
  }

  .work-grid-items {
    --bs-gutter-x: 50px;
    row-gap: 40px;
  }

  .sec-xxl-top {
    margin-top: 75px;
  }

  .img-top {
    margin-top: 40px;
  }
}

@media all and (min-width: 1400px) {
  .grid-area-2 .row {
    --bs-gutter-x: 1.8rem;
    row-gap: 30px;
  }
}

@media all and (min-width: 1600px) {
  .inner-body {
    margin: 100px 0 140px 0;
  }

  .inner-body-item-1 .t-head {
    margin-bottom: 30px;
  }

  .inner-body-item-1 {
    width: 780px;
  }

  .inner-body-item-1 .text-desc {
    font-size: 18px;
  }

  .sec-top {
    margin-top: 70px;
  }

  .task-img-container {
    gap: 36px;
    margin-top: 40px;
  }

  .task-img {
    width: calc((100% / 4) - 27px);
  }

  .logo-item-title {
    width: 38.4%;
  }

  .title-logo {
    font-size: 48px;
  }

  .w-logo-items {
    gap: 66px 20px;
  }

  .after-icon:not(:nth-child(2))::before {
    width: 28px;
    height: 28px;
    left: -25px;
  }

  .i-span {
    margin-top: 60px;
  }

  .w-scope {
    row-gap: 45px;
    margin-top: 50px;
  }

  .w-scope li {
    width: calc((100% / 3) - 16px);
    font-size: 24px;
  }

  .work-grid-items {
    --bs-gutter-x: 64px;
    row-gap: 50px;
  }

  .border-r {
    border-radius: 30px;
  }

  .sec-xxl-top {
    margin-top: 100px;
  }

  .img-top {
    margin-top: 50px;
  }

  #playIcon {
    width: 105px;
    height: 105px;
  }
}

/*※※※※※※※※※※※※※※※※※※※※ Dedicated Team Page Area Style  ※※※※※※※※※※※※※※※※※※※※*/

/*================================================================
=================== Dedicated Team Area Style ==================== 
=================================================================*/
.sec-gap {
  margin-top: 130px;
}

.offer-slider-sec {
  margin: 60px 0;
}
.offer-slider-container {
  padding: 0 20px;
  margin-top: 20px;
}

.offer-slide-item {
  background-color: #f2f6f6;
  text-align: center;
  padding: 12px 0;
}

.offer-slide-item span {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  display: block;
}

.offer-slider-container .swiper-slide {
  width: 160px;
}

@media all and (min-width: 576px) {
  .offer-slider-container {
    margin: 0 auto;
    margin-top: 20px;
    max-width: 540px;
  }

  .offer-slide-item {
    padding: 15px 0;
  }
}

@media all and (min-width: 760px) {
  .offer-slider-container {
    margin-top: 25px;
    max-width: 720px;
  }
  .offer-slide-item span {
    font-size: 18px;
  }
  .offer-slider-container .swiper-slide {
    width: 185px;
  }
}

@media all and (min-width: 992px) {
  .sec-gap {
    margin-top: 160px;
  }

  .offer-slider-container {
    margin-top: 30px;
    padding: 0;
    max-width: 100%;
  }

  .offer-slide-item {
    padding: 20px 0;
  }

  .offer-slide-item span {
    font-size: 22px;
  }

  .offer-slider-container .swiper-slide {
    width: 225px;
  }
}

@media all and (min-width: 1200px) {
  .offer-slide-item {
    padding: 20px 0;
  }
  .offer-slider-container .swiper-slide {
    width: 260px;
  }
  .offer-slide-item span {
    font-size: 26px;
  }
}

@media all and (min-width: 1400px) {
  .sec-gap {
    margin-top: 180px;
  }

  .offer-slider-container {
    margin-top: 45px;
  }

  .offer-slide-item {
    padding: 25px 0;
  }

  .offer-slider-container .swiper-slide {
    width: 300px;
  }

  .offer-slide-item span {
    font-size: 30px;
  }
}

@media all and (min-width: 1600px) {
  .sec-gap {
    margin-top: 260px;
  }

  .offer-slider-container {
    margin-top: 55px;
  }

  .offer-slide-item {
    padding: 30px 0;
  }

  .offer-slider-container .swiper-slide {
    width: 300px;
  }
  .offer-slider-container .swiper-slide {
    width: 350px;
  }
  .offer-slide-item span {
    font-size: 35px;
  }
}

/*================================================================
================= Tyt Studio Benefit Area Style ==================
=================================================================*/
.benefit-sec .t-head {
  margin-bottom: 20px;
}

.benefit-sec .text-h4 {
  font-size: 18px;
}

@media all and (min-width: 760px) {
  .benefit-sec .text-h4 {
    font-size: 20px;
  }
}

@media all and (min-width: 992px) {
  .benefit-sec .t-head {
    margin-bottom: 30px;
  }
  .benefit-sec .text-h4 {
    font-size: 25px;
  }
}

@media all and (min-width: 1200px) {
  .benefit-sec .t-head {
    margin-bottom: 40px;
  }
  .benefit-sec .text-h4 {
    font-size: 28px;
  }
}

@media all and (min-width: 1400px) {
  .benefit-sec .text-h4 {
    font-size: 31px;
  }
}

@media all and (min-width: 1600px) {
  .benefit-sec .t-head {
    margin-bottom: 50px;
  }
  .benefit-sec .text-h4 {
    font-size: 35px;
  }
}

/*===============================================================
================= Team Work Process Area Style ==================
===============================================================*/
.t-work-process {
  padding: 60px 0;
  background-color: var(--black-color);
}

.md-desc {
  font-size: 14px;
  font-weight: 300;
  margin-top: 15px;
}

.process-steps {
  margin-top: 40px;
}

.process-steps ul {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}

.process-steps ul li {
  display: flex;
  gap: 0 15px;
}

.process-steps ul li p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.process-steps ul li span {
  line-height: 1.4;
  margin-bottom: 2px;
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
}

.process-steps ul li img {
  height: 45px;
  width: 45px;
}

@media all and (min-width: 760px) {
  .t-work-process {
    padding: 90px 0;
  }

  .t-work-process-title p {
    width: 69%;
  }

  .md-desc {
    font-size: 16px;
    margin-top: 20px;
  }

  .process-steps {
    margin-top: 50px;
  }

  .process-steps ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
  .process-steps ul li {
    width: calc((100% / 2) - 8px);
  }
  .process-steps ul li p {
    font-size: 17px;
  }
}

@media all and (min-width: 992px) {
  .t-work-process {
    padding: 100px 0;
  }

  .t-work-process-title p {
    width: 56%;
  }

  .process-steps {
    margin-top: 60px;
  }

  .process-steps ul {
    gap: 45px 30px;
  }

  .process-steps ul li {
    width: calc((100% / 2) - 15px);
  }

  .process-steps ul li p {
    font-size: 23px;
    margin-bottom: 20px;
  }

  .process-steps ul li img {
    height: 55px;
    width: 55px;
  }
  .process-steps ul li span {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 4px;
  }
}

@media all and (min-width: 1200px) {
  .t-work-process {
    padding: 110px 0 130px 0;
  }
  .md-desc {
    font-size: 18px;
  }
  .process-steps {
    margin-top: 70px;
  }

  .process-steps ul {
    gap: 55px 40px;
  }

  .process-steps ul li {
    gap: 0 20px;
    width: calc((100% / 2) - 20px);
  }

  .process-steps ul li img {
    height: 65px;
    width: 65px;
  }

  .process-steps ul li span {
    font-size: 20px;
  }

  .process-steps ul li p {
    font-size: 27px;
    margin-bottom: 25px;
  }
}

@media all and (min-width: 1400px) {
  .t-work-process-title p {
    width: 49%;
  }

  .process-steps ul {
    gap: 60px 50px;
  }

  .process-steps ul li {
    width: calc((100% / 2) - 25px);
  }

  .process-steps ul li img {
    height: 75px;
    width: 75px;
  }

  .process-steps ul li span {
    font-size: 22px;
  }

  .process-steps ul li p {
    font-size: 30px;
  }
}

@media all and (min-width: 1600px) {
  .t-work-process {
    padding: 120px 0 150px 0;
  }
  .md-desc {
    font-size: 20px;
  }

  .t-work-process-title p {
    width: 44%;
  }

  .process-steps {
    margin-top: 95px;
  }

  .process-steps ul {
    gap: 75px 50px;
  }
  .process-steps ul li {
    gap: 0 25px;
  }
  .process-steps ul li img {
    height: 83px;
    width: 83px;
  }

  .process-steps ul li span {
    font-size: 24px;
  }

  .process-steps ul li p {
    font-size: 35px;
  }
}

/*=========================================================
================= Get Started Area Style ==================
=========================================================*/
.get-start {
  padding: 40px 0;
  background-color: #f2f6f6;
}

.get-start-body .get-start-btn {
  font-size: 15px;
  font-weight: 700;
  width: 35%;
  padding: 10px 20px;
  margin: 0 auto;
  background-color: var(--black-color);
  color: var(--white-color);
  border-radius: 9px;
  margin-top: 25px;
  transition: var(--transition);
}

.get-start-body .get-start-btn:hover {
  background-color: var(--primary-color);
}
@media all and (min-width: 576px) {
  .get-start-body h2 {
    width: 62%;
    margin: auto;
  }
  .get-start-body .get-start-btn {
    width: 25%;
  }
}
@media all and (min-width: 760px) {
  .get-start {
    padding: 55px 0;
  }

  .get-start-body h2 {
    width: 46%;
  }

  .get-start-body .get-start-btn {
    width: 20%;
    font-size: 18px;
  }
}
@media all and (min-width: 992px) {
  .get-start {
    padding: 70px 0;
  }

  .get-start-body .get-start-btn {
    width: 18%;
    font-size: 20px;
    padding: 13px 20px;
    margin-top: 35px;
  }
}
@media all and (min-width: 1200px) {
  .get-start {
    padding: 85px 0 70px 0;
  }

  .get-start-body .get-start-btn {
    width: 15%;
    margin-top: 40px;
  }
}
@media all and (min-width: 1400px) {
  .get-start-body h2 {
    width: 65%;
  }

  .get-start-body .get-start-btn {
    width: 13%;
    margin-top: 60px;
  }
}
@media all and (min-width: 1600px) {
  .get-start {
    padding: 110px 0 80px 0;
  }

  .get-start-body .get-start-btn {
    width: 12%;
    margin-top: 70px;
    padding: 16px 20px;
  }
}

/*※※※※※※※※※※※※※※※※※※※※ Contact Page Area Style  ※※※※※※※※※※※※※※※※※※※※*/
/*===========================================================
================= Contact Banner Are Style ==================
===========================================================*/
.contact-banner {
  padding: 130px 0 90px 0;
  background-color: var(--black-color);
}

.contact-banner-flex {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  gap: 10px 0;
}

.text-bold {
  font-size: 18px;
  font-weight: 700;
}

.contact-banner-flex ul {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  width: 290px;
}

.contact-banner-flex .address-item span {
  font-weight: 700;
}

.contact-banner-flex ul .text-lt {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 0;
}
.contact-banner-flex ul .contact-direction {
  display: flex;
  align-items: baseline;
}

.contact-banner-flex ul .contact-direction a {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: underline;
  transition: var(--transition);
}

.contact-banner-flex ul .contact-direction a:hover {
  text-decoration: none;
}
.dir-img {
  height: 7px;
  width: auto;
  margin-left: 7px;
}

@media all and (min-width: 760px) {
  .contact-banner-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 0;
    margin-top: 50px;
  }
  .text-bold {
    font-size: 20px;
  }

  .contact-banner-flex h3 {
    width: calc(100% / 2);
  }
  .contact-banner-flex .address-item span {
    font-size: 18px;
  }
  .contact-banner-flex ul .text-lt {
    font-size: 15px;
  }
  .contact-banner-flex ul .contact-direction a {
    font-size: 16px;
  }
  .dir-img {
    height: 9px;
    margin-left: 9px;
  }
}
@media all and (min-width: 992px) {
  .contact-banner {
    padding: 180px 0 90px 0;
  }
  .contact-banner-flex {
    flex-wrap: nowrap;
    column-gap: 15px;
    margin-top: 70px;
  }
  .text-bold {
    font-size: 22px;
  }
  .contact-banner-flex h3 {
    width: calc(100% / 3);
  }

  .contact-banner-flex .address-item span {
    font-size: 20px;
  }
  .contact-banner-flex ul .text-lt {
    font-size: 16px;
  }
  .contact-banner-img {
    width: 300px;
  }
}
@media all and (min-width: 1200px) {
  .contact-banner {
    padding: 200px 0 100px 0;
  }
  .text-bold {
    font-size: 26px;
  }
  .contact-banner-flex h3 {
    width: calc((100% / 3) - -90px);
  }
  .contact-banner-flex ul {
    width: 300px;
    gap: 15px 0;
  }
  .contact-banner-img {
    width: 350px;
  }
  .contact-banner-flex {
    margin-top: 90px;
  }
  .contact-banner-flex ul .contact-direction a {
    font-size: 17px;
  }
}
@media all and (min-width: 1400px) {
  .contact-banner {
    padding: 230px 0 100px 0;
  }
  .text-bold {
    font-size: 30px;
  }
  .contact-banner-flex h3 {
    width: calc((100% / 3) - -160px);
  }
  .contact-banner-img {
    width: 390px;
  }
  .contact-banner-flex .address-item span {
    font-size: 22px;
  }
}
@media all and (min-width: 1600px) {
  .contact-banner {
    padding: 260px 0 170px 0;
  }
  .contact-banner-flex {
    margin-top: 140px;
  }
  .text-bold {
    font-size: 35px;
  }
  .contact-banner-flex h3 {
    width: calc((100% / 3) - -240px);
  }
  .contact-banner-flex ul {
    width: 325px;
    gap: 20px 0;
  }
  .contact-banner-flex .address-item span {
    font-size: 24px;
  }
  .contact-banner-flex ul .text-lt {
    font-size: 18px;
  }
  .contact-banner-flex ul .contact-direction a {
    font-size: 18px;
  }
  .dir-img {
    height: 10px;
    margin-left: 12px;
  }
  .contact-banner-img {
    width: 420px;
  }
}

/*=========================================================
================= Design Qoute Are Style ==================
=========================================================*/
.contact-qoute {
  background-color: var(--white-color);
}
.contact-text-desc {
  font-size: 14px;
}
.qoute-left-area .contact-text-desc {
  margin-bottom: 50px;
}

.contact-qoute .submit-btn {
  width: 55%;
}

.contact-qoute .submit-btn p {
  font-size: 13px;
  line-height: 1.2;
}

.contact-qoute .submit-btn p a {
  color: #ed5e5c;
  font-weight: 600;
  transition: var(--transition);
}

.contact-qoute .submit-btn p a:hover {
  color: var(--primary-color);
}

.submit-cl-btn {
  font-size: 14px;
  font-weight: 700;
  background-color: var(--black-color);
  color: var(--white-color);
  border-radius: 9px;
  padding: 7px 0;
  width: 80px;
  display: block;
  margin-left: auto;
  transition: var(--transition);
}

.submit-cl-btn:hover {
  background-color: var(--primary-color);
}

@media all and (min-width: 576px) {
  .contact-qoute .submit-btn {
    width: 51%;
  }
}
@media all and (min-width: 760px) {
  .contact-text-desc {
    font-size: 15px;
    width: 500px;
  }
  .contact-qoute .submit-btn {
    width: 47.2%;
  }
  .contact-qoute .submit-btn p {
    font-size: 14px;
    line-height: 1.3;
  }
}
@media all and (min-width: 992px) {
  .contact-text-desc {
    font-size: 16px;
    width: 320px;
  }
  .contact-qoute .submit-btn {
    width: 54%;
  }
  .contact-qoute .submit-btn p {
    font-size: 15px;
  }
  .submit-cl-btn {
    font-size: 18px;
    width: 100px;
  }
}
@media all and (min-width: 1200px) {
  .contact-text-desc {
    width: 255px;
    font-size: 17px;
  }
  .contact-qoute .submit-btn {
    width: 57%;
  }
  .submit-cl-btn {
    font-size: 20px;
    width: 140px;
    padding: 12px 0;
  }
}
@media all and (min-width: 1400px) {
  .contact-qoute .submit-btn p {
    text-align: right;
  }
}
@media all and (min-width: 1600px) {
  .contact-text-desc {
    font-size: 18px;
  }
  .contact-qoute .submit-btn {
    width: 52.1%;
  }
  .contact-qoute .submit-btn p {
    font-size: 16px;
    margin-bottom: 23px;
  }
  .submit-cl-btn {
    font-size: 24px;
    width: 180px;
    border: none;
  }
}

/*=========================================================
============== Creative Services Area Style ===============
=========================================================*/
.contact-services-sec {
  padding: 80px 0;
  background-color: #f2f6f6;
}

.section-container-bottom {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 10px;
}

.career-item {
  width: calc((100% / 2) - 5px);
}

.section-container-bottom p {
  margin-bottom: 4px;
  font-size: 14px;
}

.contact-mail .mailto {
  font-size: 14px;
  font-weight: 700;
}

.before-icon,
.section-container-bottom .contact-mail,
.section-container-bottom p {
  padding-left: 15px;
}
.before-icon {
  position: relative;
}
.before-icon::before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--black-color);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.career-area p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
}
.career-link {
  position: relative;
}
.career-link::after {
  content: "";
  background: url(../img/direction-img.svg) no-repeat;
  background-size: 90%;
  height: 10px;
  width: 10px;
  position: absolute;
  top: 9px;
  right: -18px;
}

@media all and (min-width: 576px) {
  .career-area p {
    width: 85%;
  }
}
@media all and (min-width: 760px) {
  .contact-services-sec {
    padding: 100px 0;
  }
  .section-container {
    display: flex;
  }
  .career-area {
    width: 80%;
  }
  .career-area p {
    width: 78%;
  }
  .section-container-bottom {
    margin-top: 0;
  }
}
@media all and (min-width: 992px) {
  .section-container-bottom {
    gap: 35px 15px;
  }
  .career-area {
    width: 55%;
  }
  .career-area p {
    font-size: 16px;
    width: 75%;
    margin-top: 15px;
  }
  .career-item {
    width: calc((100% / 3) - 10px);
  }
  .section-container-bottom p {
    margin: 12px 0px 8px;
    font-size: 16px;
  }
  .contact-mail .mailto {
    font-size: 16px;
  }
  .before-icon::before {
    width: 12px;
    height: 12px;
  }
  .before-icon,
  .section-container-bottom .contact-mail,
  .section-container-bottom p {
    padding-left: 25px;
  }
  .career-link::after {
    background-size: 95%;
    top: 10px;
  }
}
@media all and (min-width: 1200px) {
  .contact-services-sec {
    padding: 120px 0;
  }
  .section-container-bottom {
    gap: 50px 15px;
  }
  .career-area p {
    width: 60%;
  }
}
@media all and (min-width: 1400px) {
  .career-area {
    width: 50%;
  }
  .career-area p {
    width: 50%;
    font-size: 17px;
  }
  .career-item {
    width: calc((100% / 3) - 15px);
  }
  .section-container-bottom {
    gap: 60px 22px;
  }
  .section-container-bottom p {
    margin: 15px 0px 10px;
    font-size: 17px;
  }
  .contact-mail .mailto {
    font-size: 18px;
  }
  .career-link::after {
    background-size: 100%;
    height: 12px;
    width: 12px;
    right: -20px;
  }
}
@media all and (min-width: 1600px) {
  .contact-services-sec {
    padding: 130px 0;
  }
  .career-area p {
    font-size: 18px;
    margin-top: 20px;
  }
  .before-icon::before {
    width: 16px;
    height: 16px;
  }
  .before-icon,
  .section-container-bottom .contact-mail,
  .section-container-bottom p {
    padding-left: 35px;
  }
  .section-container-bottom p {
    font-size: 18px;
  }
  .contact-mail .mailto {
    font-size: 20px;
  }
  .career-link::after {
    background-size: 100%;
    height: 13px;
    width: 13px;
    right: -24px;
    top: 13px;
  }
}

/*※※※※※※※※※※※※※※※※※※※※ Knowledge Page Area Style  ※※※※※※※※※※※※※※※※※※※※*/
/*===============================================================
============== Knowledge Blogs Listing Area Style ===============
===============================================================*/
.blog-content-container {
  margin-top: 20px;
}
.blog-content-container h3 {
  margin: 15px 0;
  text-transform: capitalize;
}
.full-width-blog-container {
  display: block;
}

.single-blog {
  margin-bottom: 25px;
}

.ti-xl-fn {
  font-weight: 700;
  font-size: 20px;
  color: var(--secondary-color);
}

@media all and (min-width: 760px) {
  .blog-img-container {
    width: 50%;
  }
  .blog-content-container {
    margin-top: 0;
    padding-left: 25px;
    width: 50%;
  }
  .full-width-blog-container {
    display: flex;
  }
  .grid-blog-container {
    margin-top: 60px;
  }
  .small-blog-container {
    display: flex;
  }
  .small-blog-container .blog-img-container {
    width: 25%;
  }
  .small-blog-container .blog-content-container {
    width: 75%;
  }
  .small-blog-container .blog-content-container h3 {
    margin: 5px 0;
  }
  .small-blog-container .blog-content-container p {
    margin-bottom: 0;
  }
}
@media all and (min-width: 992px) {
  .blog-img-container {
    width: 45%;
  }
  .blog-content-container {
    width: 55%;
  }
  .blog-content-container h3 {
    margin: 25px 0 20px 0;
  }
  .blog-content-container p {
    margin-bottom: 45px;
  }
  .grid-blog-container {
    margin-top: 80px;
  }
  .ti-xl-fn {
    font-size: 30px;
  }
  .small-blog-container .blog-content-container h3 {
    margin: 10px 0;
  }
  .small-blog-container .blog-content-container p {
    margin-bottom: 7px;
  }
  .single-blog {
    margin-bottom: 45px;
  }
}
@media all and (min-width: 1200px) {
  .blog-content-container {
    padding-left: 40px;
  }
  .blog-content-container h3 {
    margin: 20px 0 25px 0;
  }
  .blog-content-container p {
    margin-bottom: 75px;
  }
  .grid-blog-container {
    margin-top: 100px;
  }
  .small-blog-container .blog-img-container {
    width: 20%;
  }
  .small-blog-container .blog-content-container {
    width: 80%;
  }
  .small-blog-container .blog-content-container p {
    margin-bottom: 10px;
  }
}
@media all and (min-width: 1400px) {
  .blog-img-container {
    width: 40%;
  }
  .blog-content-container {
    width: 60%;
    padding-left: 50px;
  }
  .blog-content-container h3 {
    margin: 35px 0 45px 0;
  }
  .ti-xl-fn {
    font-size: 35px;
  }
  .single-blog {
    margin-bottom: 50px;
  }
  .small-blog-container .blog-content-container h3 {
    margin: 20px 0;
  }
  .small-blog-container .blog-content-container p {
    margin-bottom: 35px;
  }
}
@media all and (min-width: 1600px) {
  .blog-content-container {
    padding-left: 60px;
  }
  .blog-content-container h3 {
    margin: 40px 0 50px 0;
  }
  .blog-content-container p {
    margin-bottom: 95px;
  }
  .grid-blog-container {
    margin-top: 130px;
  }
  .ti-xl-fn {
    font-size: 40px;
  }
  .small-blog-container .blog-content-container {
    padding-left: 40px;
  }
  .small-blog-container .blog-content-container p {
    margin-bottom: 54px;
  }
}

/*=======================================================
============== Knowledge Blogs Area Style ===============
=======================================================*/
.ti-blog {
  margin-bottom: 60px;
}

.ti-md-title {
  font-size: 14px;
  font-weight: 300;
  color: #9b9898;
}

.ti-sm-ft {
  font-size: 14px;
  font-weight: 300;
  color: #1a1a1a;
}

.blog-title-container {
  margin: 15px 0;
}

.ti-xxl-fn {
  font-size: 26px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0;
  text-transform: capitalize;
}

.main-blog-img-container {
  margin-top: 20px;
}

.blog-list-container {
  margin-top: 30px;
}

.blog-list-container h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.blog-list-container p {
  font-size: 15px;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.45;
}
.blog-body-img {
  margin: 25px 0;
}

@media all and (min-width: 760px) {
  .blog-top-info .max-char {
    max-width: 40ch;
  }
  .blog-title-container {
    margin: 20px 0;
  }
  .ti-xxl-fn {
    font-size: 30px;
  }
  .blog-list-container h2 {
    font-size: 24px;
  }
  .blog-list-container p {
    font-size: 16px;
  }
}
@media all and (min-width: 992px) {
  .blog-container {
    max-width: 760px;
  }
  .ti-blog {
    margin: 120px 0 80px 0;
  }
  .blog-top-info .breadcrumb {
    margin-bottom: 20px;
  }
  .ti-md-title {
    font-size: 16px;
  }
  .ti-sm-ft {
    font-size: 16px;
  }
  .blog-title-container {
    margin: 30px 0;
  }
  .blog-list-container {
    margin-top: 40px;
  }
  .ti-xxl-fn {
    font-size: 45px;
    line-height: 1.1;
  }
  .blog-list-container h2 {
    font-size: 28px;
  }
  .blog-body-img {
    margin: 35px 0;
  }
}
@media all and (min-width: 1200px) {
  .ti-blog {
    margin: 140px 0 100px 0;
  }
  .blog-top-info .breadcrumb {
    margin-bottom: 30px;
  }
  .ti-md-title {
    font-size: 17px;
  }
  .ti-sm-ft {
    font-size: 17px;
  }
  .blog-title-container {
    margin: 40px 0;
  }
  .ti-xxl-fn {
    font-size: 55px;
  }
  .main-blog-img-container {
    margin-top: 30px;
  }
  .blog-list-container {
    margin-top: 50px;
  }
  .blog-list-container h2 {
    font-size: 32px;
  }
  .blog-list-container p {
    font-size: 17px;
  }
}
@media all and (min-width: 1400px) {
  .ti-blog {
    margin: 150px 0 110px 0;
  }

  .ti-xxl-fn {
    font-size: 60px;
  }
}
@media all and (min-width: 1600px) {
  .ti-blog {
    margin: 180px 0 120px 0;
  }
  .blog-top-info .breadcrumb {
    margin-bottom: 40px;
  }
  .ti-md-title {
    font-size: 20px;
  }
  .ti-sm-ft {
    font-size: 18px;
  }
  .blog-title-container {
    margin: 45px 0;
  }
  .ti-xxl-fn {
    font-size: 70px;
  }
  .main-blog-img-container {
    margin-top: 40px;
  }
  .blog-list-container h2 {
    font-size: 40px;
  }
  .blog-list-container p {
    font-size: 18px;
  }
  .blog-body-img {
    margin: 50px 0;
  }
}
