::after, ::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Neuton";
  src: url(../fonts/Neuton/Neuton-ExtraLight.ttf);
  font-weight: 200;
}
@font-face {
  font-family: "Neuton";
  src: url(../fonts/Neuton/Neuton-Light.ttf);
  font-weight: 300;
}
@font-face {
  font-family: "Neuton";
  src: url(../fonts/Neuton/Neuton-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Neuton";
  src: url(../fonts/Neuton/Neuton-Bold.ttf);
  font-weight: 700;
}
@font-face {
  font-family: "Neuton";
  src: url(../fonts/Neuton/Neuton-ExtraBold.ttf);
  font-weight: 800;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto/Roboto-Thin.ttf);
  font-weight: 100;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto/Roboto-Light.ttf);
  font-weight: 300;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto/Roboto-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto/Roboto-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto/Roboto-Bold.ttf);
  font-weight: 700;
} 
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto/Roboto-Black.ttf);
  font-weight: 900;
}


:root{
  --primaryColor: #12B0E8;
  --secondaryColor: #03203C;
  --bodyFont: "Roboto";
  --headingFont: "Neuton";
}

body {
  font-size: 17px;
  line-height: 1.4;
  font-family: var(--bodyFont);
  font-weight: 300;
}

section, header, footer, main, .innerWrap, input, textarea, form, .form-group {
  width: 100%;
  float: left;
}
.bg-gray{
  background-color: #eee;
}
.color {
  color: #0070c0;
}
section {
  padding: 50px 0;
}
section p:last-child {
  margin: 0;
}
section.productDetails ul {
  list-style: inherit;
  line-height: 2rem;
  padding-left: 20px;
}
section.productDetails ul li strong{
  font-weight: bold;
}
section.productDetails .inquiryBtn {
  background-color: #03203C;
  padding: 10px 25px;
  color: #fff;
  border: none;
  border-radius: 5px;
  border: 2px solid #03203C;
}
h1, h2, h3{
  color: var(--secondaryColor);
  font-family: var(--headingFont);
  font-weight: 600;
}
p{
  font-family: var(--bodyFont);
  font-size: 17px;
}
hr {
  background-color: #9d9d9d;
  margin-bottom: 0;
  display: none;
}
h2.leftBg{
  font-size: 40px;
  padding: 0 0 15px;
  position: relative;
}
h2.leftBg::before{
  content: "";
  position: absolute;
  width: 90px;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: var(--primaryColor);
}
a {
  text-decoration: none;
  display: inline-block;
}
a.primaryBtn {
  border: 1px solid #ddd;
  padding: 8px 20px;
  font-size: 18px;
  font-weight: 600;
  background-color: #fff;
  color: var(--secondaryColor);
  margin: 0 0 20px;
  font-family: var(--headingFont);
  border-radius: 7px;
  transition: .4s ease;
}
a.primaryBtn:hover{
  background-color: var(--secondaryColor);
  color: #fff;
  border: 1px solid var(--secondaryColor);
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
form input, form textarea {
  width: 100%;
  padding: 15px 20px;
  color: #595959;
  border: solid 1px #eee;
  border-radius: 8px;
  margin-bottom: 30px;
  resize: none;
}
form input:focus, form textarea:focus {
  outline: none;
  border: solid 1px var(--primaryColor);
}
form input[type=submit]{
  background-color: var(--secondaryColor);
  color: #fff;
  margin: 0;
  border-radius: 10px;
}
section.bulkWrapper .formWrap {
  background-color: #f7f7f7;
  width: 100%;
  float: left;
  padding: 40px;
}
section.productDetails .product {
  padding-left: 40px;
}
section.bulkWrapper .bulkImg{
  width: 100%;
  height: 100%;
}
.object-cover {
  object-fit: cover;
  object-position: center;
}

.contentTitle h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--secondaryColor);
  position: relative;
  padding: 0 0 20px;
}
.contentTitle h2::before{
    content: "";
    position: absolute;
    width: 90px;
    height: 2px;
    left: 50%;
    bottom: 0;
    background-color: var(--primaryColor);
    transform: translatex(-50px);
}
.product_column {
    width: 100%;
    text-align: center;
    background-color: #fff;
    height: 100%;
}
.product_column h3{
  font-size: 28px;
  font-weight: 600;
  margin: 15px 0 20px;
}
.product_column a{
  overflow: hidden;
}
.product_column img {
  max-height: 250px;
  max-width: 100%;
  width: auto;
  position: relative;
  transition: .4s ease;
}
.product_column img:hover{
  transform: scale(1.1);
}
section.serviceWrap .service__column{
  border-radius: 10px;
  transition: .4s ease;
}
section.serviceWrap .service__column:hover{
  transform: translateY(-20px);
}
section.serviceWrap .service__column .icon{
    color: var(--primaryColor);
    background-color: #eee;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin: 0 auto 20px;
    font-size: 2.4rem;
    cursor: pointer;
    transition: .4s ease;
}
section.serviceWrap .service__column .icon:hover{
  background-color: var(--primaryColor);
  color: #fff;
}
.service__column h3 {
  font-size: 20px;
  font-weight: 700;
}
.service__column p{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  color: #666666;
}

header {
  box-shadow: 0 0 10px rgba(128, 118, 118, 0.31);
}
header .headerTop {
  background-color: #000;
  color: #fff;
  padding: 11px 0;
}
header .headerTop ul.info {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  font-size: 0.95rem;
}
header .headerTop ul.info a {
  color: #fff;
  margin-left: 5px;
}
header .headerTop ul.topNavbar {
  display: flex;
  gap: 10px;
  margin: 0;
  font-size: 15px;
}
header .headerTop ul.topNavbar li {
  padding-left: 10px;
  border-left: solid 1px #ff7878;
}
header .headerTop ul.topNavbar li:first-child {
  border: none;
}
header .headerTop ul.topNavbar a {
  color: #fff;
}
header .headerBottom a.navbar-brand img {
  height: 75px;
}
header .headerBottom nav.navbar ul.navbar-nav {
  gap: 40px;
}
header .headerBottom nav.navbar ul.navbar-nav a.nav-link {
  padding: 0;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 17px;
  color: #595757;
  padding: 10px 0;
}

section.homeBanner .carousel{
  padding: 0;
  height: 440px;
  background-image: url(../img/banners/banner-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 8px;
}
section.homeBanner .carousel-inner, section.homeBanner .carousel-item{
  height: 100%;
}
section.homeBanner .carousel-caption img.banner-img {
  max-width: 300px;
  max-height: 300px;
}
section.homeBanner button.slide-arrow {
  background-color: #000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: .7;
  color: #fff;
  font-size: 1.2rem;
}
section.homeBanner .carousel-caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding: 0;
}
section.homeBanner .carousel-caption h2,section.homeBanner .carousel-caption h1{
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
section.homeBanner .carousel-control-next{
  right: 20px;
}
section.homeBanner .carousel-control-prev{
  left: 20px;
}
section.homeBanner .image img{
  max-width: 270px;
  max-height: 270px;
}
section.homeBanner .imgLaptop img{
  max-width: 257px;
}
section.homeBanner .imgLaptop,section.homeBanner .bannerBox{
  border: 2px solid #fff;
  border-radius: 5px;
  transition: .4s ease;
  overflow: hidden;
  position: relative;
}
section.homeBanner .bannerBox .content{
  position: absolute;
  top: 80%;
  left: 20px;
}
section.homeBanner .bannerBox .contentBottom{
  transform: translate(27px, -76px);
}
section.homeBanner .bannerBox .contentBottom h3{
  font-size: 16px;
}
section.homeBanner h3{
  font-family: var(--bodyFont);
}
section.homeBanner .bannerBox .content h3{
  font-size: 16px;
  font-weight: 500;
  color: #821812;
}
section.homeBanner .bannerBox .content span,section.homeBanner .bannerBox .contentBottom span{
  color: #1eaef1;
}
section.homeBanner .imgLaptop:hover,section.homeBanner .bannerBox:hover{
  border: 2px solid var(--primaryColor);
}
section.homeBanner .contentLeft{
  transform: translate(10px ,-42px);
  text-align: center;
}
section.homeBanner .contentLeft span{
  color: #3473c1;
}
section.homeBanner .contentLeft h3{
  font-size: 17px;
  color: #ba4757;
}
section.contactWrap iframe{
  height: 100%;
}
section.contactWrap .infoColumn {
  text-align: center;
  padding: 40px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgb(0 0 0 / 10%);
  height: 100%;
}
section.contactWrap .infoColumn i {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  color: var(--secondaryColor);
  background-color: rgb(18 176 232 / 14%);
  border-radius: 50%;
  margin: 0 auto 30px;
  font-size:35px;
}
section.contactWrap .infoColumn p, section.contactWrap .infoColumn a {
  color: #35405c;
  font-size: 18px;
  font-weight: 500;
}
section.home__slider .carousel-caption h2 {
  font-weight: 700;
  font-size: 60px;
}
section.clients__wrap .owl-carousel .owl-item img{
  width: 100px;
  height: 100px;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
}
section.about__wrap {
  background-image: url(../img/bg/home-amc-bg-6.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #0c0c0e;
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
section.about__wrap .contentTitle h2::before{
  display: none;
}
section.innerBanner {
  background-image: url(../img/banners/banner-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #0c0c0e;
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
section.innerBanner h2{
  font-size: 50px;
  text-transform: uppercase;
  color:#fff;
}
section.about__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background-image: linear-gradient(to right, var(--secondaryColor), transparent);*/
  z-index: -1;
}
section.about__wrap p {
  color: #fff;
}

section.testimonial__wrap {
  padding: 50px 0;
  background-color: #fff3f3;
}
section.testimonial__wrap .item .innerBox{
  padding: 40px 25px;
  text-align: center;
  border-radius: 8px;
  background-color: #fff ;
}
section.testimonial__wrap .item .innerBox i{
  position: relative;
  color: #ed0f0f;
  width: 50px;
  height: 50px;
  font-size: 24px;
  line-height: 50px;
  border-radius: 50px;
  margin: 0 auto;
    margin-bottom: 0px;
  margin-bottom: 25px;
  background-color: #fff4f4;
}
section.testimonial__wrap .item .innerBox .authorImg{
  display: flex;
  align-items: center;
  gap: 20px;
}
section.testimonial__wrap .item .innerBox .authorImg img{
  max-width: 50px;
  max-height: 50px;
  border-radius: 50px;
}
section.testimonial__wrap .owl-carousel .item h3 {
  color: var(--primaryColor);
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--bodyFont);
}
section.testimonial__wrap .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 50px;
}
section.bgWrapper .image{
  height: 300px;
}
section.bgWrapper a{
  display: inline;
}
section.bgWrapper .laptopImg{
  height: 300px;
  position: relative;
}
section.bgWrapper .laptopImg,section.bgWrapper .image{
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 7px;
}
section.bgWrapper  .content{
  position: absolute;
  transform: translate(-59px ,-250px);
  text-align: center;
  left: 50%;
}
section.thankWrap{
  padding: 80px 0;
}

section.bgWrapper  .content h3{
  font-size: 37px;
  font-weight: 700;
  color: #fff;
}
footer {
  background-color: var(--secondaryColor);
}
footer h3, footer a {
  color: #fff;
}
footer h3 {
  font-size: 28px;
  font-weight: 300;
  padding: 0 0 15px;
  margin: 0 0 20px;
  position: relative;
}
footer h3::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--primaryColor);
  left: 0;
  bottom: 0;
}
footer a {
  transition: 0.3s ease;
}
footer a:hover {
  color: var(--primaryColor);
}
footer ul {
  margin: 0;
}
footer ul li {
  position: relative;
  padding: 5px 0 5px 25px;
  font-size: 17px;
  font-weight: 300;
}
footer ul li::before {
  content: "\f0da";
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 15px;
  font-family: "Line Awesome Free";
  font-weight: 900;
  color: var(--primaryColor);
}
footer ul.info li i {
  margin-right: 15px;
  position: absolute;
  left: 0;
  top: 9px;
  font-size: 15px;
  color: var(--primaryColor);
}
footer ul.info li::before {
  display: none;
}
footer ul.socialLinks {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}
footer ul.socialLinks a {
  width: 40px;
  background-color: #001723;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
}
footer ul.socialLinks a:hover{
  color: #fff;
}
footer ul.socialLinks li {
  padding: 0;
}
footer ul.socialLinks li::before {
  display: none;
}
footer .footerTop {
  background-color: var(--themeDarkColor);
  color: #fff;
  padding: 50px 0 50px;
}
section.testimonial__wrap .owl-theme .owl-nav button span {
  padding: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--primaryColor);
  font-size: 24px;
  color: #fff;
  border-radius: 50%;
}
section.testimonial__wrap  .owl-theme .owl-nav button.owl-next {
  top: 50%;
  right: -30px;
  z-index: 2;
}
section.homeBanner .image,section.homeBanner .imgLaptop{
  margin-left: 35px;
}
section.testimonial__wrap .owl-theme .owl-nav button {
  margin: 0;
  position: absolute;
  transform: translateY(-50%);
}
section.testimonial__wrap .owl-theme .owl-nav button.owl-prev {
  top: 50%;
  left: -30px;
  z-index: 2;
}
section.testimonial__wrap .owl-theme .owl-nav button:hover {
  background: none;
}
footer .footerTop a.logo img {
  height: 80px;
}
footer .footerBottom {
  background-color: #001723;
  padding: 20px 0;
}
footer .footerBottom p {
  margin: 0;
  color: #fff;
  font-size: 15px;
}
section.bannerWrap{
  background-color: #eee;
}
section.bannerWrap .gridBox{
  display: grid;
  grid-template-columns: repeat(4 ,1fr);
  grid-template-rows: 1fr;
  gap: 20px;
  width: 100%;
  float: left;
}
section.bannerWrap .gridBox .column{
  width: 100%;
  border-radius: 8px;
}
section.bannerWrap .gridBox .column{
  background-color: #fff;
  border: 2px solid transparent;
  transition: .4s ease;
  width: 100%;
}
section.bannerWrap .gridBox .column .image img{
  width: 100%;
}
section.bannerWrap .gridBox .column:hover{
  border: 2px solid var(--primaryColor);
}
section.bannerWrap .gridBox .column .content{
  background-color: #fff;
  text-align: center;
}
section.bannerWrap .gridBox .column .content h3{
  color: #0070c0;
  font-family: var(--bodyFont);
  font-weight: 500;
  font-size: 18px;
  line-height: 50px;
}

/*Resopnsive Css */


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

.only-mobile {
 position: fixed;
    bottom: 0;
    background: #fff;
    display: block !important;
    padding: 3px;
        z-index: 99999999;
}



  header .headerTop ul.info {
    gap: 10px;
    text-align: center;
  }
  header .headerBottom a.navbar-brand img {
    height: 50px;
  }
  section.homeBanner button.slide-arrow {
    display: none;
  }
  section.homeBanner .carousel-caption h2, section.homeBanner .carousel-caption h1{
    font-size: 30px !important;
    text-align: center;
  }
  section.innerBanner h2{
    font-size: 40px;
  }
  section.bulkWrapper .formWrap {
    padding: 20px;
  }
  section.homeBanner .imgLaptop img{
    transform: inherit;
  }
  footer .footerBottom{
    padding: 15px 0;
  }
  footer .footerBottom p{
    font-size: 15px;
  }
  section.homeBanner .image img{
    margin: 20px 0 0;
  }
.product_column img{
    height: 200px;
  }
  .product_column h3 {
    font-size: 22px;
  }
  section.bgWrapper .content {
    transform: translate(-100px ,-190px);
  }
  section.bgWrapper .laptopImg {
    height: 230px;
  }
  section.clients__wrap .owl-carousel .owl-item img {
    height: 140px;
    width: 140px;
  }
  section.bgWrapper .content h3{
    font-size: 22px;
  }
  .contentTitle h2{
    font-size: 35px;
  }
  section.bannerWrap .gridBox{
    grid-template-columns: 1fr !important;
  }
  section.testimonial__wrap .owl-theme .owl-nav button span{
    width: 30px;
    height: 30px;
    line-height: 27px;
  }
  section.testimonial__wrap .owl-theme .owl-nav button.owl-next{
    right: -12px;
  }
  section.testimonial__wrap .owl-theme .owl-nav button.owl-prev{
    left: -13px;
  }
  section.homeBanner .imgLaptop{
    margin: 20px 0 0;
  }
  section.homeBanner .contentLeft{
    top: auto;
    right: 29% !important;
    bottom: -350px !important;
  }
  section.homeBanner .imgLaptop, section.homeBanner .bannerBox{
    margin: 15px 0 0;
  }
  section.homeBanner{
    padding: 0;
  }
  section.homeBanner .image img {
    max-width: 205px;
  }
  section.homeBanner .bannerBox .contentBottom {
    transform: translate(23px, -76px);
  }
}

@media screen and (max-width: 991px) {
  header .headerBottom .navbar-light .navbar-toggler{
    border: none;
  }
  section.homeBanner .carousel-caption h2, section.homeBanner .carousel-caption h1{
    font-size: 50px;
  }
  section.homeBanner .carousel-caption img.banner-img{
    max-width: 100%;
    width: auto;
  }
  header .headerBottom nav.navbar ul.navbar-nav{
    gap: 0;
  }
  header .headerBottom nav.navbar ul.navbar-nav a.nav-link {
    font-size: 15px;
  }
  header .headerBottom .navbar-light .navbar-toggler:focus{
    outline: none;
    border: none;
    box-shadow: none;
  }
  section.innerBanner{
    padding: 60px 0;
  }
  section.bulkWrapper .bulkImg {
    height: auto;
    margin: 0 0 20px;
  }
  section.aboutWrap .Img{
    margin: 15px 0 0;
  }
  section.bannerWrap .gridBox{
    grid-template-columns: repeat(3 ,1fr);
  }
  header .headerBottom .navbar-light .navbar-toggler i{
    color: #000;
    font-size: 35px;
  }
  section.homeBanner .image ,section.homeBanner .imgLaptop{
    text-align: center;
  }
}


@media screen and (max-width: 1280px) {
  section.homeBanner .image, section.homeBanner .imgLaptop{
    margin-left: 0;
  }
}
@media screen and (max-width: 1366px) {
  section.homeBanner .image, section.homeBanner .imgLaptop{
    margin-left: 0;
  }
  section.homeBanner .bannerBox .contentBottom {
    transform: translate(4px, -76px);
  }
  section.homeBanner .contentLeft {
    transform: translate(-3px ,-32px);
  }
}
.img-bg {
  background-image: url(../img/bg/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
}
.form-style {
  background-color:;

}
.form-main-style {
  width: 400px;
    background-color: #dbdbdb;
    padding: 35px;
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
    background: #efefef;
}
.only-mobile {
  display: none;
}
