@charset "UTF-8";

@font-face {
  font-family: fontMedium;
  src: url(../fonts/Rubik-Regular.ttf);
}

@font-face {
  font-family: fontLight;
  src: url(../fonts/Rubik-Light.ttf);
}

@font-face {
  font-family: fontBold;
  src: url(../fonts/PlayfairDisplay-Bold.ttf);
}

@font-face {
  font-family: fontExtraBold;
  src: url(../fonts/Rubik-ExtraBold.ttf);
}

@font-face {
  font-family: fontSemiBold;
  src: url(../fonts/Rubik-SemiBold.ttf);
}

@font-face {
  font-family: fontRubikBold;
  src: url(../fonts/Rubik-SemiBold.ttf);
}

.theme-font-medium {
  font-family: fontMedium !important;
}

.theme-font-regular {
  font-family: fontRegular !important;
}

.theme-font-head {
  font-family: "Playfair Display", serif !important;
}

.theme-font-bold {
  font-family: fontBold !important;
}

.theme-font-extra-bold {
  font-family: fontExtraBold !important;
}

.theme-font-light {
  font-family: fontLight !important;
}

.theme-font-semibold {
  font-family: fontSemiBold !important;
}

.theme-font-rubik-bold {
  font-family: fontRubikBold !important;
}

.regular {
  font-weight: 300 !important;
}

.medium {
  font-weight: 400 !important;
}

.semibold {
  font-weight: 500 !important;
}

.bold {
  font-weight: 700 !important;
}

.bolder {
  font-weight: 900 !important;
}

:root {
  --themePrimary: #08132f;
  --themeSecondary: #ff0000;
  --themeBg: #ffeeef;
  --theme-gradient: linear-gradient(180deg,
      #ebfef6 0%,
      #f5f2f2 49.48%,
      rgba(255, 229, 238, 0.12) 100%);
  --white: #fff;
  --black: #000;
  --gray: #676767;
  --color-cosmeciety: #4e359c;
  --color-nft: #f7970d;
  --color-nft-gradient: linear-gradient(86.73deg,
      #f7590d 1.44%,
      #f7b10d 98.02%);
  --color-chemist: #0001c9;
  --color-zerve: #f5672d;
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  height: 4px;
  width: 4px;
  border: 1px solid #d5d5d5;
}

::-webkit-scrollbar-track {
  /* border-radius:0; */
  background: #eee;
}

::-webkit-scrollbar-thumb {
  border-radius: 0;
  background: #b0b0b0;
}

::-webkit-scrollbar-thumb:hover {
  cursor: pointer;
}

html {
  font-family: fontMedium !important;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  font-family: fontLight !important;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.rubik,
p,
li,
small {
  font-family: "Rubik", sans-serif !important;
}

.playfair,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif !important;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: inherit !important;
  text-decoration: none !important;
}

/* a:hover {
  color: var(--themeBtnBg) !important;
  cursor: pointer;
} */

img {
  vertical-align: middle;
  border-style: none;
}

label {
  display: inline-block;
  /* margin-bottom: 0.5rem; */
}

hr {
  color: #dedede;
}

.my-10 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  font-family: fontMedium !important;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--themeSecondary) !important;
  transition: 600ms all;
  outline: none !important;
}

.nav-effect:after {
  display: block;
  content: "";
  margin-top: 0.1rem;
  border-bottom: solid 3px var(--themeSecondary);
  transform-origin: 0 0;
  transform: scaleX(0.001);
  transition: transform 500ms ease-in-out;
}

.nav-effect:hover:after {
  transform: scaleX(1);
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #ed1c24;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content>.tab-pane {
  display: none;
}

.tab-content>.active {
  display: block;
}

.nav-fill .nav-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.theme-nav-link {
  color: var(--black) !important;
}

.theme-nav-link-active {
  color: var(--themeBtnBg) !important;
}

.theme-nav-link:hover {
  color: var(--themeSecondary) !important;
  transition: 500ms all;
  border-bottom: 2px solid --themeSecondary;
}

.theme-btn {
  padding: 10px 37px;
  background: var(--themeSecondary);
  color: var(--white);
  font-weight: 700;
  border: 0;
  border-radius: 15px;
  border: 1px solid var(--themeSecondary);
}

.theme-btn-black {
  background: #000 !important;
}

.theme-btn:hover {
  transition: 250ms all;
  background: var(--white) !important;
  color: var(--themeSecondary);
}

.theme-btn:active {
  background-color: rgba(0, 0, 0, 0.1);
}

.text-clr-primary {
  color: #2d2d2d;
}

.text-clr-secondary {
  color: #676767;
}

.hero-section {
  padding-bottom: 100px;
  padding-top: 100px;
  min-height: 900px;
}

.section-main {
  padding: 4rem 0;
}

.section-color-bg {
  background: #ffeeef 0% 0% no-repeat padding-box;
}

.content-main.header-margin {
  margin-bottom: 1rem;
}

.content-main>h1 {
  font-size: 50px;
  font-family: "Playfair Display", serif;
}

.content-main>h2 {
  font-size: 45px;
  line-height: 1;
}

.content-main>h3 {
  font-size: 40px;
  line-height: 1;
}

.content-main>h5 {
  font-size: 18px !important;
  line-height: 1;
}

.content-main>p {
  font-size: 16.5px;
  font-family: fontLight !important;
  font-weight: 300;
}

.content-main>span {
  color: var(--themeSecondary);
  font-weight: 600;
}

.content-main>h1>span,
.content-main>h3>span {
  color: var(--themeSecondary);
}

.content-main>h5,
.content-main>h2,
.content-main>h3,
.content-main>h5,
.content-main>h6,
.content-main>h4 {
  font-family: "Playfair Display", serif !important;
}

.theme-card-body {
  position: relative;
  padding: 20px 25px 25px 25px;
  height: 370px;
  position: relative;
  background: transparent linear-gradient(180deg, #f6f6fa 0%, #f6f6fa 38%, #ffffff 100%) 0% 0% no-repeat padding-box;
  border-radius: 40px;
  justify-content: center;
}

.vr-card {
  background: transparent linear-gradient(180deg, #f6f6fa 0%, #f6f6fa 38%, #ffffff 100%) 0% 0% no-repeat padding-box;
  position: relative;
  padding: 20px 25px 25px 25px;
  height: 370px;
  position: relative;
  border-radius: 40px;
  justify-content: center;
}

.vr-card:hover figure {
  filter: brightness(0) invert(1);
}

.vr-card-invert {
  position: relative;
  padding: 20px 25px 25px 25px;
  height: 370px;
  position: relative;
  background: transparent linear-gradient(0deg, #f6f6fa 0%, #f6f6fa 38%, #ffffff 100%) 0% 0% no-repeat padding-box;
  border-radius: 40px;
  justify-content: center;
}

.vr-card-invert:hover figure {
  filter: brightness(0) invert(1);
}

.red-shade::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 60px;
  z-index: -1;
  background-color: #e50019;
}

.red-shade-xl::before {
  content: "";
  position: absolute;
  top: 14%;
  left: 0;
  width: 15px;
  height: 65px;
  z-index: -1;
  background-color: #e50019;
}

/* 
.theme-card-body:hover {
  cursor: pointer;
  transition: 300ms all;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
} */

/* 
 .theme-card-body img:hover {
  transform: scale(0.9);
  transition: all .5s;
  cursor: pointer;
}  */

.theme-icon {
  margin-bottom: 1rem;
  background: var(--themeSecondary) !important;
  padding: 10px;
  border-radius: 0 13px 0 0;
  width: 50px;
}

.theme-icon:hover {
  cursor: pointer;
  border-radius: 30px;
  transition: 500ms all;
}

.card-model {
  background-color: #141414;
  padding: 25px;
  /* box-shadow: 0px 10px 45px rgba(0, 0, 0, 0.1); */
  border-radius: 20px;
}

/* .card-model::before {
  content: url(../img/qoute.png);
  display: block;
  position: relative;
  left: 80%;
  top: 30px;
} */

.svg-hover:hover svg circle {
  stroke: red;
  transition: 500ms all;
}

.svg-hover:hover svg path {
  fill: red;
  transition: 500ms all;
}

.svg-placement {
  position: absolute;
}

.svg-placement.plus {
  top: 200px;
  left: 50px;
}

.svg-placement.banner-animator {
  top: -210px;
  left: 170px;
  z-index: -1;
}

.svg-placement.banner-animator>lottie-player {
  width: 500px;
  height: 500px;
}

.svg-placement.plus-2 {
  top: -30px;
  right: 0px;
}

.before-element:before {
  display: block;
  position: absolute;
}

.before-element.line {
  content: url(../img/mvp/Path\ 36639.png);
  right: 50%;
  bottom: -50%;
}

.before-element.whiteArrow::before {
  content: url(../img/Norway/whitearrow.png);
  left: 42%;
  bottom: -45%;
}

.before-element.redSmallArrow::before {
  content: url(../img/Norway/small-arrow.png);
  right: 34%;
  top: 80%;
}

.before-element.arrow-2::before {
  content: url(../img/Norway/shape-15.png);
  right: 0%;
}

.before-element.arrow-3::before {
  content: url(../img/Web-Development/cta-arrow-1.png);
  right: 50%;
}

.before-element.arrow-4::before {
  content: url(../img/Norway/shape-03-1.png);
  right: 9%;
  padding-top: 75px;
}

.before-element.arrow-pwd {
  content: url(../img/Norway/Group\ 18743.png);
  position: absolute;
  right: 48%;
  top: 80%;
}

.svg-size {
  width: 50px;
  height: 50px;
}

.animation-container>.animation {
  width: 150px;
  height: 150px;
}

/* 
header {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: url(../img/Bgs/1.png);
  background-size: cover;
  background-position: center;
} */

.form-control {
  display: block;
  width: 100%;
  font-family: fontMedium !important;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000 !important;
  background-color: #fff !important;
  background-clip: padding-box;
  border-radius: 0.35rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-left: 0 !important;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
  border: none !important;
}

.form-name {
  background: url(../img//icons/1.png) no-repeat scroll 7px 7px;
  padding-left: 30px;
}

.form-email {
  background: url(../img//icons/2.png) no-repeat scroll 7px 7px;
  padding-left: 30px;
}

.form-phone {
  background: url(../img//icons/3.png) no-repeat scroll 7px 7px;
  padding-left: 30px;
}

.form-phone {
  background: url(../img//icons/3.png) no-repeat scroll 7px 7px;
  padding-left: 30px;
}

.section6-count {
  font-size: 4rem !important;
  font-weight: 700;
  padding: 0;
}

.border-theme {
  border: 1px solid #f8f1f1;
}

.rounded-theme {
  border-radius: 10.6028px;
}

.LocationIcon {
  position: relative;
  padding: 0 0 0px 40px;
}

.LocationIcon:before {
  content: url(../img/footerIcon-1.png);
  position: absolute;
  left: 3px;
}

.EmailIcon {
  position: relative;
  padding: 0 0 0px 40px;
}

.EmailIcon:before {
  content: url(../img/footerIcon-2.png);
  position: absolute;
  left: 3px;
}

.PhoneIcon {
  position: relative;
  padding: 0 0 0px 40px;
}

.PhoneIcon:before {
  content: url(../img/footerIcon-3.png);
  position: absolute;
  left: 3px;
}

.TimeIcon {
  position: relative;
  padding: 0 0 0px 40px;
}

.TimeIcon:before {
  content: url(../img/footerIcon-4.png);
  position: absolute;
  left: 3px;
}

.CopyRightIcon {
  position: relative;
  padding: 0 0 0px 40px;
}

.CopyRightIcon:before {
  content: url(../img/footerIcon-4.png);
  position: absolute;
  left: 3px;
}

.USAIcon {
  position: relative;
  padding: 0 0 0px 40px;
}

.USAIcon:before {
  content: url(../img/FooterUSAIcon.png);
  position: absolute;
  left: 3px;
}

.UAEIcon {
  position: relative;
  padding: 0 0 0px 40px;
}

.UAEIcon:before {
  content: url(../img/FooterFlagUIcon.png);
  position: absolute;
  left: 3px;
}

.PakIcon {
  position: relative;
  padding: 0 0 0px 40px;
}

.PakIcon:before {
  content: url(../img/FooterFlagPIcon.png);
  position: absolute;
  left: 3px;
}

.FooterPhoneIcon {
  position: relative;
  padding: 0 0 0px 40px;
}

.hover-shadow:hover {
  cursor: pointer;
  transition: 500ms all;
  box-shadow: 0px 10px 25px #f6f6fa;
}

.phnhd {
  display: none;
}

@keyframes drift {
  0% {
    transform: translateX(0px) rotate(0deg);
  }

  25% {
    transform: translateX(100px) rotate(100deg);
  }

  50% {
    transform: translateY(100px) rotate(150deg);
  }

  75% {
    transform: translateY(-50px) rotate(800deg);
  }

  100% {
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes drift1 {
  0% {
    transform: translateX(0px) rotate(0deg);
  }

  25% {
    transform: translateX(50px) rotate(100deg);
  }

  50% {
    transform: translateY(-100px) rotate(150deg);
  }

  75% {
    transform: translateY(50px) rotate(200deg);
  }

  100% {
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes drift2 {
  0% {
    transform: translateX(0px);
  }

  25% {
    transform: translateY(50px);
  }

  50% {
    transform: translateX(-100px);
  }

  75% {
    transform: translateY(50px);
  }

  100% {
    transform: translateX(0px);
  }
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.fixed-top.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  transition: background-color 200ms linear;
}

.bg-img {
  background-image: url(../img/Norway/Group\ 18753.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 105px;
  height: auto;
}

.bg-img-contact {
  background-image: url(../img/contact-us/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50px;
  height: auto;
}

.bg-services-wb {
  background-image: url(../img/Web-Development/red-rectangle.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 105px;
  height: auto;
}

.bg-img1 {
  background-image: url(../img/Web-Development/red-rectangle.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 105px;
  height: auto;
  padding: 3rem 0;
}

.bg-img2 {
  background-image: url(../img/Norway/course-bg-03.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 105px;
  height: auto;
  padding: 3rem 3rem;
}

.bg-img4 {
  background-color: #000;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  border-radius: 105px;
  padding: 6rem 0;
}

.bg-img5 {
  background-image: url(../img/Norway/Path\ 23349.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.footer-bg {
  background-image: url(../img/footer-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.m-100 {
  margin-top: -100px;
}

.imgBox {
  /* now a container for the image */
  display: inline-block;
  /* shrink wrap to image */
  overflow: hidden;
  /* hide the excess */
  border-radius: 20px !important;
}

.imgBox img {
  display: block;
  transition: 0.3s ease-in-out;
}

.imgBox:hover img {
  transform: scale(1.05);
}

.Startups {
  color: #ed1c24;
}

.img-container {
  position: relative;
}

.img-container .middle {
  transition: 0.5s ease;
  opacity: 0;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -10%);
  -ms-transform: translate(-50%, -5%);
  text-align: center;
}

.img-container:hover img {
  cursor: pointer;
}

.img-container:hover .middle {
  opacity: 1;
}

.text {
  color: white;
  font-size: 20px;
  font-weight: 600;
}

.menu-items {
  list-style-type: none;
  padding: 0;
}

.menu-items li:hover {
  color: var(--themeSecondary);
}

.break li {
  width: 48%;
  display: inline-block;
}

.css-typing h1 {
  border-right: 0.15em solid var(--themeSecondary);
  white-space: nowrap;
  overflow: hidden;
}

.css-typing h1:nth-child(1) {
  width: 100%;
  -webkit-animation: type 2s steps(40, end);
  animation: type 2s steps(40, end);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.css-typing h1:nth-child(2) {
  width: 100%;
  opacity: 0;
  -webkit-animation: type2 2s steps(40, end);
  animation: type2 2s steps(40, end);
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.css-typing h1:nth-child(3) {
  width: 31%;
  opacity: 0;
  -webkit-animation: type3 4s steps(20, end);
  animation: type3 4s steps(20, end);
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@keyframes type {
  0% {
    width: 0;
  }

  99.9% {
    border-right: 0.15em solid var(--themeSecondary);
  }

  100% {
    border: none;
  }
}

@-webkit-keyframes type {
  0% {
    width: 0;
  }

  99.9% {
    border-right: 0.15em solid var(--themeSecondary);
  }

  100% {
    border: none;
  }
}

@keyframes type2 {
  0% {
    width: 0;
  }

  1% {
    opacity: 1;
  }

  99.9% {
    border-right: 0.15em solid var(--themeSecondary);
  }

  100% {
    opacity: 1;
    border: none;
  }
}

@-webkit-keyframes type2 {
  0% {
    width: 0;
  }

  1% {
    opacity: 1;
  }

  99.9% {
    border-right: 0.15em solid var(--themeSecondary);
  }

  100% {
    opacity: 1;
    border: none;
  }
}

@keyframes type3 {
  0% {
    width: 0;
  }

  1% {
    opacity: 1;
  }

  99.9% {
    border-right: 0.15em solid var(--themeSecondary);
  }

  100% {
    opacity: 1;
    border: none;
  }
}

@-webkit-keyframes type3 {
  0% {
    width: 0;
  }

  1% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@-webkit-keyframes blink {
  50% {
    border-color: tranparent;
  }
}

.icon-list>li {
  align-items: flex-start;
  margin-top: 20px;
  list-style: none;
}

/* .icon-list>li .text {
  margin-left: 25px
} */

.icon-list>li .text p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0.5rem;
}

.text {
  color: #000;
  font-size: 20px;
  font-weight: 600;
}

.inner-scroll {
  height: 980px;
  overflow-y: scroll;
}

#style-4::-webkit-scrollbar-track {
  visibility: hidden;
}

#style-4::-webkit-scrollbar {
  visibility: hidden;
}

#style-4::-webkit-scrollbar-thumb {
  visibility: hidden;
}

.theme-card-body-secondary {
  position: relative;
  padding: 35px;
  position: relative;
  box-shadow: 0px 3px 6px #0000000f;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.theme-card-body-secondary:hover {
  background-color: #ed1c24;
}

.theme-card-body-secondary:hover figure {
  filter: brightness(0) invert(1);
}

.theme-card-body-secondary:hover .content-main {
  filter: brightness(0) invert(1);
}

.slider-card-body {
  /* height: 270px; */
  width: auto;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 3px 12px #0000000f;
  padding: 25px 30px;
  margin: 15px 0;
}

.process-card-body {
  width: auto;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 3px 12px #0000000f;
  padding: 25px 30px;
  margin: 15px 0;
}

.vr-card-body {
  width: auto;
  border: 1px solid #dedede;
  border-radius: 38px;
  padding: 70px 30px;
  margin: 15px 0;
  height: 340px;
  transition: 500ms all;
}

.vr-card-body:hover {
  color: white;
  background-color: var(--themeSecondary);
}

.ar-card-body {
  width: auto;
  background: transparent linear-gradient(180deg, #f6f6fa 0%, #f6f6fa 38%, #ffffff 100%) 0% 0% no-repeat padding-box;
  border-radius: 40px;
  padding: 70px 30px;
  margin: 15px 0;
}

.ar-card-body:hover .icon-box {
  background-color: #ff0000;
  transition: all 500ms;
}

.ar-card-body:hover figure {
  filter: brightness(0) invert(1);
}

.ar-card-body-invert {
  width: auto;
  background: transparent linear-gradient(0deg, #f6f6fa 0%, #f6f6fa 38%, #ffffff 100%) 0% 0% no-repeat padding-box;
  border-radius: 40px;
  padding: 70px 30px;
  margin: 15px 0;
}

.ar-card-body-invert:hover .icon-box {
  background-color: #ff0000;
  transition: all 500ms;
}

.ar-card-body-invert:hover figure {
  filter: brightness(0) invert(1);
}

.bg-black {
  background-image: url(../img/Web-Development/black-rectangle.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 105px;
  height: auto;
  /* padding: 3rem 0; */
}

.cmsblackbg {
  background-image: url(../img/Web-Development/black-rectangle.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 105px;
  height: auto;
  /* padding: 3rem 0; */
}

.accordion-item {
  border: 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125) !important;
}

.acc-style1 .accordion-button {
  color: #000;
  background: 0 0;
  box-shadow: none;
  font-size: 18px;
  padding: 1.5rem 1.25rem;
  font-weight: 500;
}

#Faqs.accordion-button:not(.collapsed) {
  color: #212529;
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

#Faqs.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

#Faqs.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff0000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  color: red;
  transition: transform 0.2s ease-in-out;
}

/* 
#features.acc-style1 .accordion-button:not(.collapsed):after {
  background-image: url("../img/Web-Development/accordian-arrow.png");
  background-size: 21px;
}

#features.acc-style1 .accordion-button:after {
  background-image: url("../img/Web-Development/accordian-arrow.png");
  background-size: 21px;
} */

/* .faq h3 {
  font-weight: 800;
} */

/* Technologies Partners */
.technology-tabs {
  background: url(../dt/img/bg/technologies-bg.webp) no-repeat;
  background-position: 10px 220px;
}

.tech-tabs .nav-tabs .nav-link {
  color: #000;
  font-family: "Playfair Display", serif !important;
  font-size: 24px;
  padding: 0.5rem 1.5rem;
  border: none;
  position: relative;
  font-weight: 300;
}

.tech-tabs .nav-tabs .nav-item.show .nav-link,
.tech-tabs .nav-tabs .nav-link.active {
  border: none;
}

.tech-tabs .nav-tabs .nav-item.show .nav-link:before,
.tech-tabs .nav-tabs .nav-link:before {
  content: "";
  background: url(../img/tabs-line.svg) no-repeat center right;
  position: absolute;
  bottom: -5px;
  right: 1.5rem;
  width: 0px;
  height: 12px;
  display: block;
  transition: all 0.3s ease-in-out;
}

.tech-tabs .nav-tabs .nav-link:focus,
.tech-tabs .nav-tabs .nav-link:hover {
  border: none;
}

.tech-tabs .nav-tabs .nav-link.active {
  font-weight: 500;
}

.tech-tabs .nav-tabs {
  justify-content: center;
  border: none;
  margin-bottom: 40px !important;
}

.tech-box {
  width: 85px;
  height: 85px;
  background: #ffffff;
  box-shadow: 0px 3px 6px #00000029;
  padding: 15px;
  border-radius: 50px;
  text-align: center;
}

.progress-bar {
  height: 20px;
  background: var(--themeSecondary);
  box-shadow: 0px 14px 11px -8px #000;
  border-radius: 50px;
  transition: all 0.5s;
}

.progress-container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.progress-container h2 {
  margin-bottom: 20px;
}

.progress-container .progress {
  width: 70%;
  height: 180px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: start;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  /* box-shadow: 0px 10px 50px #abb7e9; */
}

.doc {
  display: block;
  text-align: center;
  font-size: 20px;
  color: white;
  background: #263238;
  padding: 10px;
}

.hero-mockup {
  background-image: url(../img/Web-Development/mockup-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: auto;
}

.progress2 {
  padding: 6px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25),
    0 1px rgba(255, 255, 255, 0.08);
}

.progress-bar2 {
  height: 18px;
  border-radius: 30px;
  background-image: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.05));
  transition: 0.4s linear;
  transition-property: width, background-color;
}

.progress-moved .progress-bar2 {
  width: 85%;
  background-color: #ef476f;
  animation: progressAnimation 6s;
}

@keyframes progressAnimation {
  0% {
    width: 5%;
    background-color: #f9bcca;
  }

  100% {
    width: 85%;
    background-color: #ef476f;
  }
}

.faqBg {
  width: auto;
  height: auto;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 10px #0000000f;
  border-radius: 25px !important;
  opacity: 1;
  border-bottom: 0 !important;
}

.red {
  color: var(--themeSecondary);
}

/* ar-development */

.ar-expertiseCard {
  position: relative;
  padding: 30px;
  position: relative;
  border: 1px solid #e9e9e9;
  border-radius: 40px;
}

.ar-expertiseCard:hover {
  background-color: #ff0000;
  transition: all 500ms;
}

.ar-expertiseCard:hover img {
  filter: brightness(0) invert(1);
  transition: all 500ms;
}

.ar-expertiseCard:hover .content-main {
  color: #fff;
  transition: all 500ms;
}

.ar-blackBg {
  background-image: url(../img/Ar-Development/black-rectangle.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 105px;
  height: auto;
}

.ar-wcu-card {
  position: relative;
  overflow: hidden;
}

.ar-wcu-card img {
  display: block;
}

.ar-wcu-info {
  position: absolute;
  bottom: 0;
  padding: 20px;
  opacity: 0;
  transition: all 100ms 0ms ease-in-out;
  transform: translateY(10px);
}

.ar-wcu-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  margin-bottom: 16px;
  color: white;
  font-style: italic;
}

.ar-wcu-price {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  color: white;
  font-style: none;
}

.ar-wcu-overlay {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, black, transparent 100%);
  transition: all 100ms 0ms ease-in-out;
  transform: translateY(100px);
}

.ar-wcu-card:hover .ar-wcu-overlay {
  transform: translate(0);
  opacity: 1;
  transition: all 300ms 0ms ease-in-out;
}

.ar-wcu-card:hover .ar-wcu-info {
  transform: translate(0);
  opacity: 1;
  transition: all 180ms 50ms ease-in-out;
}

.ar-iconBg {
  background-color: #632626;
  border-radius: 30px;
  padding: 5px;
  box-shadow: 0px 3px 6px #893838;
}

.icon-box {
  width: 65px;
  height: 65px;
  background: #ffffff;
  box-shadow: 0px 3px 6px #00000029;
  padding: 15px;
  border-radius: 50px;
}

.icon-box-stack {
  width: 150px;
  height: 150px;
  background: #ffffff;
  box-shadow: 0px 3px 6px #00000029;
  padding: 15px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.align-self-normal {
  align-self: normal !important;
}

/* user carousel */
.main-content {
  text-align: end;
  position: relative;
}

.main-content .owl-theme .custom-nav .owl-prev,
.main-content .owl-theme .custom-nav .owl-next {
  color: inherit;
  background: none;
  border: none;
}

.main-content .owl-theme .custom-nav .owl-prev i,
.main-content .owl-theme .custom-nav .owl-next i {
  font-size: 1.5rem;
  color: #e39f20;
  font-weight: 100;
}

.main-content .owl-theme .custom-nav .owl-prev {
  left: -30px;
}

.main-content .owl-theme .custom-nav .owl-next {
  right: -30px;
}

.custom-2-nav .owl-prev,
.custom-2-nav .owl-next {
  font-size: 1.5rem !important;
  background-color: #fff !important;
  border: 0;
  color: #151e2f !important;
}

/* user carousel */

.before-element.ctaArrow::before {
  content: url(../img/Web-Development/cta-arrow-1.png);
  right: 51%;
  top: 0%;
}

.before-element.ar-ctaArrow::before {
  content: url(../img/Ar-Development/white-arrow.png);
  right: 50%;
  bottom: 0%;
}

#Online-Brilliance .side-img-position {
  position: absolute;
  bottom: 0;
  right: 0;
}

#Online-Brilliance .row {
  padding: 150px 0;
}

#Online-Brilliance-1 .side-img-position {
  position: absolute;
  bottom: 0;
  right: 0;
}

#Online-Brilliance-1 .row {
  padding: 92px 0;
}

.bullet-list {
  list-style-type: none;
  padding: 0;
  margin: 20px 0 !important;
}

.bullet-list>li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
  color: #505050;
}

.mb-05>li {
  margin-bottom: 5px;
}

.mb-00>li {
  margin-bottom: 10px;
}

.bullet-list>li:before {
  content: "";
  position: absolute;
  left: 0;
  background: url(../img/VR/bullet.svg) no-repeat center;
  width: 17px;
  height: 26px;
}

.vr-IndustriesSliderCard {
  width: auto;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 3px 6px #0000003b;
  padding: 30px;
  margin: 5px;
  min-height: 290px;
}

.icon-vr-card-two {
  position: relative;
  width: 90px;
  height: auto;
  text-align: center;
  left: 88%;
  top: -10%;
  color: #fff;
  background-color: #fff;
  box-shadow: 0px 3px 6px #9c9595;
  border-radius: 60px;
  padding: 10px 7px;
}

.vr-card:hover .icon-vr-card-two {
  background-color: #ff0a0a;
  transition: all 500ms;
}

.vr-card-invert:hover .icon-vr-card-two {
  background-color: #ff0a0a;
  transition: all 500ms;
}

.cwb-expertiseCard {
  position: relative;
  padding: 30px;
  position: relative;
  border-radius: 40px;

  background: transparent linear-gradient(180deg, #f6f6fa 0%, #f6f6fa 38%, #ffffff 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #f6f6fa 0%, #f6f6fa 38%, #ffffff 100%) 0% 0% no-repeat padding-box;
}

.cms-StandardSliderCard {}

.mvp-expertiseCard {
  position: relative;
  padding: 30px;
  position: relative;
  border-radius: 40px;
  background: #000;
  color: white;
}


.cms-StandardCard {
  width: auto;
  background-color: #ff0a0a;
  border-radius: 55px;
  box-shadow: 0px 3px 6px #0000003b;
  padding: 65px 80px;
  margin: 20px;
  height: auto;
  color: #fff;
}

.cms-card-icon {
  position: absolute;
  left: 45%;
  top: 39%;
}

.cms-PremiumCard {
  width: auto;
  background-color: #000;
  border-radius: 55px;
  box-shadow: 0px 3px 6px #0000003b;
  padding: 65px 80px;
  margin: 20px;
  height: auto;
  color: #fff;
}

.cms-card-icon-black {
  position: absolute;
  left: 90%;
  top: 39%;
}

.cms-ExpertiseSliderCard {
  width: auto;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 3px 6px #0000003b;
  padding: 40px 30px;
  margin: 5px;
  min-height: 350px;
}

.sd-ExpertiseSliderCard {
  width: auto;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 3px 6px #0000003b;
  padding: 40px 30px;
  margin: 5px;
  height: 352px;
}

.sd-ExpertiseSliderCard:hover {
  background-color: red;
}

.sd-ExpertiseSliderCard .card-icon-w {
  transition: 0.3s ease-in-out;
}

.sd-ExpertiseSliderCard:hover {
  background-color: red;
}

.sd-ExpertiseSliderCard:hover .card-icon-w {
  transform: rotate(-31deg);
}

.bg-banner-img {
  /* background-image: url(../img/Norway/course-bg-03.png); */
  background-image: url(../img/cms/banner-img-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 105px;
  height: auto;
}

.icon-box-inner {
  width: 65px;
  height: 65px;
  background: #ffffff;
  /* box-shadow: 0px 3px 6px #00000029; */
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 15px;
  border-radius: 9px;
}

.icon-box-inner:hover {
  background-color: #ff0000;
  transition: all 500ms;
}

.bullet-list-cms {
  margin: 20px 0 !important;
}

.bullet-list-cms>li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
  color: #fff;
}

.bullet-list-cms>li:before {
  content: "";
  position: absolute;
  left: 0;
  background: url(../img/cms/tick-1.png) no-repeat center;
  width: 25px;
  height: 26px;
}

.bullet-list-cms-red {
  margin: 20px 0 !important;
}

.bullet-list-cms-red>li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
  color: #fff;
}

.bullet-list-cms-red>li:before {
  content: "";
  position: absolute;
  left: 0;
  background: url(../img/cms/tick-2.png) no-repeat center;
  width: 25px;
  height: 26px;
}

.border-start {
  border-left: 3px solid #dee2e6 !important;
  margin-left: 40px;
  height: 100px;
}

.cms-caIconBox {
  width: 100px;
  height: 100px;
  background: #ffffff;
  box-shadow: 0px 3px 6px #00000029;
  padding: 20px;
  border-radius: 50px;
}

.sm-black {
  color: #000000 !important;
  font-size: 15px;
  font-weight: 300 !important;
}

.cwd-blackBg {
  background-image: url(../img/Web-Development/black-rectangle.png);

  background-image: url(assets/img/Web-Development/black-rectangle.png);

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 105px;
  height: auto;
}

/* Progressive Web App Development */
.pwad-IndustrySliderCard {
  margin: 3px;
  position: relative;
  padding: 58px 29px;
  max-height: 400px;
  position: relative;
  background-color: #fff;
  border-radius: 40px;
  justify-content: center;
  box-shadow: 0px 3px 10px #0000000f;
}

.pwad-IndustrySliderCard:hover {
  background-color: red;
}

.pwad-IndustrySliderCard .card-icon-w {
  transition: 0.3s ease-in-out;
}

.pwad-IndustrySliderCard:hover {
  background-color: red;
}

/* mvp */
.tabs-style-2 .nav-tabs {
  justify-content: space-between;
  border: none;
  margin: 0 -20px 40px !important;
}

.tabs-style-2 .nav-tabs .nav-link {
  color: #101011;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 22px;
  text-align: left;
  position: relative;
  padding: 0.5rem 0.9rem;
  border: none;
}

.tabs-style-2 .nav-tabs .nav-item.show .nav-link,
.tabs-style-2 .nav-tabs .nav-link.active {
  border: none;
  margin: 0;
  outline: none !important;
}

/* .tabs-style-2 .nav-tabs .nav-item .nav-link:before,
.tabs-style-2 .nav-tabs .nav-link:before {
  content: "";
  width: 29px;
  height: 4px;
  background-color: #ff0000;
  position: absolute;
  bottom: 0;
  left: 20px;
  border-radius: 5px;
  opacity: 0;
} */

.tabs-style-2 .nav-tabs .nav-item.show .nav-link:before,
.tabs-style-2 .nav-tabs .nav-link.active:before {
  opacity: 1;
}

.tabs-style-2 .tab-content {
  margin-top: 20px;
}

.tabs-after,
.tabs-before,
.tabs-after-2 {
  position: relative;
}

.tabs-after:after,
.tabs-before:before,
.tabs-after-2:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
}

.tabs-after:after {
  background: url(../dt/img/tabs-after.svg) no-repeat center;
  width: 114px;
  height: 128px;
  top: 100px;
  right: 20px;
}

.tabs-after-2:after {
  background: url(../dt/img/two-col-after.webp) no-repeat center;
  width: 53px;
  height: 59px;
  top: 100px;
  right: 20px;
}

.tabs-before:before {
  background: url(../dt/img/tabs-before.svg) no-repeat center;
  width: 242px;
  height: 767px;
  left: -145px;
  top: 10px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #ed1c24;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: 0 0;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-link:focus,
.nav-link:hover {
  color: #0a58ca;
}

.mvp.active {
  background: #ed1c24;
}

.mvp {
  background: #e4e4e4;
  font-size: 50px;
}

.before-element-mgd:before {
  display: block;
  position: absolute;
}

.before-element-mgd.arrow::before {
  content: url(../img/Norway/Group\ 18740.png);
  right: 50%;
  bottom: -7%;
}

.cms-bg {
  background-color: #f9fbf9 !important;
}

.pwd-bg {
  background: #f9f9fb !important;
}

.pwad-IndustrySliderCard .card-icon-w {
  transition: 0.3s ease-in-out;
}

.pwad-IndustrySliderCard:hover .card-icon-w {
  transform: rotate(-31deg);
}

.mvp.active {
  background: #ed1c24;
}

.mvp {
  background: #e4e4e4;
  font-size: 50px;
}

.Esd {
  background: #e4e4e4;
  font-size: 35px;
  padding: 7px 14px 5px 5px;
  font-weight: 700;
}

/* mgd */

.before-element-mgd:before {
  display: block;
  position: absolute;
}

.before-element-mgd.arrow::before {
  content: url(../img/Norway/Group\ 18740.png);
  right: 50%;
  bottom: -7%;
}

.cms-bg {
  background-color: #f9fbf9 !important;
}

.pwd-bg {
  background: #f9f9fb !important;
}

.pwad-IndustrySliderCard .card-icon-w {
  transition: 0.3s ease-in-out;
}

.pwad-IndustrySliderCard:hover .card-icon-w {
  transform: rotate(-31deg);
}

#cms-cta-sec .row {
  padding: 120px 0;
}

#cms-cta-sec .side-img-position {
  position: absolute;
  bottom: 0;
  right: 0;
}

.mvp {
  background: #e4e4e4;
}

#mad-online-brilliance .side-img-position {
  position: absolute;
  bottom: 0;
  left: 0;
}

#mad-online-brilliance .row {
  padding: 120px 0;
}

.content-main>p {
  font-size: 1.1rem;
}

/* contactus */

.box-contact {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px 2px rgba(0, 0, 0, 0.08);
  width: 500px;
  max-width: 100%;
  text-align: center;

  transition: all 0.3s ease-in-out;
}

.box-contact:hover {
  background-color: #000;
  box-shadow: 0 2px 10px 2px rgba(0, 0, 0, 0.08);

  color: #fff;
  transition: all 0.3s ease-in-out;
}

.translate-middle-contact {
  transform: translate(0%, -47%) !important;
}

#contactForm {
  display: flex;
  flex-direction: row;
}

#contactForm input,
#contactForm button {
  border-radius: 30px;
  border: 1px solid grey;
  padding: 10px;
}

#contactForm input {
  flex-grow: 2;
  border-right-width: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

input:focus {
  outline: none;
  /* Remove default focus outline */
  border: none;
  /* Remove border */
  /* Add any other styling you want for the input when it's active */
}

#contactForm button {
  background: #000;
  color: white;
  border-left-width: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-size: 25px;
  padding: 10px 50px 10px 50px;
}

.contact-last-section {
  background: #000;
  color: #fff;
}

/* contactus */

.nav-link:focus,
.nav-link:hover {
  color: #0a58ca;
}

.mvp {
  background: #e4e4e4;
  font-size: 50px;
}

.mvp-tabsBg {
  background-color: #e4e4e4;
}

.before-element.heroArrow::before {
  content: url(../img/Norway/Group\ 18740.png);
  right: 50%;
  top: -101%;
}

.redcircle {
  background-image: url(../img/About-us/1.png);
  position: relative;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem;
  color: white;
}

.Esd {
  background: #e4e4e4;
  font-size: 45px;
  padding: 10px 16px 12px 16px;
}

/* mgd */

/* Contact Us Page Form  */

.form {
  background-color: #fff;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 40px;
  box-shadow: rgba(242, 242, 242) 0px 3px 12px;
}

.title {
  color: #000;
  font-family: sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin-top: 30px;
}

.subtitle {
  color: #eee;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

.input-container {
  height: 50px;
  position: relative;
  width: 100%;
}

.ic1 {
  margin-top: 40px;
}

.ic2 {
  margin-top: 30px;
}

.input {
  background-color: #fff;
  border-radius: 12px;
  border: 0;
  box-sizing: border-box;
  color: #eee;
  font-size: 18px;
  height: 100%;
  outline: 0;
  padding: 4px 20px 0;
  width: 100%;
  box-shadow: rgba(242, 242, 242) 0px 3px 12px;
}

.text-area {
  background-color: #fff;
  border-radius: 12px;
  border: 0;
  box-sizing: border-box;
  color: #8f8f8f;
  font-size: 18px;
  height: 100%;
  outline: 0;
  padding: 4px 20px 0;
  width: 100%;
  box-shadow: rgba(242, 242, 242) 0px 3px 12px;
}

.cut {
  background-color: #fff;
  border-radius: 10px;
  height: 20px;
  left: 20px;
  position: absolute;
  top: -24px;
  transform: translateY(0);
  transition: transform 200ms;
  width: 76px;
}

.cut-short {
  width: 50px;
}

/* esd */
.icon-inner-box {
  width: 65px;
  height: 65px;
  background: #ffffff;
  box-shadow: 0px 3px 6px #00000029;
  padding: 15px;
  border-radius: 15px;
}

.icon-inner-box:hover {
  background-color: #ed1c24;
  transition: all 500ms;
}

.input:focus~.cut,
.input:not(:placeholder-shown)~.cut {
  transform: translateY(8px);
}

.placeholder {
  color: #8f8f8f;
  font-family: sans-serif;
  left: 20px;
  line-height: 14px;
  pointer-events: none;
  position: absolute;
  transform-origin: 0 50%;
  transition: transform 200ms, color 200ms;
  top: 17px;
}

.input:focus~.placeholder,
.input:not(:placeholder-shown)~.placeholder {
  transform: translateY(-30px) translateX(10px) scale(0.75);
}

.input:not(:placeholder-shown)~.placeholder {
  color: #808097;
}

.input:focus~.placeholder {
  color: #dc2f55;
}

.submit {
  background-color: #08d;
  border-radius: 12px;
  border: 0;
  box-sizing: border-box;
  color: #eee;
  cursor: pointer;
  font-size: 18px;
  height: 50px;
  margin-top: 38px;
  outline: 0;
  text-align: center;
  width: 100%;
}

.submit:active {
  background-color: #06b;
}

/* Contact Us Page Form  */

.red {
  color: #ed1c24;
}

.pwad-IndustrySecCard {
  position: relative;
  padding: 20px 25px 25px 25px;
  height: 370px;
  position: relative;
  background: transparent linear-gradient(180deg, #f6f6fa 0%, #f6f6fa 38%, #ffffff 100%) 0% 0% no-repeat padding-box;
  border-radius: 40px;
}

.pwad-IndustrySecCard:hover .icon-vr-card-two {
  background-color: #ed1c24;
  transition: all 500ms;
}

.pwad-IndustrySecCard:hover img {
  filter: brightness(0) invert(1);
  transition: all 500ms;
}

.pwad-IndustrySecCardInv {
  position: relative;
  padding: 20px 25px 25px 25px;
  height: 370px;
  position: relative;
  background: transparent linear-gradient(360deg, #f6f6fa 0%, #f6f6fa 38%, #ffffff 100%) 0% 0% no-repeat padding-box;
  border-radius: 40px;
}

.pwad-IndustrySecCardInv:hover .icon-vr-card-two {
  background-color: #ed1c24;
  transition: all 500ms;
}

.pwad-IndustrySecCardInv:hover img {
  filter: brightness(0) invert(1);
  transition: all 500ms;
}

.bgCircle {
  display: flex;
  background-color: #e4e4e4;
  width: 20%;
  border-radius: 40px;
  height: 51%;
  justify-content: center;
  align-items: center;
  padding: 4px 27px;
  text-align: center;
  margin: 0px 35px;
}

/* DIGITAL MARKETING  */

.digimark {
  background-color: #f9f8f8;
}

/* DIGITAL MARKETING  */

/* bug sheet */
.font-rep-bs {
  font-size: 14px;
}

.recogCard {
  width: auto;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 3px 6px #0000003b;
  padding: 40px 30px;
  margin: 12px 2px;
  min-height: 400px;
  align-items: center;
}

.red-hover:hover {
  background-color: #ed1c24;
  color: #fff;
}

.cust-icon-box {
  background-color: #fff;
  border-radius: 75px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 25px;
}

.cust-icon-box:hover {
  background-color: #ed1c24;
  transition: all 500ms;
}

.cust-icon-box:hover figure {
  filter: brightness(0) invert(1);
}

.cust-icon-boxLg {
  background-color: #fff;
  border-radius: 75px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 15px 25px;
}

.cust-icon-boxLg:hover {
  background-color: #ed1c24;
  transition: all 500ms;
}

.cust-icon-boxLg:hover figure {
  filter: brightness(0) invert(1);
}

.underline::after {
  content: "";
  background: url(../img/Web-Development/tabline.png) no-repeat center right;
  position: absolute;
  bottom: 15%;
  right: 66%;
  width: 211px;
  height: 15px;
  display: block;
  transition: all 0.5s ease-in-out;
}

.has-scroll {
  height: 443px;
  overflow-y: scroll;
}

.tabs-style-3 .nav-tabs {
  justify-content: space-between;
  border: none;
  margin: 0 -20px 40px !important;
}

.tabs-style-3 .nav-tabs .nav-link {
  color: #101011;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
  text-align: left;
  position: relative;
  padding: 0.5rem 0.9rem;
  border: none;
}

.tabs-style-3 .nav-tabs .nav-item.show .nav-link,
.tabs-style-3 .nav-tabs .nav-link.active {
  border: none;
  margin: 0;
  outline: none !important;
}

.tabs-style-3 .nav-tabs .nav-item .nav-link:before,
.tabs-style-3 .nav-tabs .nav-link:before {
  content: "";
  width: 29px;
  height: 4px;
  background-color: #ff0000;
  position: absolute;
  bottom: 0;
  left: 20px;
  border-radius: 5px;
  opacity: 0;
}

.tabs-style-3 .nav-tabs .nav-item.show .nav-link:before,
.tabs-style-3 .nav-tabs .nav-link.active:before {
  opacity: 1;
}

.tabs-style-3 .tab-content {
  margin-top: 20px;
}

.extraMargin {
  margin-top: 250px;
}

.circle {
  width: 151px;
  height: 151px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 100%;
  padding: 25px;
  margin: 0 auto 1.2rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 3px 12px #0000000f;
}

.slider-card-body .item:hover .circle {
  background-color: #ed1c24;
  /* border-radius: 50%; */
  /* filter: brightness(0) invert(1); */
}

.slider-card-body:hover {
  box-shadow: 0px 10px #ed1c24;
  border-radius: 10%;
}

.procees-bg {
  background-color: #000 !important;
  color: white;
}

.bg-black-1 {
  background-image: url(../img/Web-Development/black-rectangle.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}

.bg-black-2 {
  background-image: url(../img/Hospitality/8.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: auto;
  position: relative;
  right: 54px;
}

.process-card-body-hosp {
  width: auto;
  border-radius: 20px;
  box-shadow: 0px 3px 12px #0000000f;
  padding: 25px 30px;
  margin: 15px 0;
}

.process-card-body-health {
  width: auto;
  border-radius: 20px;
  box-shadow: 0px 3px 12px #0000000f;
  margin: 15px 0;
}

.side-img-position-1 {
  position: relative;
  bottom: 3.8rem;
  left: 18px;
}

.img-2,
.img-4,
.img-6,
.img-8,
.img-10,
.img-12,
.img-14,
.img-16,
.img-18,
.img-20,
.img-22,
.img-24,
.img-26,
.img-28,
.img-30,
.img-32,
.img-34,
.img-36,
.img-38 {
  display: none;
}

.slider-card-body .item:hover .circle .img-1,
.slider-card-body .item:hover .circle .img-3,
.slider-card-body .item:hover .circle .img-5,
.slider-card-body .item:hover .circle .img-7,
.slider-card-body .item:hover .circle .img-9,
.slider-card-body .item:hover .circle .img-11,
.slider-card-body .item:hover .circle .img-13,
.slider-card-body .item:hover .circle .img-15,
.slider-card-body .item:hover .circle .img-17,
.slider-card-body .item:hover .circle .img-19,
.slider-card-body .item:hover .circle .img-21,
.slider-card-body .item:hover .circle .img-23,
.slider-card-body .item:hover .circle .img-25,
.slider-card-body .item:hover .circle .img-27,
.slider-card-body .item:hover .circle .img-29,
.slider-card-body .item:hover .circle .img-31,
.slider-card-body .item:hover .circle .img-33,
.slider-card-body .item:hover .circle .img-35,
.slider-card-body .item:hover .circle .img-37 {
  display: none;
}

.slider-card-body .item:hover .circle .img-2,
.slider-card-body .item:hover .circle .img-4,
.slider-card-body .item:hover .circle .img-6,
.slider-card-body .item:hover .circle .img-8,
.slider-card-body .item:hover .circle .img-10,
.slider-card-body .item:hover .circle .img-12,
.slider-card-body .item:hover .circle .img-14,
.slider-card-body .item:hover .circle .img-16,
.slider-card-body .item:hover .circle .img-18,
.slider-card-body .item:hover .circle .img-20,
.slider-card-body .item:hover .circle .img-22,
.slider-card-body .item:hover .circle .img-24,
.slider-card-body .item:hover .circle .img-26,
.slider-card-body .item:hover .circle .img-28,
.slider-card-body .item:hover .circle .img-30,
.slider-card-body .item:hover .circle .img-32,
.slider-card-body .item:hover .circle .img-34,
.slider-card-body .item:hover .circle .img-36,
.slider-card-body .item:hover .circle .img-38 {
  display: block;
}

.before-element.heroArrow::before {
  content: url(../img/Norway/Group\ 18740.png);
  right: 50%;
  top: -101%;
}

.circle-1 {
  width: 151px;
  height: 151px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 100%;
  padding: 25px;
  margin: 0 auto 1.2rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 3px 12px #0000000f;
}

.health-bg {
  background: #f6f6fa;
}

.nav-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: inline;
  -ms-flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* .hover-1:hover {
  background-color: #ED1C24 !important;
  color: white !important;
  border-radius: 15px;
  width: 60% !important;
} */

.hover-1 {
  /* background-color: #ED1C24 !important; */
  border-radius: 9px;
  width: 60% !important;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
  margin-top: 10px;
}

.circle-retail {
  width: 151px;
  height: 151px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 3px 12px #0000000f;
}

.pwad-Retail {
  margin: 10px;
  position: relative;
  padding: 24px 15px;
  position: relative;
  background-color: #fff;
  border-radius: 40px;
  justify-content: center;
  box-shadow: 0px 3px 6px #0000003b;
  height: 480px;
}

.adver-Retail {
  margin: 10px;
  position: relative;
  padding: 24px 15px;
  position: relative;
  background-color: #fff;
  border-radius: 40px;
  justify-content: center;
  box-shadow: 0px 3px 6px #0000003b;
  height: 435px;
}

.circle-estate {
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 3px 6px #0000003b;
  background: #ed1c24;
  width: 100px;
  height: 100px;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.2rem;
}

.slider-card-body-estate {
  width: auto;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 3px 6px #0000003b;
  padding: 25px 30px;
  margin: 15px 0;
}

.process-card-body-estate {
  width: auto;
  border-radius: 20px;
  box-shadow: 0px 3px 6px #0000003b;
  margin: 15px 0;
  padding: 10px 19px;
  background: #f6f6fa;
}

.ar-card-body-estate {
  width: auto;
  background: transparent linear-gradient(180deg, #f6f6fa 0%, #f6f6fa 38%, #ffffff 100%) 0% 0% no-repeat padding-box;
  border-radius: 40px;
  padding: 30px 30px;
}

.slider-card-body {
  transition-property: box-shadow, border-radius;
  transition-duration: 0.5s;
  transition-timing-function: linear;
}

.slider-card-body:hover {
  box-shadow: 0px 10px #ed1c24;
  border-radius: 10%;
}

.circle-auro {
  width: 151px;
  height: 151px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ed1c24;
  border-radius: 100%;
  padding: 25px;
  margin: 0 auto 1.2rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 3px 12px #0000000f;
}

.slider-card-body-auro {
  height: 480px;
  width: auto;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 3px 6px #0000003b;
  padding: 25px 30px;
  margin: 15px 0;
}

.slider-card-body-educ {
  height: 540px;
  width: auto;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 3px 6px #0000003b;
  padding: 25px 30px;
  margin: 15px 0;
}

.side-img-position-auro {
  position: relative;
  bottom: 6.4rem;
  left: 18px;
}

.bg-num-1 {
  background-image: url(../img/Auromotive/4.png);
  height: auto;
  width: auto;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: brightness(0.5);
  opacity: 0.1;
}

.bg-num-2 {
  background-image: url(../img/Auromotive/5.png);
  height: auto;
  width: auto;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: brightness(0.5);
  opacity: 0.1;
}

.side-img-position-educ {
  position: relative;
  bottom: 1.2rem;
  left: 18px;
}

.owl-dots .owl-dot span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  /* filter: Alpha(Opacity = 50); */
  opacity: 0.3;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #ffffff;
}

.owl-dots .owl-dot.active span {
  filter: Alpha(Opacity=50);
  opacity: 1;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  margin-left: 0 !important;
  -webkit-tap-highlight-color: transparent;
}

/* .tabs-style2 .nav-tabs .nav-item.show .nav-link,
.tabs-style2 .nav-tabs .nav-link.active {
  background: red;
  color: white !important;
  border-radius: 15px;
} */

/* img .img-31:hover{
  filter: brightness(0) invert(1);
} */
.sizeSm {
  width: 65%;
}


/* 8/15/2024 */
#home-testi .owl-theme .owl-nav {
  margin-top: 10px !important;
  position: absolute !important;
  bottom: -35px !important;
  left: -5px !important;
}

#mega-menu-wrap-menu-1 .mega-menu-toggle {
  position: absolute;
  top: -20px;
  right: 6px;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
  border-radius: 0.3rem;
}

/* 8/15/2024 */