* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* color class */
:root {
  --text-white: #ffffff;

  --blueberry-blue: #0052cc;

  --midnight: #021839;
  --pale-aqua: #bbd2f3;
  --gunmetal: #2c303a;
  --dark-pastel-blue: #7b98c6;

  --dogwood-rose: #d41a5e;
}
.text-white {
  color: var(--text-white);
}
.text-blue {
  color: var(--blueberry-blue);
}

/* font-family class */
.montserrat-font {
  font-family: "Montserrat";
}
.poppins-font {
  font-family: "Poppins";
}

/* font-weight class */
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}

html{
  scroll-behavior: smooth;
}

.page-wrapper {
  overflow-x: hidden;
}
/* container clss */
.container {
  width: 100%;
  padding: 0 12px 0;
  margin-right: auto;
  margin-left: auto;
  /* border: 2px solid red; */
}

a {
  text-decoration: none;
}
.d-flex {
  display: flex;
}
.row {
  display: flex;
  width: 100%;
  /* padding: auto 12px; */
  /* padding: 0 12px 0 12px; */
  /* border: 1px dotted darkorange; */
  flex-direction: column;
}
.col-5 {
  width: 100%;
  /* border: 1px dashed green; */
}
.col-4 {
  width: 100%;
  /* border: 1px dashed green; */
}
.col-6 {
  width: 100%;
  /* border: 1px dashed green; */
}
.col-7 {
  width: 100%;
  /* border: 1px dashed green; */
}
.col-8 {
  width: 100%;
  /* border: 1px dashed green; */
}
.col-12 {
  width: 100%;
  /* border: 1px dashed green; */
}
.order-lg-1 {
  order: -1;
}
.p-relative {
  position: relative;
}
.p-absolute {
  position: absolute;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat";
}
p {
  font-family: "Poppins";
}
/*================================================= header section start ==============================*/
header {
  position: relative;
  margin: 31px auto;
}
.logo {
  width: 54px;
  height: 58px;
  /* border: 1px solid blue; */
}
#navbtn {
  position: absolute;
  top: 22px;
  right: 4px;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

#navbtn::before,
#navbtn::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #333333;
  transform: translateY(10px);
  transition: 0.3s ease-in-out;
}

#navbtn::before {
  transform: translateY(-10px);
  box-shadow: 0 10px #333333;
}

.open #navbtn {
  z-index: 100;
}
.open #navbtn::before {
  transform: rotate(-45deg);
  box-shadow: none;
}
.open #navbtn::after {
  transform: rotate(45deg);
  box-shadow: none;
}
.open .nav {
  left: 0;
}
.nav ul li a {
  padding: 12px;
}
.nav ul li a:hover {
  color: #176AE5;
  transition: all 0.4s;
}
/*------------------------------ banner section start */
.banner-text {
  padding: 30px 0;
}
.banner-text h1 {
  font-size: 30px;
  color: #021839;
  font-family: "Montserrat";
  font-weight: 800;
  position: relative;
  z-index: 1;
}
.banner-text p {
  font-size: 20px;
  color: #2c303a;
  font-family: "Poppins";
  font-weight: 400;
  margin: 26px 0 32px;
}
.learn-btn {
  display: flex;
  width: 227px;
  font-family: "Montserrat";
  color: #ffffff;
  font-size: 18px;
  border-radius: 70px;
  padding: 5px 6px 0px 27px;
  justify-content: space-between;
  background-color: #0052cc;
  align-items: center;
  transition: all 0.4s;
}

.learn-btn:hover {
  background-color: #176AE5;
  .arrow-circle {
    background-color: #0052cc;
  }
}

.arrow-circle {
  width: 50px;
  height: 50px;
  margin: 0 0 4px;
  background-color: #176AE5;
  border-radius: 100%;
  /* border: 1px solid red; */
}
.learn-btn-icon {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}

.banner-imgs {
  height: 300px;
  position: relative;
  padding: 30px 0;
}
.banner-imgs .music-man-bg {
  /* position: absolute; */
  background-image: url("../img/banner-bg-blue.svg");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  /* max-width: 488px; */
  /* max-height: 422px; */
  width: 100%;
  height: 100%;
}
.banner-imgs .music-man {
  position: absolute;
  top: 0;
  background-image: url("../img/music-man.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.banner-imgs .headphone-icon {
  position: absolute;
  top: -40px;
  right: 0;
  background-image: url("../img/headphone-icon.png");
  background-repeat: no-repeat;
  /* height: 156px; */
  /* width: 140px; */
  width: 145px;
  height: 160px;
  /* border: 1px solid yellow; */
}

.banner-imgs .dots {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url("../img/dots.svg");
  background-repeat: no-repeat;
  width: 145px;
  height: 150px;
  /* border: 1px solid yellow; */
}
.banner-imgs .music-icon {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/music-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  /* border: 1px solid yellow; */
}

.banner-imgs .video-icon {
  position: absolute;
  bottom: 10px;
  left: -31px;
  background-image: url("../img/video_icon.png");
  background-repeat: no-repeat;
  background-position: 60% 45%;
  width: 100%;
  height: 100%;
  /* border: 1px solid yellow; */
}

.banner-imgs .real-icon {
  position: absolute;
  top: 50px;
  left: 0;
  background-image: url("../img/real_icon.png");
  background-repeat: no-repeat;
  background-position: 56% 40%;
  width: 100%;
  height: 100%;
  /* border: 1px solid yellow; */
}

.banner .cloud_top {
  /* border: 1px solid pink; */
  margin: 0px 0 0;
}

/*--------------------------------------- about section start */
.about {
  margin: 0px 0 60px;
}
.about-imgs {
  display: flex;
  position: relative;
  justify-content: center;
  margin: 40px 0 40px;
}
.about-img {
  width: 40%;
}

.about-img-first {
  position: absolute;
  top: 35px;
  left: 0;
}
.about-img-second {
  margin: 0 8px 0 0;
  z-index: -1;
}
.about-img-third {
  position: absolute;
  top: 40px;
  right: 0;
}

.about-img img {
  width: 100%;
  height: 100%;
}

.about-text {
  padding: 50px 0 0 0;
}
.common-heading {
  position: relative;
}
.about-us {
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
}
.common-heading h1 {
  color: #021839;
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 35px;
}
.common-heading p {
  color: #2c303a;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
}
/*--------------------------------------- expert section start */
.expert {
  position: relative;
  margin: 0 0 40px;
}

.expert-text {
  width: 100%;
  padding: 60px 0 0;
}

.expert-cards {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin: 40px 0;
}
.card {
  /* border: 2px solid red; */
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.6s;
}

.card-text h1 {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 20px;
  color: #021839;
}

.card-text p {
  font-family: "Poppins";
  font-weight: 400;
  color: #2c303a;
  font-size: 14px;
}

.rec-camera {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
}
.cemara-image {
  width: 100%;
}

/*-------------------------------- teams section start */

.teams {
  background-image: url("../img/light_blue_bg.png");
  background-position: bottom;
  background-size: cover;
  padding: 40px 0 60px;
  /* border: 1px solid yellow; */
}

.team-text {
  padding: 45px 0 0;
  text-align: center;
}
.team-heading-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.team-text p {
  padding: 25px 0 40px;
}

.team-imgs {
  /* display: flex; */
  /* flex-wrap: wrap; */
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  justify-content: center;
  /* border: 1px solid red; */
}
.team-img-first {
  width: 100%;
  height: 100%;
  position: relative;
  /* max-width: 238px; */
  /* max-height: 238px; */
}
.team-img-first img:hover {
  animation: vibrate 3s linear infinite both;
}
.teams-shadow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  z-index: -1;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  background:linear-gradient(#7B98C6, #7B98C61A) ;
  filter: blur(25px);
}
.team-img-first p {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  padding: 18px 0 0;
}

/*----------------------------- whychoose section start */
.careers {
  overflow: hidden;
  /* border: 1px solid green; */
  padding: 65px 0 0;
}
.career-inform {
  display: flex;
  align-items: center;
}
.career-text {
  padding: 0;
  margin: 0 0 30px;
}
.career-heading-img {
  position: absolute;
  left: 0;
  top: -55px;
  z-index: -1;
  width: 100%;
}
.career-text h1,
p {
  padding: 0 0 0 10px;
}

.whychoose-img {
  margin: 30px 0 0;
}
.circle-first {
  position: absolute;
  top: 0px;
  right: 65px;
  width: 72px;
  height: 72px;
  border-radius: 100%;
  backdrop-filter: blur(25px);
  /* border: 1px solid red; */
}
.circle-second {
  position: absolute;
  right: 0px;
  bottom: 35px;
  padding: 10px;
}
.pink-shadow {
  position: absolute;
  z-index: -1;
  right: -100px;
  bottom: -100px;
  width: 100%;
}
.light-blue-shadow {
  position: absolute;
  z-index: -1;
  left: -120px;
  bottom: -120px;
  width: 100%;
}

/* footer section start */
.footer {
  text-align: center;
}

.footer-heading p {
  margin: 20px 0 30px;
}
.footer-email a {
  color: #2c303a;
  font-family: "Poppins";
  font-weight: 500;
  font-size: 20px;
}
.social-media {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 30px 0;
}

.footer-horizontal-line {
  border-bottom: 2px solid #ccc;
}
.copyright {
  padding: 30px 0;
}
.copyright p {
  color: #707070;
  font-family: "Poppins";
  font-size: 16px;
}

.social-media a img:hover {
  transform: scale(1.1);
}






/*********************************  animation start  **************************/
.blink-animate {
  animation: blink 1.2s infinite both;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

.jello-horizontal {
  animation: jello-horizontal 2s infinite both;
}

@keyframes jello-horizontal {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

.ping-animate {
  animation: ping 1.8s ease-in-out infinite both;
}

@keyframes ping {
  0% {
    transform: scale(0.2);
    opacity: 0.8;
  }
  80% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.pulsate-bck {
  animation: pulsate-bck 1s ease-in-out infinite both;
}

@keyframes pulsate-bck {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.pulsate-fwd {
  animation: pulsate-fwd 1.2s ease-in-out infinite both;
}

@keyframes pulsate-fwd {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.vibrate {
  animation: vibrate 4s linear infinite both;
}

@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-4px, 4px);
  }
  40% {
    transform: translate(-4px, -4px);
  }
  60% {
    transform: translate(4px, 4px);
  }
  80% {
    transform: translate(4px, -4px);
  }
  100% {
    transform: translate(0);
  }
}
.shake-bottom {
  animation: shake-bottom 15s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite
    both;
}
@keyframes shake-bottom {
  0%,
  100% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }
  10% {
    transform: rotate(2deg);
  }
  20%,
  40%,
  60% {
    transform: rotate(-4deg);
  }
  30%,
  50%,
  70% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  90% {
    transform: rotate(2deg);
  }
}

/*********************************  animation end  **************************/
/*********************************  media query start  **************************/

@media (max-width: 991px) {
  img.cemara-image {
    object-fit: contain;
    width: 60%;
    height: 100%;
  }
  img.expertise-bg {
    object-fit: contain;
    right: 0;
    margin: 0 auto;
    position: absolute;
    top: 0;
    max-width: 100%;
    z-index: -1;
  }
}

@media (max-width: 767px) {
  .nav {
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 100;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    transition: left 0.5s;
  }
  .nav ul {
    list-style: none;
    margin: 100px 0 0;
  }
  .nav li:not(:last-child) {
    margin-bottom: 30px;
  }
  .nav a {
    color: #ffffff;
    font-family: "Montserrat";
    font-weight: 500;
  }

  #navbtn::before,
  #navbtn::after {
    content: "";
    display: block;
    height: 2px;
    background-color: var(--blueberry-blue);
    transform: translateY(10px);
    transition: 0.3s ease-in-out;
  }
  #navbtn::before {
    transform: translateY(-10px);
    box-shadow: 0 10px var(--blueberry-blue);
  }
}

@media (max-width: 576px) {
  .banner-imgs .headphone-icon {
    top: 0;
    right: 0;
    background-size: contain;
    background-position: center;
    width: 100px;
    height: 120px;
  }
  .banner-imgs .music-icon {
    top: 0;
    left: 0;
    background-position: center;
    background-size: cover;
  }
  .banner-imgs .video-icon {
    bottom: 10px;
    left: -120px;
    background-position: 60% 45%;
    background-size: cover;
  }
  .banner-imgs .real-icon {
    top: 50px;
    left: -130px;
    background-position: 56% 40%;
    background-size: cover;
  }
  .circle-second {
    position: absolute;
    right: 0px;
    bottom: 35px;
    display: none;
  }
}

@media (min-width: 320px) {
  .banner-imgs .dots {
    top: 0;
    left: 0;
  }
  .banner-imgs .music-icon {
    top: -100px;
    left: -110px;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
    padding: 0;
  }
  .banner-text h1 {
    font-size: 34px;
  }
  .banner-imgs .dots {
    top: 0px;
    left: 92px;
  }
  .banner-imgs .music-icon {
    top: -70px;
    left: 48px;
    width: 300px;
    height: 290px;
  }
  .banner-imgs .video-icon {
    top: -35px;
    left: -215px;
    background-position: 48% 45%;
  }
  .banner-imgs .real-icon {
    top: 120px;
    left: -170px;
    background-position: 56% 56%;
  }
  .about-img-second {
    z-index: -1;
  }
  .about-text {
    padding: 60px 0 0 0;
  }
  .expert-cards {
    grid-template-columns: 1fr 1fr;
  }
  .expert-text {
    width: 100%;
    padding: 70px 0 0;
  }
  .teams {
    padding: 40px 0 80px;
  }
  .pink-shadow {
    right: -200px;
    bottom: -180px;
  }
  .light-blue-shadow {
    left: -220px;
    bottom: -220px;
  }
  .careers {
    padding: 80px 0 0;
  }
  .career-heading-img {
    left: 0;
    top: -75px;
  }
  .team-imgs {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  /* header start*/
  #navbtn {
    display: none;
  }

  header {
    display: flex;
    align-items: center;
    z-index: 100;
  }

  .nav {
    margin-left: auto;
  }
  .nav ul {
    display: flex;
    list-style: none;
  }
  .nav ul li:not(:first-child) {
    margin-left: 44px;
  }
  .nav ul li a {
    color: #021839;
    font-family: "Montserrat";
    font-weight: 500;
  }
  /* header end  */
  .banner-text h1 {
    font-size: 38px;
  }
  .banner-imgs .dots {
    top: 0px;
    left: 272px;
  }
  .banner-imgs .music-icon {
    top: -25px;
    left: 218px;
  }
  .banner-imgs .video-icon {
    top: -60px;
    left: -270px;
  }
  .common-heading h1 {
    font-size: 44px;
  }
  .common-heading p {
    font-size: 17px;
  }
  .about-text {
    padding: 75px 0 0 0;
  }
  .card {
    flex-direction: row;
  }
  .expert-text {
    width: 100%;
    padding: 90px 0 0;
  }
  .teams {
    padding: 50px 0 110px;
  }
  .pink-shadow {
    right: -260px;
    bottom: -210px;
  }
  .light-blue-shadow {
    left: -320px;
    bottom: -320px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  .row {
    flex-direction: row;
  }
  .col-4 {
    width: 30%;
  }
  .col-5 {
    width: 40%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 60%;
  }
  .col-8 {
    width: 70%;
  }
  .banner-text h1 {
    font-size: 40px;
  }
  .banner-text p {
    margin: 26px 0 72px;
  }
  .banner-imgs {
    height: 100%;
    padding: 40px 0;
  }
  .banner-imgs .headphone-icon {
    width: 160px;
    height: 160px;
  }
  .banner-imgs .dots {
    top: 15px;
    left: -6px;
  }
  .banner-imgs .music-icon {
    top: -60px;
    left: -80px;
  }
  .banner-imgs .video-icon {
    top: 0px;
    left: -200px;
    background-position: 48% 45%;
    width: 100%;
    height: 100%;
  }
  .banner-imgs .real-icon {
    top: 170px;
    left: -290px;
  }
  .banner .cloud_top {
    margin: -30px 0 0;
  }
  .order-lg-1 {
    order: 0;
  }
  .about {
    margin: -30px 0 80px;
  }
  .about-text {
    padding: 50px 0 0 30px;
  }
  .about-imgs {
    margin: 0 0 40px;
  }
  .common-heading h1 {
    font-size: 48px;
  }
  .expert {
    margin: 0 0 85px;
  }
  .expert-cards {
    margin: 80px 0 0;
  }
  .expert-text {
    width: 90%;
    padding: 65px 0 0;
  }

  .rec-camera {
    display: flex;
    align-items: end;
  }
  .expert .container-fluid {
    background-image: url(../img/cam-video.png);
    background-repeat: no-repeat;
    background-position: 152% 100%;
    background-size: contain;
  }
  img.expertise-bg {
    display: none;
  }
  .cemara-image {
    width: 85%;
  }

  .teams {
    padding: 60px 0 140px;
  }
  .team-text p {
    padding: 25px 0 80px;
  }
  .team-imgs {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .careers {
    padding: 0;
  }
  .career-text {
    padding: 0 0 0 75px;
    margin: 0;
  }
  .career-heading-img {
    left: 50px;
    top: -55px;
    width: 80%;
  }
  .circle-second {
    right: -50px;
    bottom: 35px;
  }
  .pink-shadow {
    right: -165px;
    bottom: -160px;
  }
  .light-blue-shadow {
    left: -170px;
    bottom: -190px;
  }

  .footer-para {
    display: block;
  }
  .footer-heading p {
    margin: 21px 0 45px;
  }
  .social-media {
    padding: 46px 0 48px;
  }
  .copyright {
    padding: 40px 0;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  .banner-imgs {
    height: 422px;
    position: relative;
    padding: 50px 0;
  }
  .banner-imgs .dots {
    top: 25px;
    left: 0;
  }
  .banner-imgs .music-icon {
    top: -70px;
    left: 0px;
  }
  .banner-imgs .video-icon {
    top: 20px;
    left: -200px;
  }
  .banner-imgs .real-icon {
    top: 180px;
    left: -280px;
  }
  .about {
    margin: -35px 0 160px;
  }
  .about-text {
    padding: 58px 0 0 55px;
  }
  .common-heading h1 {
    font-size: 52px;
  }
  .common-heading p {
    font-size: 18px;
  }
  .expert-cards {
    row-gap: 30px;
    column-gap: 30px;
  }
  .card {
    gap: 24px;
  }
  .card-text h1 {
    font-size: 24px;
  }
  .card-text p {
    font-size: 16px;
  }
  .expert-text {
    width: 90%;
    padding: 80px 0 0;
  }

  .expert .container-fluid {
    background-position: 150% 100%;
  }

  .teams {
    padding: 70px 0 200px;
  }
  .team-imgs {
    gap: 70px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  .banner-imgs .dots {
    top: 25px;
    left: 90px;
  }
  .banner-imgs .music-icon {
    top: 0;
    left: 38px;
  }
  .banner-imgs .video-icon {
    top: 10px;
    left: -265px;
  }
  .banner-imgs .real-icon {
    top: 180px;
    left: -220px;
  }

  .cemara-image {
    width: 60%;
  }
  .expert .container-fluid {
    background-position: 125% 100%;
  }
  .teams {
    padding: 80px 0 287px;
  }
  .pink-shadow {
    right: -200px;
    bottom: -185px;
  }
  .light-blue-shadow {
    left: -235px;
    bottom: -235px;
  }
  .copyright {
    padding: 50px 0;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1530px;
  }
  .banner-text h1 {
    font-size: 62px;
  }
  .banner-imgs .dots {
    top: 25px;
    left: 192px;
  }
  .banner-imgs .music-icon {
    top: 0;
    left: 140px;
  }
  .about {
    margin: -40px 0 214px;
  }
  .expert-cards {
    row-gap: 60px;
    column-gap: 111px;
  }
  .card {
    gap: 29px;
  }
  .card-text h1 {
    font-size: 28px;
  }
  .card-text p {
    font-size: 18px;
  }

  .expert .container-fluid {
    background-position: 110% 100%;
  }
}
