html,
body {
  margin: 0;
  padding: 0;
  zoom: 1;
  /* overflow-x: hidden; */
}

/* @media (min-width: 992px) {

  html,
  body {
    zoom: 1.2;
  }
}

@media (min-width: 1200px) {

  html,
  body {
    zoom: 1.4;
  }
} */


@media (min-width: 1600px) {

  html,
  body {
    zoom: 1;
  }
}

@media (min-width: 1800px) {

  html,
  body {
    zoom: 1.1;
  }
}

@media (min-width: 2800px) {

  html,
  body {
    zoom: 1.3;
  }
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

body {
  -webkit-text-size-adjust: none;
}

mark {
  background-color: transparent;
  color: inherit;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input,
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

body,
input,
select,
textarea {
  color: #161616;
  /* font-family: 'Source Sans Pro', Helvetica, sans-serif; */
  /* font-family: "Roboto Sans Serif", serif; */
  font-family: "Lato", sans-serif;
  font-size: 14pt;
  font-weight: 400;
  line-height: 1.75;
}

@media screen and (max-width: 1680px) {

  body,
  input,
  select,
  textarea {
    font-size: 12pt;
  }
}

@media screen and (max-width: 1280px) {

  body,
  input,
  select,
  textarea {
    font-size: 12pt;
  }
}

@media screen and (max-width: 980px) {

  body,
  input,
  select,
  textarea {
    font-size: 12pt;
  }
}

@media screen and (max-width: 736px) {

  body,
  input,
  select,
  textarea {
    font-size: 12pt;
  }
}

@media screen and (max-width: 480px) {

  body,
  input,
  select,
  textarea {
    font-size: 12pt;
  }
}

a {
  -moz-transition: color 0.2s ease, border-bottom-color 0.2s ease;
  -webkit-transition: color 0.2s ease, border-bottom-color 0.2s ease;
  -ms-transition: color 0.2s ease, border-bottom-color 0.2s ease;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
  color: inherit;
  text-decoration: none;
}

a:before {
  -moz-transition: color 0.2s ease;
  -webkit-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

a:hover {
  border-bottom-color: transparent;
  color: #2664ea !important;
}

a:hover:before {
  color: #2664ea !important;
}

#header {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #ffffff;
  border-bottom: solid 1px rgba(160, 160, 160, 0.3);
  height: 70px;
  left: 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10000;
  padding: 0 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#header .logo {
  width: 100%;
  height: 45px;
}

#header .header-bar-img {
  width: 100%;
  height: 25px;
}

#header a {
  color: inherit;
  text-decoration: none;
}

#header ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

#header ul li {
  display: inline-block;
  padding-left: 0;
}

#header h1 {
  line-height: inherit;
  white-space: nowrap;
}

#header h1 a {
  font-size: 22px;
  color: rgb(18, 18, 18);
  font-family: "Roboto Serif", serif;
}

#header .links {
  display: flex;
  height: inherit;
  line-height: inherit;
  overflow: hidden;
}

#header .links ul {
  display: flex;
  align-items: center;
}

#header .links ul li {
  border-left: solid 1px rgba(160, 160, 160, 0.3);
  line-height: 1;
  margin-left: 1em;
  padding-left: 1em;
  font-size: 18px;
}

#header .links ul li:first-child {
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
}

#header .links ul li a {
  border-bottom: 0;
  font-family: 'Raleway', Helvetica, sans-serif;
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

@media screen and (max-width: 992px) {
  #header .links {
    display: none;
  }
}

@media screen and (max-width: 736px) {
  #header {
    height: 50px;
  }
  
  #header .logo {
    width: 100%;
    height: 35px;
  }
  #header {
    /* height: 2.75em; */
    line-height: 2.75em;
  }

  #header h1 {
    padding: 0;
  }
}

/* Footer */
#footer {
  background-color: rgb(42, 41, 41);
  width: 100%;
}


/* #footer .icons img {
  color: #aaaaaa;
  width: 30px;
} */

.footer-icon {
  color: #aaaaaa;
  width: 15px;
}

#footer .copyright {
  color: #aaaaaa;
  font-family: 'Raleway', Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

body.single #footer {
  text-align: center;
}

/* Hero */
#hero {
  min-height: calc(85vh - 70px) !important;
  position: relative;
}

.main-title {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 100px !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1b1b1b;
  margin-left: -5px;
  margin-top: -20px !important;
  z-index: 2;
  position: relative;
  opacity: 1;
  animation: changeTitle 6s infinite;
}

@keyframes changeTitle {

  0%,
  33.33% {
    opacity: 1;
  }

  33.33%,
  66.66% {
    opacity: 0;
  }

  66.66%,
  100% {
    opacity: 1;
  }
}


#hero .render {
  position: absolute;
  top: 96%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100px;
  width: 100%;
}


.hero-img {
  height: 400px;
  /* width: 400px; */
  width: 100%;
}

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

.badge {
  color: #161616;
  background-color: #bfdbfe;
}

.btn {
  border: none !important;
}

.btn-primary {
  background-color: #327df5 !important;
  color: #ffffff !important;
}

.btn-primary:hover {
  background-color: #327df5 !important;
  color: #ffffff !important;
}



/* .custom-card p {
  font-size: 17px;
  font-weight: 400;
  line-height: 20px;
  color: #666;
}

.custom-card p.small {
  font-size: 14px;
} */

.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32px;
  height: 32px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-color: #e0e0e0;
  border-radius: 0 4px 0 32px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

.custom-card1 {
  display: block;
  position: relative;
  /* max-width: 400px; */
  background-color: #ffffff;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  min-height: 300px;
}

.custom-card1:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #33558b;
  /* height: 32px; */
  height: 45px;
  width: 40px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}

.custom-card1:hover:before {
  transform: scale(21);
}

.custom-card1:hover p {
  transition: all 0.3s ease-out;
  color: rgba(255, 255, 255, 0.8);
}

.custom-card1 img {
  max-height: 150px;
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.custom-card1:hover h3 {
  transition: all 0.3s ease-out;
  color: #fff;
}

.custom-card1:hover .text-muted {
  transition: all 0.3s ease-out;
  color: #fff !important;
}

.min-h {
  min-height: 400px;
  max-height: 900px;
}

@keyframes animate {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(360deg);
  }
}

.cube-x {
  position: absolute;
  left: 300px !important;
  top: 100px !important;
}

.container-cube {
  position: relative;
  /* top: -80px; */
  transform: skewY(-20deg);
  animation: animate 5s linear infinite;

  .cube {
    position: relative;
    z-index: 2;

    &:nth-child(2) {
      z-index: 1;
      translate: -60px -60px;
    }

    &:nth-child(3) {
      z-index: 3;
      translate: 60px 60px;
    }

    div {
      position: absolute;
      display: flex;
      flex-direction: column;
      gap: 30px;
      translate: calc(-70px * var(--x)) calc(-60px * var(--y));

      span {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 50px;
        background: #dcdcdc;
        z-index: calc(1 * var(--i));
        transition: 1.5s;

        &:hover {
          transition: 0s;
          background: #ef4149;
          filter: drop-shadow(0 0 30px #ef4149);

          &:before,
          &:after {
            transition: 0s;
            background: #ef4149;
          }
        }

        &:before {
          content: "";
          position: absolute;
          left: -40px;
          width: 40px;
          height: 100%;
          background: #fff;
          transform-origin: right;
          transform: skewY(45deg);
          transition: 1.5s;
        }

        &:after {
          content: "";
          position: absolute;
          top: -40px;
          left: 0px;
          width: 100%;
          height: 40px;
          background: #f2f2f2;
          transform-origin: bottom;
          transform: skewX(45deg);
          transition: 1.5s;
        }
      }
    }
  }
}

#about {
  /* height: calc(100vh - 80px) !important; */
}

.about-header .img-container {
  position: relative;
  width: 100%;
  height: 300px;
}

.about-header .img-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.about-header .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-header .heading-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
}

.about-header .heading {
  text-align: start;
  font-size: 35px;
  font-weight: bold;
  line-height: 1.2;
}

.line {
  background-color: #254fa9;
  height: 5px;
  width: 50px;
}

.line-2 {
  background-color: #2e2e2e;
  height: 6px;
  width: 50px;
}

.about-container {
  font-family: "Roboto Condensed", Arial, sans-serif;
}

.breadcumb {
  color: white;
}

.breadcumb-cont {
  width: 100%;
  height: 50px;
  background-color: #142957;
  display: flex;
  align-items: center;
}

.icon-size {
  width: 22px;
  height: 22px;
}


/* ==== */


button {
  display: inline-block;
  border-radius: 4px;
  background-color: #3d405b;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 17px;
  padding: 12px;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

button span:after {
  content: '»';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -15px;
  transition: 0.5s;
}

button:hover span {
  padding-right: 15px;
}

button:hover span:after {
  opacity: 1;
  right: 0;
}


#hero-background {
  background-image: url('./../assets/images/work1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  height: calc(100vh - 70px);
  max-height: 800px;
}

#hero-background>div {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#hero-background h1.fs-50 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
}

#hero-background div {
  margin-top: 20px;
}

#hero-background button {
  background-color: #ffffff;
  color: #242729;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

#hero-background button:hover {
  background-color: #f0f0f0;
}

.banner {
  text-align: center;
  padding: 50px 20px;
  background-color: #f5f5f5;
}

.banner h1 {
  color: #333;
  font-size: 2em;
}

.banner h2 {
  color: #666;
  font-size: 1.5em;
  margin: 10px 0;
}

.banner p {
  color: #777;
  font-size: 1em;
}

.contentservice {
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
}

.image-container {
  text-align: right;
  width: 100%;
}

.image-container img {
  max-width: 100%;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.text-container h2 {
  color: #333;
  font-size: 2em;
  margin-bottom: 20px;
}

.text-container p {
  color: #666;
  font-size: 1em;
  line-height: 1.5;
}

#about {
  background-color: #F8F8F8;
}



.card-flip {
  width: 100%;
  height: 400px;
  perspective: 1000px;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.999s;
}

.card-flip:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.card-front {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transform: rotateY(0deg);
}

.card-back {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transform: rotateY(180deg);
}

.section-main-tile {
  letter-spacing: 5px;
  font-size: 35px;
  font-weight: 500;
}

#why-choose {
  background-color: #F8F8F8;
}

#why-choose .box img {
  width: 50px;
  height: auto;
}

.logo-footer {
  width:250px !important;
  height: 150px;
  /* aspect-ratio: 1; */
  object-fit: cover;
  border-radius: 8px;
}

.grid-img {
  position: relative;
  overflow: hidden;
}

.grid-img img {
  width: 100%;
  height: auto;
  min-height: 210px;
  /* min-height: 200px; */
  transition: transform 0.3s ease;
  object-fit: cover;
}

.grid-img img:hover {
  transform: scale(1.1);
}

.choose-cont {
  min-height: 140px;

}


/* breakpoints */
@media (max-width: 575.98px) {
  #hero-background {
    padding: 50px 0;
    max-height: 300px;
  }


  #hero-background h1.fs-50 {
    font-size: 20px !important;
    margin-bottom: 0;
  }

  #hero-background .hero-quote {
    display: none;
  }

  #hero-background button {
    padding: 5px 10px;
    font-size: 14px;
    width: auto;
  }

  #about {
    margin-top: 30px;
  }

  .section-main-tile {
    letter-spacing: 5px;
    font-size: 20px;
    font-weight: 500;
  }

  .section-main-adjust-tile {
    letter-spacing: 5px;
    font-size: 15px;
    font-weight: 500;
  }

  .container {
    margin: 0 !important;
    padding: 0 !important;
  }

  .section-sub-tile {
    font-size: 13px;
  }

  .card-flip {
    max-height: 250px;
  }

  .custom-card1 {
    padding: 32px 24px;
    margin: 0px;
    margin-bottom: 20px;
    min-height: 300px;
  }

  .custom-card1 img {
    max-height: 200px;
  }

  .min-h {
    min-height: 400px;
    max-height: 2200px !important;
  }

  .choose-cont {
    min-height: 140px !important;

  }

  .index-sidebar .copyright {
    font-size: 12px !important;
  }

  .animate-title {
    display: none;
  }

  .about-side .hero-img {
    height: auto !important;
  }

}

@media (max-width: 767.98px) {

  .animate-title {
    display: none;
  }

  #hero-background h1.fs-50 {
    font-size: 40px;
    margin-bottom: 0;
  }

  #hero-background .hero-quote {
    display: none;
  }

  #hero-background button {
    font-size: 14px;
  }

  #about {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .custom-card1:before {
    background: #fafafa;
  }

  .custom-card1:hover .text-muted {
    transition: all 0.3s ease-out;
    color: inherit !important;
  }

  .custom-card1:hover p {
    transition: all 0.3s ease-out;
    color: #111111 !important;
  }

  .choose-cont {
    min-height: 140px !important;

  }

  .min-h {
    max-height: 2200px !important;
  }
}

@media (max-width: 991.98px) {
  #about {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .choose-cont {
    min-height: 240px;

  }

  .min-h {
    max-height: 2200px !important;
  }
}

@media (max-width: 1199.98px) {}

@media (max-width: 1399.98px) {}


#index-sidebar {
  width: 250px;
  position: fixed;
  top: 0;
  right: -250px;
  height: 100%;
  background-color: #FFFFFF;
  /* background-color: #ffffff; */
  overflow-x: hidden;
  transition: 0.5s;
  z-index: 10001;
}

#index-sidebar.active {
  right: 0;
}

.hidden-elements {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(100%);
  transition: all 1s;
}

.show {
  opacity: 1 !important;
  filter: blur(0);
  transform: translateX(0);
  transition: all 1s;
}