/* @import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.4/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;500&family=Roboto&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Exo:ital,wght@0,100..900;1,100..900&family=Hind:wght@300;400;500;600;700&family=Lexend:wght@100..900&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    /* font-family: 'Raleway', sans-serif; */
}

:root {
    --brand: #ff4d29;
    --dark: #092032;
    --body: #516171;
    --border: rgba(0,0,0,0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
    
}
/* @font-face {
    font-family: DMSerifDisplay-Italicr;
    src: url(../fonts/DMSerifDisplay-Italic.ttf);
} */

body {
    color: var(--body);
    line-height: 1.7;
    font-family: "Lexend", sans-serif;
}

h1,h2,h3,h4,h5,h6,
.display-1,.display-2,.display-3,.display-4 {
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


a {
    color: var(--dark);
    transition: all 0.4s ease;
    font-weight: 500;
}

a:hover {
    color: var(--brand);
}

section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.text-brand {
    color: var(--brand) !important;
}


/* navbar */
.top-nav {
    background-color: #00455e;
    color: #fff;
    padding-top: 5px;
    padding-bottom: 5px;
}

.top-nav p {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 10px;
}

.top-nav span,
.top-nav i {
    vertical-align: middle;
    color: #00455e;
}

.navbar {
    box-shadow: var(--shadow);
}

.social-icons a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    /* color: #ffffff; */
    background-color: #f7ae25;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.social-icons a:hover {
    background-color: #fff;
    color: #f7ae25;
}
.conditions-section{
    margin: 20px 0;
}
.conditions-section a{
   color: #fff;
   margin: 0 10px;
}

.navbar .navbar-nav .nav-link .active{
    color: #f7ae25;
}
.navbar .navbar-nav .nav-link {
    color: #00455e;
    font-weight: 400;
    padding: 0px 10px;
    text-align: left;
    font-size: 14px;
}

.navbar .navbar-nav .nav-link:hover {
    color: #f7ae25;
}

.navbar .navbar-nav .nav-link.active {
    color: #f7ae25;
    font-weight: 700;
    padding: 0px 10px;
    text-align: left;
    font-size: 14px;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
}

.navbar-brand .dot {
    color: var(--brand);
}

.btn {
    padding: 8px 26px;
}

.btn-brand {
    border-color: var(--brand);
    background-color: var(--brand);
    color: #fff;
}

.btn-brand:hover {
    background-color: #d64022;
    border-color: #d64022;
    color: #fff;
}

.intro {margin-bottom: 36px;
text-align: center;}

.intro p {
    max-width: 500px;
}
.intro h6{
    color: var(--brand);
    font-weight: 400;
    text-transform: uppercase;
}

.intro h1 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.info-box {
    align-items: center;
    display: flex;
    color: #00435c;
}

.info-box img {
    width: 90px;
}

.info-box h5{
    color: #00435c;
    text-decoration: underline;
    font-size: 18px;
}

#milestone {
    background: #00455e;
    /* background-size: cover; */
    /* background-position: center; */
    /* background-repeat: no-repeat; */
}

#milestone h1,
#milestone p {
    color: #ffffff;
}

/*slider start css */
.slidebar1{
    background-image: url(../img/banner-1.jpg);
    background-size: cover;
    width: 100%;
}
.slidebar2{
    background-image: url(../img/banner-2.jpg);
    background-size: cover;
    width: 100%;
}
.slidebar3{
    background-image: url(../img/banner-3.jpg);
    background-size: cover;
    width: 100%;
}

/*slider end css */


.service {
    padding: 22px;
    background: url(../img/services.jpg);
    /* background-color: #030e24d9; */
    box-shadow: var(--shadow);
}

.service h5 {
    margin-top: 24px;
    margin-bottom: 14px;
    font-size: 20px;
}


.project {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.project h6 {
    font-weight: 400;
}

.project h6::before {
    content: "";
    height: 2px;
    width: 30px;
    display: inline-block;
    background: var(--brand);
    vertical-align: middle;
    margin-right: 10px;
}


.project .overlay {
    width: 100%;
    height: 220px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 76, 41, 0) 0%, var(--dark) 100%);
}

.project .content {
    position: absolute;
    left: 10%;
    bottom: 10%
}

.project h2,
.project h6 {
    color: #fff;
}

.team-member {
    text-align: center;
}

.team-member .image{
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.team-member .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: -10%;
    background-color: rgba(255, 77, 41, 0.7);
    opacity: 0;
    transition: all 0.4s ease;
}

.team-member h5 {
    margin-top: 16px;
    margin-bottom: 4px;
}

.team-member .social-icons {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-member .social-icons a {
    width: 40px;
    height: 40px;
}

.team-member:hover .social-icons {
    top: 50%;
    opacity: 1;
}

.team-member:hover .overlay {
    top: 0%;
    opacity: 1;
}

#reviews {

    background: linear-gradient(-90deg, rgba(8, 32, 50, 0.8), rgba(8, 32, 50, 0.8)), url(../img/bg_banner1.jpg), #082032;;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.review {
    text-align: center;
    z-index: 2;
    position: relative;
    margin: 15px;
    max-width: 768px;
    margin: auto;
}

.review .bxs-quote-alt-left {
    font-size: 120px;
    position: absolute;
    opacity: 0.1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.review img {
    width: 80px !important;
    height: 80px;
    border-radius: 100px;
    margin: auto;
}

.review h5 {
    margin-top: 16px;
    margin-bottom: 4px;
    color: #fff;
}

.review h3 {
    margin-top: 26px;
    margin-bottom: 26px;
    font-size: 22px;
    color: #fff;
    font-weight: 400;
    line-height: 1.7;
}

.review small {
    color: var(--brand);
}

.review .stars {
    color: var(--brand);
}

.blog-post {
    position: relative;
    background-color: #fff;
    box-shadow: var(--shadow);
}

.blog-post .content {
    padding: 32px;
}

.blog-post a {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--brand);
    padding: 2px 12px;
    border-radius: 100px;
    text-decoration: none;
    color: #fff;
}

.blog-post h5 {
    margin-top: 12px;
    margin-bottom: 12px;
}

.blog-post small {
    text-transform: uppercase;
    color: var(--brand);
    text-decoration: underline;
}

/* footer {
    background: linear-gradient(0deg, rgba(8, 32, 50, 0.9), rgba(8, 32, 50, 0.9)), url(../img/bg_banner1.jpg), #082032;;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

footer .footer-top {
    padding-top: 30px;
    padding-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
    padding-top: 5px;
}

footer .navbar-brand {
    color: #fff;
}

footer p {
    color: #ADB3B9;
}

footer .social-icons a {
    width: 30px;
    height: 30px;
    font-size: 21px;
    margin-left: 2px;
    margin-right: 2px;
} */

.loader {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    z-index: 99999;
    position: fixed;
    left: 0;
    right: 0;
}


input.form-control {
    border-color: transparent;
    height: 44px;
}

.form-control {
    background-color: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.04);;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--brand);
}

/*-- dropdown start --*/
.navbar-nav li:hover > ul.dropdown-menu {
    display: block;
}
.dropdown-submenu {
    position:relative;
}
.dropdown-submenu>.dropdown-menu {
    top:0;
    left:100%;
    margin-top:-6px;
}
.dropdown-menu > li > a:hover:after {
    text-decoration: underline;
    transform: rotate(-90deg);
} 
/*-- dropdown  end --*/

/*-- heading start --*/
.wrapper h3{
    position: relative;
    color: #00455e;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    padding-bottom: 10px;
}
.wrapper h3::before{
    content: "";
    position: absolute;
    top: 110%;
    left: 45%;
    width: 10%;
    height: 5px;
    background: #f7ae25;
    border-radius: 10px;
}

/* .main-footer i{
    font-size: 20px;
    color: #fff;
}
.main-footer a{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    
}
.end-links{
    color: #ffff;
    text-decoration: none;
}
.end-links:hover{
    color: #f7ae25;
} */
a.more-button {
    text-decoration: none;
    color: #fff;
    background: #00455e;
    padding: 12px 20px;
    transition: 1s;
    font-size: 16px;
    border-radius: 5px;
}
a.more-button:hover{
    background: #f7ae25;
    color: #030e24;
    border-bottom-left-radius: 12px;
    border-top-right-radius: 12px;
    border: 5px solid #fff;
}


/* -- footer start -- */
* {
    margin: 0;
    padding: 0;
  }
  a {
    color: #fff;
    text-decoration: none;
  }
  .pg-footer {
    font-family: 'Roboto', sans-serif;
  }
  
  
  .footer {
      background-color: #030e24;
      color: #fff;
      /* position: absolute; */
      /* width: 100%; */
      /* z-index: -99; */
  }
  .footer-wave-svg {
      background-color: transparent;
      display: block;
      height: 30px;
      position: relative;
      top: -1px;
      width: 100%;
  }
  .footer-wave-path {
      fill: #ffffff;
  }
  
  .footer-content {
      /* margin-left: auto; */
      /* margin-right: auto; */
      /* max-width: 1230px; */
      /* padding: 40px 15px; */
      /* position: relative; */
  }
  
  .footer-content-column {
      box-sizing: border-box;
      /* float: left; */
      /* padding-left: 15px; */
      /* padding-right: 15px; */
      /* width: 100%; */
      /* color: #fff; */
  }
  
  .footer-content-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: .5s;
  }
  .footer-content-column ul li a:hover{
    margin-left: 2px;
    color: #f7ae25;
  }
  
  .footer-logo-link {
      display: inline-block;
      background: #fff;
      padding: 3px 10px;
      border-radius: 10px;
  }
  .footer-menu {
      margin-top: 30px;
  }
  
  .footer-menu-name {
      color: #fffff2;
      font-size: 20px;
      font-weight: 900;
      letter-spacing: 0.1em;
      line-height: 25px;
      margin-bottom: 0;
      margin-top: 0;
      text-transform: uppercase;
      position: relative;
  }
  .footer-menu-name::after{
    content: "";
    position: absolute;
    width: 30%;
    height: 5px;
    background: #f7ae25;
    top: 30px;
    left: 0;
    border-radius: 50px;
  }
  .footer-menu-list {
      list-style: none;
      margin-bottom: 0;
      margin-top: 26px;
      padding-left: 0;
  }
  .footer-menu-list li {
      margin-top: 5px;
  }
  
  .footer-call-to-action-description {
      color: #fffff2;
      margin-top: 10px;
      margin-bottom: 20px;
  }
  .footer-call-to-action-button:hover {
      background-color: #f7ae25;
      color: #fff;
  }
  .button:last-of-type {
      margin-right: 0;
  }
  .footer-call-to-action-button {
      background-color: #f7ae25;
      border-radius: 50px;
      color: #00455e;
      display: inline-block;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .1em;
      line-height: 18px;
      padding: 10px 10px;
      margin: 20px 0px;
      text-decoration: none;
      text-transform: uppercase;
      transition: background-color .2s;
      cursor: pointer;
      position: relative;
  }
  .footer-call-to-action {
      margin-top: 30px;
  }
  .footer-call-to-action-title {
      color: #fffff2;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: .1em;
      line-height: 18px;
      margin-bottom: 0;
      margin-top: 0;
      text-transform: uppercase;
  }
  .footer-call-to-action-link-wrapper {
      margin-bottom: 0;
      margin-top: -40px;
      color: #fff;
      text-decoration: none;
  }
  .footer-call-to-action-link-wrapper a {
      color: #fff;
      text-decoration: none;
  }
  
  
  
  
  
  .footer-social-links {
      /* bottom: 0; */
      /* height: 54px; */
      /* position: absolute; */
      /* right: 0; */
      /* width: 236px; */
  }
  
  .footer-social-amoeba-svg {
      height: 54px;
      left: 0;
      display: block;
      position: absolute;
      top: 0;
      width: 236px;
  }
  
  .footer-social-amoeba-path {
      fill: #f7ae25;
  }
  
  .footer-social-link.linkedin {
      height: 26px;
      left: 3px;
      top: 11px;
      width: 45px;
  }
  
  .footer-social-link {
      padding: 10px 15px;
      /* position: absolute; */
      background: #ffac3c;
      color: #000e23;
      border-radius: 50px;
  }
  
  .hidden-link-text {
      position: absolute;
      clip: rect(1px 1px 1px 1px);
      clip: rect(1px,1px,1px,1px);
      -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
      clip-path: inset(0px 0px 99.9% 99.9%);
      overflow: hidden;
      height: 1px;
      width: 1px;
      padding: 0;
      border: 0;
      top: 50%;
  }
  
  .footer-social-icon-svg {
      display: block;
  }
  
  .footer-social-icon-path {
      fill: #00455e;
      transition: fill .2s;
  }
  
  .footer-social-link.twitter {
      height: 28px;
      left: 62px;
      top: 3px;
      width: 45px;
  }
  
  .footer-social-link.youtube {
      height: 24px;
      left: 123px;
      top: 12px;
      width: 45px;
  }
  
  .footer-social-link.github {
      height: 34px;
      left: 175px;
      top: 8px;
      width: 50px;
  }
  
  .footer-copyright {
      background-color: #fbffef;
      color: #030e24;
      padding: 13px 25px;
      text-align: center;
  }
  
  .footer-copyright-wrapper {
      /* margin-left: auto; */
      margin-right: auto;
      max-width: 1200px;
  }
  
  .footer-copyright-text {
    color: #00465e;
    font-size: 14px;
    font-weight: 400;
    /* line-height: 18px; */
    /* margin-bottom: 0; */
    /* margin-top: 0; */
  }
  
  .footer-copyright-link {
      color: #00455e;
      text-decoration: none;
  }
  .footer-copyright-link:hover{
    color: #f7ae25;
  }
  
  /* Media Query For different screens */
  @media (min-width:320px) and (max-width:479px)  { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
    .footer-content {
      margin-left: auto;
      margin-right: auto;
      /* max-width: 1230px; */
      /* padding: 40px 15px 1050px; */
      /* position: relative; */
    }
    .footer-social-links{
        height: 22px;
        width: 60%;
    }
  }
  @media (min-width:480px) and (max-width:599px)  { /* smartphones, Android phones, landscape iPhone */
    .footer-content {
      margin-left: auto;
      margin-right: auto;
      /* max-width: 1230px; */
      /* padding: 50px 15px; */
      /* position: relative; */
    }
  }
  @media (min-width:600px) and (max-width: 800px)  { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
    .footer-content {
      /* margin-left: auto; */
      /* margin-right: auto; */
      /* max-width: 1230px; */
      padding: 50px 20px;
      /* position: relative; */
    }
  }
  @media (min-width:801px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */
  
  }
  @media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */
  
  }
  @media (min-width:1281px) { /* hi-res laptops and desktops */
  
  }
  
  @media (min-width: 760px) {
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 30px 20px;
        /* position: relative; */
    }
  
    .footer-wave-svg {
        height: 50px;
    }
  
    .footer-content-column {
        width: 24.99%;
    }
  }
  @media (min-width: 568px) {
    /* .footer-content-column {
        width: 49.99%;
    } */
  }
  

  /* testimonial start */
  .slider, 
.slider > div {
    /* Images default to Center Center. Maybe try 'center top'? */
    background-position: center center;
    display: block;
    width: 100%;
    height: 500px;
    /* height: 100vh; *//* If you want fullscreen */
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000;
    overflow: hidden;
    -moz-transition: transform .4s;
    -o-transition: transform .4s;
    -webkit-transition: transform .4s;
    transition: transform .4s;
}

.slider > div {
    position: absolute;
}

.slider > i {
    color: #5bbd72;
    position: absolute;
    font-size: 60px;
    margin: 20px;
    top: 40%;
    text-shadow: 0 10px 2px #223422;
    transition: .3s;
    width: 30px;
    padding: 10px 13px;
    background: #fff;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    line-height: 0;
    box-sizing: content-box;
    border-radius: 3px;
    z-index: 4;
}

.slider > i svg {
    margin-top: 3px;
}

.slider > .left {
    left: -100px;
}
.slider > .right {
    right: -100px;
}
.slider:hover > .left {
    left: 0;
}
.slider:hover > .right {
    right: 0;
}

.slider > i:hover {
    background:#fff;
    background: rgba(255, 255, 255, .8);
    transform: translateX(-2px);
}

.slider > i.right:hover {
    transform: translateX(2px);
}

.slider > i.right:active,
.slider > i.left:active {
    transform: translateY(1px);
}

.slider:hover > div {
    transform: scale(1.01);
}

.hoverZoomOff:hover > div {
    transform: scale(1);
}

.slider > ul {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 4;
    padding: 0;
    margin: 0;
    transform: translateX(-50%);
}

.slider > ul > li {
    padding: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    list-style: none;
    float: left;
    margin: 10px 10px 0;
    cursor: pointer;
    border: 1px solid #fff;
    -moz-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
}

.slider > ul > .showli {
    background-color: #f7ae25;
    -moz-animation: boing .5s forwards;
    -o-animation: boing .5s forwards;
    -webkit-animation: boing .5s forwards;
    animation: boing .5s forwards;
}

.slider > ul > li:hover {
    background-color: #f7ae25;
}

.slider > .show {
    z-index: 1;
}

.hideDots > ul {
    display: none;
}

.showArrows > .left {
    left: 0;
}

.showArrows > .right {
    right: 0;
}

.titleBar {
    z-index: 2;
    display: inline-block;
    background: rgba(0,0,0,.5);
    position: absolute;
    width: 100%;
    bottom: 0;
    transform: translateY(100%);
    padding: 20px 30px;
    transition: .3s;
    color: #fff;
    font-family: "Exo", sans-serif;
}

.titleBar * {
    transform: translate(-20px, 30px);
    transition: all 700ms cubic-bezier(0.37, 0.31, 0.2, 0.85) 200ms;
    opacity: 0;
}

.titleBarTop .titleBar * {
    transform: translate(-20px, -30px);
}

.slider:hover .titleBar,
.slider:hover .titleBar * {
    transform: translate(0);
    opacity: 1;
}

.titleBarTop .titleBar {
    top: 0;
    bottom: initial;
    transform: translateY(-100%);
}

.slider > div span {
    display: block;
    background: rgba(0,0,0,.5);
    position: absolute;
    bottom: 0;
    color: #fff;
    text-align: center;
    padding: 0;
    width: 100%;
}


@keyframes boing {
    0% {
        transform: scale(1.2);
    }
    40% {
        transform: scale(.6);
    }
    60% {
        transform: scale(1.2);
    }
    80% {
        transform: scale(.8);
    }
    100% {
        transform: scale(1);
    }
}

/* -------------------------------------- */

#slider2 {
    max-width: 30%;
    margin-right: 20px;
}
.content {
    padding: 10px 15vw;
}
.background {
    position: relative;
}

.background::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 4%;
    width: 100%;
    height: 452px;
    background: #f7ae25;
    border-radius: 10px;
    z-index: 1;
}
.background-2{
    position: absolute;
    top: 90%;
    left: 0%;
    background: #030e24;
    color: #ffff;
    padding: 8px 0px;
    z-index: 3;
    border-radius: 10px;
    width: 100%;
    font-family: "Exo", sans-serif;
}

@media (max-width: 786px){
    .background::after{
      height: 380px;
    }
    .background-2{
        position: static;
        height: auto;
    }
}

/*-- prise css start --*
/* .pricing-table{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: min(1600px, 100%);
    margin: auto;
  }
  
  .pricing-card{
    flex: 1;
    max-width: 500px;
    background-color: #fff;
    margin: 20px 10px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    color: #2d2d2d;
    transition: .3s linear;
    border-radius: 20px;
    border-bottom: 5px solid #f7ae25;
    border-top: 5px solid #f7ae25;
  }
  
  .pricing-card-header{
    background-color: #f7ae25;
    display: inline-block;
    color: #030e24;
    padding: 12px 30px;
    border-radius: 0 0 20px 20px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    transition: .4s linear;
  }
  
  .pricing-card:hover .pricing-card-header{
    box-shadow: 0 0 0 26em #030e24;
  }
  
  .price{
    font-size: 70px;
    color: #030e24;
    margin: 10px 0;
    transition: .2s linear;
  }
  
  .price sup, .price span{
    font-size: 22px;
    font-weight: 700;
  }
  
  .pricing-card:hover ,.pricing-card:hover .price{
    color: #fff;
  }
  
  .pricing-card li{
    font-size: 16px;
    padding: 10px 0;
    text-transform: uppercase;
  }
  
  .order-btn{
    display: inline-block;
    margin-bottom: 20px;
    margin-top: 20px;
    border: 2px solid #030e24;
    background: #030e24;
    color: #ffff;
    padding: 8px 20px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 500;
    transition: .3s linear;
  }
  
  .order-btn:hover{
    background-color: #f7ae25;
    color: #030e24;
  }
  
  @media screen and (max-width:1100px){
    .pricing-card{
      flex: 50%;
    }
  } */
/*-- prise css end --*
.container__img-holder {
  max-width: 280px;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
  margin-left: 16px;
  cursor: pointer;
}

.container .container__img-holder:nth-child(3n+1) {
  margin-left: 0;
}

.container__img-holder img {
  width: 100%;
  height: 220px;
  display: block;
}


/* Popup Styling */
.img-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #2c2c2c29;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    z-index: 9999;
  }
  
  .img-popup img {
    max-width: 700px;
    width: 100%;
    opacity: 0;
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
  }
  
  .close-btn {
    width: 35px;
    height: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 15%;
    right: 20%;
    cursor: pointer;
  }
  
  .close-btn .bar {
    height: 4px;
    background: #fff;
  }
  
  .close-btn .bar:nth-child(1) {
    transform: rotate(45deg);
  }
  
  .close-btn .bar:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }
  
  .opened {
    display: flex;
  }
  
  .opened img {
    animation: animatepopup 1s ease-in-out .8s;
    -webkit-animation: animatepopup .3s ease-in-out forwards;
    margin-top: 4%;
  }
  
  @keyframes animatepopup {
  
    to {
      opacity: 1;
      transform: translateY(0);
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
    }
  
  }
  
  @media screen and (max-width: 880px) {
  
    .container .container__img-holder:nth-child(3n+1) {
      margin-left: 16px;
    }
    .navbar-collapse{
      line-height: 35px;
      border-top: 1px solid #ddd;
      width: 100%;
      background: #ddd;
      padding: 15px 0px;
      margin: 20px 0px;
      border-radius: 15px;
  }
  }

.container__img-holder{
    position: relative;
    width: 100%;
}

.nested{
    display: block;
    width: 100%;
    height: auto;
}

.overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #00455e;
}

.container__img-holder:hover .overlay{
    opacity: 1;
}

.over-text{
    color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

  .auto-mation{
    position: relative;
  }
  .auto-mation::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .counter {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: 1.5%;
    font-size: 50px;
    /* background-color: #f4f4f4; */
    color: #f7ae25;
    /* width: 200px; */
    /* border-radius: 50%; */
    /* height: 200px; */
    vertical-align: middle;
  }
  

  .owl-nav {
    position: absolute;
    bottom: 50%;
    /* width: 50%; */
    display: none;
  }
  .owl-prev {
    display:block;
    float: left;
    margin-left: -50px;
    width: 50px;
    height: 50px;
  }
  .owl-next {
    float:right;
    margin-right: -50px;
    display:block;
    height: 50px;
    width: 50px;
  }

  .card-title { color: #030e24; }
  
  .card-img-top img {margin: auto;}
  
  /* banner css start  */
  .about-banner{
    background: url(../img/about-banner.jpg);
    height: 300px;
    width: 100%;
    position: relative;
    background-position: left;
    background-size: cover;
   
  }

  /* alloy css start  */
  .alloy-banner{
    background: url(../img/welding-wire-banner.jpg);
    height: 300px;
    width: 100%;
    position: relative;
    background-position: left;
    background-size: cover;
   
  }

  /* abrasives banner css start  */
  .abrasives-banner{
    background: url(../img/abrasives-banner.jpg);
    height: 300px;
    width: 100%;
    position: relative;
    background-position: left;
    background-size: cover;
   
  }

  /* messer css start  */
  .messer{
    background: url(../img/messer-banner.jpg);
    height: 300px;
    width: 100%;
    position: relative;
    background-position: left;
    background-size: cover;
   
  }


  /* flame tech css start  */
  .flame-tech{
    background: url(../img/flame-tech-banner.jpg);
    height: 300px;
    width: 100%;
    position: relative;
    background-position: left;
    background-size: cover;
   
  }

/* electroad css start  */
.electroad-banner{
  background: url(../img/welding-electrodes-banner.jpg);
  height: 300px;
  width: 100%;
  position: relative;
  background-position: left;
  background-size: cover;
 
}

/* esab-welding css start  */
.esab-welding{
  background: url(../img/esab-welding-consumables-banner.jpg);
  height: 300px;
  width: 100%;
  position: relative;
  background-position: left;
  background-size: cover;
 
}

/* cabels-hose-banner css start  */
.cabels-hose{
  background: url(../img/cables-hose-pipe-banner.jpg);
  height: 300px;
  width: 100%;
  position: relative;
  background-position: left;
  background-size: cover;
 
} 

/* Wires-banner css start  */
.Wires-banner{
  background: url(../img/wires-banner.jpg);
  height: 300px;
  width: 100%;
  position: relative;
  background-position: left;
  background-size: cover;
 
}

/* accessories banner css start  */
.accessories{
  background: url(../img/accessories-banner.jpg);
  height: 300px;
  width: 100%;
  position: relative;
  background-position: left;
  background-size: cover;
 
}

  /* inquiry banner start */
   .inquiry-banner{
    background: url(../img/inquiry-banner.jpg);
    height: 300px;
    width: 100%;
    position: relative;
    background-position: left;
    background-size: cover;
   
  }
  /* contact banner start */
  .contact-banner{
    background: url(../img/contact-us-banner.jpg);
    height: 300px;
    width: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
   
  }

/* Manufacture banner start */
.manufacture-banner{
    background: url(../img/manufacture-banner.jpg);
    height: 300px;
    width: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
  }

  .banner-text{
    position: absolute;
    top: 85%;
    left: 45%;
    display: flex;
    font-size: 20px;
  }
  .banner-text ,span,p,a{
    /* color: #fff; */
    margin-right: 5px;
    margin-left: 5px;
    font-weight: 400;
    /* text-align: center; */
    font-size: 16px;
  }

  
  @media (max-width: 786px){
    .banner-text{
        left: 0%;
        display: block;
    }
  }
 /* about section start */
 .about-1{
    background: url(../img/background.jpg);
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
 }
 .about-part{
   text-align: justify;
   background: #fff;
   padding: 10px;
   height: auto;
   border-radius: 4px;
   box-shadow: 0px 0px 2px #00455e;
 }
 .about-part h3{
    color: #00455e;
    position: relative;
    text-align: center;
 }
 .about-part h3::after{
    content: '';
    position: absolute;
    top: 100%;
    left: 38%;
    width: 25%;
    height: 3px;
    border-radius: 20px;
    background: #f7ae25;
 }
 .about-img-part img{
    box-shadow: 0px 0px 3px #00455e;
    border-radius: 4px;
    width: 100%;
}

 @media (max-width: 786px){
    .about-1{
        height: auto;
     }
 }

 .text-area{
    /* background: #000; */
    padding-top: 20px;
    padding-bottom: 20px;
 }
 .main-list{
    margin-bottom: 15px;
 }
 .main-list h3{
    color: #00455e;
    position: relative;
    display: inline;
    font-size: 24px;
 }
 .main-list h3::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 3px;
    display: inline;
    background: #f7ae25;
    border-radius: 15px;
 }
 .main-text {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0px 0px 3px;
    border-radius: 10px;
    height: 100%;
}
.main-list li p{
    margin: 7px;
    padding: 0;
    text-align: justify;
}
/* inqiry start css  */
.formbold-mb-5 {
    margin-bottom: 20px;
  }
  .formbold-pt-3 {
    padding-top: 12px;
  }
  .formbold-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
  }

  .formbold-form-wrapper {
    margin: 0 auto;
    /* max-width: 550px; */
    width: 100%;
    /* background: white; */
  }
  .formbold-form-label {
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: #00455e;
    margin-bottom: 12px;
  }
  .formbold-form-label-2 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .formbold-form-input {
    width: 100%;
    padding: 12px 24px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    background: white;
    font-weight: 500;
    font-size: 16px;
    color: #6b7280;
    outline: none;
    resize: none;
  }
  .formbold-form-input:focus {
    border-color: #00455e;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
  }

  .formbold-btn {
    text-decoration: none;
    color: #fff;
    background: #00455e;
    padding: 10px 35px;
    transition: 0.5s;
    border: none;
    font-weight: 500;
    font-size: 18px;
  }
  .formbold-btn:hover {
    background: #f7ae25;
    color: #030e24;
    border-bottom-left-radius: 12px;
    border-top-right-radius: 12px;
    border: 5px solid #fff;
  }

  .formbold--mx-3 {
    margin-left: -12px;
    margin-right: -12px;
  }
  .formbold-px-3 {
    padding-left: 12px;
    padding-right: 12px;
  }
  .flex {
    display: flex;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .w-full {
    width: 100%;
  }
  @media (min-width: 540px) {
    .sm\:w-half {
      width: 50%;
    }
  }

  .checkbox-dropdown {
    width: 100%;
    border: 1px solid #e0e0e0;
    padding: 10px;
    position: relative;
    margin: 0 auto;
    user-select: none;
    background: #fff;
    border-radius: 6px;
}

/* Display CSS arrow to the right of the dropdown text */
.checkbox-dropdown:after {
    content:'';
    height: 0;
    position: absolute;
    width: 0;
    border: 6px solid transparent;
    border-top-color: #000;
    top: 50%;
    right: 10px;
    margin-top: -3px;
}

/* Reverse the CSS arrow when the dropdown is active */
.checkbox-dropdown.is-active:after {
    border-bottom-color: #000;
    border-top-color: #fff;
    margin-top: -9px;
}

.checkbox-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%; /* align the dropdown right below the dropdown text */
    border: inherit;
    border-top: none;
    left: -1px; /* align the dropdown to the left */
    right: -1px; /* align the dropdown to the right */
    opacity: 0; /* hide the dropdown */
    transition: opacity 0.4s ease-in-out;
    height: auto;
    overflow: scroll;
    overflow-x: hidden;
    pointer-events: none; /* avoid mouse click events inside the dropdown */
    background: #fff;
}
.is-active .checkbox-dropdown-list {
    opacity: 1; /* display the dropdown */
    pointer-events: auto; /* make sure that the user still can select checkboxes */
}

.checkbox-dropdown-list li label {
    display: block;
    border: 1px solid #00455e;
    padding: 10px;
    transition: all 0.2s ease-out;
    border-radius: 6px;
}

.checkbox-dropdown-list li label:hover {
    background-color: #f7ae25;
    color: #00455e;
}
.happen{
    float: right;
}

.location {
    background: #ffffff;
    padding: 15px 10px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 0px 2px #d1d1d1;
    height: 100%;
}
.location i{
    font-size: 36px;
    color: #f7ae25;
}
.location h4{
    color: #00455e;
}
.location p{
    /* text-align: justify; */
    color: #00455e;
}
@media (max-width: 500px){
    .happen{
        float: none;
        margin-top: 5px;
    }
}

.manufacturing{
    border: 1px solid #ddd;
    margin: 1px;
}
.manufacturing ul{
    margin: 0;
    list-style: none;
}
.contact-text h4{
    color: #00455e;
    text-decoration: underline;
}

.info-box p{
    color: #00455e;
    text-align: left;
}

/* alluminium css start  */
.alluminium{
    background: linear-gradient(rgb(0, 69, 94, 0.9),rgba(0, 69, 94, 0.5)),url(../img/bg-1.jpg);
    width: 100%;
    background-size: cover;
    background-position: center;
    
}
.specifications ul{
    margin: 0;
    padding: 20px 0px;
    list-style: none;
}
.specifications ul li p{
    text-align: left;
    color: #fff;
}
.arent ul li p {
  color: #000;
}
.slluminium-head{
    position: relative;
    display: inline;
    color: #00455e;
}
.slluminium-head::before{
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #f7ae25;
    height: 3px;
    border-radius: 10px;
    animation: lineH 4s  linear;
}
@keyframes lineH{
    0%{
        width: 0%;
    }
    100%{
       width: 100%;
    }
}

.rwd-table {
    margin: auto;
    /* min-width: 300px; */
    width: 100%;
    border-collapse: collapse;
  }
  
  .rwd-table tr:first-child {
    border-top: none;
    background: #00455e;
    color: #fff;
  }
  
  .rwd-table tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background-color: #f5f9fc;
  }
  
  .rwd-table tr:nth-child(odd):not(:first-child) {
    background-color: #ebf3f9;
  }
  
  .rwd-table th {
    display: none;
  }
  
  .rwd-table td {
    display: block;
  }
  
  .rwd-table td:first-child {
    margin-top: .5em;
  }
  
  .rwd-table td:last-child {
    margin-bottom: .5em;
  }
  
  .rwd-table td:before {
    content: attr(data-th) ": ";
    font-weight: bold;
    width: 120px;
    display: inline-block;
    color: #000;
  }
  
  .rwd-table th,
  .rwd-table td {
    text-align: left;
  }
  
  .rwd-table {
    color: #333;
    border-radius: .4em;
    overflow: hidden;
  }
  
  .rwd-table tr {
    border-color: #bfbfbf;
  }
  
  .rwd-table th,
  .rwd-table td {
    padding: .5em 1em;
  }
  @media screen and (max-width: 601px) {
    .rwd-table tr:nth-child(2) {
      border-top: none;
    }
  }
  @media screen and (min-width: 600px) {
    .rwd-table tr:hover:not(:first-child) {
      background-color: #d8e7f3;
    }
    .rwd-table td:before {
      display: none;
    }
    .rwd-table th,
    .rwd-table td {
      display: table-cell;
      padding: .25em .5em;
    }
    .rwd-table th:first-child,
    .rwd-table td:first-child {
      padding-left: 0;
    }
    .rwd-table th:last-child,
    .rwd-table td:last-child {
      padding-right: 0;
    }
    .rwd-table th,
    .rwd-table td {
      padding: 1em !important;
      border: 1px solid #d9d9d9;
    }
  }
  
  /* Basic Styling */
 
  @-webkit-keyframes leftRight {
    0%    { -webkit-transform: translateX(0)}
    25%   { -webkit-transform: translateX(-10px)}
    75%   { -webkit-transform: translateX(10px)}
    100%  { -webkit-transform: translateX(0)}
  }
  @keyframes leftRight {
    0%    { transform: translateX(0)}
    25%   { transform: translateX(-10px)}
    75%   { transform: translateX(10px)}
    100%  { transform: translateX(0)}
  }
  
  /* alluminium section css start */
  #tsum-tabs h1 {
    padding: 50px 0;
    font-weight: 400;
    text-align: center;
  }
  
  #tsum-tabs p {
    margin: 0 0 20px;
    line-height: 1.5;
    color: #00455e;
  }
  
  #tsum-tabs main {
    /* min-width: 320px; */
    /* max-width: 800px; */
    /* padding: 50px; */
    /* margin: 0 auto; */
    background: #fff;
  }
  
  #tsum-tabs section {
    display: none;
    padding: 20px 0 0;
    border-top: 1px solid #ffac3c;
    width: 100%;
  }
  
  #tsum-tabs input {
    display: none;
  }
  
  #tsum-tabs label {
    display: inline-block;
    margin: 0 0 -1px;
    padding: 15px 20px;
    font-weight: 500;
    text-align: center;
    color: #00465d;
    border: 1px solid transparent;
    font-size: 16px;
  }
  
  #tsum-tabs label:before {
    font-family: fontawesome;
    font-weight: normal;
    margin-right: 10px;
  }
  

  #tsum-tabs label:hover {
    color: #888;
    cursor: pointer;
  }
  
  #tsum-tabs input:checked + label {
    color: #ffffff;
    border: 1px solid #ddd;
    border: 2px solid orange;
    border-bottom: 1px solid #00455e;
    background: #00475d;
  }
  
  #tsum-tabs #tab1:checked ~ #content1,
  #tsum-tabs #tab2:checked ~ #content2,
  #tsum-tabs #tab3:checked ~ #content3,
  #tsum-tabs #tab4:checked ~ #content4,
  #tsum-tabs #tab5:checked ~ #content5,
  #tsum-tabs #tab6:checked ~ #content6,
  #tsum-tabs #tab7:checked ~ #content7,
  #tsum-tabs #tab8:checked ~ #content8,
  #tsum-tabs #tab9:checked ~ #content9,
  #tsum-tabs #tab10:checked ~ #content10,
  #tsum-tabs #tab11:checked ~ #content11,
  #tsum-tabs #tab12:checked ~ #content12,
  #tsum-tabs #tab13:checked ~ #content13
   {
    display: block;
  }

  .table tr td {
    border: 1px solid #000000;
    padding: 10px;
}
.table h5{
  color: #00455e;
}
.raju{
  flex-wrap: nowrap;
  gap: 5px;
}


/* tab view start */

.popup {
	width: 100%;
	height: 100%;
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	background: rgba(0, 0, 0, 0.75);
	z-index: 999999999999;
  }
  
  .popup-inner {
	max-width: 700px;
	height: 500px;
	width: 100%;
	padding: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	box-shadow: 0px 2px 6px rgba(0, 0, 0, 1);
	border-radius: 3px;
	background: #fff;
	}
  
  .popup-close {
	width: 30px;
	height: 30px;
	padding-top: 4px;
	display: inline-block;
	position: absolute;
	top: 0px;
	right: 0px;
	transition: ease 0.25s all;
	/* -webkit transform: translate(50%, -50%); */
	transform: translate(50%, -50%);
	border-radius: 1000px;
	background: rgba(0,0,0,0.8);
	
	font-family: Arial, sans-serif;
	font-size: 20px;
	text-align: center;
	line-height: 100%;
	color: #fff;
  }
  
  .popup-close:hover {
	background: rgba(0,0,0,1);
	text-decoration: none;
	color: #fff;
  }
  .close-bont{
	background-color: #fab847;
	color: #000000;
	padding: 6px 20px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing:  1px !important;
	transition: .3s ease-in;
	margin-top: 15px;
	}
  .close-bont:hover{
	background-color: #007bb4;
	color: #ffffff;
	transition: .3s ease-out;
  }
  .arjun li p{
	font-size: 13px !important;
  }
  .arjun h4{
	font-size: 18px !important;
  }

  .boxer {
    text-align: center;
    border: 1px solid #00455e;
    padding: 10px;
  }
  .depend {
    height: 340px;
  }

  .boxer h4{
    color: #00455e;
  }
  .boxer h6 {
    color: #00455e;
    margin-top: 10px;
    background: #ddd;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0px 0px 5px #525252;
}

.box-text{
  background-color: #030e24;
}

.box-text h5 {
  font-size: 16PX;
}

  @media (max-width: 991px) {
	.popup{
		position: static;
		z-index: 99999999999;
		background: rgba(0, 0, 0, 0.75);
	}
	.popup-inner{
		position: static;
		width: 100%;
    height: 100%;
		transform: translate(0);
	}
  }

@media screen and (max-width: 768px) {
  .raju{
    flex-wrap: wrap;
  }
  .depend {
    height: auto;
  }
}
  
  @media screen and (max-width: 650px) {
    #tsum-tabs label {
      font-size: 14px;
    }
    #tsum-tabs label:before {
      margin: 0;
      font-size: 18px;
    }
  }
  
  @media screen and (max-width: 400px) {
    #tsum-tabs label {
      padding: 15px;
    }
  }

    /* alluminium section css end */
.lower a{
  background-color: #f7ae25;
  color: #00435c;
  padding: 10px 10px;
  border-radius: 50px;
}
.iter{
  text-align: justify;
  margin-right: 3px;
}
 
.footer-social-link i {
  font-size: 20px;
}