@import url("https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap");

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html,
body {
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 0;
  margin: 0;
}
:root {
  --primary_color: #011538;
  --primary_green: #02dcb8;
  --blank: #000000;
  --secondary_black: hsl(0, 0%, 22%);
  --white: #ffffff;
  --grey: #939393;
  --light_grey: #d7d7d7;
  --very_light_grey: #f0f0f0;
  --bg-light-blue:#EBF2FF;
}
.bg_primary_blue {
  background-color: var(--primary_color);
}
.bg_light_blue {
  background-color: var(--bg-light-blue);
}
.very-light-grey-bg {
  background-color: var(--very_light_grey);
}
.text-primary-color {
  color: var(--primary_color);
}
.text-primary_green {
  color: var(--primary_green);
}
.text-grey {
  color: var(--grey);
}
.text-light-grey {
  color: var(--light_grey);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0.1rem;
  margin-bottom: 0.9rem;
}

h1 {
  font-size: 28px;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 22px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 18px;
}
a {
  color: #1d6adb;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #1d6adb;
  /* text-decoration: underline */
}

a::selection {
  color: #fff;
  text-decoration: none;
  background-color: #1d6adb;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
.main {
  position: relative;
}
/* Navbar start */
.menu-sticky {
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
}
.venzo-navbar {
  padding: 15px 0;
}
.venzo-navbar .navbar-nav .nav-item {border-bottom: 0;}
.venzo-navbar .navbar-nav .nav-item a {
  font-size: 18px;
  font-weight: 400;
  padding: 0px 25px;
  border-right: 1px solid #ccc;
}
.venzo-navbar .navbar-nav .nav-item:last-child a{border-right: 0;}
.venzo-navbar .nav-btn {
  background-color: #ffffff;
  border: 1px solid #011538;
}
.venzo-navbar .nav-btn:hover {
  background-color: #011538;
  border: 1px solid #011538;
  color: #ffffff;
}
/* Navbar end */
.header-section {
  background-color: #011538;
  padding: 50px 0;
}
.header-section h1 {
  font-size: 50px;
  font-weight: 700;
  color: var(--white);
}
.header-section p {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}
.hero-img {
  background-image: url(../media/hero-image.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 550px;
  position: relative;
}
/* .hero-btn-animation {
    width: 250px;
    height: 250px;
    background-color: var(--white);
    border-radius: 200px;
    text-align: center;
    vertical-align: calc(50%);
} */
.rotate-animation {
  position: absolute;
  top: -80px;
  right: 8%;
}

.hero-btn-animation {
  position: relative;
  width: 150px; /* Set width for the circular shape */
  height: 150px; /* Equal height to create a perfect circle */
  border-radius: 50%; /* Make it circular */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-btn-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dashed #fff;
  animation: rotate 20s linear infinite;
  box-sizing: border-box;
}

.her-animation-inner {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  position: relative;
  padding-top: 30%;
  z-index: 1;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary_color);
  text-align: center;
  background-color: var(--white);
}

.her-animation-inner a{
  color: var(--primary_color);
}
/* Rotation animation for the dashed border */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.venzo-bg-primary {
  background-color: var(--primary_color);
}
.section {
  padding: 90px 0;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
}
.section-desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  margin-top: 20px;
}
.section-b-right {
  border-right: 1px solid #ffffff4d;
}
.pl-50 {
  padding-left: 50px;
}
.pr-50 {
  padding-right: 50px;
}
.fact-section {
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #ffffff4d;
}
.fact-section:last-child {
  border-bottom: 0;
}
.fact-section .f-value {
  min-width: 170px;
}
.fact-section .f-value h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}
.f-desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
}
.section-head {
  padding: 10px 0;
}
.section-head h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary_color);
}
/* .font-italic {
    font-style: italic;
} */
.service-section {
  padding-top: 50px;
}
.service-card {
  border-radius: 0;
  min-height: 570px;
  margin: 25px 15px;
  border: 0px;
  background: #e2ebf5;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease; /* Smooth transition for hover effects */
}

.service-card-in .content {
  padding: 45px 45px 0 45px;
  position: relative;
  z-index: 2;
}

.service-card-in h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--primary_color);
  transition: all 0.5s ease;
  transform: translateY(0);
}
.service-card:hover .service-card-in h2 {
  transform: translateY(20px);
}

.content-hover {
  padding-left: 55px;
  padding-right: 55px;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(20%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  /* text-align: center; */
  z-index: 2;
}

.service-card:hover .content-hover {
  opacity: 1;
  transform: translateY(40%);
}

.content-hover p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
  margin-top: 15px;
  margin-bottom: 35px;
}

.content-hover .s-btn {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: var(--primary_color);
  border-color: var(--primary_color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.content-hover .s-btn:hover {
  background-color: var(--primary_color);
  color: var(--white);
}

.content-hover .s-btn svg {
  fill: var(--primary_color);
}

.content-hover .s-btn:hover svg {
  fill: var(--white) !important;
}

.img-container {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* height: 120px; */
  transition: transform 0.5s ease;
  z-index: 1;
}

.img-container img {
  width: 100%;
  height: auto;
  transform: translateY(0); /* Initial position */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card:hover .img-container img {
  transform: translateY(75%); /* Move image downward on hover */
}

.client-logo h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 39.68px;
  color: var(--primary_color);
}
.logo-grid {
  list-style: none;
  padding: 0;
  margin: 0;
}

.logo-grid li {
  width: 22%;
  height: 147px;
  overflow: hidden;
  position: relative;
  background-color: #fff; /* White background */
  border: 1px solid #0000001f; /* Border around each logo container */
  margin: 8px;
}

/* Common styles for both logos */
.clint-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  opacity: 0; /* Initially hidden */
}

/* Slide-up animation for logo-1 and logo-2 */
.logo-1 {
  animation: slideUpAnimation 8s ease-in-out infinite;
}

.logo-2 {
  animation: slideUpAnimation 8s ease-in-out infinite;
  animation-delay: 4s; /* Delay to alternate with logo-1 */
}

/* Keyframes for smooth slide-up animation */
@keyframes slideUpAnimation {
  0% {
    transform: translate(-50%, 100%); /* Start below the container */
    opacity: 0; /* Hidden */
  }
  10%,
  40% {
    transform: translate(-50%, 0); /* Slide up to the center */
    opacity: 1; /* Fully visible */
  }
  50%,
  100% {
    transform: translate(-50%, -100%); /* Slide up and out */
    opacity: 0; /* Hidden */
  }
}

.bg-blue-grediant {
  background: #011435;
  background-image: linear-gradient(180deg, #011435, #002667);
}
.testimonial h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 35px;
}
.testimonial-content {
  /* margin-left: 20px; */
  background-color: rgba(255, 255, 255, 0.06);
  padding: 80px 25px 25px 25px;
  height: 100%;
}
.testimonial-content p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 35px;
}
.te-profile {
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 1)
  );
  padding: 25px 15px 10px 35px;
  position: absolute;
  bottom: 0;
  left: 15px;
  width: 90%;
}
.te-profile h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 5px;
}
.te-profile p {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff80;
}

.testimonial-slide .carousel-control-next,
.testimonial-slide .carousel-control-prev {
  top: -88px;
  background-color: var(--white);
  border-radius: 5px;
  width: 45px;
  height: 40px;
  border: 1px solid #0000001f;
  color: red;
}
.testimonial-slide .carousel-control-prev {
  left: 92%;
}
.testimonial-slide .carousel-control-prev-icon {
  background-image: url(../media/prev-icon.svg);
  background-size: 70%;
}
.testimonial-slide .carousel-control-next-icon {
  background-image: url(../media/next-icon.svg);
  background-size: 70%;
}
.choose-us {
    padding-top: 80px;
    padding-bottom: 35px;
}

.choose-us h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 55px;
  color: #00000066;
}
.choose-tag {
  list-style: none;
  margin-left: -35px;
  margin-bottom: 35px;
}

.choose-tag li {
  text-wrap: nowrap;
  margin: 10px;
}
.choose-tag li .btn-outline {
  border: 1px solid #0f3067;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  padding: 10px;
}
.choose-tag li .btn-outline.active {
  background: #0f3067;
  color: var(--white);
}
.choose-content {
  margin-top: 90px;
}
.choose-content h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 33.6px;
  color: var(--primary_color);
}
.choose-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--blank);
}
/* Base styles for the buttons */
.choose-tag button {
    transition: background-color 0.3s, color 0.3s;
}

.choose-tag .active {
    background-color: #007bff;
    color: #fff;
}

/* Hide content and images initially */
.choose-content > div,
.image-container > img {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Show active content with sliding animation */
.choose-content .active-content,
.image-container img.active-img {
    display: block;
    opacity: 1;
}

/* Sliding animation effect */
.slide-in-right {
    transform: translateX(100%); /* Start from the right */
    opacity: 1;
}

/* Centered position */
.slide-active {
    transform: translateX(0);
    opacity: 1;
}

/* Slide-out to the left */
.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
}

/* Choose style start */
.choose-tag button.active {
    background-color: #007bff;
    color: #fff;
}
.choose-content, .image-container {
    position: relative;
    overflow: hidden;
    /* width: 100%;
    height: 100%; */
}
.choose-content > div,
.image-container > img {
    display: none;
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    margin: auto;
}
.active-content,
.active-img {
    display: block;
    opacity: 1;
    transform: translateX(0); /* Reset to its original position */
}
.slide-in-right {
    transform: translateX(100%); /* Start from the right */
    animation: slide-in 0.5s forwards;
}    
.slide-out-left {
    transform: translateX(-100%); /* Move to the left */
    animation: slide-out 0.5s forwards;
}
@keyframes slide-in {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}    
@keyframes slide-out {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
/* Choose style end */

.feature-card {
  background: #002180;
  background-image: url(../media/feature-card-bg.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px;
  position: relative;
  border-radius: 6px;
}
.feature-card .card-content {
  padding: 0 0;
  color: #ffffff;
}
.card-content h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
}
.card-content p {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--white);
}
.card-btn-ab {
  /* position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%); */
  background-color: var(--white);
  font-size: 16px;
  font-weight: 400;

}
.f-cta {
  padding: 15px 20px;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary_color);
}

.f-cta svg {
  fill: var(--primary_color);
}
.f-cta:hover svg {
  fill: var(--white);
}
.f-cta:hover {
  padding: 15px 20px;
  background-color: var(--primary_color);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}

.footer {
  padding-top: 75px;
  padding-bottom: 35px;
}
.footer-container {
  margin-bottom: 70px;
}
.footer-container .ft-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}
.footer-container .ft-sub-title {
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 3px;
}
.f-navbar,
.social-links {
  list-style: none;
  margin-left: -30px;
}
.social-links li {
  margin-right: 15px;
}
.social-links li svg {
  fill: #aaaaaa;
}
.f-navbar li {
  margin-bottom: 10px;
}
.f-navbar li .small-txt{
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}
.f-navbar li a,
.ft-inner p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff80;
}
.ft-inner p {
  line-height: 1.4;
}
.site-info a {
  color: #ffffff80;
  margin-bottom: 3px;
  border-bottom: 1px solid #ffffff80;
}
.site-info span {
  color: #c51104;
}
.footer-rights {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
}
.footer-rights .copy {
  font-family: Atkinson Hyperlegible;
  font-size: 17.64px;
  font-weight: 400;
  line-height: 21.88px;
  color: #ffffff4d;
}
.venzo-logo-ft{
  margin-right: 20px;
}

/* Portfolio style start */
.portfolio-container {
    padding-bottom: 120px;
}
.portf-sec-head {
    margin-bottom: 60px;
}
.portf-sec-head h2{
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
}
.portf-out {
  min-height: 360px;
}
.portfolio-container .carousel-indicators {
  bottom: -80px;
  margin-left: 0;
  margin-right: 0;
}
.portfolio-container .carousel-indicators [data-bs-target] {
  background-color: #ffffff33;
}
.portfolio-container .carousel-indicators [data-bs-target] {
  position: relative;
  width: 90%;
  height: 2px;
  border: none;
  border-radius: 24px;
}

.portfolio-container .carousel-indicators [data-bs-target] span {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ffffff;
  border-radius: inherit;
}
.portfolio-container .carousel-control-next, .portfolio-container .carousel-control-prev {
    width: 45px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}
.portfolio-container .carousel-control-next-icon {
    background-image: url(../media/next-icon.svg);
    background-size: 75%;
    display: none;
}
.portfolio-container .carousel-control-prev-icon {
    background-image: url(../media/prev-icon.svg);
    background-size: 75%;
    display: none;
}
.portfolio-container .process-txt {
  position: absolute;
  bottom: 25px;
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
}
.portfolio-content {
  padding: 20px 60px 20px 0;
}
.portfolio-content h3 {
  font-size: 32px;
  font-weight: 700;
}
.portfolio-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
/* Portfolio style end */


/* Team section style */
.team_container {
  padding-top: 35px;
}
.team_container h2, .address-sec .section-head h2{
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  color: #0F3067;
}
.team_container hr, .address-sec .section-head hr{
  margin-bottom: 30px;
}
.team-out .carousel-indicators button.thumbnail {
  width: 100px;
}

.team-out .carousel-indicators button.thumbnail:not(.active) {
  opacity: 0.7;
}

.team-out .carousel-indicators {
  position: absolute;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}
.team-out .carousel-indicators [data-bs-target]{
  border-top: 0;
  background-color: transparent;
}
.glass {
  position: relative;
  background: inherit;
  overflow: hidden;
  padding: 30px 0;
  width: 100%;
  min-height:  170px;
  z-index: 1;
  background-image: url(../media/glass-effect-bg.webp);
  background-size: cover;  
  backdrop-filter: blur(10px); /* Glass blur effect */
  display: flex;
  gap: 50px;
}

/* .glass:before {
  content: '';
  position: absolute;
  top: -25px;
  left: -25px;
  bottom: 0;
  right: 0;
  background: inherit;
  box-shadow: inset 0 0 0 200px rgba(255,255,255,0.2);
  filter: blur(10px);
  backdrop-filter:blur(10px) ;
} */
/* team new style */
.team-out-cont {
  padding: 70px 0;
}
.team-n-container {
  padding: 10px 50px;
}
.team-n-container .team-img {
  margin-bottom: 25px;
}
.team-n-container .team-m-name h5{
  font-size: 22px;
  font-weight: 700;
  color: var(--primary_color);
  line-height: 1.1;
}
.team-n-container .team-m-name p{
  font-size: 18px;
  font-weight: 400;
  color: var(--grey);
  line-height: 1.1;
  margin-top: -5px;
}
.team-n-container .team-m-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--blank);
}
.team-n-container .team-mail {
  padding: 20px 0;
  margin-top: 20px;
  border-top: 1px dashed #000000B2;
}

.team-n-container .team-mail svg {
  margin-right: 10px;
}
.team-n-container .team-mail a{
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.5;
  color: #2A437D;
}


/* Team section style end */
.team-content {padding-bottom: 200px; padding-right: 35px;}
.team-content h3{
  font-family: Atkinson Hyperlegible;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #0F3067;
  margin-bottom: 22px;
}
.team-content p{
  font-family: Atkinson Hyperlegible;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000CC;
  margin-bottom: 22px;
}
.team-thumbnail {
  gap:65px;
}
.team-out .carousel-control-next, .team-out .carousel-control-prev{
  opacity: 1;
  width: 50px;
  height: 50px;
  border: 1px solid  #0000001F;
  border-radius: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.team-out .carousel-control-prev-icon{
  background-image: url(../media/prev-icon-blue.svg);
  background-size: 65%;
  left: -100px !important;
}
.team-out .carousel-control-prev {
  left: -100px;
}
.team-out .carousel-control-next {
  right: -100px;
}
.team-out .carousel-control-next-icon{
  background-image: url(../media/next-icon-blue.svg);
  background-size: 65%;
}

.address-bg {
  height: 350px;
  background-image: url(../media/address-bg.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.address-sec {
  padding-top: 35px;
}
.address-sec .adress-content{padding-right: 30px;}
.address-sec .adress-content-last{margin-top: 50px;}
.address-sec .adress-content h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #0F3067; 
}
.address-sec .adress-content address {
  font-family: Atkinson Hyperlegible;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #00000080;
}

.adress-content .card-content h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3; 
}
.adress-content .card-content p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 50px;
}
.card-btn-ab {
  height: 50px;
  position: relative;
  color: #011538;
  font-size: 16px;
  font-weight: 400;
  padding: 15px 20px;
  background-color: white; /* Exact button background color */
  border: none; /* Remove default border */
  border-radius: 50px; /* Rounded corners */
  z-index: 1;  
}

/* Pseudo-element for gradient border */
.card-btn-ab::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: inherit; /* Match button's border radius */
  padding: 3px; /* Width of the gradient border */
  background: linear-gradient(to right, #0099D7, #012A86); /* Gradient border */
  -webkit-mask: 
      linear-gradient(#0099D7 0 0) content-box, 
      linear-gradient(#012A86 0 0); /* Masks out the center */
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1; /* Place behind the button */
}


/* popup form style */
.contact-form-popup{padding: 20px;}
.popup-form-head{padding-bottom: 30px;}
.contact-form-popup h3{
    color: var(--primary_color);
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 52px */
    text-transform: capitalize;
}
.contact-form-popup p{
    color: #757575;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%; /* 30.6px */
}
.contact-form-popup .form-field-out .form-control{
    border: 0;
    border-bottom: 1px solid #D9D9D9;
    border-radius: 0;
}
.contact-form-popup .form-field-out .form-control:focus{
    outline: none;
    box-shadow: none;
}
.contact-form-popup .form-field-out .form-control::placeholder{
    color: #D2D2D2;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%; /* 27.2px */
}
.contact-form-popup .form-field-out .form-label{
    color: var(--secondary_black);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%; /* 37.4px */
    text-transform: capitalize;
}
.form-field-out {
  margin-bottom: 10px;
}
.enquire_thnkmss{display: none; }
/* popup form style end */

@media screen and (max-width:767.99px) {
  .venzo-navbar .navbar-nav .nav-item {padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.3);}
  .venzo-navbar .navbar-nav .nav-item a{border-right: 0px solid #000000CC;}
  .header-section{padding-top: 50px; padding-bottom: 85px;}
  .hero-img{height: 250px;}
  .header-section h1{font-size: 38px;}
  .header-section p{font-size: 18px;}
  .section-title {font-size: 26px;}
  .section-desc {font-size: 16px;}
  .fact-section .f-value h2{font-size: 32px;}
  .f-desc{font-size: 16px;}
  .fact-section .f-value{min-width: 132px;}
  .section{padding: 50px 0;}
  .service-section{padding-top: 10px;}
  .service-card-in .content{padding: 35px 25px 0 25px;}
  .service-card .img-container img{transform: translateY(60%);}
  .content-hover{position: relative; opacity: 1; padding-left: 0; padding-right: 0;}  
  .content-hover p{margin-top: 0; margin-bottom: 15px;}
  .logo-grid li{
    width: 19.8%;
    height: 65px;
  }
  .testimonial h2{font-size: 32px; margin-bottom: 60px;}
  .testimonial-slide .carousel-control-next, .testimonial-slide .carousel-control-prev{top: -60px;}
  .testimonial-slide .carousel-control-prev{
    left: 73%;
  }
  .testimonial-content{padding: 20px 15px 25px 15px;}
  .testimonial-content p{font-size: 16px; font-weight: 300; line-height: 1.5;}
  .choose-us h2{font-size: 32px; line-height: 1.4;}
  .choose-tag{margin-bottom: 10px;}
  .choose-content{margin-top: 20px;}
  .choose-content > div, .image-container > img{height: 150px;}
  .portf-sec-head{margin-bottom: 20px;}
  .portfolio-content{padding: 10px;}
  .portfolio-content h3{font-size: 24px;}
  .portfolio-content p{font-size: 16px; line-height: 1.4;}
  .portfolio-container .carousel-control-next, .portfolio-container .carousel-control-prev{top: -56px;}
  .portfolio-container .process-txt{display: none;}
  .team-out .carousel-control-next, .team-out .carousel-control-prev{
    width: 45px;
    height: 45px;
  }
  .team-out .carousel-control-prev{
    left: 70%;
    top: -115px;
  }
  .team-out .carousel-control-next{
    right: 10px;
    top: -115px;
  }
  .team-content h3{font-size: 24px;}
  .team-content p{font-size: 16px; font-weight: 300;}
  .team-content{
    padding-right: 5px;
    padding-bottom: 0;
  }
  .tname-thumbnail {font-size: 12px;}
  .address-bg {height: 130px;}
  .social-links {margin-bottom: 30px;}
  .footer-rights .copy{font-size: 15px;}
}

@media screen and (min-width:768px) and (max-width: 1024px) {
  .header-section h1{font-size: 38px;}
  .section-title, .client-logo h2{font-size: 28px;}
  .service-card:hover .content-hover{transform: translateY(20%);}
  .fact-section .f-value h2{font-size: 38px;}
  .testimonial h2{font-size: 32px;}
  .f-desc{font-size: 16px;}
  .service-card-in .content{padding: 25px 15px 0 15px;}
  .service-card-in h2{font-size: 24px; min-height: 125px;}
  .content-hover{padding-left: 15px; padding-right: 15px; opacity: 1;}
  .logo-grid li{height: 110px;}
  .testimonial-content p{font-size: 16px; font-weight: 300; line-height: 1.6;}
  .carousel-control-next{right: -3.8%;}
  .carousel-control-prev{left: -3.8%;}
  .team-out .carousel-control-next, .team-out .carousel-control-prev{top: -113px;}
  .team-out .carousel-control-next{right: 2%;}
  .team-out .carousel-control-prev{left: 84%;}
  .card-btn-ab{position: absolute; bottom: -25px; width: 80%;}



  .choose-tag li{margin: 5px;}
  .choose-tag li .btn-outline{padding: 6px;}
  .choose-us h2{font-size: 28px; line-height: 1.3;}
}