/*-----------------------------------------------------------------------------------
	AH Freelance
	Author: AH Freelance
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.page-container {
  overflow: hidden;
} /* Prevents unwanted scroll space when scroll FX used. */
a,
button {
  transition: background 0.3s ease-in-out;
  outline: none !important;
} /* Prevent blue selection glow on Chrome and Safari */
a:hover {
  text-decoration: none;
  cursor: pointer;
}
.scroll-fx-lock-init {
  position: fixed !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
} /* ScrollFX Lock */
.blocs-grid-container {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.5rem;
  row-gap: 1.5rem;
} /* CSS Grid */
nav .dropdown-menu .nav-link {
  color: rgba(0, 0, 0, 0.6) !important;
} /* Maintain Downdown Menu Link Color in Navigation */
[data-bs-theme="dark"] nav .dropdown-menu .nav-link {
  color: var(--bs-dropdown-link-color) !important;
} /* Maintain Downdown Menu Link Color in Navigation in Darkmode */

/* Preloader */

.page-preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 100000;
  background: #ffffff url("img/pageload-spinner.gif") no-repeat center center;
  animation-name: preloader-fade;
  animation-delay: 2s;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}
.preloader-complete {
  animation-delay: 0.1s;
}
@keyframes preloader-fade {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* = Web Fonts
-------------------------------------------------------------- */

@font-face {
  font-family: "Roboto-Bold";
  src: url("./fonts/Roboto-Bold/Roboto-Bold.ttf");
  src: url("./fonts/Roboto-Bold/Roboto-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* = Blocs
-------------------------------------------------------------- */

.bloc {
  width: 100%;
  clear: both;
  background: 50% 50% no-repeat;
  padding: 0 20px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
  display: flex;
}
.bloc .container {
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

/* Sizes */

.bloc-lg {
  padding: 100px 20px;
}
.bloc-md {
  padding: 50px 20px;
}
.bloc-sm {
  padding: 20px;
}

/* Light theme */

.d-bloc .card,
.l-bloc {
  color: rgba(0, 0, 0, 0.5);
}
.d-bloc .card button:hover,
.l-bloc button:hover {
  color: rgba(0, 0, 0, 0.7);
}
.l-bloc .icon-round,
.l-bloc .icon-square,
.l-bloc .icon-rounded,
.l-bloc .icon-semi-rounded-a,
.l-bloc .icon-semi-rounded-b {
  border-color: rgba(0, 0, 0, 0.7);
}
.d-bloc .card .divider-h span,
.l-bloc .divider-h span {
  border-color: rgba(0, 0, 0, 0.1);
}
.d-bloc .card .a-btn,
.l-bloc .a-btn,
.l-bloc .navbar a,
.l-bloc a .icon-sm,
.l-bloc a .icon-md,
.l-bloc a .icon-lg,
.l-bloc a .icon-xl,
.l-bloc h1 a,
.l-bloc h2 a,
.l-bloc h3 a,
.l-bloc h4 a,
.l-bloc h5 a,
.l-bloc h6 a,
.l-bloc p a {
  color: rgba(0, 0, 0, 0.6);
}
.d-bloc .card .a-btn:hover,
.l-bloc .a-btn:hover,
.l-bloc .navbar a:hover,
.l-bloc a:hover .icon-sm,
.l-bloc a:hover .icon-md,
.l-bloc a:hover .icon-lg,
.l-bloc a:hover .icon-xl,
.l-bloc h1 a:hover,
.l-bloc h2 a:hover,
.l-bloc h3 a:hover,
.l-bloc h4 a:hover,
.l-bloc h5 a:hover,
.l-bloc h6 a:hover,
.l-bloc p a:hover {
  color: rgba(0, 0, 0, 1);
}
.l-bloc .navbar-toggle .icon-bar {
  color: rgba(0, 0, 0, 0.6);
}
.d-bloc .card .btn-wire,
.d-bloc .card .btn-wire:hover,
.l-bloc .btn-wire,
.l-bloc .btn-wire:hover {
  color: rgba(0, 0, 0, 0.7);
  border-color: rgba(0, 0, 0, 0.3);
}

/* = NavBar
-------------------------------------------------------------- */

/* Navbar Icon */
.svg-menu-icon {
  fill: none;
  stroke: rgba(0, 0, 0, 0.5);
  stroke-width: 2px;
  fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon {
  stroke: rgba(255, 255, 255, 0.5);
}
.menu-icon-thin-bars {
  stroke-width: 1px;
}
.menu-icon-thick-bars {
  stroke-width: 5px;
}
.menu-icon-rounded-bars {
  stroke-width: 3px;
  stroke-linecap: round;
}
.menu-icon-filled {
  fill: rgba(0, 0, 0, 0.5);
  stroke-width: 0px;
}
.navbar-dark .menu-icon-filled {
  fill: rgba(255, 255, 255, 0.5);
}
.navbar-toggler-icon {
  background: none !important;
  pointer-events: none;
  width: 33px;
  height: 33px;
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu {
  border: none;
}
@media (min-width: 576px) {
  .navbar-expand-sm .dropdown-menu .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.15);
    position: absolute;
    left: 100%;
    top: -7px;
  }
  .navbar-expand-sm .dropdown-menu .submenu-left {
    right: 100%;
    left: auto;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md .dropdown-menu .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.15);
    position: absolute;
    left: 100%;
    top: -7px;
  }
  .navbar-expand-md .dropdown-menu .submenu-left {
    right: 100%;
    left: auto;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg .dropdown-menu .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.15);
    position: absolute;
    left: 100%;
    top: -7px;
  }
  .navbar-expand-lg .dropdown-menu .submenu-left {
    right: 100%;
    left: auto;
  }
}

/* = Buttons
-------------------------------------------------------------- */

.btn-d,
.btn-d:hover,
.btn-d:focus {
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
}

/* = Icons
-------------------------------------------------------------- */
.icon-md {
  font-size: 30px !important;
}

/* Image Protection */
.img-protected {
  -webkit-touch-callout: none;
}

/* = Cards
-------------------------------------------------------------- */
.card-sq,
.card-sq .card-header,
.card-sq .card-footer {
  border-radius: 0;
}
.card-rd {
  border-radius: 30px;
}
.card-rd .card-header {
  border-radius: 29px 29px 0 0;
}
.card-rd .card-footer {
  border-radius: 0 0 29px 29px;
}
/* = Masonary
-------------------------------------------------------------- */
.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}
/* = Classic Dividers
-------------------------------------------------------------- */
.divider-h {
  min-height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 20px 0;
}
.divider-half {
  width: 50%;
}
.dropdown-menu .divider-h {
  margin: 0;
}

/* ScrollToTop button */

.scrollToTop {
  width: 36px;
  height: 36px;
  padding: 5px;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  opacity: 0;
  z-index: 999999;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.showScrollTop {
  opacity: 1;
  pointer-events: all;
}
.scroll-to-top-btn-icon {
  fill: none;
  stroke: #fff;
  stroke-width: 2px;
  fill-rule: evenodd;
  stroke-linecap: round;
}

/* = Custom Styling
-------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6,
p,
label,
.btn,
a {
  font-family: "Helvetica";
}
.container {
  max-width: 1140px;
}
.custom-header {
  padding: 10px 0px 10px 0px;
}
.nav-4-row {
  position: relative;
}
.mini-text-logo {
  font-size: 1.8em;
  text-transform: uppercase;
}
.bold {
  font-family: "Roboto-Bold";
}
.nav-4-visible {
  position: relative;
  z-index: 3;
}
.menu-button {
  position: relative;
  height: 40px;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-start;
}
.button-primary {
  background-color: var(--swatch-var-779);
  color: #ffffff !important;
  fill: var(--swatch-var-5803);
  stroke: var(--swatch-var-5803);
}
.button-primary:hover {
  background-color: var(--swatch-var-5545);
}
.button-primary:active {
  background-color: var(--swatch-var-5545);
}
.nav-4-menu {
  z-index: 1;
  min-width: 100%;
  position: absolute;
  background-color: var(--swatch-var-7747);
  padding: 10px 28px 0px 28px;
}
.mega-menu-close-icon {
  padding-top: 1px;
}
.big-link {
  font-size: 1.8em;
}
.menu-social-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  align-content: center;
}
.mini-team-social-icon {
  width: 30px;
  text-align: center;
  font-size: 22px;
}
.mini-team-social-icon:hover {
  opacity: 0.8;
}
.menu-icon-29711-stroke {
  stroke: var(--swatch-var-5803) !important;
  fill: var(--swatch-var-5803) !important;
}
.navlink-margin {
  margin-left: 7px;
  margin-right: 7px;
}
.img-style {
  width: 174px;
}
.global-radius {
  overflow: hidden !important;
}
.mini-subtitle {
  text-transform: uppercase;
}
.mini-large-p {
  font-size: 1.3em;
}
.mini-extra-label {
  display: block;
}
.black-link {
  text-decoration: underline !important;
  color: #000000 !important;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  align-content: flex-start;
}
.contact-detail-half {
  width: 50%;
  display: block;
}
.btn-style {
  fill: var(--swatch-var-5803);
  stroke: var(--swatch-var-5803);
}
.img-5-style {
  border-radius: 0px 0px 0px 0px;
}
.mini-gallery-vertical-img {
  padding: 4px 4px 4px 4px;
}
.galllery-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 20px;
  row-gap: 20px;
}
.featured-image {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}
.full-width {
  width: 100%;
}
.featured-image-2 {
  grid-column-end: 5;
  grid-column-start: 3;
  grid-row-start: 3;
  grid-row-end: 5;
}
.img-2-style {
  width: 310px;
  border-radius: 213.5px 213.5px 213.5px 213.5px;
}
.p-style {
  width: 100%;
}
.mini-pricing-1 {
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.mini-pricing-6 {
  padding: 50px 40px 50px 50px;
  width: 100%;
  border-style: solid;
  border-color: rgba(242, 242, 242, 0.14) !important;
  border-width: 1px 1px 1px 1px;
}
.mini-pricing-1-price {
  font-size: 3em;
  line-height: 1.3em;
}
.mini-pricing-1-icon {
  margin-right: 5px;
  font-size: 20px;
}
.white-button {
  border-width: 1px 1px 1px 1px;
  border-style: solid;
  background-color: var(--swatch-var-7747);
  color: var(--swatch-var-4497) !important;
  border-color: rgba(0, 0, 0, 0.28) !important;
}
.white-button:hover {
  background-color: var(--swatch-var-3131);
  color: var(--swatch-var-5803) !important;
  border-color: #000000 !important;
}
.white-button:active {
  background-color: var(--swatch-var-3131);
}
.mini-pricing-6-main {
  padding: 50px 50px 50px 50px;
  z-index: 1;
  width: 100%;
}
.black-button {
  color: #eaeaea !important;
  background-color: var(--swatch-var-4497);
  border-width: 1px 1px 1px 1px;
  border-style: solid;
  border-color: var(--swatch-var-4497) !important;
}
.black-button:hover {
  color: #feffff !important;
  background-color: #181818;
  border-color: #181818 !important;
}
.black-button:active {
  background-color: var(--swatch-var-5803);
}
.mini-pricing-1-left-card {
  padding: 50px 40px 50px 50px;
  width: 280px;
  border-style: solid;
  border-color: rgba(242, 242, 242, 0.14) !important;
  border-width: 1px 0px 1px 1px;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.small-subtitle {
  padding: 0.3em 1em 0.3em 1em;
  background-color: rgba(169, 169, 169, 0.2);
  font-size: 0.9em;
  overflow: hidden;
}
.mini-pricing-1-card {
  padding: 50px 50px 50px 50px;
  z-index: 1;
  width: 328px;
}
.mini-pricing-1-right-card {
  padding: 50px 50px 50px 40px;
  width: 280px;
  border-width: 1px 1px 1px 0px;
  border-style: solid;
  border-color: rgba(242, 242, 242, 0.14) !important;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}
.p-23-style {
  font-size: 50px;
  width: 67.15%;
}
.navbar-nav li a {
  font-size: 19px;
}
.img--hr697-style {
  width: 366px;
}
.p-bloc-3-style {
  width: 100%;
}
.img-bloc-2-style {
  width: 367px;
  border-radius: 0px 0px 0px 0px;
}
.img-8-style {
  width: 367px;
}
.container-div-bloc-2-min-height {
  min-height: 961px;
}
.img-47796-style {
  height: 400px;
  width: 400px;
}
.img-3-style {
  width: 272px;
}
.img-37461-style {
  width: 440px;
}
.img-4-style {
  width: 314px;
}
.img-17681-style {
  width: 267px;
}
.img-11-style {
  border-radius: 0px 0px 0px 0px;
  width: 344px;
}
.h6-style {
  font-size: 30px;
}
.img-14-style {
  width: 400px;
  height: 400px;
}
.img---style {
  height: 490px;
}
.navbar-brand img {
  width: 225px;
  height: 150px;
}
.link-style {
  padding-top: 1px;
  padding-bottom: 1px;
  width: 28.42%;
}

/* = Colour
-------------------------------------------------------------- */

/* Swatch Variables */
:root {
  --swatch-var-7747: #ffffff;

  --swatch-var-5803: rgba(16, 16, 16, 1);

  --swatch-var-4497: #202020;

  --swatch-var-779: #0066cc;

  --swatch-var-5545: #0088ff;

  --swatch-var-2760: #151515;

  --swatch-var-2277: #212121;

  --swatch-var-5380: #fbf6d7;

  --swatch-var-266: #ff2600;

  --swatch-var-7235: #942092;

  --swatch-var-1320: #0096ff;

  --swatch-var-3131: #eeeeee;

  --swatch-var-176: #f8f8f8;

  --swatch-var-7833: #931551;

  --swatch-var-7343: #000000;
}

/* Background colour styles */

.bgc-3131 {
  background-color: var(--swatch-var-3131);
}

/* Text colour styles */

.tc-5803 {
  color: var(--swatch-var-5803) !important;
}
.tc-4497 {
  color: var(--swatch-var-4497) !important;
}

/* Button colour styles */

.bgc-7747 {
  background-color: var(--swatch-var-7747);
}
.tc-7747 {
  color: var(--swatch-var-7747) !important;
}
.btn-c-7747,
.btn-c-7747:focus {
  background: var(--swatch-var-7747);
  color: rgba(0, 0, 0, 0.5) !important;
}
.btn-c-7747:hover {
  background: #cccccc !important;
  color: rgba(0, 0, 0, 0.5) !important;
}
.wire-btn-c-7747 {
  color: var(--swatch-var-7747) !important;
  border-color: var(--swatch-var-7747) !important;
}
.ltc-7747 {
  color: var(--swatch-var-7747) !important;
}
.ltc-7747:hover {
  color: #cccccc !important;
}
.icon-7747 {
  color: var(--swatch-var-7747) !important;
  border-color: var(--swatch-var-7747) !important;
}
/**/
.bgc-5803 {
  background-color: var(--swatch-var-5803);
}
.tc-5803 {
  color: var(--swatch-var-5803) !important;
}
.btn-c-5803,
.btn-c-5803:focus {
  background: var(--swatch-var-5803);
  color: #ffffff !important;
}
.btn-c-5803:hover {
  background: #000000 !important;
  color: #ffffff !important;
}

/* Link colour styles */

.ltc-4497 {
  color: var(--swatch-var-4497) !important;
}
.ltc-4497:hover {
  color: #000000 !important;
}
.ltc-5803 {
  color: var(--swatch-var-5803) !important;
}
.ltc-5803:hover {
  color: #000000 !important;
}

/* Icon colour styles */

.icon-5803 {
  color: var(--swatch-var-5803) !important;
  border-color: var(--swatch-var-5803) !important;
}

/* Bloc image backgrounds */

.mt-lg-0 {
}

/* = Toggle Visibility
-------------------------------------------------------------- */

.toggled-item {
  transition:
    height 350ms ease-in-out,
    padding 350ms ease-in-out,
    opacity 350ms ease-in-out;
  overflow: hidden;
}
.toggled-item-hidden {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  outline: 0 !important;
  opacity: 0;
}
.object-hidden {
  display: none;
}

/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */

@media (min-width: 576px) {
  .bloc-xxl-sm {
    padding: 200px 20px;
  }
  .bloc-xl-sm {
    padding: 150px 20px;
  }
  .bloc-lg-sm {
    padding: 100px 20px;
  }
  .bloc-md-sm {
    padding: 50px 20px;
  }
  .bloc-sm-sm {
    padding: 20px;
  }
  .bloc-no-padding-sm {
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .bloc-xxl-md {
    padding: 200px 20px;
  }
  .bloc-xl-md {
    padding: 150px 20px;
  }
  .bloc-lg-md {
    padding: 100px 20px;
  }
  .bloc-md-md {
    padding: 50px 20px;
  }
  .bloc-sm-md {
    padding: 20px 20px;
  }
  .bloc-no-padding-md {
    padding: 0 20px;
  }
}
@media (min-width: 992px) {
  .bloc-xxl-lg {
    padding: 200px 20px;
  }
  .bloc-xl-lg {
    padding: 150px 20px;
  }
  .bloc-lg-lg {
    padding: 100px 20px;
  }
  .bloc-md-lg {
    padding: 50px 20px;
  }
  .bloc-sm-lg {
    padding: 20px;
  }
  .bloc-no-padding-lg {
    padding: 0 20px;
  }
}

/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px) {
  .bloc.full-width-bloc,
  .bloc-tile-2.full-width-bloc .container,
  .bloc-tile-3.full-width-bloc .container,
  .bloc-tile-4.full-width-bloc .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .container {
    width: 100%;
  }
  .bloc {
    padding-left: constant(safe-area-inset-left);
    padding-right: constant(safe-area-inset-right);
  } /* iPhone X Notch Support*/
  .bloc-group,
  .bloc-group .bloc {
    display: block;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .bloc-tile-2 .container,
  .bloc-tile-3 .container,
  .bloc-tile-4 .container {
    padding-left: 0;
    padding-right: 0;
  }
  .btn-dwn {
    display: none;
  }
  .voffset {
    margin-top: 5px;
  }
  .voffset-md {
    margin-top: 20px;
  }
  .voffset-lg {
    margin-top: 30px;
  }
  form {
    padding: 5px;
  }
  .close-lightbox {
    display: inline-block;
  }
  .blocsapp-device-iphone5 {
    background-size: 216px 425px;
    padding-top: 60px;
    width: 216px;
    height: 425px;
  }
  .blocsapp-device-iphone5 img {
    width: 180px;
    height: 320px;
  }
}

@media (max-width: 991px) {
  .custom-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .mini-text-logo {
  }
  .big-link {
    font-size: 1.6em;
  }
  .navlink-margin {
    margin-left: 5px;
    margin-right: 5px;
  }
  .mini-large-p {
    font-size: 1.2em;
  }
  .contact-details {
    flex-direction: column;
  }
  .contact-detail-half {
    width: 100%;
  }
  .mini-gallery-vertical-img {
    padding: 4px 4px 4px 4px;
  }
  .galllery-grid {
    row-gap: 15px;
    column-gap: 15px;
  }
  .mini-pricing-1 {
  }
  .mini-pricing-6 {
    padding: 40px 20px 40px 24px;
  }
  .mini-pricing-6-main {
    padding: 40px 40px 40px 40px;
  }
  .black-button {
  }
  .mini-pricing-1-left-card {
    padding: 40px 20px 40px 24px;
  }
  .mini-pricing-1-card {
    padding: 40px 40px 40px 40px;
    width: 328px;
  }
  .mini-pricing-1-right-card {
    padding: 40px 24px 40px 20px;
  }
}

@media (max-width: 767px) {
  .nav-4-menu {
    padding-left: 15px;
    padding-right: 15px;
  }
  .big-link {
    font-size: 1.4em;
  }
  .mini-team-social-icon {
    font-size: 25px;
  }
  .contact-details {
    flex-direction: row;
  }
  .contact-detail-half {
    width: 50%;
  }
  .mini-gallery-vertical-thumbs {
    display: flex;
    width: 100%;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .mini-gallery-vertical-img {
    max-width: 50%;
    padding: 4px 4px 4px 4px;
  }
  .galllery-grid {
    column-gap: 10px;
    row-gap: 10px;
  }
  .mini-pricing-1 {
    flex-direction: column;
  }
  .mini-pricing-6 {
    padding: 35px 28px 35px 28px;
    border-width: 1px 1px 1px 1px;
  }
  .mini-pricing-6-main {
    box-shadow: 0px 0px 28px rgba(0, 0, 0, 0.14);
    margin-top: 28px;
    margin-bottom: 28px;
  }
  .mini-pricing-1-left-card {
    padding: 35px 28px 35px 28px;
    width: 328px;
    border-radius: auto auto auto auto !important;
    border-width: 1px 1px 1px 1px;
  }
  .mini-pricing-1-card {
    box-shadow: 0px 0px 28px rgba(0, 0, 0, 0.14);
    margin-top: 28px;
    margin-bottom: 28px;
  }
  .mini-pricing-1-right-card {
    padding: 35px 28px 35px 28px !important;
    border-radius: 0px 0px 0px 0px !important;
    border-width: 1px 1px 1px 1px;
    width: 328px;
  }
}

@media (max-width: 575px) {
  .mini-text-logo {
  }
  .big-link {
    font-size: 1.3em;
  }
  .global-radius {
  }
  .mini-large-p {
    font-size: 1.1em;
  }
  .contact-details {
    flex-direction: column;
  }
  .contact-detail-half {
    width: 100%;
  }
  .mini-gallery-vertical-thumbs {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .mini-gallery-vertical-img {
    max-width: 50%;
    padding: 4px 4px 4px 4px;
  }
  .galllery-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    row-gap: 5px;
    column-gap: 5px;
  }
  .featured-image {
    grid-column-end: 5;
  }
  .featured-image-2 {
    grid-column-start: 1;
    grid-column-end: 5;
  }
  .mini-pricing-1 {
  }
  .mini-pricing-6 {
    width: 100%;
    padding-top: 28px;
  }
  .mini-pricing-6-main {
    width: 100%;
  }
  .mini-pricing-1-left-card {
    width: 100%;
    padding-top: 28px;
    max-width: 280px;
  }
  .mini-pricing-1-card {
    width: 100%;
    max-width: 328px;
  }
  .mini-pricing-1-right-card {
    width: 100%;
    padding-bottom: 28px;
    max-width: 280px;
  }
  .gap-close {
    margin-top: -70px;
  }
  .img-2-style {
  }
  .p-bloc-3-style {
    font-size: 14px;
  }
  .navbar-brand img {
    height: 100px;
    width: 150px;
  }
}

/* = Services
-------------------------------------------------------------- */

.service-intro {
  background: #ffffff;
}

.service-kicker {
  font-family: "Roboto-Bold";
  font-size: 0.8rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.services-title {
  font-family: "Roboto-Bold";
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.96;
  overflow-wrap: break-word;
}

.service-heading {
  font-family: "Roboto-Bold";
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 1.02;
  max-width: 12em;
  overflow-wrap: break-word;
}

.service-lede {
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 34rem;
}

.service-lede-large {
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
  line-height: 1.55;
  max-width: 38rem;
}

.service-text-link {
  color: var(--swatch-var-5803) !important;
  display: inline-flex;
  gap: 0.45rem;
  text-decoration: underline !important;
  text-underline-offset: 0.24em;
}

.service-gateway {
  border-top: 1px solid oklch(84% 0.012 95);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}

.service-gateway-item {
  align-items: flex-start;
  border-bottom: 1px solid oklch(84% 0.012 95);
  border-right: 1px solid oklch(84% 0.012 95);
  color: var(--swatch-var-5803) !important;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 10rem;
  padding: 1rem;
  text-decoration: none !important;
}

.service-gateway-item:first-child {
  border-left: 1px solid oklch(84% 0.012 95);
}

.service-gateway-item span,
.service-detail-number {
  color: oklch(46% 0.09 245);
  font-family: "Roboto-Bold";
  font-size: 0.86rem;
}

.service-gateway-item strong {
  font-family: "Roboto-Bold";
  font-size: 1.22rem;
}

.service-gateway-item small {
  color: rgba(16, 16, 16, 0.68);
  font-size: 1rem;
  line-height: 1.5;
}

.service-gateway-item:hover {
  background: rgba(0, 0, 0, 0.03);
}

.services-page-hero {
  background: #ffffff;
}

.services-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.services-index a {
  border: 1px solid oklch(82% 0.012 95);
  border-radius: 8px;
  color: var(--swatch-var-5803) !important;
  padding: 0.72rem 0.95rem;
  text-decoration: none !important;
}

.services-index a:hover {
  background: rgba(0, 0, 0, 0.03);
}

.service-detail {
  border-top: 1px solid oklch(84% 0.012 95);
  padding: 4rem 0;
}

.service-detail:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-detail h2 {
  font-family: "Roboto-Bold";
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}

.service-detail p,
.service-detail li {
  color: rgba(16, 16, 16, 0.72);
  font-size: 1.03rem;
  line-height: 1.7;
}

.service-detail ul {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.service-detail li {
  border-top: 1px solid oklch(90% 0.008 95);
  padding: 0.72rem 0;
}

.service-cta-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.service-primary-button {
  background: var(--swatch-var-5803);
  border: 1px solid var(--swatch-var-5803);
  border-radius: 8px;
  color: oklch(98% 0.006 95) !important;
  display: inline-block;
  font-family: "Roboto-Bold";
  padding: 0.85rem 1.15rem;
  text-decoration: none !important;
}

.service-primary-button:hover {
  background: oklch(26% 0.01 95);
  border-color: oklch(26% 0.01 95);
}

.service-secondary-note {
  color: rgba(16, 16, 16, 0.62);
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .service-heading {
    font-size: clamp(2rem, 9.5vw, 2.9rem);
    line-height: 1.08;
  }

  .service-heading,
  .service-lede,
  .service-gateway,
  .service-gateway-cta,
  .services-index,
  .service-detail h2,
  .service-detail p,
  .service-detail ul,
  .service-cta-row {
    max-width: min(330px, calc(100vw - 40px));
    width: 100%;
  }

  .service-detail .row {
    margin-left: 0;
    margin-right: 0;
  }

  .service-detail [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }

  .service-gateway-item {
    gap: 0.35rem;
    grid-template-columns: 2.4rem 1fr;
  }

  .service-gateway-item small {
    grid-column: 2;
  }

  .service-detail {
    padding: 3rem 0;
  }
}

@media (max-width: 991px) {
  .service-gateway {
    display: block;
  }

  .service-gateway-item,
  .service-gateway-item:first-child {
    border-left: 0;
    border-right: 0;
    display: grid;
    gap: 0.35rem 1rem;
    grid-template-columns: 2.4rem 1fr;
    min-height: auto;
    padding: 1rem 0;
  }

  .service-gateway-item small {
    grid-column: 2;
  }
}
