
:root {
  --main-dark-theme-color: #2E5C99;
  --main-dark-theme-color-hover: #da1414cc;
  --dark-text-color: #2a2823;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
}
#header {
  padding: 1.5rem 0;
  z-index: 1;
}




img {
  max-width: 100%;
  height: 100%;
}

.bg {
  background: url(../assets/home-hero.png) no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.6s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hero {
  background: #011736;
  width: 100%;
  height: 100vh;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover !important;
  background-position: center !important;
}

.hero_text {
  padding-bottom: 6rem;
}

.hero_text .heading {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  color: #fff;
}

.hero_text .sub_text {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
button {
  border-color: transparent;
}
.main-dark-btn {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  width: fit-content;
  padding: 15px 17px;
  box-shadow: 0px 10px 14px rgba(42, 109, 255, 0.15);
  border-radius: 56px;
  background-color: var(--main-dark-theme-color);
  color: #fff;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.main-dark-btn:hover {
  background-color: var(--main-dark-theme-color-hover);
}
.section :is(h3, .heading) {
  color: var(--main-dark-theme-color);
  font-family: "Radio Canada";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
}
.section .heading {
  font-weight: bold;
}

.section p {
  color: var(--dark-text-color);
  line-height: 2;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
}

.service-cards {
  min-height: 100%;
}

.service-cards img {
  display: block;
  margin: 5px auto;
  object-fit: scale-down;

}

.service-cards .card {
  padding: 1rem;
  box-shadow: 0px 100px 200px rgba(1, 23, 54, 0.1);
  border-radius: 185px;
  border: none;
  width: 300px;
  height: 400px;
  cursor: pointer;
}

.service-cards .card .card-img {
  background: rgba(49, 62, 247, 0.05);
  width: 90px;
  height: 90px;
  margin: 5px 0;
  border-radius: 40px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-cards .card button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-cards .card-title {
  color: var(--main-dark-theme-color);
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
}

.service-cards .card p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #030522;
}

.service-cards button {
  width: 50px;
  background-color: var(--main-dark-theme-color);
  color: #fff;
  border-radius: 60px;
  height: 50px;
}

.our-operations {
  background: url(../assets/our-operations.png) no-repeat;
  height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}



.expertise_section ul li {
  color: #2a2823;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 40px;
}
.expertise_section ul li::marker {
  color: var(--main-dark-theme-color);
  font-size: 2rem;
}

.section {
  width: 79%;
  margin: 0 auto;
}
.our_services_section {
  position: relative;
}

.our_services_section > div {
  margin-left: auto !important;
}

/* contact us css  */
.bg-contact {
  background-color: #2E5C99;
}
.contact-wrapper {
  width: 80%;
  margin: 0 auto;
  background-image: url("../assets/contact-bg.webp");
  background-size: cover;
  padding: 6rem;
}
.contact-wrapper h1 {
  font-family: "Radio Canada";
  font-style: normal;
  font-weight: 600;
  font-size: 64px;
  line-height: 77px;
  color: #ffffff;
}


.contact-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background: #ffffff;
  border-radius: 500px;
  font-family: "Radio Canada";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #010223;
}
/* for global */
.form-control:focus {
  border-color: #dee2e6 !important;
  box-shadow: 0 0 0 0.25rem #41464b0f !important;
}

.our-operations .heading {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  color: #fff;
}
.our-operations .heading {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  color: #fff;
}
.service-cards .card {
  height: auto;
}

.our-operations .sub_text {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
}


.cursor-pointer {
  cursor: pointer;
}
a:hover {
  color: unset !important;
}


.content-img img{
  border-radius: 20px;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.5);
}



@media screen and (max-width: 1280px){
  .our-service-img-2{
    display: none;
  }
 
}
@media screen and (max-width: 1080px){
  .contact-wrapper{
    width: 100%;
    background-position: center;
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
  }
}

@media only screen and (min-width: 1024px) {
  .our-service-img-2 {
    height: auto;
    position: absolute;
    right: -10%;
    bottom: 20%;
    z-index: 1;
  }
  body{
    overflow-x: hidden;
  }

}
@media only screen and (max-width: 1800px) {
  .our-service-img-2 {
    height: auto;
    width: 400px;
    position: absolute;
    right: -11%;
    bottom: 20%;
    z-index: 1;
  }

}

@media only screen and (max-width: 1600px) {
  .our-service-img-2 {
    height: auto;
    width: 350px;
    position: absolute;
    right: -11%;
    bottom: -10%;
    z-index: 1;
  }

}

@media only screen and (min-width: 992px) {

  .home nav ul li:nth-child(1) {
    color: var(--main-dark-theme-color);
  }

  .home nav ul li:nth-child(1)::after {
    position: absolute;
    content: "";
    width: 60%;
    background-color: var(--main-dark-theme-color);
    height: 3px;
    left: 20%;
    bottom: 0;
  }
  nav {
    width: 100%;
  }


}

@media screen and (max-width:991px) {
  .our-operations {
    background: url(../assets/our-operations-mobile.png) no-repeat;
    height: 50vh !important;
    background-size: cover;
    background-position: center;
  }
  .logo{
    width: 100%;
  }
}

@media screen and (max-width:768px) {
  .contact-wrapper{
    width: 100%;
    background-position: center;
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
  }
  body{
    overflow-x: hidden;
  }
  .hero_text{
    padding-bottom:40px;
  }
  .hero_text .heading {
    font-size: 35px;
  }
  .contact-wrapper h1{
    font-size: 55px;
  }
}

@media only screen and (max-width: 600px) {
  .bg {
    background: url(../assets/home-hero-mobile.png) no-repeat !important;
    width: 100% !important;
    height: 70vh !important;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    flex-direction: column;
  }

  .hero_text .heading {
    font-size: 30px;
  }

  .hero_text {
    margin: 0 auto;
    width: 94%;
    padding-bottom: 2rem;
  }
  .contact-wrapper h1 {
    font-size: 30px;
  }
}
